:root {
  --green: #217a45;
  --dark: #0e3e2d;
  --mint: #eaf1df;
  --cream: #f7f3eb;
  --ink: #183126;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background: #fff;
}
h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  line-height: 1;
}
h1 {
  font-size: clamp(1.8rem, 5vw, 2.3rem);
  max-width: 780px;
}
h2 {
  font-size: clamp(2rem, 4vw, 2.3rem);
}
p {
  line-height: 1.3;
  color: #52625a;
}
.main-top-pad {
  padding-top: 130px;
}
.section-pad {
  padding: 100px 0;
}
.section-pad-sm {
  padding: 50px 0;
}

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 14px;
}
.eyebrow.light {
  color: #aee1c2;
}
.navbar-brand {
  /* letter-spacing: 0.12em; */
}
.navbar-toggler {
  border: 0;
  padding: 0;
}
.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: 0 0 0 0;
}
.nav-link {
  color: var(--ink);
  font-weight: 500;
  transition: 0.2s color;
  border-bottom: 1px solid #0000001f;
}
.hero {
  padding-top: 150px;
}
.hero .lead {
  max-width: 650px;
  font-size: 1.05rem;
}
.hero-image {
  width: 100%;
  max-width: 700px;
  mix-blend-mode: multiply;
  filter: saturate(0.9);
}
.btn-success {
  background: var(--green);
  border-color: var(--green);
}
.stats-strip {
  background: var(--green);
  color: white;
}
.stat {
  padding: 24px 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}
.stat strong {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
}
.stat strong span {
  display: block;
  font-size: 2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.86;
}

.stat span .counter-text {
  font-size: 0.9rem;
  display: block;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.86;
}

.counter-plus {
  color: yellow;
}
.soft-green {
  background: var(--mint);
}
.cream {
  background: var(--cream);
}
.feature-card {
  background: white;
  border-radius: 14px;
  padding: 25px;
  box-shadow: 0 20px 60px rgba(20, 60, 35, 0.08);
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.check-list li {
  position: relative;
  padding: 7px 0 7px 26px;
}
.check-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2bb24c;
}
.trust-section {
  background: linear-gradient(
    180deg,
    var(--dark) 0%,
    var(--dark) 70%,
    #20b59c 100%
  );
  color: white;
}
.trust-section p {
  color: #d5e1da;
}
.trust-section .btn {
  padding: 5px 10px;
  font-size: 14px;
}
.image-note {
  position: relative;
}
.image-note img {
  width: 100%;
  border-radius: 14px;
  filter: grayscale(1);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.28);
}
.note-card {
  position: absolute;
  width: 95%;
  bottom: -8%;
  left: 50%;
  background: rgb(255 255 255 / 15%);
  color: #203b31;
  padding: 22px;
  border-radius: 12px;
  backdrop-filter: blur(7px);
  transform: translate(-50%, -50%);
}
.section-heading {
  max-width: 680px;
  margin-bottom: 30px;
}
.section-heading.text-center {
  margin-left: auto;
  margin-right: auto;
}
.service-card {
  height: 100%;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(30, 40, 30, 0.06);
  transition: 0.25s transform;
}
.service-card:hover {
  transform: translateY(-6px);
}
.service-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}
.service-card div {
  padding: 24px;
}
.service-card h3 {
  font-size: 1.38rem;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  /* margin-top: 50px; */
}
.process-step {
  background: var(--cream);
  padding: 25px 18px;
  border-radius: 12px;
  min-height: 190px;
}
.process-step b {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green);
  color: #fff;
  margin-bottom: 20px;
}
.process-step h4 {
  font-size: 0.95rem;
  font-weight: 700;
}
.process-step p {
  font-size: 0.82rem;
  line-height: 1.5;
}
.dosage-card {
  height: 100%;
  background: white;
  padding: 10px 15px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(20, 60, 30, 0.06);
}
.dosage-card img {
  width: 100%;
  height: 125px;
  object-fit: cover;
  border-radius: 10px;
}
.dosage-card h4 {
  font-size: 0.93rem;
  margin: 15px 0 8px;
}
.dosage-card p {
  font-size: 0.75rem;
  line-height: 1.5;
}
.dosage-card a {
  font-size: 0.73rem;
  color: var(--green);
  font-weight: 700;
  text-decoration: none;
  background: #dddada;
  padding: 5px 10px;
  border-radius: 5px;
}

