/* ─── Base ─────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; }

    body {
      font-family: 'Inter', sans-serif;
      background: #fff;
      color: #0f2a5e;
      overflow-x: hidden;
    }

    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: #f0f6ff; }
    ::-webkit-scrollbar-thumb { background: #93c5fd; border-radius: 3px; }
    ::-webkit-scrollbar-thumb:hover { background: #3b82f6; }

    /* ─── Animations ───────────────────────────── */
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(28px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes float {
      0%,100% { transform: translateY(0); }
      50%      { transform: translateY(-14px); }
    }
    @keyframes floatSlow {
      0%,100% { transform: translateY(0) rotate(0deg); }
      50%      { transform: translateY(-20px) rotate(5deg); }
    }
    @keyframes spinSlow {
      from { transform: rotate(0deg); }
      to   { transform: rotate(360deg); }
    }
    @keyframes bounceDot {
      0%,80%,100% { transform: scale(0.4); opacity: 0.5; }
      40%         { transform: scale(1);   opacity: 1; }
    }
    @keyframes shimmer {
      0%   { background-position: -200% center; }
      100% { background-position:  200% center; }
    }
    @keyframes glowPulse {
      0%,100% { box-shadow: 0 0 18px rgba(59,130,246,0.3); }
      50%      { box-shadow: 0 0 36px rgba(59,130,246,0.65); }
    }

    .reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s cubic-bezier(.22,.61,.36,1), transform .65s cubic-bezier(.22,.61,.36,1); }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: .08s; }
    .reveal-delay-2 { transition-delay: .16s; }
    .reveal-delay-3 { transition-delay: .24s; }
    .reveal-delay-4 { transition-delay: .32s; }

    /* ─── Navbar ───────────────────────────────── */
    .navbar {
      background: rgba(255,255,255,.92);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid #eff6ff;
      transition: box-shadow .3s, background .3s;
    }
    .navbar.scrolled {
      background: rgba(255,255,255,.98);
      box-shadow: 0 4px 20px rgba(37,99,235,.1);
    }
    .navbar-brand .brand-icon {
      width: 36px; height: 36px;
      background: linear-gradient(135deg, #2563eb, #3b82f6);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      color: #fff; font-weight: 900; font-size: 14px;
      box-shadow: 0 4px 12px rgba(37,99,235,.35);
      transition: transform .3s, box-shadow .3s;
    }
    .navbar-brand:hover .brand-icon {
      transform: scale(1.08);
      box-shadow: 0 6px 18px rgba(37,99,235,.5);
    }
    .nav-link-custom {
      color: #1e40af !important;
      font-weight: 600;
      font-size: .9rem;
      position: relative;
      padding-bottom: 2px;
      transition: color .2s;
    }
    .nav-link-custom::after {
      content: '';
      position: absolute;
      left: 0; right: 0; bottom: -2px;
      height: 2px; background: #2563eb;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .25s ease;
    }
    .nav-link-custom:hover::after { transform: scaleX(1); }
    .nav-link-custom:hover { color: #2563eb !important; }
    .btn-enroll {
      background: #2563eb;
      color: #fff !important;
      font-weight: 700;
      font-size: .875rem;
      padding: 8px 20px;
      border-radius: 10px;
      transition: background .25s, transform .25s, box-shadow .25s;
    }
    .btn-enroll:hover {
      background: #1d4ed8;
      transform: scale(1.05);
      box-shadow: 0 6px 20px rgba(37,99,235,.4);
    }

    /* ─── Hero ─────────────────────────────────── */
    .hero-section {
      background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #1d4ed8 100%);
      min-height: 100vh;
      position: relative;
      display: flex;
      align-items: center;
      overflow: hidden;
    }
    .hero-orb-1 {
      position: absolute; top: 10%; left: 6%;
      width: 320px; height: 320px;
      background: rgba(59,130,246,.18);
      border-radius: 50%;
      filter: blur(60px);
      animation: float 5s ease-in-out infinite;
    }
    .hero-orb-2 {
      position: absolute; bottom: 10%; right: 6%;
      width: 380px; height: 380px;
      background: rgba(99,102,241,.18);
      border-radius: 50%;
      filter: blur(70px);
      animation: floatSlow 7s ease-in-out infinite;
    }
    .hero-ring-1 {
      position: absolute; top: 40px; right: 40px;
      width: 120px; height: 120px;
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 50%;
      animation: spinSlow 22s linear infinite;
    }
    .hero-ring-2 {
      position: absolute; top: 60px; right: 60px;
      width: 76px; height: 76px;
      border: 1px solid rgba(255,255,255,.05);
      border-radius: 50%;
      animation: spinSlow 14s linear infinite reverse;
    }
    .hero-dots {
      position: absolute; inset: 0;
      background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
      background-size: 40px 40px;
    }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(255,255,255,.1);
      border: 1px solid rgba(255,255,255,.2);
      color: #bfdbfe;
      border-radius: 999px;
      padding: 8px 20px;
      font-size: .875rem; font-weight: 600;
      backdrop-filter: blur(8px);
      animation: fadeInUp .5s ease both;
    }
    .bounce-dot {
      width: 7px; height: 7px;
      border-radius: 50%;
      background: #4ade80;
      display: inline-block;
      animation: bounceDot .9s ease-in-out infinite;
    }
    .bounce-dot:nth-child(2) { animation-delay: .15s; }
    .bounce-dot:nth-child(3) { animation-delay: .3s; }
    .hero-title {
      font-size: clamp(2.5rem, 6vw, 4.5rem);
      font-weight: 900;
      line-height: 1.08;
      letter-spacing: -.02em;
      animation: fadeInUp .65s .1s ease both;
    }
    .hero-highlight {
      background: linear-gradient(90deg, #bfdbfe, #7dd3fc, #93c5fd);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      position: relative;
    }
    .hero-subtitle {
      color: rgba(191,219,254,.9);
      font-size: 1.1rem;
      line-height: 1.7;
      animation: fadeInUp .65s .2s ease both;
    }
    .btn-shimmer {
      background: linear-gradient(90deg, #fff 0%, #fff 40%, rgba(255,255,255,.55) 50%, #fff 60%, #fff 100%);
      background-size: 200% auto;
      color: #1d4ed8;
      font-weight: 900;
      padding: 14px 36px;
      border-radius: 14px;
      font-size: 1rem;
      border: none;
      box-shadow: 0 8px 28px rgba(0,0,0,.25);
      transition: transform .3s, box-shadow .3s;
      text-decoration: none;
      display: inline-block;
    }
    .btn-shimmer:hover {
      animation: shimmer 1s linear;
      transform: translateY(-3px);
      box-shadow: 0 14px 36px rgba(0,0,0,.35);
      color: #1d4ed8;
    }
    .btn-outline-hero {
      border: 2px solid rgba(255,255,255,.3);
      color: #fff;
      font-weight: 700;
      padding: 14px 36px;
      border-radius: 14px;
      font-size: 1rem;
      background: transparent;
      text-decoration: none;
      display: inline-block;
      transition: background .3s, border-color .3s, transform .3s;
      backdrop-filter: blur(4px);
    }
    .btn-outline-hero:hover {
      background: rgba(255,255,255,.15);
      border-color: rgba(255,255,255,.5);
      transform: translateY(-3px);
      color: #fff;
    }
    .stat-pill {
      background: rgba(255,255,255,.1);
      border: 1px solid rgba(255,255,255,.2);
      border-radius: 16px;
      padding: 20px 12px;
      text-align: center;
      backdrop-filter: blur(8px);
      transition: transform .3s, background .3s;
      cursor: default;
    }
    .stat-pill:hover {
      transform: translateY(-5px);
      background: rgba(255,255,255,.18);
    }
    .stat-num { font-size: 2.2rem; font-weight: 900; color: #fff; }
    .stat-label { font-size: .72rem; color: #bfdbfe; font-weight: 600; letter-spacing: .06em; margin-top: 4px; }

    /* Wave divider */
    .wave-divider { margin-bottom: -2px; line-height: 0; }

    /* ─── Section Heading ──────────────────────── */
    .section-eyebrow {
      font-size: .72rem; font-weight: 900;
      letter-spacing: .2em; text-transform: uppercase;
      color: #3b82f6; display: block; margin-bottom: .5rem;
    }
    .section-title {
      font-size: clamp(1.75rem, 4vw, 2.75rem);
      font-weight: 900;
      color: #0f172a;
      line-height: 1.15;
    }
    .section-subtitle { color: #64748b; font-size: .95rem; margin-top: .5rem; }

    /* ─── Mentor ───────────────────────────────── */
    .mentor-avatar {
      width: 300px; height: 307px;
      background: linear-gradient(135deg, #1d4ed8, #2563eb, #38bdf8);
      border-radius: 24px;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 16px 48px rgba(37,99,235,.35);
      cursor: pointer;
      transition: transform .4s ease, box-shadow .4s ease;
      position: relative;
    }
    .mentor-avatar:hover {
      transform: scale(1.04) rotate(2deg);
      box-shadow: 0 0 0 6px rgba(59,130,246,.22), 0 20px 56px rgba(37,99,235,.38);
    }
    .mentor-initials { font-size: 3.5rem; font-weight: 900; color: #fff; letter-spacing: -.04em; }
    .mentor-badge-label { font-size: .6rem; color: #bfdbfe; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; margin-top: 4px; }
    .mentor-badge {
      position: absolute; bottom: -12px; right: -12px;
      background: #fff; border: 2px solid #dbeafe;
      border-radius: 14px; padding: 8px 12px;
      box-shadow: 0 4px 16px rgba(37,99,235,.15);
    }
    .tag-pill {
      background: #eff6ff; border: 1px solid #bfdbfe;
      color: #1d4ed8; font-size: .85rem; font-weight: 700;
      padding: 7px 18px; border-radius: 999px;
      display: inline-block;
      transition: transform .25s, background .25s, border-color .25s;
      cursor: default;
    }
    .tag-pill:hover {
      transform: translateY(-2px);
      background: #dbeafe; border-color: #3b82f6;
    }

    /* ─── Why Different ────────────────────────── */
    .problem-card {
      background: #fff; border: 2px solid #fee2e2;
      border-radius: 24px; padding: 2rem;
      transition: box-shadow .35s, transform .35s;
    }
    .problem-card:hover {
      box-shadow: 0 8px 32px rgba(239,68,68,.1);
      transform: translateY(-4px);
    }
    .solution-card {
      background: linear-gradient(135deg, #1d4ed8, #2563eb, #3b82f6);
      border-radius: 24px; padding: 2rem;
      color: #fff;
      box-shadow: 0 12px 40px rgba(37,99,235,.3);
      transition: box-shadow .35s, transform .35s;
    }
    .solution-card:hover {
      box-shadow: 0 20px 56px rgba(37,99,235,.45);
      transform: translateY(-4px);
    }
    .check-icon {
      width: 22px; height: 22px; border-radius: 50%;
      background: rgba(74,222,128,.25); border: 1px solid rgba(74,222,128,.4);
      color: #86efac; font-size: .75rem;
      display: inline-flex; align-items: center; justify-content: center;
      flex-shrink: 0; font-weight: 900; margin-top: 2px;
    }
    .cross-icon {
      width: 22px; height: 22px; border-radius: 50%;
      background: #fee2e2; border: 1px solid #fca5a5;
      color: #ef4444; font-size: .7rem;
      display: inline-flex; align-items: center; justify-content: center;
      flex-shrink: 0; font-weight: 900; margin-top: 2px;
    }

    /* ─── Module Cards ─────────────────────────── */
    .module-card {
      background: #fff; border: 1px solid #e2e8f0;
      border-radius: 16px; padding: 18px 20px;
      display: flex; align-items: center; gap: 16px;
      box-shadow: 0 1px 4px rgba(0,0,0,.05);
      position: relative; overflow: hidden;
      cursor: default;
      transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    }
    .module-card::before {
      content: '';
      position: absolute; left: 0; top: 0; bottom: 0;
      width: 3px;
      background: linear-gradient(180deg, #2563eb, #60a5fa);
      transform: scaleY(0); transform-origin: bottom;
      transition: transform .3s ease;
    }
    .module-card:hover::before { transform: scaleY(1); }
    .module-card:hover {
      transform: translateX(6px);
      box-shadow: 0 6px 24px rgba(37,99,235,.14);
      border-color: rgba(37,99,235,.3);
    }
    .module-icon-box {
      width: 52px; height: 52px; flex-shrink: 0;
      border-radius: 14px;
      background: linear-gradient(135deg, #2563eb, #3b82f6);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.3rem;
      box-shadow: 0 4px 14px rgba(37,99,235,.3);
      transition: transform .3s, box-shadow .3s;
    }
    .module-card:hover .module-icon-box {
      transform: scale(1.12);
      box-shadow: 0 6px 20px rgba(37,99,235,.45);
    }
    .module-num { color: #60a5fa; font-weight: 900; font-size: .72rem; }
    .module-title { font-weight: 700; color: #1e293b; font-size: .95rem; transition: color .25s; }
    .module-card:hover .module-title { color: #2563eb; }
    .module-desc { color: #64748b; font-size: .82rem; margin: 0; }
    .module-arrow {
      width: 28px; height: 28px; flex-shrink: 0;
      border-radius: 50%; border: 1px solid #e2e8f0;
      display: flex; align-items: center; justify-content: center;
      color: #94a3b8; font-size: .8rem;
      transition: border-color .3s, color .3s, background .3s;
    }
    .module-card:hover .module-arrow {
      border-color: #3b82f6; color: #2563eb; background: #eff6ff;
    }

    /* ─── USP ──────────────────────────────────── */
    .usp-section {
      background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 60%, #1e40af 100%);
      position: relative; overflow: hidden;
    }
    .usp-dots {
      position: absolute; inset: 0;
      background-image: radial-gradient(circle, rgba(255,255,255,.03) 1px, transparent 1px);
      background-size: 32px 32px;
    }
    .usp-card {
      background: rgba(255,255,255,.1);
      border: 1px solid rgba(255,255,255,.15);
      border-radius: 24px; padding: 28px;
      backdrop-filter: blur(6px);
      cursor: default;
      transition: background .35s, transform .35s, box-shadow .35s;
    }
    .usp-card:hover {
      background: rgba(255,255,255,.17);
      transform: translateY(-6px);
      box-shadow: 0 0 0 1px rgba(255,255,255,.22), 0 14px 40px rgba(0,0,0,.3);
    }
    .usp-card .usp-icon { font-size: 2.2rem; margin-bottom: 14px; transition: transform .3s; }
    .usp-card:hover .usp-icon { transform: scale(1.2) rotate(-8deg); }
    .usp-card h5 { font-weight: 900; font-size: 1.05rem; color: #fff; transition: color .25s; }
    .usp-card:hover h5 { color: #7dd3fc; }
    .usp-card p { color: rgba(191,219,254,.75); font-size: .875rem; line-height: 1.65; }

    /* ─── Steps ────────────────────────────────── */
    .step-card {
      background: #fff; border: 2px solid #eff6ff;
      border-radius: 24px; padding: 28px 22px;
      text-align: center;
      cursor: default;
      transition: transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .35s;
      height: 100%;
    }
    .step-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 18px 48px rgba(37,99,235,.18);
    }
    .step-num {
      width: 56px; height: 56px; border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      font-weight: 900; font-size: 1.2rem; color: #fff;
      margin: 0 auto 20px;
      box-shadow: 0 6px 20px rgba(37,99,235,.35);
      transition: transform .3s;
    }
    .step-card:hover .step-num {
      transform: scale(1.12);
      animation: glowPulse 1.5s ease-in-out infinite;
    }
    .step-card h6 { font-weight: 900; color: #0f172a; transition: color .25s; }
    .step-card:hover h6 { color: #2563eb; }
    .step-card p { color: #64748b; font-size: .85rem; line-height: 1.6; margin: 0; }

    /* ─── Outcome Cards ────────────────────────── */
    .outcome-card {
      background: rgba(239,246,255,.7); border: 2px solid #dbeafe;
      border-radius: 24px; padding: 28px;
      cursor: default;
      transition: transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .35s, background .3s;
      height: 100%;
    }
    .outcome-card:hover {
      transform: translateY(-7px) scale(1.02);
      box-shadow: 0 14px 36px rgba(37,99,235,.16);
      background: linear-gradient(135deg, #eff6ff, #dbeafe);
    }
    .outcome-card .out-icon { font-size: 2.2rem; margin-bottom: 14px; transition: transform .3s; }
    .outcome-card:hover .out-icon { transform: scale(1.2) rotate(-8deg); }
    .outcome-card h6 { font-weight: 900; color: #0f172a; font-size: 1rem; transition: color .25s; }
    .outcome-card:hover h6 { color: #1d4ed8; }
    .outcome-card p { color: #64748b; font-size: .85rem; margin: 0; }

    /* ─── Ability Cards ────────────────────────── */
    .ability-card {
      background: #fff; border: 2px solid #eff6ff;
      border-radius: 24px; padding: 24px;
      display: flex; align-items: center; gap: 20px;
      box-shadow: 0 2px 8px rgba(37,99,235,.06);
      cursor: default;
      transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    }
    .ability-card:hover {
      transform: translateY(-5px) scale(1.01);
      box-shadow: 0 12px 32px rgba(37,99,235,.15);
      border-color: rgba(37,99,235,.35);
    }
    .ability-icon-box {
      width: 60px; height: 60px; flex-shrink: 0;
      border-radius: 16px;
      background: linear-gradient(135deg, #2563eb, #3b82f6);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.5rem;
      box-shadow: 0 6px 18px rgba(37,99,235,.3);
      transition: transform .3s, box-shadow .3s;
    }
    .ability-card:hover .ability-icon-box {
      transform: scale(1.12);
      box-shadow: 0 8px 24px rgba(37,99,235,.45);
    }
    .ability-num { color: #93c5fd; font-weight: 900; font-size: .72rem; }
    .ability-title { font-weight: 900; color: #0f172a; font-size: 1.05rem; transition: color .25s; }
    .ability-card:hover .ability-title { color: #2563eb; }
    .ability-desc { color: #64748b; font-size: .85rem; margin: 0; }

    /* ─── Enroll CTA ───────────────────────────── */
    .enroll-section {
      background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 55%, #1d4ed8 100%);
      position: relative; overflow: hidden;
    }
    .enroll-orb-1 {
      position: absolute; top: -60px; left: -60px;
      width: 320px; height: 320px;
      background: rgba(59,130,246,.12);
      border-radius: 50%; filter: blur(60px);
      animation: float 6s ease-in-out infinite;
    }
    .enroll-orb-2 {
      position: absolute; bottom: -60px; right: -60px;
      width: 320px; height: 320px;
      background: rgba(99,102,241,.12);
      border-radius: 50%; filter: blur(60px);
      animation: floatSlow 8s ease-in-out infinite;
    }
    .enroll-detail-row {
      background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1);
      border-radius: 14px; padding: 14px 18px;
      display: flex; align-items: flex-start; gap: 14px;
      transition: background .2s;
    }
    .enroll-detail-row:hover { background: rgba(255,255,255,.13); }
    .enroll-card {
      background: #fff; border-radius: 24px; padding: 2.2rem;
      box-shadow: 0 24px 60px rgba(0,0,0,.28);
      transition: transform .4s, box-shadow .4s;
    }
    .enroll-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 32px 80px rgba(0,0,0,.35);
    }
    .btn-primary-cta {
      display: block; text-align: center;
      background: linear-gradient(135deg, #1e40af, #2563eb);
      color: #fff; font-weight: 900; font-size: 1rem;
      padding: 16px; border-radius: 14px;
      text-decoration: none;
      box-shadow: 0 6px 24px rgba(37,99,235,.3);
      transition: background .3s, box-shadow .3s, transform .3s;
    }
    .btn-primary-cta:hover {
      background: linear-gradient(135deg, #2563eb, #3b82f6);
      box-shadow: 0 10px 32px rgba(37,99,235,.45);
      transform: translateY(-2px); color: #fff;
    }
    .btn-outline-cta {
      display: block; text-align: center;
      border: 2px solid #bfdbfe; color: #2563eb;
      font-weight: 900; font-size: 1rem;
      padding: 14px; border-radius: 14px;
      text-decoration: none;
      transition: background .3s, border-color .3s, transform .3s;
    }
    .btn-outline-cta:hover {
      background: #eff6ff; border-color: #3b82f6;
      transform: translateY(-2px); color: #2563eb;
    }

    /* ─── Quote / Closing ──────────────────────── */
    .quote-card {
      background: #eff6ff; border: 2px solid #dbeafe;
      border-radius: 20px; padding: 24px 22px;
      text-align: center;
      min-width: 160px;
      cursor: default;
      transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .35s, border-color .35s;
    }
    .quote-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 0 0 2px rgba(59,130,246,.35), 0 10px 28px rgba(37,99,235,.15);
      border-color: rgba(37,99,235,.45);
    }
    .quote-card .q-icon { font-size: 2rem; margin-bottom: 8px; }
    .quote-card .q-label { font-weight: 900; color: #0f172a; font-size: .9rem; }
    .quote-card .q-desc { color: #64748b; font-size: .78rem; margin: 0; }

    /* ─── Footer ───────────────────────────────── */
    .site-footer { background: #0f172a; color: #94a3b8; }
    .site-footer .footer-icon {
      width: 34px; height: 34px; border-radius: 10px;
      background: linear-gradient(135deg, #3b82f6, #60a5fa);
      display: flex; align-items: center; justify-content: center;
      font-weight: 900; font-size: .8rem; color: #fff;
      box-shadow: 0 3px 10px rgba(59,130,246,.35);
    }
    .site-footer hr { border-color: rgba(255,255,255,.08); }

    /* ─── Responsive helpers ───────────────────── */
    @media (max-width: 767px) {
      .mentor-avatar { width: 170px; height: 170px; }
      .mentor-initials { font-size: 2.5rem; }
    }

    .set-val{
      text-decoration: none;
      color: #94a3b8;
    }

    .set-val:hover{
      color: white;
    }