@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

html {
  font-size: 16px;
  overflow-x: hidden;
}

body {
  position: relative;
  font-family: "Poppins", sans-serif;
  background: #fff;
  overflow: hidden;
    z-index: -1;
}

@font-face {
    font-family: 'Broadway';
    src: url('https://test1.testingdemowebsites.com/jims-3d-html/v2/fonts/BroadwayBT-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
  --white: #ffffff;
  --black: #171414;
  --gary-color: #727272;
  --lightgary-color: #b2b9bd;
  --theme-color: #01182e;
  --primary-color: #93292d;
  --skyBlue-color: #217cc8;

}

p {
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 2;
  color: var(--black) !important;
  margin: 0;
}

h1,h2{
   font-family: 'Broadway',   sans-serif;
}
h3,
h4,
h5,
h6 {
  color: #313131;
  margin: 0;
    font-family: "Poppins", sans-serif;

}

.img-auto {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

a,
button {
  text-decoration: none !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

a:hover,
button:hover {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.marquee .track .content h1 {
	font-size: 150px;
	color: #ecedec;
	font-weight: 700;
	text-transform: uppercase;
	
	letter-spacing: 5px;
}
.track {
    position: absolute;
    white-space: nowrap;
    will-change: transform;
    animation: marquee 10s 
linear infinite;
    top: 0;
}
@keyframes marquee {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}
 /* .primary-hd {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2rem;
} */

.marquee {
	position: absolute;
    width: 100vw;
    max-width: 100%;
    height: 450px;
    overflow-x: hidden;
    top: -5rem;
}

figure {
  margin: 0;
}

section {
  padding: 5rem 0;
  position: relative;
}
.sec-heading{
  text-align: center;
}
.sec-heading h2{
font-size: 5.6rem;
    line-height: 1;
    font-weight: bold;}

/* loader */
.preLoader {
  width: 100%;
  height: 100%;
  z-index: 1111;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}

.preLoader.black {
  background-color: #040306;
  z-index: 11113;
}

.preLoader.white {
  z-index: 11112;
  background-color: var(--theme-color);
}

/* loader */

/* Cursor Start */

.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}

.cursor-inner {
  margin-left: 2px;
  margin-top: 2px;
  width: 7px;
  height: 7px;
  z-index: 10000001;
  background-color: var(--primary);
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
  margin-left: -10px;
  margin-top: -10px;
  width: 30px;
  height: 30px;
  background-color: var(--primary);
  opacity: 0.3;
}

/* Cursor End */

/* btn css */

.themeBtn {
  background: #217cc8;
  font-size: 1.125rem;
  color: var(--white);
  text-transform: uppercase;
  font-weight: 400;
  display: inline-block;
  padding: 1rem 3rem;
  border-radius: 50px;
  line-height: normal;
}

.themeBtn.borderBtn {
  background: transparent;
  border: 1px solid #fff;
  padding: 1.04em 2em;
}

/* btn css */

/* mouse animation css  */

.bounce-element {
  animation: bounce 0.9s infinite alternate;
  -webkit-animation: bounce 0.9s infinite alternate;
}

@keyframes bounce {
  from {
    transform: translateY(0px);
  }

  to {
    transform: translateY(-15px);
  }
}

@-webkit-keyframes bounce {
  from {
    transform: translateY(0px);
  }

  to {
    transform: translateY(-15px);
  }
}


/* new-header-design */
.mainHeader {

  background: #f7f9f8;
}

.color-1 {
  color: #2c9dfc
}

.mainHeader .navbar {
  padding: 0 11rem 0px 0px !important;
   z-index: 2;
}



.logo-design img {
  padding: 10px 7rem;
}


.mainHeader .navbar-nav {
 gap: 8rem;
    margin-top: 1rem;
}

.mainHeader .navbar-nav .nav-item .nav-link {

  font-size: 18px;
  font-weight: 500;
  color: #313131;
  position: relative;

}
.mainHeader .navbar-nav .nav-item .nav-link:before{
content:"";
position: absolute;
width: 0;
height: 2px;
background: #058843;
bottom: 0;
transition: 0.5s ease;

}
.mainHeader .navbar-nav .nav-item .nav-link:hover:before{
  width: 100%;
}
.mainHeader .navbar-nav .nav-item .nav-link:hover{
  color: #058843;
}
/*
/* Show dropdown on hover */
.navbar-nav .dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
}

/* Optional: prevent dropdown from disappearing instantly */
.dropdown-menu {
  transition: all 0.5s ease;
}


.top-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
      padding: 20px 0px 15px 0px;

}

.call-us-btn {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #313131;
  font-size: 16px;

}

.call-icon {
background: linear-gradient(90deg,rgba(255, 97, 37, 1) 0%, rgba(255, 233, 70, 1) 50%);
  color: var(--black);
  border-radius: 50%;
  padding: 12px;
  font-size: 18px;
  margin-right: 10px;
}

.call-text {
  display: flex;
  flex-direction: column;
  color: var(--black);
}

.call-text span:first-child {
  font-size:18px;
  color: var(--black);
}

.call-text span:last-child {
  font-weight: bold;
  font-size:20px;
}

.quote-btn {
    background: linear-gradient(90deg, rgba(255, 97, 37, 1) 0%, rgba(255, 233, 70, 1) 50%);
    color: var(--black);
    border: none;
    padding: 15px 36px;
    border-radius: 30px;
    font-size: 20px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s 
ease;
position: relative;
overflow: hidden;
}
.quote-btn span{
    z-index: 2;
}
.quote-btn:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    background: radial-gradient(circle, rgba(255, 97, 37, 1) 0%, rgba(255, 233, 70, 1) 100%);
    top: -42px;
    left: -94px;
    transition: 0.5s 
ease;
    transform: rotate(333deg);
    z-index: 1;
    overflow: hidden;

}
.quote-btn:hover:before{
 
    height: 150px;
    width: 299px;
}
.quote-btn:hover span{
  z-index: 2;
  position: relative;
  color:var(--black)
}