/* =====================================
   Brand Logo Marquee
===================================== */

.brand-slider-section {
  overflow: hidden;
  background: #ffffff;
}

.brand-marquee-wrapper {
  --brand-gap: 10px;
  --brand-speed: 50s;

  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  margin-top: 30px;
  overflow: hidden;
}

.brand-marquee {
  display: flex;
  gap: var(--brand-gap);
  width: 100%;
  overflow: hidden;
  user-select: none;
  padding: 5px 0;
}

/* Soft fade on left and right sides */
.brand-marquee {
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    #000 6%,
    #000 94%,
    transparent
  );

  mask-image: linear-gradient(
    to right,
    transparent,
    #000 6%,
    #000 94%,
    transparent
  );
}

.brand-marquee-group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: var(--brand-gap);
  min-width: max-content;
  animation: brand-scroll-left var(--brand-speed) linear infinite;
}

.brand-marquee-reverse .brand-marquee-group {
  animation-name: brand-scroll-right;
}

.brand-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 220px;
  width: 220px;
  height: 110px;
  padding: 20px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(26, 83, 55, 0.14);
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(20, 72, 49, 0.08);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.brand-logo-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(20%);
  transition:
    filter 0.3s ease,
    transform 0.3s ease;
}

.brand-logo-card:hover {
  transform: translateY(-3px);
  /* border-color: rgba(26, 83, 55, 0.4);
  box-shadow: 0 14px 35px rgba(20, 72, 49, 0.14); */
}

.brand-logo-card:hover img {
  filter: grayscale(0%);
  transform: scale(1.01);
}

/* Pause both rows when hovered */
.brand-marquee-wrapper:hover .brand-marquee-group {
  animation-play-state: paused;
}

@keyframes brand-scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% - var(--brand-gap)));
  }
}

@keyframes brand-scroll-right {
  from {
    transform: translateX(calc(-100% - var(--brand-gap)));
  }

  to {
    transform: translateX(0);
  }
}

/* Tablet */
@media (max-width: 991.98px) {
  .brand-logo-card {
    flex-basis: 180px;
    width: 180px;
    height: 95px;
    padding: 16px;
  }
}

/* Mobile */
@media (max-width: 575.98px) {
  .brand-logo-card {
    flex-basis: 145px;
    width: 145px;
    height: 80px;
    padding: 12px;
    border-radius: 10px;
  }

  .brand-marquee {
    -webkit-mask-image: linear-gradient(
      to right,
      transparent,
      #000 3%,
      #000 97%,
      transparent
    );

    mask-image: linear-gradient(
      to right,
      transparent,
      #000 3%,
      #000 97%,
      transparent
    );
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .brand-marquee-group {
    animation-play-state: paused;
  }
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}
.brand-grid span {
  background: #faf8f3;
  border: 1px solid #efe9dc;
  padding: 22px 10px;
  border-radius: 8px;
  font-family: "Playfair Display", serif;
  color: #4c6b57;
}
.brand-grid span img {
  width: 100%;
  height: 60px;
  object-fit: contain;
}
.contact-section {
  background: #1e7d40;
  color: white;
}
.contact-section p {
  color: #d5eadb;
}
.contact-points {
  display: grid;
  gap: 10px;
}
.contact-points span {
  background: rgba(255, 255, 255, 0.09);
  padding: 13px 16px;
  border-radius: 6px;
}
.quote-form {
  background: white;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}
.quote-form .section-heading h2 {
  color: #092e21;
}
.quote-form .section-heading p {
  color: #52625a;
}
.form-control,
.form-select {
  min-height: 48px;
  border-color: #dfe5df;
}
.btn-dark-green {
  background: var(--dark);
  color: white;
  padding: 13px;
}
.btn-dark-green:hover {
  background: #092e21;
  color: white;
}
@media (max-width: 991px) {
  .section-pad {
    padding: 50px 0;
  }
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .note-card {
    right: 10px;
  }
}
@media (max-width: 767px) {
  .trust-section .btn {
    padding: 5px 6px;
    font-size: 12px;
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .brand-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .stat {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }
  .note-card {
    position: relative;
    width: 100%;
    right: auto;
    bottom: -80px;
    margin: -30px auto 0;
  }
}
@media (max-width: 480px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
  .service-card img {
    height: 190px;
  }
}

/* Before and after img */
.certification-section {
  overflow: hidden;
}

/* .certification-section .section-heading {
  max-width: 850px;
  margin-inline: auto;
} */

.comparison-slider {
  --comparison-position: 50%;

  position: relative;
  width: 100%;
  max-width: 1100px;
  aspect-ratio: 16 / 7;
  margin-inline: auto;
  overflow: hidden;
  border-radius: 24px;
  background: #eef3eb;
  box-shadow: 0 20px 55px rgba(25, 61, 42, 0.14);
  isolation: isolate;
  cursor: ew-resize;
  user-select: none;
  touch-action: pan-y;
}

.comparison-image {
  position: absolute;
  inset: 0;
}

.comparison-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.comparison-image-before {
  z-index: 1;
}

.comparison-image-after {
  z-index: 2;
  width: var(--comparison-position);
  overflow: hidden;
}

.comparison-image-after img {
  width: 1100px;
  max-width: none;
}

.comparison-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--comparison-position);
  z-index: 5;
  width: 3px;
  background: #fff;
  box-shadow:
    0 0 0 1px rgba(24, 64, 43, 0.1),
    0 0 18px rgba(0, 0, 0, 0.25);
  transform: translateX(-50%);
  pointer-events: none;
}

