
    body { font-family: 'Poppins', sans-serif; color: #333; background-color: #faf7f2; }

   /* Navbar */
    .navbar { background-color: #f3f8f3 !important; }
    .navbar .nav-link { color: #2d5134 !important; margin-left: 1rem; font-weight: 500; }
    .navbar .btn-success { background-color: #3a7a42; border: none; font-weight: 600; }

 /* Hero Carousel - styles */
.hero-carousel { position: relative; }

.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
  height: 85vh;                     /* same height as you used */
  min-height: 420px;
}

.hero-carousel .carousel-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Ensure the video fits if used */
.hero-carousel .carousel-video {
  width: 100%;
  height: 85vh;
  object-fit: cover;
  display: block;
}

/* dark overlay across all slides */
.hero-carousel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
  pointer-events: none;
}

/* Centered text/buttons above overlay */
.hero-overlay-content {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
  color: #fff;
}

.hero-overlay-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  max-width: 900px;
  margin: 0;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}

.hero-overlay-content p {
  font-size: 1.15rem;
  margin: 1rem 0;
  max-width: 700px;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.5);
}

/* CTA fallback style (Bootstrap already styles .btn) */
.hero-overlay-content .btn {
  z-index: 3;
}

/* Hide default carousel captions */
.carousel-caption { display: none; }

/* Responsive tweaks */
@media (max-width: 768px) {
  .hero-overlay-content h1 { font-size: 1.9rem; }
  .hero-overlay-content p  { font-size: 1rem; }
}

/* Hero Carousel - image fit and z-index adjustments */
.hero-carousel { position: relative; overflow: hidden; }

/* ensure carousel occupies same height */
.hero-carousel .carousel-inner,
.hero-carousel .carousel-item { height: 85vh; min-height: 420px; }

/* use <img> slides for lazy-loading and performance */
.hero-carousel .hero-bg {
  width: 100%;
  height: 85vh;
  object-fit: cover;      /* fills area responsively */
  display: block;
}

/* If you still use background-image style slides, keep this to cover them */
.hero-carousel .carousel-item { background-size: cover; background-position: center; }

/* dark overlay sits above media but below content */
.hero-carousel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 2;        /* overlay layer */
  pointer-events: none;
}

/* Centered text/buttons above overlay */
.hero-overlay-content {
  position: absolute;
  z-index: 3;        /* above overlay and media */
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
  color: #fff;
}

/* make sure CTA is above everything else */
.hero-overlay-content .btn { z-index: 4; }

/* video sizing if used */
.hero-carousel .carousel-video {
  width: 100%;
  height: 85vh;
  object-fit: cover;
  display: block;
}

/* WhatsApp button stays above hero + any overlays */
.whatsapp-btn { z-index: 1060; } /* > 1050 so it sits above mobile-nav, etc. */

/* accessibility: hide native captions if not used */
.carousel-caption { display: none; }



    /* Sections */
    section { padding: 4rem 1rem; }
    .section-light { background-color: #fff; }
    .section-beige { background-color: #f9f5ef; }

    /* Problem Icons */
    .problem-icon { font-size: 2.5rem; margin-bottom: 1rem; }

    /* Steps */
    .step { padding: 1rem; }
    .step-icon {
      max-width: 300px;
      height: auto;
    /*object-fit: contain;*/
    margin-bottom: 1rem;
    }

    /* Benefits */
    .benefits img { border-radius: 12px; }
    .benefits ul { list-style: none; padding: 0; }
    .benefits li { margin-bottom: 0.8rem; font-size: 1.1rem; }



    /* Footer */
    footer { background: #222; color: #aaa; text-align: center; padding: 2rem; }

    /* WhatsApp Button */
    .whatsapp-btn {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #25D366;
      color: #fff;
      border-radius: 50%;
      width: 60px;
      height: 60px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 28px;
      box-shadow: 0 4px 6px rgba(0,0,0,0.2);
      z-index: 1000;
      transition: transform 0.3s ease;
      animation: pulse 2s infinite;
    }
    .whatsapp-btn:hover { transform: scale(1.1); }
    @keyframes pulse {
      0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
      70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
      100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
    }

    .problem-img {
    width: 250px;        /* adjust to your preferred size */
    height: 250px;
    object-fit: cover;   /* keeps aspect ratio without stretching */
    /*border-radius: 80%;   makes them circular */
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    }
    .problem-img:hover {
    transform: scale(1.05);
    }

    .problem-box {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .problem-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    }
    .problem-box h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-top: 1rem;
    line-height: 1.5;
    }
    .problem-box .highlight {
    color: #3a7a42;
    font-weight: 700;
    }

    .solution-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #3a7a42;
    margin-bottom: 1rem;
    }

    .solution-text {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    color: #444;
    }

    .solution-text .highlight {
    color: #3a7a42;
    font-weight: 600;
    }

    .problem-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #2d5134;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
    }

    .problem-heading::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #3a7a42; /* green accent underline */
    border-radius: 2px;
    }

    .step-box {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .step-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    }
    .step-box h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-top: 1rem;
    }
    .step-box p {
    font-size: 1rem;
    color: #555;
    }

    .section-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #2d5134;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
    }
    .section-heading::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #3a7a42; /* green accent underline */
    border-radius: 2px;
    }

    .section-subheading {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.5;
    }

    #benefits ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.5;
    }

    #benefits ul li i {
    flex-shrink: 0;
    font-size: 1.3rem;
    margin-right: 10px;
    margin-top: 4px; /* vertically align with text */
    }

    #benefits ul li strong {
    display: inline-block;
    min-width: 180px; /* forces the bold label part to align vertically */
    }


        /* Pricing */
    .price-card {
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    }
   
    .price-card a { background: #3a7a42; color: #fff; padding: 0.8rem 1.5rem; border-radius: 6px; text-decoration: none; font-weight: bold; display: inline-block; margin-top: 1rem; font-size: 1.1rem; }
    
    .price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.12);
    border-color: #3a7a42;
    }

    .price-card h3 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    }



    .price-card ul li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: #555;
    }

    .price-card.popular {
    border: 2px solid #3a7a42;
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    }

    .price-card h3 .badge {
    font-size: 0.8rem;
    vertical-align: middle;
    }

    .price-card p.fs-4 .text-muted {
        font-size: 1.2rem;
        color: #999 !important;
    }

    .price-card .savings {
    font-size: 1rem;
    color: #d9534f; /* red to show discount */
    font-weight: 600;
    margin-top: -0.5rem;
    margin-bottom: 0.3rem;
    }

    .price-card .per-month {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1rem;
    font-style: italic;
    }