.navbar-toggler:focus, .navbar-toggler:hover {
    text-decoration: none;
    outline: unset !important;
}

/* end */

.mouse {
  position: absolute;
  bottom: 1rem;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 11;
  text-align: center;
}

/* mouse animation css  */

/* navigation css */

.navbar-nav {
  align-items: center;
  justify-content: space-between;
  gap: 57px;
}

.navbar-nav .nav-item .nav-link {
  font-size: 1rem;
  color: var(--white);
  text-transform: uppercase;
  font-weight: 500;
  padding: 0 0;
  display: inline-block;
}

/* .navbar-nav .nav-item:last-child .nav-link {
	background: var(--theme-color);
	font-size: 1rem;
	color: var(--white);
	text-transform: uppercase;
	font-weight: 500;
	display: inline-block;
	border-radius: 0;
	padding: 1.04em 1.56em;
	border-radius: 0;
} */
.an-navbar {
  background: var(--theme-color);
  padding: 1.35rem 0;
}

/* navbar-new-design */
.navbar-brand {
  padding: 10px 0px;
}






.tel-btn i {
  font-size: 20px;
  width: 50px;
  height: 50px;
  border-radius: 100px;
  background-color: #2c9dfc;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.get-btn {
  background-color: transparent;
  border-radius: 50px;
  color: white;
  border: 1px solid var(--white);
    
}

.service-btn {
  background-color: transparent;
  border-radius: 50px;
  color: white;
  border: 1px solid #fff;
}

/* navigation css */

/* slider css */

.mainSlider {
  height:880px;
  position: relative;
  z-index: 1;
}
.mainSlider .quote-btn{
  background: transparent;
  color: #fff;
  border:1px solid #fff;
  font-weight: 400;
}
.mainSlider .btn-group {
		gap: 1rem;
	}