.comparison-label {
  position: absolute;
  top: 24px;
  z-index: 7;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 86px;
  min-height: 38px;
  padding: 8px 15px;

  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;

  background: rgba(22, 72, 45, 0.92);
  color: #fff;

  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;

  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  pointer-events: none;
}

/* Left side of the moving divider */
.comparison-label-before {
  right: 15px;
}

/* Right side of the moving divider */
.comparison-label-after {
  left: 15px;
}

.comparison-handle {
  position: absolute;
  top: 50%;
  left: 50%;

  width: 54px;
  height: 54px;

  display: flex;
  align-items: center;
  justify-content: space-around;

  padding-inline: 12px;

  border: 3px solid #fff;
  border-radius: 50%;

  background: #1e5a3b;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);

  transform: translate(-50%, -50%);
}

.comparison-arrow {
  display: block;
  width: 0;
  height: 0;
}

.comparison-arrow-left {
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 8px solid #fff;
}

.comparison-arrow-right {
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid #fff;
}

.comparison-range {
  position: absolute;
  inset: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.comparison-slider {
  outline: 4px solid #92c7ae;
  outline-offset: 5px;
}

.comparison-slider:focus-within {
  outline: 4px solid rgba(18, 105, 61, 0.22);
  outline-offset: 5px;
}

.comparison-help {
  color: #66756b;
  font-size: 0.9rem;
}

@media (max-width: 767.98px) {
  .comparison-slider {
    aspect-ratio: 4 / 3;
    border-radius: 16px;
  }

  .comparison-label {
    top: 14px;
    min-width: 68px;
    min-height: 32px;
    padding: 7px 11px;
    font-size: 10px;
  }

  .comparison-label-before {
    right: 10px;
  }

  .comparison-label-after {
    left: 10px;
  }

  .comparison-handle {
    width: 46px;
    height: 46px;
    padding-inline: 10px;
  }
}

@media (max-width: 480px) {
  .comparison-label {
    top: 12px;
    min-width: 58px;
    min-height: 30px;
    padding: 6px 9px;
    font-size: 9px;
    letter-spacing: 0.05em;
  }

  .comparison-label-before {
    right: 7px;
  }

  .comparison-label-after {
    left: 7px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .comparison-slider,
  .comparison-divider,
  .comparison-image-after {
    transition: none;
  }
}

/* Updated four-slide hero */
.hero {
  padding-top: 74px;
}

.hero .carousel-item {
  position: relative;
  min-height: 620px;
}

.hero-slide-image {
  height: 620px;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(7, 40, 28, 0.9) 0%,
    rgba(7, 40, 28, 0.67) 46%,
    rgba(7, 40, 28, 0.16) 100%
  );
}

.hero-slide-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: #fff;
  pointer-events: none;
}

