

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  :root {
    --primary-colors: #00594F;

    --light-green:#51AD19;

    --text-color:#004039;
    --text-gray:#4B4B59;
    --line-height:1.2;

/* Font Sizes */
    --font-size-14: 0.875rem; 
    --font-size-20: 1.25rem; /* Fallback */
    --font-size-20-clamp: clamp(1.125rem, 1.39vw, 1.25rem);

/* Responsive Clamp Sizes */
    --font-size-14-clamp: clamp(0.75rem, 0.97vw, 0.875rem);

  }
  
  body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    background-color: #f9f9f9;
    --text-color: #004039;
  }

  h1,
  h2,
  h3,
  p {
    margin: 0;
    padding: 0;
  }

  .font-14 {
    font-size: var( --font-size-14-clamp, var( --font-size-14));;
  }

  .section-title {
    font-size: 2.75rem; /* Fallback */
font-size: clamp(2rem, 3.06vw, 2.75rem);
    list-style: var(--line-height);
    color: var(--text-color);
    text-align: center;
    line-height: 1;
  }



  .highlight-cursive {
    /* font-family: 'Allura', cursive; */
    font-family: "Caveat", cursive;
    font-size: clamp(1.5rem, 2vw, 2rem);
    font-size: inherit;
  }

  .phone-call {
    padding: 4px 16px;
    background-color: #004e3c;
    text-decoration: none;
    border-radius: 6px;
  }
 

 

  /* hero section  */
 
/* hero section start */
.hero-section {
    background: url(../img/bg-img-hero-section.png) no-repeat var(--primary-colors);
    background-size: contain;
    background-position: bottom;
    color: white;
    padding: 4.25rem 1rem;
    position: relative;
  }
  .hero-section.hero-section-ahmedabad {
    background: url(../img/bg-img-hero-section-ahmedabad.png) no-repeat var(--primary-colors);
    background-size: contain;
    background-position: bottom;
  }

  .hero-section .section-title {
    text-align: left;
  }
  .price-container {
    border:2px solid var(--light-green);
    border-radius: 8px;
    overflow: hidden;
    
  }
  .discount-text {
    font-weight: bold;
    line-height: 1.1;
  }
  .discount-text .off-text {
    font-size: 1.875rem; /* Fallback */
    font-size: clamp(1.5rem, 2.08vw, 1.875rem);
  }
  .hero-section .text-section .ptag {
    font-size: 1.125rem; /* Fallback */
    font-size: clamp(1rem, 1.25vw, 1.125rem);
    line-height: 1.2;
  }
  .covers-box {
    max-width: 340px;
}


  .price-box {
    background: var(--light-green);
    padding: 0.5rem 1rem;
    font-weight: bold;
    font-size: 1.4375rem; /* Fallback */
    font-size: clamp(1.25rem, 1.6vw, 1.4375rem);
    padding: 2px 10px;
    display: inline-block;
  }

  .old-price {
    text-decoration: line-through;
    font-size: 1.4375rem; /* Fallback */
    font-size: clamp(1.25rem, 1.6vw, 1.4375rem);
    font-weight: bold;
    color: var(--light-green);
    margin-left: 8px;
    text-decoration: line-through;
    text-decoration-color: white;
  }

  .form-box {
    background: white;
    border-radius: 16px;
    padding: 2rem 1.2rem;
    color: black;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    max-width: 370px;
    margin-left: auto;
    transform: translateX(-132px);
  }

  .form-box:after {
   content: "";
   width: 100%;
   max-width: 132px;
   aspect-ratio: 132/371;
   display: block;
   background: url(../img/form-left-img.png) no-repeat;
   background-size: contain;
   position: absolute;
   top: -27px;
   right: -114px;
  }

  .enquiryForm .form-control {
    margin-bottom: 24px;
}

  .form-box input , .form-box select  {
    border-radius: 8px;
    border: 1px solid #A5A5A5;
    padding: 10px 28px;
  }

  .form-box button {
    background-color: var(--light-green);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    width: 100%;
    border: 1px solid var(--light-green);
    transition: all 0.5 ease-in;
  }
  .form-box button:hover {
    background-color: transparent;
    color: var(--light-green);
  }
  .features {
    background-color: #F1F6EE;
    padding: 2rem 1rem;
  }
  .features .img-box ,.features p {
    text-align: left;
  }
  .feature-icon {
    color: #027A48;
    font-size: 1.2rem;
    margin-right: 8px;
  }

  .form-title span {
    color: var(--light-green);
    font-size: var(--font-size-20);
    font-size: var(--font-size-20-clamp);
    }

  @media (max-width: 768px) {
    .hero-section {
      text-align: center;
    }
  }