.homeSlider.swiper-container {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.homeSlider .slide-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.slideContent {
  text-align: left;
}

/* new-slide-pagination-css */
.homeSlider .swiper-pagination {
  position: absolute;
  top: 50%;
  right: 75px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 10;
  width: fit-content;
  height: fit-content;
  left: auto;
}

/* Bullet = Number */
.homeSlider .swiper-pagination-bullet {
  position: relative;
  background: transparent;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  opacity: 0.5;
  right: 0px;
  cursor: pointer;
  transition: all 0.3s ease;
  
}

/* Active Number */
.homeSlider .swiper-pagination-bullet-active {
  color: var(--white);
  opacity: 1;
  font-weight: 600;
  transition: all 0.3s ease;

}

/* Horizontal line beside active number */
.homeSlider .swiper-pagination-bullet-active::after {
  content: "";
  position: absolute;
  top: 125%;
  left: 18px;
  transform: translateY(-50%);
  width: 100px;
  height: 3px;
  background-color: var(--white);
}

.arrow {
  animation: upDown 1.5s ease-in-out infinite;
  position: absolute;
  left: 0;
  right: 4%;
  margin: auto;
  bottom: 15%;
  text-align: center;
  width: fit-content;
  height: fit-content;
  z-index: 0;
}
.arrow i {
  height: 6.25rem;
  width: 4rem;
  display: grid;
  place-items: center;
  margin: auto;
  background-color: rgb(217 217 217 / 34%);
  border-radius: 30px;
  color: var(--white);
  font-size: 1.285rem;
  border: 2px solid var(--white);
}

@keyframes upDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px); /* neeche */
  }
  100% {
    transform: translateY(0); /* wapas upar */
  }
}
/* end */

.mainSlider h3 {
  color: var(--white);
  font-size: 42px;
}

.mainSlider h1 {
  font-size: 128px;
  color: white;
  line-height: 1;
  margin: 0;
  font-family: "Broadway", sans-serif;
  font-weight: 700;
}

.mainSlider h4{
  font-size: 34px;
  font-family: "Poppins", sans-serif;
  color: white;
}

.mainSlider p {
  font-size: 22px;
  font-family: "Poppins", sans-serif;
  color: white;
}

/* slide-social-icon */
.header_links {
  position: relative;
  z-index: 11;
  top: 27%;
  left: 1%;
  width: fit-content;
  display: flex;
  flex-direction: column;
}

.header_links li:first-child {
  writing-mode: sideways-rl;
  color: #fff;
  font-size: 17px;
  font-style: italic;
  margin: 0 5px 16px 12px;
}

ul.header_links li a {
  color: #fff;
  font-size: 22px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: transparent;
  transition: all 0.3s ease;
  display: grid;
  place-items: center;
}

ul.header_links li a:hover {
  color: #fff;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
background: linear-gradient(90deg,rgba(255, 97, 37, 1) 0%, rgba(255, 233, 70, 1) 50%);
  transition: all 0.3s ease;
}

ul.header_links li {
  line-height: 1;
  margin-bottom: 20px;
}

.headingOne {
  font-size: 1.75rem;
  color: var(--white);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.4rem;
  margin: 0 0 1rem;
}

.headingTwo {
  font-size: 7.5rem;
  color: var(--white);
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1;
}

.headingThre {
  font-size: 2.8125rem;
  font-weight: 500;
  color: var(--white);
}

.topLogo {
  padding: 10px 0;
}

.topLogo .clrBtn {
  background: var(--primary-color);
}

.topLogo .d-flex {
  justify-content: flex-end;
  gap: 1rem;
}

.sliderSocial {
  position: absolute;
  left: 4rem;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 11;
  flex-direction: column;
  gap: 2rem;
}

.sliderSocial li a {
  font-size: 1.2rem;
  color: var(--white);
}

/* slider css */

/* About Sec Css Start */
.section-1{
    background: url(../images/about-home-bg.png) no-repeat  right;
}
.section-1 .about-img img{
  position: relative;


}
.section-1 .ab-content{
      color: var(--black);
    font-size: 2.3rem;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    font-family: 'braodway';
      padding: 10px 1.2rem;
  height: 200px;
  width: 200px;
    border-radius: 50%;
}
.border-line {

  position: absolute;
  transform: rotate(359deg);
  background: #fef4c4;
bottom: 9rem;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
   border-top: 3px solid#ffe946; /* gradient color start */
  border-right: 3px solid #ff6125;
}

/* 👇 Border animation using ::before */
.border-line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top: 3px solid #ff6125; /* gradient color start */
  border-right: 3px solid #ffe946; /* gradient color end */
  animation: rotateBorder 2s linear infinite;
  z-index: -1;
}
@keyframes rotateBorder {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}



.about-content{
  font-size: 2rem;
  color: var(--black);
  padding-left: 4rem;
  position: relative;
}
.about-content h2{
  font-size: 6rem;
}
.about-content h3{
  font-size: 2.9rem;
}