.hero-slide-content > * {
  pointer-events: auto;
}

.hero-slide-content h1,
.hero-slide-content h2 {
  max-width: 760px;
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 4.7rem);
  line-height: 1.02;
}

.hero-slide-content p {
  max-width: 680px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.12rem;
  line-height: 1.6;
}

.hero .carousel-indicators {
  z-index: 5;
  margin-bottom: 24px;
}

.hero .carousel-indicators [data-bs-target] {
  width: 38px;
  height: 4px;
  border: 0;
  border-radius: 999px;
}

/* Four requested brand logos */
.brand-grid {
  grid-template-columns: repeat(4, 1fr);
  max-width: 900px;
  margin-inline: auto;
}

@media (max-width: 991.98px) {
  .hero .carousel-item,
  .hero-slide-image {
    min-height: 560px;
    height: 560px;
  }

  .hero-slide-content {
    padding-inline: 52px;
  }

  .brand-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575.98px) {
  .hero {
    padding-top: 64px;
  }

  .hero .carousel-item,
  .hero-slide-image {
    min-height: 590px;
    height: 590px;
  }

  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(7, 40, 28, 0.48) 0%,
      rgba(7, 40, 28, 0.94) 64%,
      rgba(7, 40, 28, 0.98) 100%
    );
  }

  .hero-slide-content {
    justify-content: flex-end;
    padding: 40px 24px 72px;
  }

  .hero-slide-content h1,
  .hero-slide-content h2 {
    font-size: 2.25rem;
  }

  .hero-slide-content p {
    font-size: 0.98rem;
  }

  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    display: none;
  }

  .brand-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}





/* Expanded footer */
.site-footer {
  padding: 70px 0 0;
  background: #092e21;
  color: #fff;
}

.footer-panel {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
}

.footer-panel h3 {
  margin-bottom: 22px;
  font-family: "DM Sans", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
}

.footer-panel p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.footer-panel a {
  color: #fff;
  text-decoration: none;
}

.footer-panel a:hover {
  color: #aee1c2;
}

.footer-logo {
  width: 130px;
  max-width: 100%;
  border-radius: 8px;
}

.footer-map {
  overflow: hidden;
  min-height: 320px;
  border-radius: 16px;
  background: #fff;
}

.footer-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
}

.footer-bottom {
  margin-top: 45px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.56);
}




   .floating-contact-buttons {
      position: fixed;
      right: 18px;
      top: 50%;
      transform: translateY(-50%);
      z-index: 1050;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .floating-contact-btn {
      min-width: 132px;
      height: 48px;
      padding: 0 14px;
      border-radius: 999px;
      display: flex;
      align-items: center;
      gap: 9px;
      color: #fff;
      text-decoration: none;
      font-weight: 700;
      font-size: 14px;
      box-shadow: 0 8px 24px rgba(0,0,0,.18);
      transition: transform .2s ease, box-shadow .2s ease;
    }

    .floating-contact-btn:hover {
      color: #fff;
      transform: translateX(-4px);
      box-shadow: 0 10px 28px rgba(0,0,0,.24);
    }

    .floating-contact-btn svg {
      width: 23px;
      height: 23px;
      fill: currentColor;
      flex: 0 0 23px;
    }

    .call-btn { background: #0b6b3a; }
    .whatsapp-btn { background: #25D366; }

    @media (max-width: 767.98px) {
      .floating-contact-buttons {
        right: 10px;
        top: auto;
        bottom: 18px;
        transform: none;
        gap: 8px;
      }

      .floating-contact-btn {
        min-width: 0;
        width: 48px;
        height: 48px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
      }

      .floating-contact-btn span { display: none; }
      .floating-contact-btn:hover { transform: translateY(-2px); }
    }

    @media (max-width: 420px) {
      .floating-contact-buttons { right: 8px; bottom: 12px; }
      .floating-contact-btn { width: 44px; height: 44px; }
      .floating-contact-btn svg { width: 21px; height: 21px; flex-basis: 21px; }
    }