.ribbon {
  position: absolute;
  top:20px;
  left: -40px;
  background: linear-gradient(135deg, #d4af37, #b8860b); /* premium gold gradient */
  color: #fff;
  padding: 4px 40px;
  transform: rotate(-45deg);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.25);
  z-index: 2;
  overflow: hidden;
}

/* ribbon folds (3D wrap effect) */
.ribbon::before,
.ribbon::after {
  content: "";
  position: absolute;
  top: 100%;
  border-top: 8px solid #8b6f2e; /* darker gold (shadow side) */
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
}

.ribbon::before {
  left: 0;
}
.ribbon::after {
  right: 0;
}

/* Shine effect overlay */
.ribbon::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  animation: shine 3s infinite;
}

/* Shine animation */
@keyframes shine {
  0% { left: -75%; }
  100% { left: 125%; }
}

.price-card {
  position: relative;
  overflow: hidden;
}


/* Testimonials */
.testimonial-box {
  background: #fff;
  border: 1px solid #eee;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}
.testimonial-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.testimonial-text {
  font-size: 1rem;
  font-style: italic;
  color: #444;
  line-height: 1.6;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.testimonial-img {
  width: 45px;
  height: 45px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #3a7a42;
}

.stars {
  color: #f5c518; /* gold star color */
  font-size: 1.2rem;
  letter-spacing: 2px;
  font-weight: bold;
}

/* Nav bar highlight */
.navbar .nav-link.active {
  color: #3a7a42 !important;
  font-weight: 600;
  border-bottom: 2px solid #3a7a42;
}

    /* floating Nav bar mobile  */
    .mobile-nav {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: #fff;
      border-top: 1px solid #ddd;
      display: flex;
      justify-content: space-around;
      align-items: center;
      padding: 0.5rem 0;
      z-index: 1050;
      box-shadow: 0 -2px 6px rgba(0,0,0,0.1);
    }
    
    .mobile-nav a {
      flex: 1;
      text-align: center;
      color: #555;
      font-size: 0.8rem;
      text-decoration: none;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    
    .mobile-nav a i {
      font-size: 1.2rem;
      margin-bottom: 2px;
    }
    
    /* Highlighted floating Enroll button */
    .mobile-nav .enroll-btn {
      position: relative;
      top: -20px;
      background: #3a7a42;
      color: #fff !important;
      border-radius: 50px;
      padding: 0.6rem 1.2rem;
      font-weight: 600;
      flex: unset; /* don’t stretch like others */
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
      font-size: 0.9rem;
    }
    
    .mobile-nav .enroll-btn i {
      margin-bottom: 0; /* keep icon inline with text */
      margin-right: 5px;
    }
    
    .mobile-nav .enroll-btn span {
      display: inline; /* show text inline */
    }

.accordion-button {
  font-weight: 600;
  font-size: 1.05rem;
  color: #2d5134;
}

.accordion-button i {
  font-size: 1.2rem;
}

.faq-answer {
  background: #eaf7ea;        /* light green background */
  border-left: 4px solid #3a7a42; /* green border */
  padding: 1rem;
  font-size: 1rem;
  color: #2d5134;             /* green text */
  line-height: 1.6;
  border-radius: 6px;
}

#theteam .card-body {
  padding: 1rem;
}
#theteam .card-title {
  font-size: 1rem;
}
#theteam .card-text {
  font-size: 0.9rem;
  line-height: 1.4;
}
#theteam blockquote {
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

.renew-btn {
  background-color: #3a7a42;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.renew-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

#renewModal .modal-content {
  border-radius: 12px;
}
#renewModal .modal-header {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
#renew_plan option {
  padding: 0.5rem;
}
#priceSummary small { font-size: 0.95rem; }