.about-content  .top-bar .quote-btn

 {
 font-weight: 400 !important;
}
.about-content figure img{
position: absolute;
    right: -23rem;
    /* top: 19rem; */
    bottom: -0.3rem;
}


/* .section-2 */
.section-2{
      background: url(../images/service-home-bg.png) no-repeat  left;
    position: relative;
}

 marquee{
  position:absolute;
  top:0px;
font-size: 7rem;
  z-index: -1;}
marquee h1{
  font-size: 7rem;
  font-weight: bold;
  color:#ecedec;

}
.service-content

 {
background: linear-gradient(90deg, rgb(255 97 37 / 92%) 0%, rgb(255 233 70 / 95%) 50%);
    padding: 3.3rem;
    position: relative;
    top: -135px;
    margin: 2rem;
    border-radius: 30px;
    transform: skew(-3, -3deg);
    transform: skew(-5deg, -2deg);
}
.service-content h4{
  color: var(--black);
  font-weight: 500;
  font-size: 2.9rem;
}
.btn-line{
  padding-top: 3rem;

}
.service-content .quote-btn{
  color:var(--white);
  background: var(--black);
  font-weight: 400;
}
.service-content .quote-btn:hover{
  background: unset;
}
.service-1 {
  padding: 1.2rem;
}

/* testim */
.testimonials-sec{
  position: relative;
  padding: 5rem 0 0 0 !important;
  z-index: -2;
}
.testimonials-sec::before{
  position: absolute;
  content: "";
  background: url(../images/testimonial-bg.png) no-repeat;
  width: 80%;
  height: 100%;
  top:0px;
}
.testimonials-sec:after{
    position: absolute;
    content: "";
    right: 0;
    background: var(--black);
    height: 55%;
    width: 30%;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: -1;
}
.testimonials-sec h2 {
    font-size: 5.2rem;
    font-weight: bold;
    color: var(--black);
}
.testimonslider {
  padding: 0.2rem 0 12.5rem;
  /* margin-bottom: -14rem; */
 
}

.testimonslider .swiper-pagination-bullet {
  width: 50px;
  border-radius: 0;
  transition: 0.5s ease;
  background-color: #4a463d !important;
   border-radius: 30px;
 border:1px solid #fff;
  opacity: 100%;
  bottom: 0;
  padding: 5.6px;
}
.testimonslider .swiper-pagination-bullets {
    bottom: 131px !important;
    left: 0;
    width: 100%;
}
.testimonslider .swiper-pagination-bullet-active {
  width: 90px;
 background-color: #058843 !important;
 border-radius: 30px;
 border:1px solid #fff;
 padding: 5.6px;
}
.testimonials-main {
    background: white;
    padding: 1.6rem;
     border:1px solid #8acc77;
}
.testimonials-stars{
  display: flex;
}
.testimonials-sub{
  display: flex;
  align-items: end;
}
.testimonials-sub h5{
  padding-left: 1rem;
}
.testimonials-box p {
 padding: 0.5rem 0;
    color: #757c85 !important;
    font-style: italic;
}
.testimonials-sub img{
  width: 80px;
}
.testimonials-stars li i {
    color: #ffcc00;
}
.testimonials-right{
  position: relative;
}
.testimonials-right figure{
      position: absolute;
    left: -273px;
    top: -102px;
}
.testimonials-right:before{

}
/* Testimonials Sec Css End  */

/* other-service */
.section-3
{
   background: url(../images/other-service-bg.png) no-repeat center;
   background-position-y:13.2rem;
}

.services-grid{
  display: flex;
}
.other-service{
  position: relative;
      display: flex
;
    flex-direction: column;
    align-items: center;
 /* padding: 23px 29px; */
 
}
.other-service .content {
  text-align: center;
}
.other-service .content h4{
font-size: 1.5rem;
padding: 1rem 0;
}
.other-service .ser-arrow{
       position: absolute;
    right: -88px;
    top: 101px;
    width: 74px;
}
.section-3 h4{
  text-transform: capitalize;
}
.other-service .icon-box{
  position: relative;
  width: 200px;
    height: 200px;
   background: linear-gradient(90deg, rgba(255, 97, 37, 1) 0%, rgba(255, 233, 70, 1) 50%);
    border-radius: 100%;
    display: grid;
    place-items: center;
}
.other-service .icon-box::before{
 content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: url(../images/icon-border.png) no-repeat;
    background-position: center;
    background-size: 215px;
        animation: rotateBorder 10s 
linear infinite;
}
.ser-arrow.arrow-2 {
    top: -18px;
}
.section-3 .quote-btn{
font-weight: 400 !important;
}
.section-3 .col-lg-2:nth-child(even) { margin-top: 100px}
.section-3 {
  position: relative;
}