/* hero section end */



/* Recommended section start */



.package-card {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.package-card.scaled-card {
  transform: scale(1.05);
}

.package-card .img-wrapper {
  width: 100%;
  aspect-ratio: 312/181;
  overflow: hidden;
  background: url(../img/heath-pack-bg.png) no-repeat #f1f6ee;
    background-size: 69%;
    background-position: 50% -55%;
}

.package-img {
  width: 90%;
  height: 100%;
  margin: auto;
  object-fit: cover;
  display: block;
}

.package-content {
  background: linear-gradient(90deg, #459B4C, #036459);
  color: white;
  padding: 1rem;
}
.package-content h5 {
  max-width: 200px;
  font-size: 1.125rem; /* Fallback */
font-size: clamp(1rem, 1.25vw, 1.125rem);
}
.package-content del {
  color: #91BDB5;
}
.badge-off {
  background: #207669;
  border-radius: 8px;
  border: 1px solid #D6F4A3;
  color: #D6F4A3;
  width: fit-content;
  margin-left: auto;
  margin-top: 6px;
  padding: 4px 13.45px
}

.recommended-section-main .badge-off {
   font-size: 10px;
}
.btn-and-tests p {
  font-size: 12px;
  color: #C5E999;
}
.default-btn {
  display: inline-block;
  background: var(--light-green);
  color: white;
  font-weight: 600;
  border: 1px solid var(--light-green);
  border-radius: 6px;
  margin-top: 0.5rem;
  /* font-size: 1.5rem; */
  line-height: 1;
  text-decoration: none;
  padding: .75rem 1.2rem;
}
.default-btn:has(img) {
  display: flex;
  width: fit-content;
  gap: 10px;
  align-items: center;
}
.default-btn:hover {
  background: #fff;
  color:var(--light-green);
}
.default-btn:hover img {
  filter: brightness(0) saturate(100%) invert(57%) sepia(75%) saturate(592%) hue-rotate(63deg) brightness(91%) contrast(96%);
}

.package-content .btn-book {
  background: linear-gradient(90deg, #4AA612 10%, #6FCA38);
  color: white;
  font-weight: 600;
  border-radius: 6px;
  margin-top: 0.5rem;
  width: fit-content;
  margin: auto;
  text-decoration: none;
  border: 1px solid var(--light-green);
  padding: 6px 12px;
}

.package-content .btn-book:hover {
  background: #fff;
  color:var(--light-green);
}

.badge-popular {
  background: #00594F;
    color: white;
    padding: 4px 23px;
    border-radius: 16px 0px;
    position: absolute;
    top: 0px;
    left: 0px;
}

.wrapper-boxs .box {
  display: flex;
}

.why-us-box {
  background: #EEF2EC;
  padding:1.5rem 0.4rem;
  border-radius: 12px;
  text-align: center;
  flex: 1;
  min-height: 227px;
}

.why-us-box h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 0px;
}

.why-us-box p {
  font-size: 0.9rem;
  color: var(--text-gray);
}
 .why-us-box .why-us-icon {
  padding: 17px;
  width: 91px;
  aspect-ratio: 1/1;
  margin: auto;
  background: linear-gradient(to bottom, #CDE3BD, #F1F6EE);
  border-radius: 50%;
  margin-bottom: 1.1rem;
 }



 


 

  h2 {
    font-size: 1.875rem; /* fallback */
    font-size: clamp(1.5rem, 2vw, 1.875rem);
  }

  /* step section */

.step-process .step-row {
    max-width: 870px;
    margin: auto;
}

  .step-process .step-row > div {
     width: fit-content;
     position: relative;
  } 

  .step-box {
    max-width: 230px;
  }

  .step-box .img-box {
    width: fit-content;
    margin: auto;
    position: relative;
    z-index: 2;
   }

   .step-process .step-row > div:not(:last-child) .step-box:after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    border-bottom: 1px dashed var(--light-green);
    top: 66px;
    right: -139px;
    z-index: 1;
   }  
  .step-box .img-box img {
    width: 125px;
    height: 125px;
    object-fit: cover;
    border-radius: 20px;
  }
  .step-number {
    /* padding: 4px; */
    background:var(--light-green);
    width: 19px;
    height: 19px;
    line-height: 1;
    border-radius: 50%;
    margin-bottom: 0px;
    position: absolute;
    top: -4px;
    left: -4px;
    font-size: 12px;
  }
  .step-box .step-title , .step-box.step-desc {
    color: var(--text-gray);
  }
 

   /* === Section: Testimonials === */
.testimonials-section {
  padding: 3rem 1rem;
  background: url(../img/Testimonial-bg.png) no-repeat;
  background-size:cover ;
  text-align: center;
}

.testimonials-section h2 {
  color: #fff;
}

.testimonials-section p {
  max-width: 700px;
  margin: 0 auto 2rem;
}

.testimonial-cards {
  /* display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap; */

  width: 100%;
  max-width: 1000px; 
  margin: auto;
  /* margin: 0 10px; */
  box-sizing: border-box;
  color: var(--text-gray);
}



.testimonial-card {
  background: #fff;
  color: var(--text-gray);
  padding: 1.188rem;
  margin:0px 20px ;
  border-radius: 12px;
  max-width: 300px;
  position: relative;
  min-height: 338px;
}

.testimonial-card::before {
  content: url(../img/icon/double-coats.svg);
  position: absolute;
  top: -12px;
  left: 10px;
}

.testimonial-card h5 {
  margin-top: 1rem;
  font-weight: 600;
}
.testimonial-card p {
  /* display: -webkit-box;
  -webkit-line-clamp: 7; 
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis; */
}

.testimonial-content {
  text-align: left;
}
.testimonial-content .img-wrapper {
  width: 61px;
  height: 61px;
  border-radius: 50%;
  background-color: #A4A4A4;
  overflow: hidden;
}
.testimonial-content .img-wrapper img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* slider default style change */


.testimonial-cards  .slick-list {
  padding-top: 12px !important;
}
.testimonial-cards .slick-next:before ,.testimonial-cards .slick-prev:before {
  font-family: FontAwesome;
  color: var(--light-green);
  font-size: 50px;
}

.testimonial-cards .slick-next:before {
  content: '\f105';
  
}
.testimonial-cards .slick-prev:before {
  content: '\f104';
}
.testimonial-cards .slick-dots {
  margin-top: 20px;
}
.testimonial-cards .slick-dots li button:before {
 color: rgba(255, 255, 255, 0.5);
}

.testimonial-cards .slick-dots li.slick-active button:before {
  color: #fff;
}


/* check up sections */


.advisor-section {
  background: var(--primary-colors);
  
}
.checkup-section {
background: #FBFBFB;
}
.advisor-section .img-container {
  margin-top: -36px;
}

.advisor-section h3 , .checkup-section h3 {
  font-size: 2.75rem; /* Fallback */
font-size: clamp(2rem, 3.06vw, 2.75rem);
line-height: 1;
margin-bottom: 20px;
}
.checkup-section h3 {
  color: var(--primary-colors);
}
.checkup-section p {
  color: var(--text-gray);
}

.advisor-section p , .checkup-section p {
  font-size: var(--font-size-20);
  font-size: var(--font-size-20-clamp);
  }

  /* accordion section  */

  .faq-section .accordion {
    max-width: 830px;
    margin: auto;
  }

  .faq-section .accordion-button:not(.collapsed):after {
      color: var(--text-color);
  }
  .faq-section .accordion-header button {
    color: var(--text-gray);
    background: #fff !important;
    box-shadow: none;
    border-bottom: 1px solid #C1C1C1;
    padding: 14px 18px;
  }
  .faq-section .accordion-header button.collapsed {
    border: none;
  }
  .faq-section .accordion-item {
    border: 1px solid #C1C1C1;
    border-radius: 10px;
    padding: 3px;
    
  }

  .faq-section .accordion-body {
    color: #676767;
    padding: 14px 18px;
  }
  
.faq-section , .checkup-section , .step-process , .recommended-section {
  background: #fff;
}

/* footer section */

.footer-section {
  background: linear-gradient(360deg , rgba(107, 198, 52, 0.8), #00594F 100%);
   color: white;
}
.media-box a {

  display: flex;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  /* padding: 4px; */
  
} 
.media-box a i {
  color: #227b48;
}
.media-box p , .awards-box h5{
  color: #C5E999;
  font-size: 18px;
}
.awards-box {
  width: fit-content;
  margin-left: auto;
}
.call-footer {
  align-items: center;
  
}

.call-footer a {
  font-size: 1.5625rem; /* Fallback */
font-size: clamp(1.25rem, 1.74vw, 1.5625rem);
text-decoration: none;
/* color: white; */
}

/*only mobile slider css */

.only-mobile-slider, .only-mobile-slider-2 {
  margin-top: 30px;
  padding: 0px;
}

.sticky-footer {
  background-color: var(--primary-colors);
  max-height: 0;
  transition: all .5s;

}
.sticky-footer.active {
  display: block;
  max-height: 150px;
}

.thankyou-msg-parent {
  height: 340px;
  padding: 0 !important;
}

.thankyou-msg {
  background: linear-gradient(263deg, #46BB00 5.26%, #3B9D00 104.79%);
  box-shadow: -4px 4px 9.8px 0px rgba(255, 255, 255, 0.29) inset;
  padding: 15px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  border-radius: 12px 12px 0px 0px;
}

@media screen and (max-width:1024px) {
  .step-process .step-row > div:not(:last-child) .step-box:after {
    width: 0%;
    border-left: 1px dashed var(--light-green);
    height: 70px;
    top: calc(100% - 40px);
    right: 50%;
  }
  
}

@media screen and (max-width:991px) { 
  .form-box {
    width: calc(100% - 132px);
  }

  .advisor-section .img-container {
    margin-top: 20px;
    
  }

}
@media screen and (max-width:768px) {
  .hero-section .section-title {
    text-align: center;
  }
  .price-wrapper {
    justify-content: center;
  }
  .covers-box p {
    /* text-align: left; */
  }
  .covers-box {
    margin: auto;
    /* flex-direction: column; */
    margin-top: 25px;
  }
  .step-box {
    max-width: 100%;
    margin-bottom: 65px;
}
.step-process .step-row > div {
  width: 100%;
}

  .advisor-section {
     padding: 48px 0px 0px 0px;
  }
  .form-box{
    margin-top: 30px;
}
.testimonial-card {
  margin: 0px 10px;
  /* padding: 0px;
  background: transparent; */
}
.testimonial-content {
  /* margin: 0px 10px;
  padding: 0px 20px;
  background: #fff;
  min-height: 100%; */
}
.footer-logo-wrapper .footer-logo {
  width: 90%;
}
.package-card.scaled-card {
  transform: scale(1);
}
.package-box {
  padding: 0px 10px;
}

.why-us-box {
  margin: 0px 10px;
}
.covers-box .img-cover {
  display: none;
}


.enquiryForm .form-control {
  margin-bottom: 18px;
}


.checkup-section .text-container ,
.advisor-section .text-container{
  text-align: center;
} 
.advisor-section .text-container .default-btn:has(img) {
  margin: 8px auto 0px;
}

}
@media screen and (max-width:575px) {
  .awards-box img {
    width: 73px;
}
}

@media screen and (max-width:425px) {
  .form-box:after {
    /* display: none; */
  }
  .form-box {
    padding: 1.2rem 1rem;
    width: calc(100% - 90px);
    transform: translateX(-90px);
  }
  .awards-box img {
    width: 40px;
}
.testimonial-card {
  min-height: 444px;
}
  
}


