 :root {
      --green-deep:   #1a4d2e;
      --green-mid:    #2d7a4f;
      --green-fresh:  #4caf7d;
      --green-light:  #d4edda;
      --cream:        #fdf8f0;
      --warm-white:   #ffffff;
      --amber:        #e8a020;
      --amber-light:  #fef3dc;
      --text-dark:    #1c2b1e;
      --text-mid:     #3d5a42;
      --text-soft:    #6b8c72;
      --border:       #c8e0cc;
    }

    * { box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--cream);
      color: var(--text-dark);
      overflow-x: hidden;
    }

    h1, h2, h3, h4, h5 {
      font-family: 'Playfair Display', serif;
    }

    .top-section {padding: 10px 0;}

    /* ── NAVBAR ──────────────────────────────────── */
    .navbar {
      background: rgba(255,255,255,0.96);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      padding: 14px 0;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 16px rgba(26,77,46,0.06);
    }

    .navbar-brand {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      font-size: 1.4rem;
      color: var(--green-deep) !important;
      letter-spacing: -0.3px;
    }

    .navbar-brand span {
      color: var(--green-fresh);
    }

    .top-section img{display: block;}
    .text-end{float: right;}
    .nav-link {
      color: var(--text-mid) !important;
      font-weight: 500;
      font-size: 0.9rem;
      padding: 6px 14px !important;
      transition: color 0.2s;
    }

    .nav-link:hover { color: var(--green-deep) !important; }

    .btn-nav-cta {
      background: var(--green-deep);
      color: #fff !important;
      border-radius: 50px;
      padding: 8px 22px !important;
      font-weight: 600;
      font-size: 0.85rem;
      transition: background 0.2s, transform 0.15s;
    }

    .btn-nav-cta:hover {
      background: var(--green-mid);
      transform: translateY(-1px);
    }

    /* ── HERO ─────────────────────────────────────── */
    .hero {
      background: linear-gradient(135deg, #1a4d2e 0%, #2d7a4f 55%, #4caf7d 100%);
      min-height: 88vh;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 600px 400px at 80% 30%, rgba(255,255,255,0.07) 0%, transparent 70%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='10'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      pointer-events: none;
    }

    .hero-leaf {
      position: absolute;
      opacity: 0.08;
      pointer-events: none;
    }

    .hero-leaf-1 { top: -60px; right: -40px; width: 380px; transform: rotate(25deg); }
    .hero-leaf-2 { bottom: -80px; left: -60px; width: 340px; transform: rotate(-15deg); }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: rgba(255,255,255,0.15);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255,255,255,0.25);
      border-radius: 50px;
      padding: 6px 16px;
      font-size: 1.1rem;
      font-weight: 600;
      color: #fff;
      letter-spacing: 0.5px;
      margin-bottom: 24px;
    }

    .hero h1 {
      font-size: clamp(2.4rem, 5vw, 4rem);
      color: #fff;
      font-weight: 900;
      line-height: 1.12;
      margin-bottom: 14px;
    }


    .hero h1 em {
      font-style: normal;
      color: #a8efc4;
    }

    .hero h5{font-size:16px; color: #fff;
      font-weight: 600; margin-bottom: 20px;}

    .hero-sub {
      font-size: 1rem;
      color: rgba(255,255,255,0.82);
      line-height: 22px;
      margin-bottom: 28px;
    }

    .hero-checks {
      list-style: none;
      padding: 0;
      margin-bottom: 36px;
      display: flex;
      flex-wrap: wrap;
      gap: 10px 24px;
    }

    .hero-checks li {
      color: rgba(255,255,255,0.9);
      font-size: 0.9rem;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 7px;
    }

    .hero-checks li::before {
      content: '✓';
      background: rgba(255,255,255,0.2);
      color: #a8efc4;
      width: 22px; height: 22px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.75rem;
      font-weight: 700;
      flex-shrink: 0;
    }

    .btn-hero-primary {
      background: #fff;
      color: var(--green-deep);
      border: none;
      border-radius: 50px;
      padding: 16px 40px;
      font-weight: 700;
      font-size: 1.05rem;
      font-family: 'DM Sans', sans-serif;
      transition: transform 0.2s, box-shadow 0.2s;
      box-shadow: 0 8px 32px rgba(0,0,0,0.18);
      text-decoration: none;
      display: inline-block;
    }

    .btn-hero-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 14px 40px rgba(0,0,0,0.22);
      color: var(--green-deep);
    }

    .btn-hero-secondary {
      background: transparent;
      color: #fff;
      border: 2px solid rgba(255,255,255,0.45);
      border-radius: 50px;
      padding: 14px 32px;
      font-weight: 600;
      font-size: 1rem;
      font-family: 'DM Sans', sans-serif;
      transition: all 0.2s;
      text-decoration: none;
      display: inline-block;
    }

    .btn-hero-secondary:hover {
      background: rgba(255,255,255,0.1);
      color: #fff;
      border-color: rgba(255,255,255,0.7);
    }

    .hero-price-pill {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--amber);
      color: #fff;
      border-radius: 50px;
      padding: 8px 20px;
      font-weight: 700;
      font-size: 1.1rem;
      margin-bottom: 20px;
    }

    /* Hero image */
    .hero-img-wrap {
      position: relative;
    }

    .hero-img-wrap img {
      width: 100%;
      max-width: 480px;
      display: block;
      margin: 0 auto;
    }

    .hero-cert-badge {
      position: absolute;
      bottom: -18px;
      left: -18px;
      background: #fff;
      border-radius: 16px;
      padding: 14px 18px;
      box-shadow: 0 8px 30px rgba(0,0,0,0.15);
      display: flex;
      align-items: center;
      gap: 10px;
      animation: float 4s ease-in-out infinite;
    }

    .hero-cert-badge .cert-icon {
      background: var(--green-light);
      width: 40px; height: 40px;
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.3rem;
    }


    .hero-cert-badge .cert-text strong {
      display: block;
      font-size: 1.5rem;
      color: var(--text-dark);
      font-weight: 700;
    }

    .hero-cert-badge .cert-text span {
      font-size: 0.72rem;
      color: #000;
    }

    .cert-text p{margin-bottom: 0px;line-height: 15px;}

    .hero-students-badge {
      position: absolute;
      top: 20px;
      right: -18px;
      background: var(--green-deep);
      color: #fff;
      border-radius: 16px;
      padding: 12px 16px;
      box-shadow: 0 8px 28px rgba(0,0,0,0.2);
      text-align: center;
      animation: float 4s 1s ease-in-out infinite;
    }

    .hero-students-badge strong {
      display: block;
      font-size: 1.3rem;
      font-weight: 700;
    }

    .hero-students-badge span {
      font-size: 0.72rem;
      opacity: 0.8;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-8px); }
    }

    /* ── SECTION SPACING ──────────────────────────── */
    section { padding: 30px 0; }
    .section-label {
      display: inline-block;
      font-size: 1.2rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #ff3838;
      margin-bottom: 10px;
    }

    .section-title {
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      color: var(--text-dark);
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 16px;
    }

    .section-title span { color: var(--green-mid); }

    .section-sub {
      font-size: 1.05rem;
      color: var(--text-soft);
      max-width: 600px;
      line-height: 1.75;
    }

    .section-sub2 {
      font-size: 1.05rem;
      color: var(--text-soft);
      max-width: 800px;
      line-height: 1.75;
    }

    /* ── WHY SECTION ──────────────────────────────── */
    .why-section { background: var(--warm-white); padding: 60px 0; }

    .problem-card {
      background: var(--cream);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 22px 24px;
      display: flex;
      align-items: flex-start;
      gap: 14px;
      transition: box-shadow 0.2s, transform 0.2s;
      height: 100%;
    }

    .problem-card:hover {
      box-shadow: 0 8px 28px rgba(26,77,46,0.1);
      transform: translateY(-3px);
    }

    .problem-icon {
      font-size: 1.6rem;
      flex-shrink: 0;
      width: 46px; height: 46px;
      display: flex; align-items: center; justify-content: center;
      background: var(--amber-light);
      border-radius: 12px;
    }

    /* ── COURSE INTRO ─────────────────────────────── */
    .course-intro { background: var(--cream); padding: 80px 0;}

    .audience-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--green-light);
      color: var(--green-deep);
      border-radius: 50px;
      padding: 7px 16px;
      font-size: 0.85rem;
      font-weight: 600;
      margin: 4px;
    }

    /* ── HIGHLIGHTS ───────────────────────────────── */
    .highlights-section { background: var(--green-deep); padding: 80px 0;}

    .highlight-card {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 20px;
      padding: 32px 24px;
      text-align: center;
      transition: background 0.25s, transform 0.25s;
      height: 100%;
    }

    .highlight-card:hover {
      background: rgba(255,255,255,0.14);
      transform: translateY(-4px);
    }

    .highlight-num {
      font-family: 'Playfair Display', serif;
      font-size: 3rem;
      font-weight: 900;
      color: #a8efc4;
      line-height: 1;
      margin-bottom: 8px;
    }

    .highlight-label {
      color: rgba(255,255,255,0.9);
      font-size: 0.95rem;
      font-weight: 500;
    }

    /* ── CURRICULUM ───────────────────────────────── */
    .curriculum-section { background: var(--warm-white); }

    .module-card {
      background: var(--cream);
      border: 1px solid var(--border);
      border-left: 4px solid var(--green-mid);
      border-radius: 12px;
      padding: 20px 22px;
      margin-bottom: 14px;
      cursor: pointer;
      transition: box-shadow 0.2s, transform 0.2s;
    }

    .module-card:hover {
      box-shadow: 0 6px 24px rgba(26,77,46,0.1);
      transform: translateX(4px);
    }

    .module-num {
      background: var(--green-deep);
      color: #fff;
      border-radius: 8px;
      font-size: 0.72rem;
      font-weight: 700;
      padding: 3px 9px;
      letter-spacing: 0.5px;
    }

    .module-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.05rem;
      color: var(--text-dark);
      font-weight: 600;
      margin: 8px 0 6px;
    }

    .module-topics {
      font-size: 0.82rem;
      color: var(--text-soft);
      line-height: 1.6;
    }

    /* ── HOW IT WORKS ─────────────────────────────── */
    .how-section { background: var(--cream); }

    .step-card {
      text-align: center;
      padding: 20px;
      position: relative;
    }

    .step-num {
      width: 60px; height: 60px;
      background: var(--green-deep);
      color: #fff;
      border-radius: 50%;
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
      font-weight: 700;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 16px;
      position: relative;
      z-index: 1;
      box-shadow: 0 6px 20px rgba(26,77,46,0.25);
    }

    .step-connector {
      position: absolute;
      top: 50px;
      left: calc(50% + 30px);
      right: calc(-50% + 30px);
      height: 2px;
      background: linear-gradient(90deg, var(--green-mid), var(--green-light));
      z-index: 0;
    }

    .step-title {
      font-weight: 700;
      font-size: 1rem;
      color: var(--text-dark);
      margin-bottom: 8px;
    }

    .step-desc {
      font-size: 0.87rem;
      color: var(--text-soft);
      line-height: 1.6;
    }

    /* ── INSTRUCTOR ───────────────────────────────── */
    .instructor-section { background: var(--warm-white); padding: 60px 0;}

    .instructor-card {
      background: var(--cream);
      border-radius: 24px;
      overflow: hidden;
      border: 1px solid var(--border);
      box-shadow: 0 8px 40px rgba(26,77,46,0.07);
    }

    .instructor-img-col {
      background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 280px;
    }

    .instructor-avatar {
      width: 160px; height: 160px;
      border-radius: 50%;
      object-fit: cover;
      border: 5px solid rgba(255,255,255,0.3);
      box-shadow: 0 10px 35px rgba(0,0,0,0.25);
    }

    .instructor-initials {
      width: 160px; height: 160px;
      border-radius: 50%;
      background: rgba(255,255,255,0.15);
      border: 5px solid rgba(255,255,255,0.3);
      display: flex; align-items: center; justify-content: center;
      font-family: 'Playfair Display', serif;
      font-size: 3rem;
      color: #fff;
      font-weight: 700;
    }

    .instructor-body { padding: 36px 32px; }

    .instructor-role {
      display: inline-block;
      background: var(--green-light);
      color: var(--green-deep);
      border-radius: 50px;
      padding: 5px 14px;
      font-size: 0.8rem;
      font-weight: 700;
      margin-bottom: 12px;
    }

    /* ── CERTIFICATION ────────────────────────────── */
    .cert-section {
      background: linear-gradient(135deg, var(--green-light) 0%, var(--cream) 100%);
      padding: 60px;
    }

    .cert-card {
      background: #fff;
      border-radius: 20px;
      padding: 36px 32px;
      text-align: center;
      border: 1px solid var(--border);
      box-shadow: 0 6px 28px rgba(26,77,46,0.08);
      height: 100%;
    }

    .cert-seal {
      width: 80px; height: 80px;
      background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 18px;
      font-size: 2rem;
      box-shadow: 0 6px 20px rgba(26,77,46,0.2);
    }

    /* ── TESTIMONIALS ─────────────────────────────── */
    .testimonials-section { background: var(--warm-white); padding: 60px 0; }

    .testimonial-card {
      background: var(--cream);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 28px 26px;
      height: 100%;
      position: relative;
      transition: box-shadow 0.2s, transform 0.2s;
    }

    .testimonial-card:hover {
      box-shadow: 0 10px 35px rgba(26,77,46,0.1);
      transform: translateY(-4px);
    }

    .quote-mark {
      position: absolute;
      top: 20px; right: 22px;
      font-family: 'Playfair Display', serif;
      font-size: 4rem;
      color: var(--green-light);
      line-height: 1;
    }

    .stars {
      color: var(--amber);
      font-size: 0.85rem;
      margin-bottom: 12px;
    }

    .testimonial-text {
      font-size: 0.92rem;
      line-height: 1.75;
      color: var(--text-mid);
      margin-bottom: 18px;
    }

    .testimonial-author strong {
      display: block;
      font-weight: 700;
      font-size: 0.88rem;
      color: var(--text-dark);
    }

    .testimonial-author span {
      font-size: 0.78rem;
      color: var(--text-soft);
    }

    .author-avatar {
      width: 42px; height: 42px;
      border-radius: 50%;
      background: var(--green-light);
      display: flex; align-items: center; justify-content: center;
      font-weight: 700;
      color: var(--green-deep);
      font-size: 0.9rem;
      flex-shrink: 0;
    }

    /* ── FAQ ──────────────────────────────────────── */
    .faq-section { background: var(--cream); padding: 60px 0; }

    .accordion-button {
      font-family: 'DM Sans', sans-serif;
      font-weight: 600;
      font-size: 0.97rem;
      color: var(--text-dark);
      background: #fff;
      border-radius: 12px !important;
    }

    .accordion-button:not(.collapsed) {
      color: var(--green-deep);
      background: var(--green-light);
      box-shadow: none;
    }

    .accordion-button::after {
      filter: hue-rotate(90deg);
    }

    .accordion-item {
      border: 1px solid var(--border) !important;
      border-radius: 12px !important;
      margin-bottom: 10px;
      overflow: hidden;
    }

    .accordion-body {
      font-size: 0.92rem;
      color: var(--text-mid);
      line-height: 1.7;
      background: #fff;
    }

    /* ── PRICING / CTA ────────────────────────────── */
    .pricing-section {
      background: linear-gradient(135deg, var(--green-deep) 0%, #1e5c35 100%);
      position: relative;
      overflow: hidden;
      padding: 60px 0 150px;
    }

    .pricing-section::before {
      content: '';
      position: absolute;
      top: -100px; right: -100px;
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(76,175,125,0.15) 0%, transparent 70%);
      pointer-events: none;
    }

    .pricing-card {
      background: rgba(255,255,255,0.97);
      border-radius: 28px;
      padding: 44px 40px;
      text-align: center;
      box-shadow: 0 24px 70px rgba(0,0,0,0.25);
      max-width: 520px;
      margin: 0 auto;
    }

    .pricing-card .price {
      font-family: 'Playfair Display', serif;
      font-size: 3.2rem;
      font-weight: 900;
      color: var(--green-deep);
      line-height: 1;
      margin-bottom: 4px;
    }

    .pricing-card .price-label {
      font-size: 0.85rem;
      color: var(--text-soft);
      margin-bottom: 24px;
    }

    .pricing-feature {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 0;
      border-bottom: 1px solid var(--border);
      font-size: 0.92rem;
      color: var(--text-mid);
    }

    .pricing-feature:last-of-type { border-bottom: none; }

    .pricing-feature i { color: var(--green-fresh); font-size: 1.1rem; }

    .btn-cta-main {
      background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
      color: #fff;
      border: none;
      border-radius: 50px;
      padding: 18px 48px;
      font-weight: 700;
      font-size: 1.1rem;
      font-family: 'DM Sans', sans-serif;
      transition: transform 0.2s, box-shadow 0.2s;
      box-shadow: 0 8px 28px rgba(26,77,46,0.3);
      text-decoration: none;
      display: inline-block;
      width: 100%;
      margin-top: 20px;
    }

    .btn-cta-main:hover {
      transform: translateY(-3px);
      box-shadow: 0 14px 40px rgba(26,77,46,0.4);
      color: #fff;
    }

    /* ── FOOTER ───────────────────────────────────── */
    footer {
      background: var(--text-dark);
      color: rgba(255,255,255,0.65);
      padding: 50px 0 28px;
    }

    footer .footer-brand {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
      font-weight: 700;
      color: #fff;
    }

    footer .footer-brand span { color: var(--green-fresh); }

    footer p { font-size: 0.88rem; line-height: 1.75; }

    .footer-divider {
      border-top: 1px solid rgba(255,255,255,0.1);
      margin: 30px 0 20px;
    }

    /* ── STICKY CTA BAR ───────────────────────────── */
    .sticky-cta {
      position: fixed;
      bottom: 0; left: 0; right: 0;
      background: var(--green-deep);
      padding: 12px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      z-index: 999;
      box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
      transform: translateY(100%);
      transition: transform 0.35s ease;
    }

    .sticky-cta.visible { transform: translateY(0); }

    .sticky-cta-text {
      color: #fff;
      font-weight: 600;
      font-size: 0.92rem;
    }

    .sticky-cta-text span {
      color: var(--amber);
      font-weight: 700;
    }

    .btn-sticky {
      background: #fff;
      color: var(--green-deep);
      border: none;
      border-radius: 50px;
      padding: 10px 28px;
      font-weight: 700;
      font-size: 0.88rem;
      font-family: 'DM Sans', sans-serif;
      white-space: nowrap;
      cursor: pointer;
      text-decoration: none;
      transition: background 0.2s;
    }

    .btn-sticky:hover { background: var(--green-light); color: var(--green-deep); }

    /* ── ANIMATIONS ───────────────────────────────── */
    .fade-in {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ── RESPONSIVE ───────────────────────────────── */
    @media (max-width: 768px) {
      .hero { min-height: auto; padding: 60px 0 50px; }
      .hero-img-wrap { margin-top: 40px; }
      .hero-cert-badge { bottom: -10px; left: 10px; }
      .hero-students-badge { top: 10px; right: 10px; }
      .step-connector { display: none; }
      .pricing-card { padding: 30px 24px; }
      section { padding: 56px 0; }
      .top-section img{margin: 0 auto;}
      .top-section .text-end{float: none; margin-top: 15px;}
    }

    .module-topics ul{padding-left: 1.2rem;}

    .personinfo p{margin-bottom: 0px; font-size: 12px;}
    .personinfo h5{font-weight: 600;}