.blogSlider {
	margin-left: 160px;
}
.section-5 .quote-btn{
  font-weight: 400 !important;
}

.section-5 .blog-box {


    padding: 1rem;
}



.section-5 .blog-box .content h4{
  font-size: 34px;
  color: #fff !important;
  
}
.section-5 .blog-box .content p{
  font-size: 19px;
  padding-right :20px;
}
.section-5 .blog-box .content  .comment span{
  padding: 0 5px !important;
}
.section-5 .blog-box .content p{
  color: #ffff !important ;
}
.section-5 .blog-box .content{
 display: flex !important;
    color: #ffffff;
    top: -99px;
    position: relative;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}



/* footer */
footer {
	background-image: url(../images/footer-bg.png);
	background-size: cover;
	background-position: top left;
	padding: 200px 0 30px;
	background-color: #131111;
}

.footer-menu {
	display: flex;
gap: 51px;
	padding: 30px 0;
	border-top: 1px solid #5d5c5c;
	border-bottom: 1px solid #5d5c5c;
	margin: 2rem 0;
}

.footer-menu li a {
	font-size: 20px;
	font-weight: 500;
	color: var(--white);
	letter-spacing: 2px;
	transition: all 0.4s;
}

.footer-menu li a:hover {
	color: var(--white);
}

.copyright-content p {
	font-size: 18px;
	color: #fffdfd !important;
}

.copyright-content p span {
	font-weight: 700;
}

.footer-social-links {
	display: flex;
	justify-content: flex-end;
	gap: 1rem;
}

.footer-social-links li a i {
	width: 50px;
	height: 50px;
	border-radius: 100%;
	background-color: transparent;
	border: 2px solid var(--white);
	color: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s;
}

.footer-social-links li a i:hover {
background: linear-gradient(90deg, rgb(255 97 37 / 92%) 0%, rgb(255 233 70 / 95%) 50%);
	border-color: #fff;
}

.quickList h2 {
	font-size: 32px;
	font-weight: 500;
	color: #fdfdfd;
	margin-bottom: 1rem;
}

