
    :root {
      --navy: #0A1628;
      --navy-light: #0F2040;
      --navy-mid: #162A4A;
      --crimson: #C0152B;
      --crimson-hover: #A01020;
      --gold: #C9A84C;
      --gold-light: #F0D080;
      --white: #FFFFFF;
      --off-white: #F8F9FC;
      --light-gray: #EEF0F5;
      --mid-gray: #8892A0;
      --dark-text: #1A2340;
      --body-text: #3A4560;
      --border: #DEE2EC;
      --success: #1A8A4A;
      --shadow-sm: 0 2px 8px rgba(10,22,40,0.08);
      --shadow-md: 0 4px 20px rgba(10,22,40,0.12);
      --shadow-lg: 0 8px 40px rgba(10,22,40,0.18);
      --shadow-card: 0 2px 12px rgba(10,22,40,0.10);
      --radius-sm: 8px;
      --radius-md: 14px;
      --radius-lg: 20px;
      --radius-xl: 28px;
      --font-hindi: 'Noto Sans Devanagari', 'Inter', sans-serif;
      --font-english: 'Inter', sans-serif;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; font-size: 16px; }

    body {
      font-family: var(--font-hindi);
      background: var(--white);
      color: var(--dark-text);
      line-height: 1.7;
      overflow-x: hidden;
    }

    body.lang-en { font-family: var(--font-english); }

    /* ===== ANNOUNCEMENT BAR ===== */
    .announcement-bar {
      background: linear-gradient(90deg, var(--crimson) 0%, #8B0E1E 100%);
      color: var(--white);
      text-align: center;
      padding: 10px 16px;
      font-size: 0.82rem;
      font-weight: 500;
      letter-spacing: 0.02em;
      position: relative;
      z-index: 1000;
    }
    .announcement-bar a { color: var(--gold-light); text-decoration: underline; margin-left: 8px; }
    .announcement-bar .pulse-dot {
      display: inline-block; width: 8px; height: 8px;
      background: #7FFF00; border-radius: 50%; margin-right: 8px;
      animation: pulse 2s infinite;
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(1.3); }
    }

    /* ===== HEADER / NAV ===== */
    .site-header {
      background: var(--navy);
      position: sticky;
      top: 0;
      z-index: 900;
      box-shadow: 0 2px 16px rgba(0,0,0,0.3);
      transition: all 0.3s ease;
    }
    .header-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 64px;
    }
    .logo-wrap {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }
    .logo-icon {
      width: 44px; height: 44px;
      background: linear-gradient(135deg, var(--crimson), #FF2A44);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.3rem; color: white; font-weight: 900;
      box-shadow: 0 2px 12px rgba(192,21,43,0.5);
      flex-shrink: 0;
      overflow: hidden;
    }
    .logo-icon img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .logo-text { line-height: 1.15; }
    .logo-text .brand-name {
      font-size: 1rem; font-weight: 800;
      color: var(--white); display: block; letter-spacing: 0.01em;
    }
    .logo-text .brand-sub {
      font-size: 0.65rem; color: var(--gold); font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase;
    }
    .main-nav { display: flex; align-items: center; gap: 2px; }
    .main-nav a {
      color: rgba(255,255,255,0.78);
      text-decoration: none;
      font-size: 0.82rem;
      font-weight: 500;
      padding: 6px 10px;
      border-radius: var(--radius-sm);
      transition: all 0.2s;
      white-space: nowrap;
    }
    .main-nav a:hover { color: var(--white); background: rgba(255,255,255,0.1); }
    .nav-actions { display: flex; align-items: center; gap: 10px; }
    .lang-toggle {
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 20px;
      padding: 5px 12px;
      color: white;
      font-size: 0.78rem;
      cursor: pointer;
      font-weight: 600;
      transition: all 0.2s;
      display: flex; align-items: center; gap: 6px;
    }
    .lang-toggle:hover { background: rgba(255,255,255,0.18); }
    .lang-badge {
      background: var(--gold);
      color: var(--navy);
      border-radius: 10px;
      padding: 1px 6px;
      font-size: 0.68rem;
      font-weight: 700;
    }
    .btn-nav-cta {
      background: linear-gradient(135deg, var(--crimson), #FF2244);
      color: white;
      border: none;
      border-radius: 22px;
      padding: 8px 18px;
      font-size: 0.8rem;
      font-weight: 700;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.2s;
      box-shadow: 0 2px 10px rgba(192,21,43,0.4);
      white-space: nowrap;
    }
    .btn-nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(192,21,43,0.5); }
    .hamburger {
      display: none; flex-direction: column; gap: 5px;
      background: none; border: none; cursor: pointer; padding: 4px;
    }
    .hamburger span { display: block; width: 24px; height: 2px; background: white; border-radius: 2px; transition: all 0.3s; }
    .mobile-nav {
      display: none; position: fixed; top: 64px; left: 0; right: 0;
      background: var(--navy); padding: 16px 20px; z-index: 899;
      box-shadow: 0 8px 30px rgba(0,0,0,0.4);
      flex-direction: column; gap: 4px;
      border-top: 1px solid rgba(255,255,255,0.1);
      max-height: calc(100vh - 64px);
      overflow-y: auto;
    }
    .mobile-nav.open { display: flex; }
    .mobile-nav a {
      color: rgba(255,255,255,0.85); text-decoration: none;
      font-size: 0.92rem; font-weight: 500; padding: 10px 14px;
      border-radius: var(--radius-sm); transition: all 0.2s;
    }
    .mobile-nav a:hover { background: rgba(255,255,255,0.1); color: white; }
    .mobile-nav .mobile-lang-toggle {
      margin-top: 12px; padding-top: 12px;
      border-top: 1px solid rgba(255,255,255,0.1);
      display: flex; align-items: center; gap: 10px;
    }

    /* ===== HERO SECTION ===== */
    .hero-section {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 40%, #1A2E5A 100%);
      padding: 70px 20px 60px;
      position: relative;
      overflow: hidden;
      min-height: 100vh;
      display: flex; align-items: center;
    }
    .hero-section::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; bottom: 0;
      background: 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.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      opacity: 1;
    }
    .hero-inner {
      max-width: 1280px; margin: 0 auto; width: 100%;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 60px; align-items: center;
      position: relative; z-index: 2;
    }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(201,168,76,0.12);
      border: 1px solid rgba(201,168,76,0.3);
      border-radius: 20px;
      padding: 6px 16px;
      margin-bottom: 20px;
      color: var(--gold-light);
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.04em;
    }
    .hero-badge i { font-size: 0.7rem; }
    .hero-h1 {
      font-size: 2.6rem;
      font-weight: 800;
      color: var(--white);
      line-height: 1.22;
      margin-bottom: 18px;
      letter-spacing: -0.01em;
    }
    .hero-h1 .highlight {
      background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero-sub {
      color: rgba(255,255,255,0.72);
      font-size: 1.02rem;
      line-height: 1.7;
      margin-bottom: 28px;
    }
    .hero-bullets {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 10px; margin-bottom: 32px;
    }
    .hero-bullet {
      display: flex; align-items: center; gap: 8px;
      color: rgba(255,255,255,0.82);
      font-size: 0.86rem;
      font-weight: 500;
    }
    .hero-bullet .bicon {
      width: 22px; height: 22px; border-radius: 50%;
      background: rgba(192,21,43,0.2);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .hero-bullet .bicon i { color: var(--gold); font-size: 0.65rem; }
    .hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 20px; }
    .btn-primary {
      background: linear-gradient(135deg, var(--crimson) 0%, #FF2244 100%);
      color: white; border: none; border-radius: 28px;
      padding: 14px 28px; font-size: 0.95rem; font-weight: 700;
      cursor: pointer; text-decoration: none;
      display: inline-flex; align-items: center; gap: 8px;
      transition: all 0.25s; box-shadow: 0 4px 20px rgba(192,21,43,0.45);
    }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(192,21,43,0.55); }
    .btn-secondary {
      background: rgba(255,255,255,0.08);
      color: white; border: 1.5px solid rgba(255,255,255,0.3);
      border-radius: 28px; padding: 13px 24px;
      font-size: 0.9rem; font-weight: 600;
      cursor: pointer; text-decoration: none;
      display: inline-flex; align-items: center; gap: 8px;
      transition: all 0.25s;
    }
    .btn-secondary:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.5); transform: translateY(-1px); }
    .btn-whatsapp {
      background: #25D366;
      color: white; border: 1.5px solid #25D366;
      border-radius: 28px; padding: 13px 24px;
      font-size: 0.9rem; font-weight: 700;
      cursor: pointer; text-decoration: none;
      display: inline-flex; align-items: center; gap: 8px;
      transition: all 0.25s;
      box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    }
    .btn-whatsapp:hover {
      background: #1ebe57;
      border-color: #1ebe57;
      transform: translateY(-2px);
      box-shadow: 0 6px 28px rgba(37,211,102,0.5);
    }
    .hero-trust {
      display: flex; align-items: center; gap: 8px;
      color: rgba(255,255,255,0.5);
      font-size: 0.78rem;
    }
    .hero-trust i { color: var(--gold); }

    /* Hero Visual Slider */
    .hero-visual { position: relative; }
    .hero-slider { position: relative; }
    .hero-slides { position: relative; }
    .hero-slide {
      display: none;
      opacity: 0;
      transition: opacity 0.45s ease;
    }
    .hero-slide.is-active {
      display: block;
      opacity: 1;
      animation: heroSlideIn 0.45s ease;
    }
    @keyframes heroSlideIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .hero-slider-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 6;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 1px solid rgba(201,168,76,0.35);
      background: rgba(13,32,68,0.85);
      color: var(--gold-light);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s, border-color 0.2s;
    }
    .hero-slider-btn:hover {
      background: var(--crimson);
      border-color: var(--crimson);
      color: #fff;
    }
    .hero-slider-prev { left: -14px; }
    .hero-slider-next { right: -14px; }
    .hero-slider-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 14px;
    }
    .hero-slider-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      border: none;
      padding: 0;
      background: rgba(255,255,255,0.25);
      cursor: pointer;
      transition: background 0.2s, transform 0.2s;
    }
    .hero-slider-dot.is-active {
      background: var(--gold);
      transform: scale(1.25);
    }
    .hero-visual-card {
      background: linear-gradient(145deg, var(--navy-mid), #1A3560);
      border: 1px solid rgba(201,168,76,0.2);
      border-radius: var(--radius-xl);
      padding: 28px;
      position: relative;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    }
    .hero-visual-card::before {
      content: '';
      position: absolute; top: -60px; right: -60px;
      width: 200px; height: 200px;
      background: radial-gradient(circle, rgba(192,21,43,0.15), transparent 70%);
      border-radius: 50%;
    }
    .teacher-board {
      background: #0D2044;
      border-radius: var(--radius-md);
      padding: 20px;
      margin-bottom: 16px;
      border: 1px solid rgba(255,255,255,0.07);
      position: relative; min-height: 180px;
    }
    .board-title {
      color: var(--gold-light); font-size: 0.75rem;
      font-weight: 700; text-transform: uppercase;
      letter-spacing: 0.08em; margin-bottom: 14px;
      display: flex; align-items: center; gap: 8px;
    }
    .board-title::before {
      content: ''; width: 3px; height: 14px;
      background: var(--crimson); border-radius: 2px; display: inline-block;
    }
    .board-items { display: flex; flex-direction: column; gap: 10px; }
    .board-item {
      display: flex; align-items: center; gap: 10px;
      padding: 8px 12px;
      background: rgba(255,255,255,0.04);
      border-radius: var(--radius-sm);
      border-left: 2px solid;
      transition: all 0.3s;
    }
    .board-item:nth-child(1) { border-left-color: var(--crimson); }
    .board-item:nth-child(2) { border-left-color: var(--gold); }
    .board-item:nth-child(3) { border-left-color: #4CAF8C; }
    .board-item .bnum {
      width: 24px; height: 24px; border-radius: 50%;
      background: rgba(255,255,255,0.08);
      display: flex; align-items: center; justify-content: center;
      color: var(--gold-light); font-size: 0.7rem; font-weight: 700;
      flex-shrink: 0;
    }
    .board-item span { color: rgba(255,255,255,0.8); font-size: 0.8rem; }
    .hero-stats {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 10px;
    }
    .hero-stat {
      text-align: center;
      background: rgba(255,255,255,0.05);
      border-radius: var(--radius-sm);
      padding: 12px 8px;
      border: 1px solid rgba(255,255,255,0.07);
    }
    .hero-stat .num {
      font-size: 1.4rem; font-weight: 800;
      color: var(--gold-light); display: block; line-height: 1;
    }
    .hero-stat .label {
      font-size: 0.65rem; color: rgba(255,255,255,0.55);
      margin-top: 4px; display: block;
    }
    .floating-badge {
      position: absolute;
      background: var(--white);
      border-radius: 12px;
      padding: 8px 14px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.25);
      display: flex; align-items: center; gap: 8px;
      font-size: 0.75rem; font-weight: 600;
      color: var(--dark-text); z-index: 5;
      animation: float 3s ease-in-out infinite;
    }
    .floating-badge i { color: var(--crimson); }
    .floating-badge.badge-1 { top: 16px; right: -8px; }
    .floating-badge.badge-2 { bottom: 80px; left: -8px; animation-delay: 1.5s; }
    @keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
    .india-map-bg {
      position: absolute; bottom: 0; right: 0;
      width: 120px; height: 140px;
      opacity: 0.06;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 240' fill='white' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M100 10 C70 15 40 30 30 60 C20 90 25 110 20 130 C15 150 25 170 40 185 C55 200 80 210 100 230 C120 210 145 200 160 185 C175 170 185 150 180 130 C175 110 180 90 170 60 C160 30 130 15 100 10Z'/%3E%3C/svg%3E");
      background-repeat: no-repeat; background-size: contain;
    }

    /* ===== SECTION COMMONS ===== */
    section { padding: 80px 20px; }
    .section-inner { max-width: 1280px; margin: 0 auto; }
    .section-badge {
      display: inline-flex; align-items: center; gap: 6px;
      background: rgba(192,21,43,0.08);
      border: 1px solid rgba(192,21,43,0.2);
      border-radius: 20px; padding: 5px 14px;
      color: var(--crimson); font-size: 0.75rem; font-weight: 700;
      text-transform: uppercase; letter-spacing: 0.06em;
      margin-bottom: 14px;
    }
    .section-title {
      font-size: 2rem; font-weight: 800; color: var(--dark-text);
      line-height: 1.25; margin-bottom: 14px;
    }
    .section-sub {
      color: var(--body-text); font-size: 1rem;
      line-height: 1.7; max-width: 640px;
    }
    .section-header { text-align: center; margin-bottom: 52px; }
    .section-header .section-sub { margin: 0 auto; }
    .gold-line {
      width: 60px; height: 3px;
      background: linear-gradient(90deg, var(--gold), var(--gold-light));
      border-radius: 2px; margin: 16px auto 0;
    }

    /* ===== PAIN POINTS SECTION ===== */
    .pain-section { background: var(--off-white); }
    .pain-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 20px; margin-bottom: 48px;
    }
    .pain-card {
      background: var(--white); border-radius: var(--radius-md);
      padding: 24px 20px;
      box-shadow: var(--shadow-card);
      border: 1px solid var(--border);
      display: flex; gap: 14px;
      transition: all 0.3s;
      position: relative; overflow: hidden;
    }
    .pain-card::before {
      content: ''; position: absolute;
      top: 0; left: 0; width: 100%; height: 3px;
      background: linear-gradient(90deg, var(--crimson), transparent);
    }
    .pain-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
    .pain-icon {
      width: 44px; height: 44px; flex-shrink: 0;
      background: rgba(192,21,43,0.08);
      border-radius: var(--radius-sm);
      display: flex; align-items: center; justify-content: center;
    }
    .pain-icon i { color: var(--crimson); font-size: 1.1rem; }
    .pain-card h3 { font-size: 0.9rem; font-weight: 700; color: var(--dark-text); margin-bottom: 6px; line-height: 1.4; }
    .pain-card p { font-size: 0.8rem; color: var(--body-text); line-height: 1.6; }
    .pain-transition {
      text-align: center;
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
      border-radius: var(--radius-lg);
      padding: 32px;
      color: white;
    }
    .pain-transition p { font-size: 1.1rem; font-weight: 600; margin-bottom: 20px; }
    .pain-transition p span { color: var(--gold-light); }

    /* ===== SOLUTION FRAMEWORK ===== */
    .solution-section { background: var(--white); }
    .steps-container { position: relative; }
    .steps-line {
      position: absolute;
      top: 36px; left: 10%;
      width: 80%; height: 2px;
      background: linear-gradient(90deg, var(--crimson), var(--gold), var(--crimson));
      z-index: 0;
    }
    .steps-grid {
      display: grid; grid-template-columns: repeat(5, 1fr);
      gap: 20px; position: relative; z-index: 1;
    }
    .step-card {
      text-align: center;
      background: var(--white);
      border-radius: var(--radius-md);
      padding: 24px 16px;
      box-shadow: var(--shadow-card);
      border: 1px solid var(--border);
      transition: all 0.3s;
    }
    .step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); }
    .step-num {
      width: 52px; height: 52px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 14px;
      font-size: 1.2rem; font-weight: 900;
      position: relative;
    }
    .step-num.s1 { background: rgba(192,21,43,0.1); color: var(--crimson); border: 2px solid var(--crimson); }
    .step-num.s2 { background: rgba(201,168,76,0.1); color: var(--gold); border: 2px solid var(--gold); }
    .step-num.s3 { background: rgba(26,138,74,0.1); color: var(--success); border: 2px solid var(--success); }
    .step-num.s4 { background: rgba(30,100,200,0.1); color: #1E64C8; border: 2px solid #1E64C8; }
    .step-num.s5 { background: rgba(130,50,200,0.1); color: #8232C8; border: 2px solid #8232C8; }
    .step-icon { font-size: 1.1rem; }
    .step-card h3 { font-size: 0.88rem; font-weight: 700; color: var(--dark-text); margin-bottom: 8px; line-height: 1.35; }
    .step-card p { font-size: 0.78rem; color: var(--body-text); line-height: 1.55; }

    /* ===== COURSES SECTION ===== */
    .courses-section { background: var(--off-white); }
    .courses-grid {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 22px;
    }
    .course-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-card);
      border: 1px solid var(--border);
      display: flex; flex-direction: column;
      transition: all 0.3s;
      position: relative;
    }
    .course-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
    .course-card.featured {
      border-color: var(--gold);
      box-shadow: 0 4px 24px rgba(201,168,76,0.2);
    }
    .featured-ribbon {
      position: absolute; top: 16px; right: -8px;
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      color: var(--navy);
      font-size: 0.65rem; font-weight: 800;
      padding: 4px 16px 4px 12px;
      border-radius: 3px 0 0 3px;
      text-transform: uppercase; letter-spacing: 0.05em;
      box-shadow: 2px 2px 8px rgba(0,0,0,0.15);
    }
    .featured-ribbon::after {
      content: ''; position: absolute;
      right: -8px; top: 0; bottom: 0;
      border-style: solid; border-width: 0 0 26px 8px;
      border-color: transparent transparent #8B6A20 transparent;
    }
    .course-header {
      padding: 22px 22px 16px;
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
      position: relative; overflow: hidden;
    }
    .course-header::after {
      content: ''; position: absolute;
      bottom: -20px; right: -20px; width: 80px; height: 80px;
      border-radius: 50%;
      background: rgba(255,255,255,0.04);
    }
    .course-exam-tag {
      display: inline-block;
      background: rgba(201,168,76,0.15);
      border: 1px solid rgba(201,168,76,0.3);
      color: var(--gold-light);
      font-size: 0.65rem; font-weight: 700;
      padding: 3px 10px; border-radius: 10px;
      text-transform: uppercase; letter-spacing: 0.06em;
      margin-bottom: 10px;
    }
    .course-name {
      color: white; font-size: 1rem; font-weight: 800; line-height: 1.3; margin-bottom: 6px;
    }
    .course-for {
      color: rgba(255,255,255,0.6); font-size: 0.75rem;
    }
    .course-body { padding: 18px 22px; flex: 1; display: flex; flex-direction: column; }
    .course-includes {
      list-style: none; margin-bottom: 16px; flex: 1;
    }
    .course-includes li {
      display: flex; align-items: flex-start; gap: 8px;
      font-size: 0.8rem; color: var(--body-text);
      padding: 5px 0; border-bottom: 1px solid rgba(0,0,0,0.04);
    }
    .course-includes li:last-child { border-bottom: none; }
    .course-includes li i { color: var(--success); font-size: 0.7rem; margin-top: 4px; flex-shrink: 0; }
    .course-footer { padding: 0 22px 22px; }
    .course-price {
      display: flex; align-items: baseline; gap: 8px;
      margin-bottom: 14px;
    }
    .price-amount {
      font-size: 1.6rem; font-weight: 900; color: var(--dark-text);
    }
    .price-label { font-size: 0.72rem; color: var(--mid-gray); }
    .course-ctas { display: flex; gap: 8px; }
    .btn-course-detail {
      flex: 1; padding: 9px 12px;
      background: var(--off-white); border: 1.5px solid var(--border);
      border-radius: 20px; font-size: 0.78rem; font-weight: 600;
      color: var(--dark-text); cursor: pointer; text-align: center;
      text-decoration: none; transition: all 0.2s; display: flex;
      align-items: center; justify-content: center;
    }
    .btn-course-detail:hover { background: var(--light-gray); border-color: var(--mid-gray); }
    .btn-course-buy {
      flex: 1; padding: 9px 12px;
      background: linear-gradient(135deg, var(--crimson), #FF2244);
      border: none; border-radius: 20px;
      font-size: 0.78rem; font-weight: 700;
      color: white; cursor: pointer; text-align: center;
      text-decoration: none; transition: all 0.2s; display: flex;
      align-items: center; justify-content: center; gap: 5px;
    }
    .btn-course-buy:hover { transform: translateY(-1px); box-shadow: 0 3px 12px rgba(192,21,43,0.4); }
    .course-access-note {
      margin-top: 10px;
      font-size: 0.68rem; color: var(--mid-gray);
      text-align: center;
      display: flex; align-items: center; justify-content: center; gap: 4px;
    }
    .course-access-note i { color: var(--success); font-size: 0.6rem; }

    /* ===== NCERT FUNNEL SECTION ===== */
    .ncert-section {
      background: linear-gradient(135deg, var(--navy) 0%, #0D2555 100%);
      position: relative; overflow: hidden;
    }
    .ncert-section::before {
      content: ''; position: absolute;
      top: -100px; right: -100px;
      width: 400px; height: 400px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(201,168,76,0.08), transparent 70%);
    }
    .ncert-inner {
      max-width: 1280px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
      align-items: start; position: relative; z-index: 2;
    }
    .ncert-section .section-title { color: white; }
    .ncert-section .section-sub { color: rgba(255,255,255,0.65); }
    .ncert-why-box {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: var(--radius-md);
      padding: 20px;
      margin-top: 24px;
    }
    .ncert-why-box h4 {
      color: var(--gold-light); font-size: 0.82rem;
      font-weight: 700; text-transform: uppercase;
      letter-spacing: 0.05em; margin-bottom: 14px;
    }
    .ncert-why-item {
      display: flex; gap: 10px; margin-bottom: 12px;
      align-items: flex-start;
    }
    .ncert-why-item i { color: var(--gold); font-size: 0.8rem; margin-top: 4px; }
    .ncert-why-item span { color: rgba(255,255,255,0.75); font-size: 0.82rem; line-height: 1.55; }
    .ncert-path { }
    .ncert-path-title {
      color: var(--gold-light); font-size: 0.82rem;
      font-weight: 700; text-transform: uppercase;
      letter-spacing: 0.05em; margin-bottom: 20px;
    }
    .ncert-subject-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 12px; margin-bottom: 28px;
    }
    .ncert-subject {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: var(--radius-sm); padding: 14px;
      transition: all 0.2s;
      display: block;
      text-decoration: none;
      color: inherit;
      cursor: pointer;
    }
    .ncert-subject:hover { background: rgba(255,255,255,0.1); border-color: var(--gold); transform: translateY(-2px); }
    .ncert-subject-icon { font-size: 1.4rem; margin-bottom: 8px; }
    .ncert-subject h4 { color: white; font-size: 0.82rem; font-weight: 700; margin-bottom: 4px; }
    .ncert-subject p { color: rgba(255,255,255,0.55); font-size: 0.72rem; line-height: 1.5; }

    /* Light variant — used on inner pages where the section follows the dark banner */
    .ncert-section.ncert-light { background: var(--off-white); }
    .ncert-section.ncert-light::before { background: radial-gradient(circle, rgba(201,168,76,0.15), transparent 70%); }
    .ncert-section.ncert-light .section-title { color: var(--dark-text); }
    .ncert-section.ncert-light .section-sub { color: var(--body-text); }
    .ncert-section.ncert-light .ncert-why-box {
      background: var(--white);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-card);
    }
    .ncert-section.ncert-light .ncert-why-box h4 { color: var(--crimson); }
    .ncert-section.ncert-light .ncert-why-item i { color: var(--success); }
    .ncert-section.ncert-light .ncert-why-item span { color: var(--body-text); }
    .ncert-section.ncert-light .ncert-path-title { color: var(--crimson); }
    .ncert-section.ncert-light .ncert-subject {
      background: var(--white);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-card);
    }
    .ncert-section.ncert-light .ncert-subject:hover { background: var(--white); border-color: var(--gold); box-shadow: var(--shadow-md); }
    .ncert-section.ncert-light .ncert-subject h4 { color: var(--dark-text); }
    .ncert-section.ncert-light .ncert-subject p { color: var(--body-text); }

    /* ===== DR. AJAY SECTION ===== */
    .educator-section { background: var(--white); }
    .educator-inner {
      max-width: 1280px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1.6fr;
      gap: 60px; align-items: center;
    }
    .educator-visual-wrap {
      position: relative;
    }
    .educator-placeholder {
      background: linear-gradient(145deg, var(--navy), var(--navy-light));
      border-radius: var(--radius-xl);
      height: 460px;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      position: relative; overflow: hidden;
      box-shadow: var(--shadow-lg);
    }
    .educator-placeholder::before {
      content: ''; position: absolute;
      top: 0; left: 0; right: 0; height: 4px;
      background: linear-gradient(90deg, var(--crimson), var(--gold), var(--crimson));
    }
    .educator-avatar {
      width: 110px; height: 110px; border-radius: 50%;
      background: linear-gradient(135deg, var(--crimson), #FF2244);
      display: flex; align-items: center; justify-content: center;
      font-size: 2.5rem; color: white; font-weight: 900;
      margin-bottom: 16px;
      box-shadow: 0 4px 20px rgba(192,21,43,0.5);
      border: 4px solid rgba(255,255,255,0.15);
    }
    .educator-name { color: white; font-size: 1.2rem; font-weight: 800; margin-bottom: 4px; }
    .educator-title { color: var(--gold); font-size: 0.82rem; font-weight: 600; margin-bottom: 20px; }
    .educator-chips {
      display: flex; flex-wrap: wrap; gap: 8px;
      justify-content: center; padding: 0 24px;
    }
    .educator-chip {
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.12);
      color: rgba(255,255,255,0.7);
      font-size: 0.7rem; padding: 5px 12px;
      border-radius: 12px;
    }
    .educator-yt-badge {
      position: absolute; bottom: 20px; left: 50%;
      transform: translateX(-50%);
      background: #FF0000; color: white;
      border-radius: 10px; padding: 8px 16px;
      font-size: 0.75rem; font-weight: 700;
      display: flex; align-items: center; gap: 6px;
      box-shadow: 0 3px 12px rgba(255,0,0,0.4);
    }
    .educator-content {}
    .educator-content .section-title { text-align: left; }
    .educator-quote {
      background: var(--off-white);
      border-left: 4px solid var(--gold);
      border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
      padding: 16px 20px;
      margin: 24px 0;
      font-size: 0.92rem;
      color: var(--body-text);
      font-style: italic;
      line-height: 1.7;
    }
    .educator-strengths {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 14px; margin-bottom: 28px;
    }
    .strength-item {
      display: flex; gap: 12px; align-items: flex-start;
      padding: 14px; background: var(--off-white);
      border-radius: var(--radius-sm);
      border: 1px solid var(--border);
      transition: all 0.2s;
    }
    .strength-item:hover { background: white; box-shadow: var(--shadow-sm); }
    .strength-icon {
      width: 36px; height: 36px; flex-shrink: 0;
      background: rgba(192,21,43,0.08);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
    }
    .strength-icon i { color: var(--crimson); font-size: 0.9rem; }
    .strength-item h4 { font-size: 0.82rem; font-weight: 700; color: var(--dark-text); margin-bottom: 3px; }
    .strength-item p { font-size: 0.75rem; color: var(--body-text); line-height: 1.5; }

    /* ===== WHY SECTION ===== */
    .why-section { background: var(--off-white); }
    .why-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .why-card {
      background: var(--white);
      border-radius: var(--radius-md);
      padding: 28px 22px;
      text-align: center;
      box-shadow: var(--shadow-card);
      border: 1px solid var(--border);
      transition: all 0.3s;
      text-decoration: none;
      color: inherit;
      display: block;
    }
    .why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); }
    .why-icon-wrap {
      width: 60px; height: 60px; border-radius: 50%;
      background: linear-gradient(135deg, rgba(192,21,43,0.1), rgba(201,168,76,0.1));
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 16px;
      border: 2px solid rgba(192,21,43,0.12);
    }
    .why-icon-wrap i { font-size: 1.4rem; color: var(--crimson); }
    .why-card h3 { font-size: 0.92rem; font-weight: 800; color: var(--dark-text); margin-bottom: 8px; }
    .why-card p { font-size: 0.8rem; color: var(--body-text); line-height: 1.6; }

    /* ===== APP SECTION ===== */
    .app-section {
      background: linear-gradient(135deg, #0A1628 0%, #0F2040 50%, #162A4A 100%);
    }
    .app-inner {
      max-width: 1280px; margin: 0 auto;
      display: grid; grid-template-columns: 1.2fr 1fr;
      gap: 60px; align-items: center;
    }
    .app-section .section-title { color: white; }
    .app-section .section-sub { color: rgba(255,255,255,0.65); }
    .app-features {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 14px; margin: 28px 0;
    }
    .app-feature {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.09);
      border-radius: var(--radius-sm); padding: 14px;
      display: flex; gap: 10px; align-items: flex-start;
      transition: all 0.2s;
    }
    .app-feature:hover { background: rgba(255,255,255,0.09); border-color: rgba(201,168,76,0.3); }
    .app-feature i { color: var(--gold); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
    .app-feature h4 { color: white; font-size: 0.82rem; font-weight: 700; margin-bottom: 3px; }
    .app-feature p { color: rgba(255,255,255,0.5); font-size: 0.72rem; }
    .app-ctas { display: flex; flex-wrap: wrap; gap: 12px; }
    .btn-app-primary {
      background: linear-gradient(135deg, var(--crimson), #FF2244);
      color: white; border-radius: 28px; padding: 12px 24px;
      font-weight: 700; font-size: 0.88rem;
      text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
      box-shadow: 0 4px 16px rgba(192,21,43,0.4);
      transition: all 0.2s;
    }
    .btn-app-primary:hover { transform: translateY(-2px); }
    .btn-app-wa {
      background: #25D366; color: white;
      border-radius: 28px; padding: 12px 24px;
      font-weight: 700; font-size: 0.88rem;
      text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
      box-shadow: 0 4px 16px rgba(37,211,102,0.35);
      transition: all 0.2s;
    }
    .btn-app-wa:hover { transform: translateY(-2px); }
    .app-mockup-wrap {
      position: relative; display: flex; justify-content: center;
    }
    .app-mockup {
      background: linear-gradient(145deg, #1A3060, #0D2040);
      border-radius: 28px; width: 240px;
      padding: 16px; box-shadow: 0 20px 60px rgba(0,0,0,0.5);
      border: 1px solid rgba(255,255,255,0.1);
      position: relative; overflow: hidden;
    }
    .app-mockup::before {
      content: ''; position: absolute;
      top: 14px; left: 50%; transform: translateX(-50%);
      width: 60px; height: 4px; background: rgba(255,255,255,0.3);
      border-radius: 2px;
    }
    .app-screen-item {
      background: rgba(255,255,255,0.04);
      border-radius: 10px; padding: 12px; margin-top: 10px;
      border: 1px solid rgba(255,255,255,0.06);
    }
    .app-screen-item:first-child { margin-top: 20px; }
    a.app-screen-item { display: block; text-decoration: none; color: inherit; }
    .app-screen-label { color: rgba(255,255,255,0.5); font-size: 0.65rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; }
    .app-screen-content { display: flex; align-items: center; gap: 8px; }
    .app-screen-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
    .app-screen-text { color: white; font-size: 0.75rem; font-weight: 600; }
    .app-screen-sub { color: rgba(255,255,255,0.4); font-size: 0.65rem; }
    .app-live-badge {
      position: absolute; top: 40px; right: -16px;
      background: #FF3B30; color: white;
      border-radius: 10px; padding: 5px 10px;
      font-size: 0.65rem; font-weight: 800;
      display: flex; align-items: center; gap: 4px;
      box-shadow: 0 2px 10px rgba(255,59,48,0.5);
      animation: pulse2 2s infinite;
    }
    @keyframes pulse2 { 0%,100%{box-shadow:0 2px 10px rgba(255,59,48,0.5)} 50%{box-shadow:0 2px 20px rgba(255,59,48,0.8)} }
    .app-live-badge::before {
      content: ''; width: 6px; height: 6px; background: white; border-radius: 50%;
    }

    /* ===== LEAD FORM SECTION ===== */
    .form-section {
      background: linear-gradient(135deg, var(--crimson) 0%, #8B0E1E 100%);
      position: relative; overflow: hidden;
    }
    .form-section::before {
      content: ''; position: absolute;
      top: -80px; right: -80px; width: 300px; height: 300px;
      border-radius: 50%; background: rgba(255,255,255,0.05);
    }
    .form-inner {
      max-width: 900px; margin: 0 auto;
      position: relative; z-index: 2;
    }
    .form-section .section-title { color: white; }
    .form-section .section-sub { color: rgba(255,255,255,0.75); }
    .demo-form {
      background: white;
      border-radius: var(--radius-xl);
      padding: 36px;
      margin-top: 32px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    }
    .form-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    .form-group { display: flex; flex-direction: column; gap: 6px; }
    .form-group label { font-size: 0.8rem; font-weight: 700; color: var(--dark-text); }
    .form-group input, .form-group select {
      padding: 11px 14px;
      border: 1.5px solid var(--border);
      border-radius: var(--radius-sm);
      font-size: 0.88rem;
      color: var(--dark-text);
      font-family: var(--font-hindi);
      transition: all 0.2s;
      background: var(--off-white);
      outline: none;
    }
    .form-group input:focus, .form-group select:focus {
      border-color: var(--crimson); background: white;
      box-shadow: 0 0 0 3px rgba(192,21,43,0.08);
    }
    .form-consent {
      display: flex; align-items: flex-start; gap: 10px;
      margin-top: 8px;
    }
    .form-consent input[type=checkbox] { margin-top: 3px; accent-color: var(--crimson); }
    .form-consent label { font-size: 0.78rem; color: var(--body-text); line-height: 1.5; }
    .form-submit-wrap { text-align: center; margin-top: 20px; }
    .btn-form-submit {
      background: linear-gradient(135deg, var(--crimson), #FF2244);
      color: white; border: none; border-radius: 28px;
      padding: 14px 40px; font-size: 1rem; font-weight: 800;
      cursor: pointer; display: inline-flex; align-items: center; gap: 10px;
      transition: all 0.25s; box-shadow: 0 4px 20px rgba(192,21,43,0.4);
      width: 100%;
      justify-content: center;
    }
    .btn-form-submit:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(192,21,43,0.5); }
    .form-security { text-align: center; margin-top: 12px; font-size: 0.72rem; color: var(--mid-gray); display: flex; align-items: center; justify-content: center; gap: 5px; }
    .form-security i { color: var(--success); }
    .form-thank-you {
      display: none;
      text-align: center;
      padding: 40px 20px;
    }
    .form-thank-you .ty-icon {
      width: 70px; height: 70px; border-radius: 50%;
      background: rgba(26,138,74,0.1);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 16px;
      border: 2px solid var(--success);
    }
    .form-thank-you .ty-icon i { font-size: 1.8rem; color: var(--success); }
    .form-thank-you h3 { font-size: 1.3rem; font-weight: 800; color: var(--dark-text); margin-bottom: 10px; }
    .form-thank-you p { color: var(--body-text); font-size: 0.9rem; }

    /* ===== CURRENT AFFAIRS SECTION ===== */
    .ca-section { background: var(--white); }
    .ca-grid {
      display: grid; grid-template-columns: repeat(5, 1fr);
      gap: 16px; margin: 32px 0;
    }
    .ca-card {
      background: var(--off-white);
      border-radius: var(--radius-md); padding: 20px 16px;
      text-align: center; border: 1px solid var(--border);
      transition: all 0.2s; cursor: default;
    }
    .ca-card:hover { background: white; box-shadow: var(--shadow-md); transform: translateY(-3px); }
    .ca-icon { font-size: 1.8rem; margin-bottom: 10px; }
    .ca-card h4 { font-size: 0.82rem; font-weight: 700; color: var(--dark-text); margin-bottom: 4px; }
    .ca-card p { font-size: 0.72rem; color: var(--body-text); line-height: 1.5; }
    .ca-card-hidden { display: none !important; }
    .ca-show-more-wrap { text-align: center; margin: 8px 0 24px; }
    a.ca-card { text-decoration: none; color: inherit; display: block; cursor: pointer; }

    /* ===== CURRENT AFFAIRS DETAIL ===== */
    .ca-detail-section { padding: 40px 0 64px; background: var(--off-white); }
    .ca-detail-layout {
      display: grid;
      grid-template-columns: 240px minmax(0, 1fr) 280px;
      gap: 28px;
      align-items: start;
    }
    .ca-sidebar {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 20px 16px;
      position: sticky;
      top: 90px;
    }
    .ca-sidebar-title {
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--navy);
      margin: 0 0 14px;
      padding-bottom: 10px;
      border-bottom: 2px solid var(--gold);
    }
    .ca-cat-list {
      list-style: none;
      margin: 0;
      padding: 0;
      max-height: 60vh;
      overflow-y: auto;
    }
    .ca-cat-list li { margin: 0; }
    .ca-cat-link {
      display: block;
      padding: 8px 10px;
      font-size: 0.78rem;
      color: var(--body-text);
      text-decoration: none;
      border-radius: 6px;
      transition: background 0.15s, color 0.15s;
      line-height: 1.35;
    }
    .ca-cat-link:hover { background: rgba(192,21,43,0.06); color: var(--crimson); }
    .ca-cat-link.active {
      background: rgba(192,21,43,0.1);
      color: var(--crimson);
      font-weight: 700;
    }
    .ca-detail-main {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 28px 28px 32px;
    }
    .ca-detail-image {
      margin: -8px -8px 20px;
      border-radius: var(--radius-md);
      overflow: hidden;
    }
    .ca-detail-image img {
      width: 100%;
      max-height: 360px;
      object-fit: cover;
      display: block;
    }
    .ca-detail-meta {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 12px;
      margin-bottom: 12px;
    }
    .ca-detail-cat {
      display: inline-block;
      background: rgba(201,168,76,0.15);
      color: #8a6d20;
      font-size: 0.72rem;
      font-weight: 700;
      padding: 4px 10px;
      border-radius: 4px;
      text-transform: uppercase;
      letter-spacing: 0.03em;
    }
    .ca-detail-date {
      font-size: 0.78rem;
      color: var(--body-text);
    }
    .ca-detail-date i { margin-right: 4px; color: var(--gold); }
    .ca-detail-title {
      font-size: 1.45rem;
      font-weight: 800;
      color: var(--navy);
      line-height: 1.35;
      margin: 0 0 20px;
    }
    .ca-detail-body {
      font-size: 0.95rem;
      color: var(--body-text);
      line-height: 1.75;
    }
    .ca-detail-body p { margin: 0 0 14px; }
    .ca-detail-body img { max-width: 100%; height: auto; border-radius: 8px; }
    .ca-detail-body h2, .ca-detail-body h3, .ca-detail-body h4 {
      color: var(--navy);
      margin: 22px 0 10px;
    }
    .ca-detail-body ul, .ca-detail-body ol { margin: 0 0 14px; padding-left: 22px; }
    .ca-detail-back { margin-top: 32px; padding-top: 20px; border-top: 1px solid var(--border); }
    .ca-course-list { display: flex; flex-direction: column; gap: 12px; }
    .ca-course-item {
      display: flex;
      gap: 10px;
      text-decoration: none;
      color: inherit;
      padding: 8px;
      border-radius: 8px;
      border: 1px solid var(--border);
      transition: box-shadow 0.15s, border-color 0.15s;
    }
    .ca-course-item:hover {
      border-color: var(--gold);
      box-shadow: var(--shadow-sm, 0 2px 8px rgba(0,0,0,0.06));
    }
    .ca-course-thumb {
      width: 64px;
      height: 64px;
      object-fit: cover;
      border-radius: 6px;
      flex-shrink: 0;
    }
    .ca-course-info { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
    .ca-course-tag {
      font-size: 0.62rem;
      font-weight: 700;
      color: var(--crimson);
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }
    .ca-course-name {
      font-size: 0.78rem;
      font-weight: 700;
      color: var(--dark-text);
      line-height: 1.3;
    }
    .ca-course-price {
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--navy);
    }
    .ca-sidebar-more {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 16px;
      font-size: 0.78rem;
      font-weight: 700;
      color: var(--crimson);
      text-decoration: none;
    }
    .ca-sidebar-more:hover { text-decoration: underline; }
    .ca-sidebar-empty { font-size: 0.8rem; color: var(--body-text); margin: 0; }

    @media (max-width: 1100px) {
      .ca-detail-layout { grid-template-columns: 200px minmax(0, 1fr); }
      .ca-sidebar-courses { grid-column: 1 / -1; position: static; }
      .ca-course-list { display: grid; grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
      .ca-detail-layout { grid-template-columns: 1fr; }
      .ca-sidebar { position: static; }
      .ca-cat-list { max-height: 220px; }
      .ca-course-list { grid-template-columns: 1fr; }
      .ca-detail-main { padding: 20px 16px 24px; }
      .ca-detail-title { font-size: 1.2rem; }
    }

    /* ===== STUDY MATERIAL SECTION ===== */
    .material-section { background: var(--off-white); }
    .material-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .material-card {
      background: white;
      border-radius: var(--radius-md); padding: 22px;
      display: flex; gap: 14px; align-items: flex-start;
      box-shadow: var(--shadow-card);
      border: 1px solid var(--border);
      text-decoration: none; color: inherit; cursor: pointer;
      transition: all 0.25s;
    }
    .material-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
    .material-icon {
      width: 48px; height: 48px; flex-shrink: 0;
      border-radius: var(--radius-sm);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.3rem;
    }
    .material-card h4 { font-size: 0.9rem; font-weight: 700; color: var(--dark-text); margin-bottom: 5px; }
    .material-card p { font-size: 0.78rem; color: var(--body-text); line-height: 1.55; }
    .material-link {
      display: inline-flex; align-items: center; gap: 5px;
      margin-top: 8px; font-size: 0.75rem; font-weight: 700;
      color: var(--crimson); text-decoration: none;
    }
    .material-link:hover { text-decoration: underline; }

    /* ===== STUDY MATERIALS LIST ===== */
    .sm-list-section { background: var(--off-white); padding: 40px 0 64px; }
    .sm-list-wrap { max-width: 720px; margin: 0 auto; }
    .sm-material-head {
      display: flex; align-items: center; gap: 14px;
      background: #D6E8F8; border-radius: var(--radius-md);
      padding: 16px 18px; margin-bottom: 16px;
    }
    .sm-material-icon {
      width: 44px; height: 44px; flex-shrink: 0;
      border-radius: 10px; background: rgba(30,100,200,0.12);
      display: flex; align-items: center; justify-content: center;
      color: #1E64C8; font-size: 1.1rem;
    }
    .sm-material-icon img { width: 28px; height: 28px; object-fit: contain; }
    .sm-material-head h2 { font-size: 1.05rem; font-weight: 700; color: var(--dark-text); margin: 0; }
    .sm-accordion { display: flex; flex-direction: column; gap: 12px; }
    .sm-acc-item {
      background: white; border-radius: var(--radius-md);
      border: 1px solid var(--border); overflow: hidden;
      box-shadow: var(--shadow-sm);
    }
    .sm-acc-toggle {
      width: 100%; border: 0; background: white; cursor: pointer;
      display: flex; align-items: center; justify-content: space-between;
      gap: 12px; padding: 16px 18px; text-align: left;
    }
    .sm-acc-left { display: flex; align-items: center; gap: 12px; min-width: 0; }
    .sm-acc-icon {
      width: 40px; height: 40px; flex-shrink: 0; border-radius: 10px;
      background: rgba(30,100,200,0.1); color: #1E64C8;
      display: flex; align-items: center; justify-content: center;
    }
    .sm-acc-title { font-size: 0.95rem; font-weight: 700; color: var(--dark-text); }
    .sm-acc-chevron { color: var(--mid-gray); transition: transform 0.25s; font-size: 0.85rem; }
    .sm-acc-item.open .sm-acc-chevron { transform: rotate(90deg); }
    .sm-acc-body { display: none; background: var(--light-gray); padding: 14px 16px 16px; }
    .sm-acc-item.open .sm-acc-body { display: block; }
    .sm-acc-subjects { display: flex; flex-wrap: wrap; gap: 10px; }
    .sm-subject-btn {
      display: inline-flex; align-items: center; justify-content: center;
      min-width: 120px; padding: 10px 18px;
      background: var(--crimson); color: white; text-decoration: none;
      border-radius: 6px; font-size: 0.85rem; font-weight: 700;
      transition: background 0.2s;
    }
    .sm-subject-btn:hover { background: var(--crimson-hover); color: white; }
    .sm-acc-empty { font-size: 0.82rem; color: var(--mid-gray); margin: 0; }
    .sm-detail-subject {
      font-size: 1rem; font-weight: 700; color: var(--dark-text);
      margin: 0 0 16px; padding-left: 4px;
    }
    .sm-doc-list { display: flex; flex-direction: column; gap: 10px; }
    .sm-doc-item {
      display: flex; align-items: center; gap: 12px;
      background: white; border: 1px solid var(--border);
      border-radius: var(--radius-md); padding: 14px 16px;
      text-decoration: none; color: var(--dark-text);
      box-shadow: var(--shadow-sm); transition: all 0.2s;
    }
    .sm-doc-item:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); color: var(--crimson); }
    .sm-doc-icon {
      width: 38px; height: 38px; flex-shrink: 0; border-radius: 8px;
      background: rgba(192,21,43,0.1); color: var(--crimson);
      display: flex; align-items: center; justify-content: center;
    }
    .sm-doc-title { flex: 1; font-size: 0.88rem; font-weight: 600; line-height: 1.35; }
    .sm-doc-item > .fa-download { color: var(--mid-gray); }

    /* ===== STUDENT JOURNEY ===== */
    .journey-section { background: var(--white); }
    .journey-steps {
      display: grid; grid-template-columns: repeat(7, 1fr);
      gap: 12px; position: relative;
    }
    .journey-steps::before {
      content: ''; position: absolute;
      top: 28px; left: 5%; width: 90%; height: 2px;
      background: linear-gradient(90deg, var(--crimson), var(--gold));
      z-index: 0;
    }
    .journey-step {
      text-align: center; position: relative; z-index: 1;
    }
    .journey-num {
      width: 56px; height: 56px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 12px;
      font-size: 1.1rem; font-weight: 900;
      color: white;
      background: linear-gradient(135deg, var(--navy), var(--navy-light));
      border: 3px solid var(--white);
      box-shadow: 0 2px 12px rgba(10,22,40,0.25);
    }
    .journey-step.active .journey-num {
      background: linear-gradient(135deg, var(--crimson), #FF2244);
    }
    .journey-step h4 { font-size: 0.72rem; font-weight: 700; color: var(--dark-text); line-height: 1.35; }

    /* ===== PRICING SECTION ===== */
    .pricing-section {
      background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
    }
    .pricing-note {
      text-align: center;
      background: rgba(26,138,74,0.06);
      border: 1px solid rgba(26,138,74,0.15);
      border-radius: var(--radius-md); padding: 14px 24px;
      color: var(--success); font-size: 0.85rem; font-weight: 600;
      margin-bottom: 36px; display: inline-flex; align-items: center; gap: 8px;
    }
    .pricing-center { text-align: center; }

    /* ===== FAQ SECTION ===== */
    .faq-section { background: var(--off-white); }
    .faq-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 14px;
    }
    .educator-avatar img {
      width: 100%;
      height: 100%;
      border-radius: 50%;
    }
    .faq-item {
      background: var(--white);
      border-radius: var(--radius-md);
      overflow: hidden;
      border: 1px solid var(--border);
      box-shadow: var(--shadow-sm);
    }
    .faq-question {
      padding: 18px 20px;
      display: flex; align-items: center; justify-content: space-between;
      cursor: pointer; gap: 12px;
      transition: background 0.2s;
    }
    .faq-question:hover { background: var(--off-white); }
    .faq-q-text { font-size: 0.88rem; font-weight: 700; color: var(--dark-text); line-height: 1.35; }
    .faq-toggle {
      width: 28px; height: 28px; border-radius: 50%;
      background: var(--off-white); border: 1.5px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; transition: all 0.3s;
    }
    .faq-toggle i { font-size: 0.7rem; color: var(--crimson); transition: transform 0.3s; }
    .faq-item.open .faq-toggle { background: var(--crimson); border-color: var(--crimson); }
    .faq-item.open .faq-toggle i { color: white; transform: rotate(45deg); }
    .faq-answer {
      display: none;
      padding: 0 20px 18px;
      font-size: 0.82rem;
      color: var(--body-text);
      line-height: 1.7;
      border-top: 1px solid var(--border);
      padding-top: 14px;
    }
    .faq-answer.open { display: block; }

    /* ===== FINAL CTA SECTION ===== */
    .final-cta-section {
      background: linear-gradient(135deg, var(--navy) 0%, #0D2555 50%, #162A50 100%);
      text-align: center;
      padding: 100px 20px;
      position: relative; overflow: hidden;
    }
    .final-cta-section::before {
      content: ''; position: absolute;
      top: 50%; left: 50%; transform: translate(-50%, -50%);
      width: 600px; height: 600px; border-radius: 50%;
      background: radial-gradient(circle, rgba(192,21,43,0.1), transparent 70%);
    }
    .final-cta-inner { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
    .final-cta-section .section-title { color: white; font-size: 2.4rem; margin-bottom: 16px; }
    .final-cta-section .section-sub { color: rgba(255,255,255,0.65); font-size: 1.05rem; margin: 0 auto 36px; }
    .final-cta-buttons {
      display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
    }
    .btn-final-wa {
      background: #25D366; color: white; border-radius: 28px;
      padding: 14px 28px; font-size: 0.95rem; font-weight: 700;
      text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
      box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: all 0.25s;
    }
    .btn-final-wa:hover { transform: translateY(-2px); }
    .btn-final-buy {
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      color: var(--navy); border-radius: 28px;
      padding: 14px 28px; font-size: 0.95rem; font-weight: 800;
      text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
      box-shadow: 0 4px 20px rgba(201,168,76,0.4); transition: all 0.25s;
    }
    .btn-final-buy:hover { transform: translateY(-2px); }

    /* ===== FOOTER ===== */
    .site-footer {
      background: var(--navy);
      color: rgba(255,255,255,0.6);
      padding: 60px 20px 24px;
    }
    .footer-inner {
      max-width: 1280px; margin: 0 auto;
    }
    .footer-top {
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px; margin-bottom: 48px;
      padding-bottom: 40px;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .footer-brand p {
      font-size: 0.82rem; line-height: 1.7; margin-top: 14px; max-width: 280px;
    }
    .footer-brand .contact-item {
      display: flex; align-items: flex-start; gap: 8px;
      margin-top: 10px; font-size: 0.78rem;
    }
    .footer-brand .contact-item i { color: var(--gold); margin-top: 3px; flex-shrink: 0; font-size: 0.75rem; }
    .footer-col h4 {
      color: white; font-size: 0.8rem; font-weight: 800;
      text-transform: uppercase; letter-spacing: 0.06em;
      margin-bottom: 16px; padding-bottom: 8px;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 8px; }
    .footer-col ul li a {
      color: rgba(255,255,255,0.55); text-decoration: none;
      font-size: 0.8rem; transition: color 0.2s;
    }
    .footer-col ul li a:hover { color: var(--gold); }
    .social-links {
      display: flex; gap: 10px; margin-top: 16px;
    }
    .social-link {
      width: 36px; height: 36px; border-radius: 50%;
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.12);
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.6); font-size: 0.9rem;
      text-decoration: none; transition: all 0.2s;
    }
    .social-link:hover { background: var(--crimson); border-color: var(--crimson); color: white; }
    .footer-bottom {
      display: flex; flex-direction: column; gap: 12px;
    }
    .footer-disclaimer {
      font-size: 0.72rem; color: rgba(255,255,255,0.35);
      line-height: 1.7;
      background: rgba(255,255,255,0.03);
      border-radius: var(--radius-sm); padding: 14px;
      border: 1px solid rgba(255,255,255,0.06);
    }
    .footer-bottom-bar {
      display: flex; justify-content: space-between; align-items: center;
      flex-wrap: wrap; gap: 10px;
    }
    .footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.35); }
    .footer-links { display: flex; gap: 14px; }
    .footer-links a { font-size: 0.72rem; color: rgba(255,255,255,0.4); text-decoration: none; }
    .footer-links a:hover { color: var(--gold); }

    /* ===== STICKY MOBILE CTA ===== */
    .sticky-mobile-cta {
      display: none;
      position: fixed; bottom: 0; left: 0; right: 0;
      background: var(--white); z-index: 800;
      padding: 10px 12px;
      box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
      border-top: 1px solid var(--border);
    }
    .sticky-cta-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
    .sticky-btn {
      border-radius: 10px; padding: 10px 8px;
      font-size: 0.7rem; font-weight: 700; text-align: center;
      text-decoration: none; display: flex; flex-direction: column;
      align-items: center; gap: 4px; transition: all 0.2s;
      border: none; cursor: pointer;
    }
    .sticky-btn i { font-size: 1rem; }
    .sticky-btn-wa { background: #25D366; color: white; }
    .sticky-btn-demo { background: var(--crimson); color: white; }
    .sticky-btn-buy { background: var(--navy); color: white; }

    /* ===== WHATSAPP FLOAT ===== */
    .wa-float {
      position: fixed; bottom: 80px; right: 20px;
      z-index: 850;
    }
    .wa-float a {
      width: 52px; height: 52px; border-radius: 50%;
      background: #25D366; color: white;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.5rem; box-shadow: 0 4px 20px rgba(37,211,102,0.5);
      text-decoration: none; transition: all 0.2s;
    }
    .wa-float a:hover { transform: scale(1.1); }
    .wa-tooltip {
      position: absolute; right: 60px; top: 50%;
      transform: translateY(-50%);
      background: var(--navy); color: white;
      font-size: 0.7rem; font-weight: 600;
      padding: 6px 12px; border-radius: 10px;
      white-space: nowrap;
      opacity: 0; pointer-events: none; transition: opacity 0.3s;
    }
    .wa-float:hover .wa-tooltip { opacity: 1; }

    /* ===== LANGUAGE HIDDEN ===== */
    .hi-content, .en-content { transition: opacity 0.3s; }
    body.lang-en .hi-content { display: none; }
    body.lang-hi .en-content { display: none; }
    body.lang-hi .hi-content { display: block; }
    body.lang-en .en-content { display: block; }
    .lang-inline-hi, .lang-inline-en { }
    body.lang-en .lang-inline-hi { display: none; }
    body.lang-hi .lang-inline-en { display: none; }

    /* Current-affairs cards: show only the active language (JS pagination
       further limits how many of the active language are visible). */
    body.lang-en .ca-card[data-ca-lang="hi"] { display: none !important; }
    body.lang-hi .ca-card[data-ca-lang="en"] { display: none !important; }

    /* ===== ANIMATE ON SCROLL ===== */
    .aos-init { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
    .aos-animate { opacity: 1; transform: translateY(0); }
    .aos-delay-1 { transition-delay: 0.1s; }
    .aos-delay-2 { transition-delay: 0.2s; }
    .aos-delay-3 { transition-delay: 0.3s; }
    .aos-delay-4 { transition-delay: 0.4s; }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1100px) {
      .courses-grid { grid-template-columns: repeat(2, 1fr); }
      .steps-grid { grid-template-columns: repeat(3, 1fr); }
      .steps-line { display: none; }
      .journey-steps { grid-template-columns: repeat(4, 1fr); }
      .journey-steps::before { display: none; }
    }
    @media (max-width: 900px) {
      .main-nav, .btn-nav-cta { display: none; }
      .hamburger { display: flex; }
      .hero-inner { grid-template-columns: 1fr; gap: 40px; }
      .hero-h1 { font-size: 1.9rem; }
      .hero-visual { order: -1; }
      .hero-visual-card { max-width: 380px; margin: 0 auto; }
      .floating-badge.badge-1 { display: none; }
      .floating-badge.badge-2 { display: none; }
      .hero-slider-prev { left: 4px; }
      .hero-slider-next { right: 4px; }
      .hero-slider-btn {
        width: 32px;
        height: 32px;
        background: rgba(13,32,68,0.92);
      }
      .pain-grid { grid-template-columns: 1fr 1fr; }
      .ncert-inner { grid-template-columns: 1fr; }
      .educator-inner { grid-template-columns: 1fr; }
      .educator-placeholder { height: 300px; max-width: 360px; margin: 0 auto; }
      .app-inner { grid-template-columns: 1fr; }
      .app-mockup-wrap { order: -1; }
      .footer-top { grid-template-columns: 1fr 1fr; }
      .why-grid { grid-template-columns: 1fr 1fr; }
      .ca-grid { grid-template-columns: repeat(3, 1fr); }
      .material-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 640px) {
      html { font-size: 14px; }
      section { padding: 60px 16px; }
      .hero-section { padding: 50px 16px 50px; min-height: auto; }
      .hero-h1 { font-size: 1.7rem; }
      .hero-bullets { grid-template-columns: 1fr; }
      .hero-ctas { flex-direction: column; }
      .btn-primary, .btn-secondary, .btn-whatsapp { width: 100%; justify-content: center; }
      .pain-grid { grid-template-columns: 1fr; }
      .courses-grid { grid-template-columns: 1fr; }
      .steps-grid { grid-template-columns: 1fr 1fr; }
      .form-grid { grid-template-columns: 1fr; }
      .faq-grid { grid-template-columns: 1fr; }
      .why-grid { grid-template-columns: 1fr; }
      .educator-strengths { grid-template-columns: 1fr; }
      .ca-grid { grid-template-columns: 1fr 1fr; }
      .material-grid { grid-template-columns: 1fr; }
      .journey-steps { grid-template-columns: repeat(2, 1fr); }
      .journey-steps::before { display: none; }
      .footer-top { grid-template-columns: 1fr; gap: 28px; }
      .footer-bottom-bar { flex-direction: column; text-align: center; }
      .final-cta-buttons { flex-direction: column; align-items: center; }
      .section-title { font-size: 1.6rem; }
      .sticky-mobile-cta { display: block; }
      .wa-float { bottom: 80px; }
      .ncert-subject-grid { grid-template-columns: 1fr; }
      .app-features { grid-template-columns: 1fr; }
      .hero-stats { grid-template-columns: repeat(3, 1fr); }
      .demo-form { padding: 20px 16px; }
    }

    /* ===== INNER PAGE BANNER ===== */
    .inner-banner {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #1A2E5A 100%);
      padding: 60px 20px 50px;
      position: relative;
      overflow: hidden;
    }
    .inner-banner::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; bottom: 0;
      background: 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.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    .inner-banner-content {
      max-width: 1280px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
      text-align: center;
    }
    .inner-banner .breadcrumb {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin-bottom: 16px;
      font-size: 0.78rem;
      color: rgba(255,255,255,0.5);
    }
    .inner-banner .breadcrumb a {
      color: rgba(255,255,255,0.55);
      text-decoration: none;
      transition: color 0.2s;
    }
    .inner-banner .breadcrumb a:hover { color: var(--gold); }
    .inner-banner .breadcrumb i { font-size: 0.6rem; }
    .inner-banner .inner-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(201,168,76,0.12);
      border: 1px solid rgba(201,168,76,0.3);
      border-radius: 20px; padding: 6px 16px;
      color: var(--gold-light); font-size: 0.78rem; font-weight: 600;
      letter-spacing: 0.04em; margin-bottom: 16px;
    }
    .inner-banner h1 {
      font-size: 2.4rem; font-weight: 800;
      color: var(--white); line-height: 1.22;
      margin-bottom: 14px; letter-spacing: -0.01em;
    }
    .inner-banner h1 .highlight {
      background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .inner-banner p {
      color: rgba(255,255,255,0.7);
      font-size: 1rem; line-height: 1.7;
      max-width: 640px; margin: 0 auto 24px;
    }
    .inner-banner .banner-ctas {
      display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
    }
    @media (max-width: 640px) {
      .inner-banner { padding: 40px 16px 36px; }
      .inner-banner h1 { font-size: 1.7rem; }
      .inner-banner .banner-ctas { flex-direction: column; align-items: center; }
    }