.calFoter {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.calFoter li {
	display: flex;
	gap: 0.5rem;
}

.calFoter li:first-child {
	width: 100%;
}

.calFoter li a,
.calFoter li span {
	font-size: 18px;
	color: #fdfdfd;
	transition: all 0.4s;
}

.calFoter li a:hover,
.calFoter li span:hover {
	color: var(--white);
}

.calFoter li i {
	color: #fdfdfd;
	margin-top: 6px;
}

.map-location iframe {
	border-radius: 20px;
}


/* inner-page */
.resin-printing-banner{
  background-image: url(../images/new-resign-printing-banner.png);
}
.about-us-banner{
background-image: url(../images/about-us-banner.png);
}
.gallery-banner{
  background-image: url(../images/gallery-banner.png);
}
.blog-banner{
  background-image: url(../images/blog-banner.png);
}
.contact-banner{
    background-image: url(../images/contact-banner.png);
}
.fdm-printing-banner{
    background-image: url(../images/fdm-banner-new.png);
}
.quote-banner{
    background-image: url(../images/quote-banner.png);
}

   .inner-banner {
	background-size: cover;
	background-position: center;
	padding: 15rem 0;
}
.services-banner{
 background-image: url(../images/new-services-banner.png);
 padding: 18rem 0 ;
}
.inner-banner-content h1 {
	font-size: 78px;
	font-weight: 500;
	color: var(--white);
	text-transform: capitalize;
}


.subHeading{
font-size: 1.2rem;
color: var(--black);
padding-bottom: 2rem;
}
.mainh2{
  font-size: 62px;
}

.inner-bgcolor{
  background: #f7f9f8;
}
.work-sec{
 background: url(../images/work-sec-bg.png) no-repeat ;
  position: relative;
}
.work-sec .work-images{
      position: relative;
    top: -48px;
}
.work-sec .work-content{
  padding-top: 4rem;
}
.pros-card {
    padding: 1.7rem;
}
.pros-sec .pros-card h3{
font-size: 40px;
}

.youtub-link{
  position: relative;
}
.youtub-link .control-btn{
  position: absolute;
 width: 100%;
 height: 100%;
  top:0;
  left: 0;
  right: 0;
display: flex;
align-items: center;
justify-content: center;
 

}
.youtub-link .control-btn a{
 width: 100px;
  height: 100px;
   border-radius: 100%;
  background: red;
  display: grid;
  place-items: center;
	animation: pulse-animation 2s infinite;
	backdrop-filter: blur(6px);
	overflow: hidden;
	background-position: center;

}
.youtub-link .control-btn a i{
  font-size: 2rem;
  color:white;
}



@keyframes pulse-animation {
	0% {
		box-shadow: 0 0 0 0px rgb(238, 203, 189, 0.9);
	}

	100% {
		box-shadow: 0 0 0 20px rgb(230, 42, 42, 0.1);
	}
}


/* blog */
.blog-card {
    padding: 1rem;
}
.blog-inner-section .blog-card figure{
  position: relative;
}
.blog-inner-section .blog-card .date-box{
 position: absolute;
 
    left: 37px;
    bottom: 40px;
    width: 110px;
    height: 110px;
    border-radius: 100%;
 background: linear-gradient(90deg, rgb(255 97 37 / 92%) 0%, rgb(255 233 70 / 95%) 50%);
    display: grid
;
    place-items: center;
    font-size: 1.6rem;
    text-align: center;
    padding: 15px;
    color: white;
    font-weight: bold;
}
.blog-content h3{
  font-size: 1.5rem;
  padding: 1rem 0;
}

/* contact */


section.contact-sec {
    /* background-color: #01182e; */
    padding: 1rem 0 4rem;
    margin-bottom: -16rem;
}
.contact-form{
  position: relative;
  z-index: 4;
}
section.contact-sec .mainHead {
  text-align: center;
  margin-bottom: 3.875rem;
}

form.contact-form .form-control {
  height: 3rem;
  outline: unset;
  box-shadow: unset;
  background-color: var(--white);
  border: unset;
  border-radius: 10px;
}

form.contact-form textarea.form-control {
  height: 130px;
}

form.contact-form button {
  border: unset;
  text-align: center;
  /*width: 240px;*/
  margin: auto;
  display: block;
  margin-top: 1.75rem;
}

/* contact-page */

.address-tab {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 22px;

}

.address-tab a {
  color: var(--black)
}

.address-tab p {
  font-size: 22px;
  padding: 10px 0;
  color: var(--black);
  text-transform: capitalize;
}

.address-tab .tel-icon {
  width: 150px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
 background: linear-gradient(90deg, rgb(255 97 37 / 92%) 0%, rgb(255 233 70 / 95%) 50%);
}

.address-tab .loc-tab {
  background: #000;
}

.tel-icon i {
  font-size: 34px;
  color: var(--black);
}

.contact-map-sec iframe {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  padding: 0;
}

.location-img {
  display: flex;
  flex-direction: column;
  align-items: end;
}

.location-box {
  padding: 0;
  margin: 0;
  border: 7px solid #ffffff;
  border-radius: 17px;

}
.bg-img-overlay{
  position: relative;
}
.bg-img-overlay::before{
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: url(../images/other-service-bg.png) no-repeat;
  z-index: 0;
}
/* Contact Sec Css End  */



/* quote */
  .quote-section {
            position: relative;
        }

        .quote-section input {
            padding: 25px;
            border-radius: 8px;

        }

        .quote-section .form-control:focus {
            color: #495057;
            background-color: #fff;
            border-color: #050505ff;
            outline: 0;
            box-shadow: none;
        }

        .quote-section select {
            height: 51px;
            border-radius: 9px;
        }

        .upload-inp {
            background: white;
            height: 200px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .upload-inp .quote-btn {

            padding: 7px 36px;
            border-radius: 30px;
            font-size: 18px;
            text-decoration: none;
            font-weight: unset;

            overflow: hidden;
        }

        .quote-section h2 {
            font-size: 5.1rem;
            text-align: center;
            padding: 0px 0 38px 0px;
        }

        .quote-section::before {
            position: absolute;
            content: "";
            width: 100%;
            height: 100%;
            z-index: 0;
            background: url(../images/qoute-after.png) no-repeat !important;

        }


        .service-section .mainh2{
font-size: 42px;
        }
        
        
        .work-content p {
    font-size: 16px;
}




.resin-3d-sec .row {
    display: flex;
    align-items: center;   /* vertically center both columns */
}

.resin-3d-sec img {
    width: 100%;
    height: auto;
}



.scroll-wrapper {
    max-height: 500px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 10px;

    /* MOST IMPORTANT */
    overscroll-behavior: contain !important;
}

/* Scrollbar styling */
.scroll-wrapper::-webkit-scrollbar {
    width: 6px;
}

.scroll-wrapper::-webkit-scrollbar-thumb {
    background: #ebd94e;
    border-radius: 4px;
}

.scroll-wrapper::-webkit-scrollbar-track {
    background: #eee;
}




.tabs-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.tab-btn {
    background: #fff;
    border: 2px solid #ebd94e;
    color: #000;
    padding: 10px 25px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.tab-btn.active {
    background: #ebd94e;
    color: #000;
    width: 159px;
    font-size: 21px;
    letter-spacing: 1px;
}

.tab-btn:hover {
    background: #ebd94e;
    color: #000;
}

.tab-content {
    margin-top: 25px;
}

.tab-item {
    animation: fade 0.3s ease-in-out;
}

@keyframes fade {
    from { opacity: 0; }
    to { opacity: 1; }
}


/* Infill field styling */
.infill-input {
    display: none;
}
.infill-select {
    display: none;
}
.show {
    display: block !important;
}



/* Tooltip styling */
        .tooltip-icon {
            display: inline-block;
            width: 18px;
            height: 18px;
            background-color: #007bff;
            color: white;
            border-radius: 50%;
            text-align: center;
            line-height: 18px;
            font-size: 12px;
            cursor: pointer;
            margin-left: 5px;
            position: relative;
        }
        .tooltip-text {
            visibility: hidden;
            width: 300px;
            background-color: #333;
            color: white;
            text-align: center;
            border-radius: 6px;
            padding: 10px;
            position: absolute;
            z-index: 1000;
            bottom: 125%;
            left: 50%;
            transform: translateX(-50%);
            opacity: 0;
            transition: opacity 0.3s;
            font-size: 14px;
            font-weight: normal;
        }
        .tooltip-text::after {
            content: "";
            position: absolute;
            top: 100%;
            left: 50%;
            margin-left: -5px;
            border-width: 5px;
            border-style: solid;
            border-color: #333 transparent transparent transparent;
        }
        .tooltip-icon:hover .tooltip-text {
            visibility: visible;
            opacity: 1;
        }
        
        
        
        /* Percentage Range Slider */
        .percentage-slider {
            width: 100%;
            margin: 10px 0;
        }
        .slider-container {
            position: relative;
            margin-bottom: 25px;
        }
        .slider-value {
            position: absolute;
            top: -25px;
            left: 50%;
            transform: translateX(-50%);
            background: #007bff;
            color: white;
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: bold;
        }
        .slider-value::after {
            content: "";
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            border: 5px solid transparent;
            border-top-color: #007bff;
        }
        .slider-labels {
            display: flex;
            justify-content: space-between;
            margin-top: 5px;
            font-size: 12px;
            color: #6c757d;
        }
        
        input#percentageSlider {
    padding: 0;
}

 .blog-content-sec h2:nth-child(1) {
            font-size: 2.3rem;
        }

        .blog-content-sec h2 {
            padding: 1.7rem 0;
            font-family: "Poppins", sans-serif;
            font-size: 1.9rem;
        }

        .blog-content-sec h3 {
            padding: 1.2rem 0;
        }

        .blog-content-sec a {
            color: #ff822ed1;
        }

        .blog-content-sec .ul-style {
            padding: 1rem 4rem;
        }

        .blog-content-sec .ul-style li {
            padding: 0.6rem 0;
        }
        
         .blog-page h1 {
    font-size: 39px;
 }