/* Font Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100..900;1,100..900&display=swap');

/* CSS Variables for Theme Colors */
:root {
    --primary-blue: #0b4475;
    /* Deep Blue from Amar Ujala Logo */
    --primary-orange: #f47c22;
    /* Vibrant Orange from Logo */
    --accent-red: #d62828c4;
    --accent-red-solid: #d62828;
    --text-color: #333333;
    --bg-color: #ffffff;
    --transition: all 0.3s ease;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    padding-top: 90px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
}

h1 {
    font-weight: 700;
    font-size: 44px;
    line-height: 1.2;
}

h2 {
    font-weight: 700;
    font-size: 32px;
    line-height: 1.3;
}

h3 {
    font-weight: 600;
    font-size: 22px;
}

p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: #444444;
    /* Clean dark grey instead of pure black */
}

.small-text,
small {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
}

.navbar-custom {
    background-color: #ffffff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo a {
    display: flex;
    align-items: center;
}

.logo img {
    height: 65px;
    /* Adjust according to actual logo */
    width: auto;
    display: block;
}

/* Navigation Links */
.nav-custom-links {
    display: flex;
    gap: 22px;
    align-items: center;
}

.nav-custom-item {
    text-decoration: none;
    color: var(--primary-blue);
    font-weight: 500;
    font-size: 16px;
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
}

/* Underline Animation */
.nav-custom-item::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-orange);
    transition: var(--transition);
}

.nav-custom-item:hover {
    color: var(--primary-orange);
}

.nav-custom-item:hover::after {
    width: 100%;
}

/* Register CTA */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* ===== Login Dropdown (B2B2C entry point) ===== */
.login-dropdown {
    position: relative;
}

.btn-login {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--primary-blue);
    border: 1.5px solid var(--primary-blue);
    padding: 10px 18px;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
}

.btn-login:hover {
    background: var(--primary-blue);
    color: #ffffff;
}

.login-chevron {
    transition: transform 0.25s ease;
}

.login-dropdown:hover .login-chevron,
.login-dropdown:focus-within .login-chevron {
    transform: rotate(180deg);
}

.login-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 220px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 12px 32px rgba(11, 68, 117, 0.14);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 1001;
    border: 1px solid rgba(11, 68, 117, 0.06);
}

/* Invisible bridge so cursor can travel from button to menu without collapse */
.login-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    height: 14px;
}

.login-dropdown:hover .login-menu,
.login-dropdown:focus-within .login-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.login-menu-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 14px 18px;
    color: var(--primary-blue);
    text-decoration: none;
    border-bottom: 1px solid #f1f5f9;
    transition: background-color 0.2s ease, padding-left 0.2s ease;
}

.login-menu-item:last-child {
    border-bottom: none;
}

.login-menu-item:hover {
    background: #f8fafc;
    padding-left: 22px;
}

.login-menu-label {
    font-weight: 600;
    font-size: 15px;
    color: var(--primary-blue);
}

.login-menu-item:hover .login-menu-label {
    color: var(--primary-orange);
}

.login-menu-sub {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}

.btn-register {
    background-color: var(--primary-orange);
    color: white;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    box-shadow: 0 4px 6px rgba(245, 130, 32, 0.2);
    border: none;
}

.btn-register:hover {
    background-color: #e06d12;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(245, 130, 32, 0.3);
}

/* Mobile Responsiveness (Basic) */
@media (max-width: 992px) {
    .nav-custom-links {
        display: none;
    }
}

/* ======== Hero Section ======== */
/* ======== Hero Section (v3: full-bleed left, floating pills, code strip) ======== */
.hero-section {
    padding: 48px 24px 64px;
    background:
        radial-gradient(1000px 420px at 85% -10%, rgba(244, 124, 34, 0.08), transparent 60%),
        radial-gradient(900px 480px at -5% 110%, rgba(11, 68, 117, 0.08), transparent 60%),
        #ffffff;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.08fr 1fr;
    gap: 32px;
    align-items: stretch;
}

/* ---- Hero Visual (left) — fills grid cell height so there is no whitespace ---- */
.hero-visual {
    position: relative;
    height: 100%;
    min-height: 520px;
    overflow: visible;
    /* allow pills + code strip to bleed past edges */
}

.hero-slideshow {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #eff4fb 0%, #f8f5ef 100%);
    box-shadow: 0 24px 60px rgba(11, 68, 117, 0.14);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.9s ease;
}

.hero-slide-active {
    opacity: 1;
    z-index: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ---- Slide dots (bottom center, inside slideshow) ---- */
.hero-slide-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 16px;
    z-index: 3;
    display: flex;
    justify-content: center;
    gap: 6px;
}

.hero-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.55);
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.hero-dot-active {
    background: #ffffff;
    transform: scale(1.35);
}

.hero-dot:hover {
    background: #ffffff;
}

/* ---- Floating trust badge (10M+ Students) ---- */
.hero-trust-badge {
    position: absolute;
    left: 18px;
    bottom: 40px;
    z-index: 3;
    background: var(--primary-blue);
    color: #ffffff;
    padding: 12px 16px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    box-shadow: 0 12px 28px rgba(11, 68, 117, 0.35);
    border-left: 4px solid var(--primary-orange);
}

.hero-trust-number {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-orange);
    line-height: 1;
}

.hero-trust-label {
    font-size: 11px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.3px;
}

/* ---- Floating cream pulsating pills around image ---- */
.hero-float-pill {
    position: absolute;
    z-index: 5;
    padding: 9px 16px 9px 14px;
    background: #fff6e8;
    color: var(--primary-blue);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.2px;
    border-radius: 999px;
    border: 1px solid rgba(244, 124, 34, 0.28);
    box-shadow:
        0 12px 24px rgba(11, 68, 117, 0.14),
        0 0 0 4px rgba(255, 246, 232, 0.6);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    animation: floatPill 4.2s ease-in-out infinite;
}

.hero-float-pill::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary-orange);
    box-shadow: 0 0 10px rgba(244, 124, 34, 0.95);
    animation: floatPillDot 1.6s ease-out infinite;
}

.hero-float-pill-1 {
    top: 6%;
    left: -18px;
    animation-delay: 0s;
}

.hero-float-pill-2 {
    top: 24%;
    right: -22px;
    animation-delay: .6s;
}

.hero-float-pill-3 {
    bottom: 30%;
    left: -22px;
    animation-delay: 1.2s;
}

.hero-float-pill-4 {
    bottom: 8%;
    right: -14px;
    animation-delay: 1.8s;
}

.hero-float-pill-2::before,
.hero-float-pill-4::before {
    background: var(--primary-blue);
    box-shadow: 0 0 10px rgba(11, 68, 117, 0.7);
}

@keyframes floatPill {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes floatPillDot {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: .6;
    }
}

/* ---- Code strip — typewriter bridging the image edge ---- */
.hero-code-strip {
    position: absolute;
    top: 92px;
    left: -36px;
    z-index: 6;
    background: #0b1221;
    color: #e2e8f0;
    padding: 9px 14px 9px 12px;
    border-radius: 10px;
    font-family: 'JetBrains Mono', 'Fira Code', 'SF Mono', Consolas, monospace;
    font-size: 12.5px;
    box-shadow: 0 18px 36px rgba(11, 68, 117, 0.32);
    border: 1px solid rgba(244, 124, 34, 0.45);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.hero-code-dots {
    display: inline-flex;
    gap: 5px;
}

.hero-code-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.hero-code-dot:nth-child(1) {
    background: #ef4444;
}

.hero-code-dot:nth-child(2) {
    background: #f59e0b;
}

.hero-code-dot:nth-child(3) {
    background: #22c55e;
}

.hero-code-line {
    display: inline-flex;
    align-items: center;
}

.hero-code-prompt {
    color: var(--primary-orange);
    margin-right: 6px;
    font-weight: 700;
}

.hero-code-typer {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid var(--primary-orange);
    animation: typeIt 5s steps(17) infinite, caret 0.7s step-end infinite;
    max-width: 0;
    vertical-align: middle;
}

.hero-code-typer .tk-key {
    color: var(--primary-orange);
}

.hero-code-typer .tk-str {
    color: #7ee787;
}

.hero-code-typer .tk-punc {
    color: #94a3b8;
}

@keyframes typeIt {
    0% {
        max-width: 0;
    }

    40% {
        max-width: 17ch;
    }

    85% {
        max-width: 17ch;
    }

    100% {
        max-width: 0;
    }
}

@keyframes caret {

    0%,
    100% {
        border-right-color: transparent;
    }

    50% {
        border-right-color: var(--primary-orange);
    }
}

/* ---- Hero Content (right) ---- */
.hero-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-self: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    padding: 6px 14px 6px 10px;
    background: rgba(11, 68, 117, 0.07);
    color: var(--primary-blue);
    border: 1px solid rgba(11, 68, 117, 0.14);
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.ai-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-orange);
    box-shadow: 0 0 0 0 rgba(244, 124, 34, 0.5);
    animation: aiLiveDot 1.6s ease-out infinite;
}

@keyframes aiLiveDot {
    0% {
        box-shadow: 0 0 0 0 rgba(244, 124, 34, 0.55);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(244, 124, 34, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(244, 124, 34, 0);
    }
}

.hero-headline {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: clamp(34px, 4.6vw, 56px);
    line-height: 1.05;
    font-weight: 800;
    color: var(--primary-blue);
    letter-spacing: -0.5px;
    margin: 0;
}

.hero-headline-accent {
    display: block;
    background: linear-gradient(90deg, var(--primary-orange) 0%, #ff9a4d 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-sub {
    font-size: 17px;
    line-height: 1.55;
    color: #334155;
    margin: 0;
    max-width: 560px;
}

.hero-sub strong {
    color: var(--primary-blue);
    font-weight: 700;
}

/* ---- Trust line (AI Intelligent Report / Biggest Felicitation) ---- */
.hero-trust-line {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
    margin-top: -2px;
}

.hero-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--primary-blue);
    letter-spacing: 0.1px;
}

.hero-trust-item.trust-ai .trust-text {
    border-bottom: 2px solid var(--primary-orange);
    padding-bottom: 2px;
}

.trust-emoji {
    font-size: 14px;
    line-height: 1;
}

.trust-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    flex-shrink: 0;
}

.trust-dot-orange {
    background: var(--primary-orange);
    animation: trustPulseOrange 1.8s ease-out infinite;
}

.trust-dot-blue {
    background: var(--primary-blue);
    animation: trustPulseBlue 1.8s ease-out infinite;
}

@keyframes trustPulseOrange {
    0% {
        box-shadow: 0 0 0 0 rgba(244, 124, 34, 0.55);
    }

    70% {
        box-shadow: 0 0 0 9px rgba(244, 124, 34, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(244, 124, 34, 0);
    }
}

@keyframes trustPulseBlue {
    0% {
        box-shadow: 0 0 0 0 rgba(11, 68, 117, 0.55);
    }

    70% {
        box-shadow: 0 0 0 9px rgba(11, 68, 117, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(11, 68, 117, 0);
    }
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 4px;
    max-width: 560px;
}

.hero-feat {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: #ffffff;
    border: 1px solid rgba(11, 68, 117, 0.1);
    border-radius: 10px;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-feat:hover {
    border-color: rgba(244, 124, 34, 0.45);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(11, 68, 117, 0.06);
}

.hero-feat svg {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    color: var(--primary-orange);
}

.hero-feat-label {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.1;
}

.hero-feat-sub {
    font-size: 11.5px;
    color: #64748b;
    margin-top: 2px;
    line-height: 1.2;
}

.hero-cta-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 6px;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    background: var(--primary-orange);
    color: #ffffff;
    text-decoration: none;
    font-size: 15.5px;
    font-weight: 700;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(244, 124, 34, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn-hero-primary:hover {
    background: #e06d12;
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(244, 124, 34, 0.38);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 13px 20px;
    background: transparent;
    color: var(--primary-blue);
    text-decoration: none;
    font-size: 14.5px;
    font-weight: 700;
    border: 1.5px solid rgba(11, 68, 117, 0.25);
    border-radius: 8px;
    transition: border-color 0.2s ease, gap 0.2s ease, background-color 0.2s ease;
}

.btn-hero-secondary:hover {
    border-color: var(--primary-blue);
    background: rgba(11, 68, 117, 0.04);
    gap: 10px;
}

/* ---- Hero responsive ---- */
@media (max-width: 992px) {
    .hero-section {
        padding: 28px 18px 40px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 28px;
        align-items: stretch;
    }

    .hero-visual {
        height: auto;
        min-height: 0;
        aspect-ratio: 4 / 3;
        max-height: 380px;
        order: 1;
    }

    .hero-content {
        order: 2;
        gap: 16px;
        align-self: auto;
    }

    .hero-headline {
        font-size: clamp(28px, 7vw, 40px);
    }

    .hero-sub {
        font-size: 15.5px;
    }

    .hero-trust-badge {
        left: 14px;
        bottom: 30px;
        padding: 10px 13px;
    }

    .hero-trust-number {
        font-size: 19px;
    }

    .hero-trust-label {
        font-size: 10.5px;
    }

    /* Trim decorative elements so they don't crowd on mobile */
    .hero-code-strip {
        top: auto;
        bottom: 14px;
        left: 8px;
        font-size: 11.5px;
        padding: 7px 12px 7px 10px;
    }

    .hero-float-pill-1 {
        top: 8px;
        left: 8px;
    }

    .hero-float-pill-2 {
        display: none;
    }

    .hero-float-pill-3 {
        display: none;
    }

    .hero-float-pill-4 {
        top: 8px;
        right: 8px;
        bottom: auto;
    }

    .hero-float-pill {
        font-size: 11px;
        padding: 7px 13px 7px 11px;
    }
}

@media (max-width: 560px) {
    .hero-features {
        grid-template-columns: 1fr;
    }

    .hero-cta-row {
        flex-wrap: nowrap;
        gap: 10px;
    }

    .hero-cta-row .btn-hero-primary,
    .hero-cta-row .btn-hero-secondary {
        flex: 1 1 auto;
        justify-content: center;
        white-space: nowrap;
        padding-left: 14px;
        padding-right: 14px;
        font-size: 14.5px;
    }

    .hero-float-pill-1,
    .hero-float-pill-4 {
        display: none;
    }

    .hero-trust-line {
        gap: 14px;
    }

    .hero-trust-item {
        font-size: 12.5px;
    }
}

/* ======== Wall of Fame — full-width continuous marquee ======== */
.hall-of-fame {
    padding: 72px 0 80px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    overflow: hidden;
}

.hof-header {
    max-width: 900px;
    margin: 0 auto 36px;
    padding: 0 24px;
    text-align: center;
}

.hof-eyebrow {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(244, 124, 34, 0.1);
    color: var(--primary-orange);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    margin-bottom: 12px;
}

.hof-title {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: clamp(26px, 3.6vw, 40px);
    font-weight: 800;
    color: var(--primary-blue);
    margin: 0 0 12px;
    line-height: 1.15;
}

.hof-sub {
    font-size: 15px;
    color: #475569;
    margin: 0;
    line-height: 1.55;
}

.hof-marquee {
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
}

.hof-track {
    display: flex;
    gap: 22px;
    width: max-content;
    animation: hofScroll 110s linear infinite;
    padding: 14px 14px 22px;
}

.hof-marquee:hover .hof-track {
    animation-play-state: paused;
}

@keyframes hofScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ---- Card (circular photo + soft gradient) ---- */
.hof-card {
    flex-shrink: 0;
    width: 230px;
    padding: 22px 18px 18px;
    background:
        radial-gradient(120% 60% at 50% 0%, rgba(244, 124, 34, 0.10) 0%, rgba(244, 124, 34, 0) 55%),
        linear-gradient(180deg, #eef4fb 0%, #ffffff 45%, #ffffff 100%);
    border-radius: 18px;
    border: 1px solid rgba(11, 68, 117, 0.08);
    box-shadow:
        0 10px 26px rgba(11, 68, 117, 0.10),
        0 2px 4px rgba(11, 68, 117, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    text-align: center;
}

.hof-card:hover {
    transform: translateY(-5px);
    box-shadow:
        0 18px 38px rgba(11, 68, 117, 0.16),
        0 4px 8px rgba(11, 68, 117, 0.08);
}

.hof-card-top {
    display: flex;
    justify-content: center;
    margin-bottom: 14px;
}

.hof-photo-ring {
    position: relative;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-orange) 100%);
    box-shadow:
        0 12px 24px rgba(11, 68, 117, 0.28),
        0 0 0 4px rgba(255, 255, 255, 0.85);
}

.hof-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 22%;
    border-radius: 50%;
    display: block;
    background: #ffffff;
}

.hof-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--primary-orange);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(244, 124, 34, 0.5), 0 0 0 2px #ffffff;
}

.hof-card-body {
    padding: 0;
}

.hof-name {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 0 0 4px;
    line-height: 1.2;
}

.hof-school {
    font-size: 12.5px;
    color: #334155;
    margin: 0 0 4px;
    line-height: 1.35;
    font-weight: 600;
    min-height: 34px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hof-city {
    font-size: 10.5px;
    color: #64748b;
    margin: 0 0 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 600;
}

.hof-prize {
    font-size: 11px;
    color: var(--primary-blue);
    font-weight: 700;
    padding: 5px 10px;
    background: rgba(11, 68, 117, 0.08);
    border-radius: 999px;
    display: inline-block;
    margin-bottom: 12px;
    letter-spacing: 0.2px;
}

.hof-award {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding-top: 10px;
    border-top: 1px dashed rgba(11, 68, 117, 0.18);
}

.hof-award-text {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--primary-orange);
    line-height: 1.2;
}

.hof-year {
    font-size: 10.5px;
    font-weight: 700;
    color: #64748b;
    letter-spacing: 0.6px;
}

@media (max-width: 768px) {
    .hall-of-fame {
        padding: 48px 0 56px;
    }

    .hof-header {
        margin-bottom: 24px;
    }

    .hof-card {
        width: 200px;
        padding: 18px 14px 16px;
    }

    .hof-photo-ring {
        width: 82px;
        height: 82px;
    }

    .hof-badge {
        width: 22px;
        height: 22px;
        font-size: 11px;
    }

    .hof-track {
        gap: 16px;
        animation-duration: 90s;
    }

    .hof-name {
        font-size: 14.5px;
    }

    .hof-school {
        font-size: 11.5px;
        min-height: 30px;
    }

    .hof-award-text {
        font-size: 11.5px;
    }

    .hof-year {
        font-size: 10px;
    }
}

/* Left Section: Slideshow */
.hero-left {
    flex: 65%;
    position: relative;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
}

/* Right Section: Topper Showcase */
.hero-middle {
    flex: 35%;
    display: flex;
    flex-direction: column;
}

/* Important Pointers Strip */
.vital-pointers-strip {
    background-color: var(--accent-red-solid);
    color: white;
    padding: 15px 0;
    position: relative;
    z-index: 10;
}

.vital-pointers-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.pointer-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
}

.pointer-icon {
    font-size: 20px;
}

@media (max-width: 768px) {
    .vital-pointers-container {
        justify-content: center;
    }

    .pointer-item {
        font-size: 14px;
    }
}




.notice-board-card {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 100%;
}

.nb-header {
    background: #f1f5f9;
    padding: 15px 20px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nb-header h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
}

.nb-pulse {
    width: 10px;
    height: 10px;
    background: var(--primary-orange);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(245, 130, 32, 0.7);
    animation: pulseOrange 2s infinite;
}

@keyframes pulseOrange {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(245, 130, 32, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(245, 130, 32, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(245, 130, 32, 0);
    }
}

.nb-content {
    padding: 15px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    overflow-y: auto;
}

.nb-content::-webkit-scrollbar {
    width: 4px;
}

.nb-content::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.nb-item {
    border-bottom: 1px dashed #e2e8f0;
    padding-bottom: 12px;
}

.nb-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.nb-badge {
    display: inline-block;
    background: #10b981;
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 12px;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.nb-badge.highlight {
    background: var(--accent-red);
}

.nb-date {
    display: inline-block;
    color: var(--primary-blue);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 6px;
}

.nb-item p {
    font-size: 13px;
    color: #475569;
    line-height: 1.5;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.nb-view-all {
    display: block;
    text-align: center;
    padding: 12px;
    background: #f8fafc;
    color: var(--primary-blue);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-top: 1px solid #e2e8f0;
    transition: var(--transition);
}

.nb-view-all:hover {
    background: #e2e8f0;
    color: var(--primary-orange);
}

.slideshow {
    width: 100%;
    height: 100%;
    position: relative;
    background: #e2e8f0;
    /* Fallback */
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-active {
    opacity: 1;
    z-index: 10;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Gradient overlay for text readability */
.slide::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 65, 130, 0.9) 0%, transparent 100%);
    z-index: 1;
}

.slide-caption {
    position: absolute;
    bottom: 40px;
    left: 40px;
    color: white;
    z-index: 2;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease 0.3s;
}

.slide-active .slide-caption {
    transform: translateY(0);
    opacity: 1;
}

.slide-caption h3 {
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 8px;
}

.slide-caption p {
    font-size: 16px;
    opacity: 0.9;
    color: white;
}

/* Slideshow Controls */
.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}

.slide-btn:hover {
    background: var(--primary-orange);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.slide-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 20;
}

.dot,
.t-dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot-active,
.t-dot-active {
    background: var(--primary-orange);
    width: 24px;
    border-radius: 10px;
}

/* Right Section: Topper Showcase */
/* Right Section: Topper Showcase */
.hero-right {
    flex: 25%;
    display: flex;
    flex-direction: column;
}

.topper-box {
    background-color: #0a4d94;
    border-radius: 0;
    height: 100%;
    padding: 40px 20px 30px;
    color: white;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 40px rgba(255, 215, 0, 0.05);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .topper-box {
        height: 400px;
        padding: 30px 20px;
    }
}

/* Subtle background accent for topper box */
.topper-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top, rgba(255, 215, 0, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.topper-section-title {
    font-size: 28px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.topper-section-title::before {
    content: '👑';
    display: block;
    font-size: 36px;
    margin-bottom: 5px;
    -webkit-text-fill-color: initial;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.4));
}

.topper-slider {
    flex-grow: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.topper-card {
    position: absolute;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    opacity: 0;
    transform: scale(0.9) translateY(20px);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
}

.card-active {
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: auto;
    z-index: 5;
}

.topper-photo-wrapper {
    position: relative;
    margin-bottom: 25px;
}

.topper-photo {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #FFD700;
    margin-bottom: 0;
    /* handled by wrapper now */
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.4);
    background: white;
}

.topper-badge-icon {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFD700;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border: 2px solid #0f172a;
}

.topper-name {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    color: #ffffff;
}

.topper-school {
    font-size: 15px;
    color: #cbd5e1;
    margin-bottom: 2px;
    font-weight: 500;
}

.topper-city {
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.topper-prize {
    font-size: 16px;
    background: rgba(255, 215, 0, 0.15);
    padding: 6px 15px;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: #FFD700;
    font-weight: 700;
    margin-bottom: 20px;
    display: inline-block;
}

.topper-designation {
    background: linear-gradient(90deg, #ea580c 0%, #f97316 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(234, 88, 12, 0.4);
    border: none;
    display: inline-block;
}

.topper-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 20px;
    position: relative;
    z-index: 10;
}

.t-dot {
    background: rgba(255, 255, 255, 0.2);
}

/* Responsive constraints */
@media (max-width: 1024px) {
    .hero-container {
        flex-direction: column;
        height: auto;
    }

    .hero-left {
        height: 400px;
    }

    .hero-middle {
        height: 350px;
    }

    .hero-right {
        height: 420px;
    }
}

/* ======== Statistics Box ======== */
.stats-box {
    background-color: var(--primary-blue);
    padding: 40px 30px;
    color: white;
    position: relative;
    z-index: 10;
    border-radius: 12px;
    margin: 40px 0;
    max-width: 1400px;
}

.stats-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 5px;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 2px;
    height: 60px;
    background: rgba(255, 255, 255, 0.25);
}

@media (max-width: 900px) {
    .stats-grid {
        flex-wrap: wrap;
        row-gap: 40px;
    }

    .stat-item {
        flex: 0 0 45%;
    }

    .stat-divider {
        display: none;
    }
}

@media (max-width: 500px) {
    .stat-item {
        flex: 0 0 100%;
    }
}

/* ======== About Section ======== */
.about-section {
    padding: 80px 24px;
    background-color: #ffffff;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
}

.about-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-image-col {
    flex: 1;
    position: relative;
}

.image-stack {
    position: relative;
    padding-bottom: 20px;
    padding-right: 20px;
}

.img-main {
    width: 100%;
    display: block;
}

.image-stack::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80%;
    height: 80%;
    border: 3px solid var(--primary-orange);
    border-radius: 12px;
    z-index: -1;
    transform: translate(15px, 15px);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #002b5e 100%);
    color: white;
    padding: 20px 25px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    display: inline-block;
    border-bottom: 3px solid var(--primary-orange);
}

.badge-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-orange);
    line-height: 1;
    margin-bottom: 5px;
}

.badge-text {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
}

.about-content-col {
    flex: 1.15;
}

.section-title-left {
    margin-bottom: 30px;
}

.section-title-left h2 {
    font-size: 36px;
    color: var(--primary-blue);
    margin-bottom: 12px;
    font-weight: 700;
}

/* Updated Prominent About Heading */
.prominent-heading {
    font-size: 40px !important;
    margin-bottom: 8px !important;
    line-height: 1.2;
}

.prominent-subheading {
    font-size: 28px;
    color: var(--primary-orange);
    font-weight: 800;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
}

.title-underline-left {
    width: 60px;
    height: 4px;
    background: var(--primary-orange);
    border-radius: 2px;
}

.about-text {
    color: #475569;
    font-size: 16px;
    margin-bottom: 35px;
}

.about-text p {
    margin-bottom: 16px;
    line-height: 1.7;
}

.about-text strong {
    color: var(--primary-blue);
}

/* Enhanced About Text Styles */
.enhanced-about-text {
    margin-top: 25px;
}

.about-lead {
    font-size: 20px !important;
    color: var(--primary-blue) !important;
    margin-bottom: 20px !important;
    font-weight: 600;
}

.about-highlight-box {
    background: #f8fafc;
    border-left: 5px solid var(--primary-orange);
    padding: 25px;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.about-highlight-box p {
    font-size: 18px !important;
    color: #475569;
    line-height: 1.8 !important;
    margin: 0 !important;
}

.ai-highlight-text {
    color: var(--primary-orange);
    font-weight: 700;
}

.vision-mission-row {
    display: flex;
    gap: 20px;
}

.vm-card {
    flex: 1;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    transition: var(--transition);
}

.vm-card:hover {
    border-color: var(--primary-orange);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    background: white;
}

.vm-icon {
    background: rgba(245, 130, 32, 0.1);
    color: var(--primary-orange);
    padding: 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vm-content h4 {
    color: var(--primary-blue);
    font-size: 18px;
    margin-bottom: 8px;
}

.vm-content p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .about-wrapper {
        flex-direction: column;
    }

    .experience-badge {
        left: 20px;
    }

    .image-stack {
        margin-bottom: 30px;
    }

    .vision-mission-row {
        flex-direction: column;
    }
}

/* ======== AI Benefits Section (Redesigned Light Theme) ======== */
.ai-benefits-section.light-theme {
    padding: 80px 24px;
    background-color: #f8fafc;
    color: #333;
    position: relative;
    overflow: hidden;
}

.ai-header-light {
    margin-bottom: 50px;
    text-align: center;
}

.ai-header-light h2 {
    color: var(--primary-blue);
}

.ai-highlight-light {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-orange);
    margin-top: 20px;
    letter-spacing: 0.5px;
}

.benefits-visual-layout {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 60px auto;
}

.benefits-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.b-col-header-light {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
}

.b-icon-light {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.school-icon-light {
    background: rgba(245, 130, 32, 0.1);
    color: var(--primary-orange);
}

.student-icon-light {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.b-col-header-light h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-blue);
}

.benefit-card-light {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
    height: 100%;
}

.benefit-card-light:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transform: translateY(-3px);
    border-color: rgba(245, 130, 32, 0.3);
}

.benefit-card-light h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    gap: 8px;
}

.benefit-card-light p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.benefits-image-wrapper {
    flex: 1.2;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-glow-backdrop {
    position: absolute;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(245, 130, 32, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
}

.benefits-center-image {
    position: relative;
    z-index: 2;
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.prime-membership-card-light {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 40px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.prime-badge-light {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-orange);
    color: white;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 30px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(245, 130, 32, 0.3);
}

.prime-header-light {
    text-align: center;
    margin-bottom: 35px;
}

.prime-header-light h3 {
    font-size: 28px;
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 8px;
}

.prime-header-light p {
    font-size: 14px;
    color: #64748b;
    font-style: italic;
}

.prime-split-light {
    display: flex;
    gap: 40px;
}

.prime-detail-col-light {
    flex: 1;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.p-icon-wrap {
    font-size: 24px;
    background: #f1f5f9;
    padding: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.prime-detail-separator-light {
    width: 2px;
    background: #e2e8f0;
}

.p-text-wrap h4 {
    font-size: 20px;
    color: var(--primary-blue);
    margin-bottom: 15px;
    margin-top: 5px;
}

.p-text-wrap p {
    font-size: 15px;
    color: #475569;
    margin-bottom: 10px;
    line-height: 1.6;
}

.tour-highlight-light {
    background: rgba(245, 130, 32, 0.05);
    border-left: 3px solid var(--primary-orange);
    padding: 12px 15px;
    border-radius: 0 8px 8px 0;
    margin-top: 15px;
}

@media (max-width: 992px) {
    .benefits-visual-layout {
        flex-direction: column;
    }

    .benefits-image-wrapper {
        margin: 30px 0;
    }
}

@media (max-width: 900px) {
    .prime-split-light {
        flex-direction: column;
        gap: 20px;
    }

    .prime-detail-separator-light {
        width: 100%;
        height: 1px;
    }
}

/* ======== Compact Features Section ======== */
.features-compact-section {
    padding: 40px 24px 10px 24px;
    /* Less padding so it acts as a transition strip */
    background-color: transparent;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 20;
    margin-top: -30px;
    /* Pull it slightly up into the hero section space if desired, or just sit nicely */
}

/* Let's reset the negative margin if we want it fully standalone */
.features-compact-section {
    margin-top: 0;
    padding-top: 60px;
    padding-bottom: 20px;
}

.features-compact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-compact-card {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #002b5e 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    /* very subtle light border */
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 65, 130, 0.15);
    transition: var(--transition);
}

.feature-compact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 65, 130, 0.3);
    border-color: rgba(245, 130, 32, 0.5);
}

.fc-icon {
    width: 60px;
    height: 60px;
    background: rgba(245, 130, 32, 0.15);
    color: var(--primary-orange);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(245, 130, 32, 0.2);
}

.feature-compact-card:hover .fc-icon {
    background: var(--primary-orange);
    color: #ffffff;
    transform: scale(1.1);
}

.feature-compact-card h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
    letter-spacing: 0.3px;
}

.feature-compact-card p {
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .features-compact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .features-compact-grid {
        grid-template-columns: 1fr;
    }
}

/* ======== Common Section Styles ======== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    color: var(--primary-blue);
    margin-bottom: 12px;
    font-weight: 700;
}

.header-underline {
    width: 60px;
    height: 4px;
    background: var(--primary-orange);
    margin: 0 auto;
    border-radius: 2px;
}

/* ======== Exam Schedule Section ======== */
.exam-schedule-section {
    padding: 80px 24px;
    background-color: #f8fafc;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-top: 40px;
}

.exam-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 900px;
    font-size: 15px;
}

.exam-table th,
.exam-table td {
    border: 1px solid #e2e8f0;
    padding: 15px 20px;
    text-align: center;
    color: var(--text-color);
}

.exam-table th {
    background-color: var(--primary-blue);
    color: white;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 16px;
    vertical-align: middle;
}

.exam-table th.th-level {
    background-color: #0a4d94;
    /* Slightly lighter blue snippet */
}

.exam-table th.th-result {
    background-color: var(--primary-orange);
}

.exam-table tbody tr {
    transition: background-color 0.2s;
}

.exam-table tbody tr:hover {
    background-color: #f1f5f9;
}

.exam-table td:first-child {
    text-align: left;
    color: var(--primary-blue);
    font-size: 16px;
}

.merged-cell {
    vertical-align: middle;
    background-color: #ffffff;
    padding: 24px;
}

.merged-cell .cell-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    line-height: 1.5;
}

.date-cell {
    background-color: rgba(0, 65, 130, 0.02);
    /* subtle blue tint */
}

.result-cell {
    background-color: rgba(245, 130, 32, 0.02);
    /* subtle orange tint */
}

.highlight-text {
    color: var(--primary-orange);
    font-weight: 700;
    font-size: 18px;
    display: block;
    margin-bottom: 5px;
}

.mode-badge {
    padding: 2px 6px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    display: inline-block;
    white-space: nowrap;
    margin-left: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    vertical-align: middle;
}

.badge-online {
    background-color: rgba(16, 185, 129, 0.1);
    color: #059669;
    /* Emerald 600 */
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.badge-offline {
    background-color: transparent;
    color: #94a3b8;
    /* Slate 400 */
    border: 1px solid #cbd5e1;
    /* Slate 300 */
}

/* Adjusting column widths for better fit */
.date-col-header {
    white-space: nowrap;
}

.exam-table td:nth-child(3),
.exam-table td:nth-child(4) {
    white-space: nowrap;
}

.result-col-narrow {
    width: 180px;
    max-width: 180px;
    line-height: 1.4;
}

/* ======== Fees & Packages Section (Visual Design) ======== */
.fees-showcase-section {
    padding: 80px 24px;
    background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.fees-subtitle {
    font-size: 18px;
    color: #475569;
    max-width: 700px;
    margin: 20px auto 0;
}

.combo-benefits-banner {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(245, 130, 32, 0.1) 0%, rgba(245, 130, 32, 0.02) 100%);
    border: 1px solid rgba(245, 130, 32, 0.3);
    border-radius: 16px;
    padding: 25px 30px;
    max-width: 900px;
    margin: 0 auto 50px auto;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.cb-icon {
    flex-shrink: 0;
    margin-right: 25px;
    background: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(245, 130, 32, 0.2);
}

.cb-text h3 {
    color: var(--primary-orange);
    font-size: 20px;
    margin-bottom: 8px;
}

.cb-text p {
    color: #334155;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.cb-badge {
    position: absolute;
    top: -12px;
    right: -12px;
    background: var(--accent-red-solid);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 15px;
    border-radius: 20px;
    text-transform: uppercase;
    transform: rotate(5deg);
    box-shadow: 0 4px 10px rgba(214, 40, 40, 0.3);
}

.visual-pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

.v-price-card {
    background: white;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.02);
    position: relative;
    display: flex;
    flex-direction: column;
}

.v-price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.vpc-header {
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.vpc-header h4 {
    font-size: 18px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.vpc-price {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    color: var(--primary-blue);
}

.vpc-price .currency {
    font-size: 24px;
    font-weight: 700;
    margin-top: 5px;
}

.vpc-price .amount {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
}

.vpc-per {
    display: block;
    font-size: 13px;
    color: #94a3b8;
    margin-top: 5px;
}

.vpc-note {
    font-size: 13px;
    color: #94a3b8;
    margin-top: -10px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.vpc-price-range {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-blue);
    margin: 15px 0 5px 0;
}

.vpc-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.vpc-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.vpc-features li {
    font-size: 14px;
    color: #475569;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.vpc-features li .check {
    color: #10b981;
    font-weight: bold;
    margin-right: 10px;
    font-size: 16px;
}

.combo-card {
    border-color: rgba(245, 130, 32, 0.3);
}

.combo-card .vpc-header h4 {
    color: var(--primary-orange);
}

.all-in-one-card {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #002b5e 100%);
    border: none;
    color: white;
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 65, 130, 0.2);
}

.all-in-one-card:hover {
    transform: scale(1.05) translateY(-10px);
}

.all-in-one-card .vpc-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.all-in-one-card .vpc-header h4 {
    color: #ffd700;
}

.all-in-one-card .vpc-price {
    color: white;
}

.all-in-one-card .vpc-per {
    color: rgba(255, 255, 255, 0.7);
}

.all-in-one-card .vpc-features li {
    color: rgba(255, 255, 255, 0.9);
}

.all-in-one-card .vpc-features li .check {
    color: #ffd700;
}

.mega-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
    color: #1a1a1a;
    font-weight: 800;
    font-size: 12px;
    padding: 6px 15px;
    border-radius: 20px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.level-2-note {
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    color: #475569;
    font-size: 14px;
    max-width: 600px;
    margin: 40px auto 0;
}

@media (max-width: 1024px) {
    .visual-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 40px;
    }

    .all-in-one-card {
        transform: scale(1);
    }

    .all-in-one-card:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 600px) {
    .visual-pricing-grid {
        grid-template-columns: 1fr;
    }

    .combo-benefits-banner {
        flex-direction: column;
        text-align: center;
    }

    .cb-icon {
        margin: 0 0 15px 0;
    }
}

/* ======== Dashboard Showcase Section (Light & Visual Redesign) ======== */
.dashboard-showcase-section {
    padding: 80px 24px;
    background: #f8fafc;
    /* light blue-grey background */
    overflow: hidden;
}

.dash-display-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 60px;
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid #e2e8f0;
}

.reverse-row {
    flex-direction: row-reverse;
}

.dash-image-col {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.dash-mockup-wrapper {
    position: relative;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    /* crisp shadow */
    border: 4px solid #f1f5f9;
    background: white;
    z-index: 2;
    transition: transform 0.4s ease;
}

.dash-mockup-wrapper:hover {
    transform: translateY(-10px);
}

.dash-screenshot {
    width: 100%;
    max-width: 550px;
    height: auto;
    border-radius: 8px;
    display: block;
}

.mockup-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.6;
}

.student-glow {
    background: rgba(16, 185, 129, 0.4);
}

.school-glow {
    background: rgba(245, 130, 32, 0.4);
}

.dash-content-col {
    flex: 1;
}

.dash-role-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.student-badge {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.school-badge {
    background: rgba(245, 130, 32, 0.1);
    color: #ea580c;
    border: 1px solid rgba(245, 130, 32, 0.2);
}

.dash-content-col h3 {
    font-size: 32px;
    color: var(--primary-blue);
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.dash-summary {
    font-size: 16px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 30px;
}

.dash-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
}

.dash-feature-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.dl-icon {
    font-size: 24px;
    margin-right: 15px;
    background: #f1f5f9;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.dl-text {
    display: flex;
    flex-direction: column;
}

.dl-text strong {
    font-size: 16px;
    color: var(--primary-blue);
    margin-bottom: 4px;
}

.dl-text span {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
}

.watch-tut-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-blue);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.watch-tut-btn:hover {
    background: #0a4d94;
    transform: translateY(-3px);
}

.school-tut-btn {
    background: var(--primary-orange);
}

.school-tut-btn:hover {
    background: #e67512;
}

.play-icon {
    font-size: 12px;
}

@media (max-width: 992px) {

    .dash-display-row,
    .reverse-row {
        flex-direction: column;
        padding: 30px 20px;
    }

    .dash-screenshot {
        max-width: 100%;
    }

    .dash-content-col h3 {
        font-size: 26px;
    }
}

/* ======== Olympiad Journey - gamified stepper ======== */
.journey-section {
    position: relative;
    padding: 84px 24px 96px;
    background:
        radial-gradient(1000px 400px at 15% 0%, rgba(11, 68, 117, 0.06) 0%, transparent 60%),
        radial-gradient(900px 360px at 85% 100%, rgba(244, 124, 34, 0.08) 0%, transparent 65%),
        linear-gradient(180deg, #ffffff 0%, #f7fafd 100%);
    overflow: hidden;
}

.journey-section::before,
.journey-section::after {
    content: '';
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(60px);
    opacity: 0.5;
}

.journey-section::before {
    top: -80px;
    left: -80px;
    background: radial-gradient(circle, rgba(11, 68, 117, 0.22) 0%, transparent 70%);
}

.journey-section::after {
    bottom: -80px;
    right: -80px;
    background: radial-gradient(circle, rgba(244, 124, 34, 0.22) 0%, transparent 70%);
}

.journey-header {
    max-width: 820px;
    margin: 0 auto 48px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.journey-eyebrow {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--primary-orange);
    background: rgba(244, 124, 34, 0.10);
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.journey-title {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: clamp(28px, 3.6vw, 42px);
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1.15;
    margin: 0 0 12px;
    letter-spacing: -0.02em;
}

.journey-sub {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #475569;
    line-height: 1.55;
    margin: 0;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.journey-scroll {
    position: relative;
    z-index: 2;
    max-width: 1360px;
    margin: 0 auto;
    overflow-x: auto;
    overflow-y: visible;
    padding: 20px 12px 32px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.journey-scroll::-webkit-scrollbar {
    display: none;
}

.journey-map {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
    min-width: 100%;
    padding-top: 10px;
}

.journey-path {
    position: absolute;
    top: 38px;
    left: 0;
    width: 100%;
    height: 40px;
    z-index: 0;
    pointer-events: none;
}

/* Individual stage (clickable) */
.journey-stage {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
    cursor: pointer;
}

.journey-stage:hover {
    transform: translateY(-6px);
}

.journey-stage:focus-visible {
    outline: 3px solid rgba(244, 124, 34, 0.5);
    outline-offset: 6px;
    border-radius: 20px;
}

/* Node (circular badge on top) */
.jstage-node {
    position: relative;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffffff 0%, #f1f6fb 100%);
    border: 3px solid #ffffff;
    box-shadow:
        0 10px 24px rgba(11, 68, 117, 0.18),
        0 2px 6px rgba(11, 68, 117, 0.08),
        0 0 0 3px rgba(11, 68, 117, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--primary-blue);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.journey-stage:hover .jstage-node {
    box-shadow:
        0 16px 32px rgba(11, 68, 117, 0.28),
        0 4px 10px rgba(244, 124, 34, 0.18),
        0 0 0 3px rgba(244, 124, 34, 0.25);
    color: var(--primary-orange);
}

.jstage-num {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #083657 100%);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(11, 68, 117, 0.35), 0 0 0 2px #ffffff;
}

.jstage-icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jstage-icon svg {
    width: 100%;
    height: 100%;
}

/* AI accent (stage 5) */
.jstage-node-ai {
    background: linear-gradient(135deg, #ffffff 0%, #fff4e9 100%);
    color: var(--primary-orange);
    animation: jstageAiPulse 3s ease-in-out infinite;
}

@keyframes jstageAiPulse {

    0%,
    100% {
        box-shadow: 0 10px 24px rgba(244, 124, 34, 0.22), 0 0 0 3px rgba(244, 124, 34, 0.15);
    }

    50% {
        box-shadow: 0 14px 30px rgba(244, 124, 34, 0.34), 0 0 0 8px rgba(244, 124, 34, 0.08);
    }
}

.jstage-ai-chip {
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-orange);
    color: #ffffff;
    font-size: 9.5px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 999px;
    letter-spacing: 1.2px;
    box-shadow: 0 3px 8px rgba(244, 124, 34, 0.45), 0 0 0 2px #ffffff;
}

/* Gold accent (stage 6 finale) */
.jstage-node-gold {
    background: linear-gradient(135deg, #fff9e0 0%, #ffd770 100%);
    color: #8a5a00;
    border-color: #ffe9a3;
    box-shadow:
        0 12px 26px rgba(212, 160, 20, 0.35),
        0 2px 6px rgba(212, 160, 20, 0.2),
        0 0 0 3px rgba(255, 215, 112, 0.4);
}

.journey-stage:hover .jstage-node-gold {
    color: #8a5a00;
    box-shadow:
        0 18px 36px rgba(212, 160, 20, 0.45),
        0 4px 10px rgba(212, 160, 20, 0.3),
        0 0 0 3px rgba(255, 196, 70, 0.55);
}

/* Stage card */
.journey-stage {
    height: 100%;
}

.jstage-card {
    position: relative;
    width: 100%;
    flex: 1 1 auto;
    background: #ffffff;
    border-radius: 18px;
    padding: 22px 18px 22px;
    box-shadow: 0 6px 18px rgba(11, 68, 117, 0.08), 0 1px 3px rgba(11, 68, 117, 0.04);
    border: 1px solid rgba(11, 68, 117, 0.06);
    transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
    text-align: center;
    min-height: 270px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.journey-stage:hover .jstage-card {
    box-shadow: 0 14px 32px rgba(11, 68, 117, 0.14), 0 2px 6px rgba(244, 124, 34, 0.08);
    border-color: rgba(244, 124, 34, 0.25);
}

.jstage-title {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.3;
    margin: 0;
    letter-spacing: -0.01em;
}

.jstage-desc {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #475569;
    line-height: 1.5;
    margin: 0;
}

.jstage-desc strong {
    color: var(--primary-blue);
    font-weight: 700;
}

/* Secondary benefit block inside Registration card */
.jstage-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(11, 68, 117, 0.04) 100%);
    border: 1px solid rgba(16, 185, 129, 0.18);
    border-radius: 12px;
    text-align: left;
    margin-top: 2px;
}

.jstage-benefit-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
}

.jstage-benefit-icon svg {
    width: 16px;
    height: 16px;
}

.jstage-benefit-body {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}

.jstage-benefit-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.jstage-benefit-sub {
    font-family: 'Inter', sans-serif;
    font-size: 10.5px;
    font-weight: 500;
    color: #64748b;
    line-height: 1.3;
}

.jstage-note {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: #0b4475;
    background: rgba(11, 68, 117, 0.06);
    border-left: 3px solid var(--primary-orange);
    padding: 7px 10px;
    border-radius: 6px;
    line-height: 1.35;
    text-align: left;
    margin-top: 2px;
    font-weight: 500;
}

.jstage-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
    margin-top: 2px;
}

.jstage-pill {
    font-family: 'Inter', sans-serif;
    font-size: 10.5px;
    font-weight: 600;
    color: var(--primary-blue);
    background: #eef4fb;
    padding: 4px 9px;
    border-radius: 999px;
    letter-spacing: 0.2px;
}

.jstage-pill-alt {
    background: rgba(244, 124, 34, 0.10);
    color: var(--primary-orange);
}

.jstage-pill-fee {
    background: linear-gradient(135deg, #0b4475 0%, #135a96 100%);
    color: #ffffff;
    font-size: 11px;
    padding: 5px 12px;
    box-shadow: 0 4px 10px rgba(11, 68, 117, 0.25);
}

.jstage-tag {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 10.5px;
    font-weight: 700;
    padding: 5px 11px;
    border-radius: 999px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: auto;
    align-self: center;
}

.jstage-tag-primary {
    background: var(--primary-orange);
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(244, 124, 34, 0.35);
}

.jstage-tag-free {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.35);
}

.jstage-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 11.5px;
    font-weight: 700;
    color: var(--primary-orange);
    background: rgba(244, 124, 34, 0.08);
    padding: 7px 12px;
    border-radius: 999px;
    border: 1.5px solid rgba(244, 124, 34, 0.25);
    transition: all 0.25s ease;
    margin-top: auto;
    align-self: center;
    letter-spacing: 0.2px;
}

.journey-stage:hover .jstage-btn {
    background: var(--primary-orange);
    color: #ffffff;
    border-color: var(--primary-orange);
    box-shadow: 0 6px 14px rgba(244, 124, 34, 0.35);
}

.jstage-btn svg {
    transition: transform 0.25s ease;
}

.journey-stage:hover .jstage-btn svg {
    transform: translateX(2px);
}

.jstage-btn-gold {
    background: linear-gradient(135deg, #fff4d1 0%, #ffd770 100%);
    color: #6b4400;
    border-color: rgba(212, 160, 20, 0.4);
}

.journey-stage:hover .jstage-btn-gold {
    background: linear-gradient(135deg, #ffd770 0%, #f4b400 100%);
    color: #4a2f00;
    border-color: #f4b400;
    box-shadow: 0 6px 14px rgba(212, 160, 20, 0.45);
}

/* Elite ribbon for Level 2 */
.jstage-card-elite {
    border: 1.5px solid rgba(244, 124, 34, 0.3);
    background:
        linear-gradient(180deg, rgba(244, 124, 34, 0.04) 0%, #ffffff 60%);
}

.jstage-ribbon {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 800;
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary-orange) 0%, #d65a0a 100%);
    padding: 4px 12px;
    border-radius: 999px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(244, 124, 34, 0.4);
    z-index: 2;
}

/* AI Report stats */
.jstage-stats {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    align-items: center;
    justify-items: center;
    gap: 8px;
    padding: 12px 10px;
    background: linear-gradient(135deg, rgba(11, 68, 117, 0.05) 0%, rgba(244, 124, 34, 0.05) 100%);
    border: 1px solid rgba(11, 68, 117, 0.08);
    border-radius: 12px;
    margin-top: auto;
}

.jstage-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.jstage-stat-num {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-orange);
    line-height: 1;
    letter-spacing: -0.02em;
    display: inline-flex;
    align-items: baseline;
}

.jstage-stat-plus {
    font-size: 0.7em;
    margin-left: 1px;
    font-weight: 700;
}

.jstage-stat-lbl {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-top: 2px;
}

.jstage-stat-div {
    width: 1px;
    height: 34px;
    align-self: center;
    background: rgba(11, 68, 117, 0.15);
}

/* Finale card (stage 6) */
.jstage-card-finale {
    background:
        radial-gradient(100% 60% at 50% 0%, rgba(255, 196, 70, 0.12) 0%, transparent 60%),
        #ffffff;
    border-color: rgba(212, 160, 20, 0.3);
}

/* Scroll hint (mobile only, hidden on desktop) */
.journey-scroll-hint {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #94a3b8;
    letter-spacing: 0.3px;
}

/* ---------- Tablet breakpoint ---------- */
@media (max-width: 1100px) {
    .journey-map {
        grid-template-columns: repeat(5, 240px);
        gap: 18px;
        min-width: max-content;
    }

    .journey-path {
        display: none;
    }

    .journey-scroll {
        padding-left: 24px;
        padding-right: 24px;
    }

    .journey-scroll-hint {
        display: flex;
    }
}

/* ---------- Mobile breakpoint ---------- */
@media (max-width: 768px) {
    .journey-section {
        padding: 60px 0 72px;
    }

    .journey-header {
        padding: 0 20px;
        margin-bottom: 32px;
    }

    .journey-scroll {
        padding: 14px 20px 22px;
        scroll-snap-type: x mandatory;
    }

    .journey-map {
        grid-template-columns: repeat(5, 260px);
        gap: 14px;
    }

    .journey-stage {
        scroll-snap-align: start;
    }

    .jstage-node {
        width: 68px;
        height: 68px;
        margin-bottom: 14px;
    }

    .jstage-icon {
        width: 30px;
        height: 30px;
    }

    .jstage-num {
        width: 26px;
        height: 26px;
        font-size: 10px;
        top: -6px;
        right: -6px;
    }

    .jstage-card {
        padding: 18px 14px 18px;
        min-height: 250px;
    }

    .jstage-title {
        font-size: 15px;
    }

    .jstage-desc {
        font-size: 12.5px;
    }

    .jstage-stat-num {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .journey-title {
        font-size: 24px;
    }

    .journey-sub {
        font-size: 14px;
    }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {

    .journey-stage,
    .jstage-node,
    .jstage-card,
    .jstage-btn,
    .jstage-btn svg,
    .jstage-node-ai {
        transition: none;
        animation: none;
    }
}

/* ======== Awards Section ======== */
.awards-section {
    padding: 80px 24px;
    background-color: #ffffff;
}

/* Champion Award as Grand Prize */
.premium-champion-banner {
    display: flex;
    background: #033475;
    border-radius: 12px;
    overflow: hidden;
    margin: 40px auto 50px auto;
    max-width: 1200px;
    height: auto;
}

.pc-image-bg {
    flex: 0 0 35%;
    position: relative;
}

.pc-image-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pc-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.pc-content {
    flex: 1;
    padding: 35px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pc-label {
    color: var(--primary-orange);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.pc-title {
    color: #ffffff;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
}

.pc-desc {
    color: #94a3b8;
    font-size: 15px;
    margin-bottom: 25px;
    line-height: 1.5;
}

.pc-specs {
    display: flex;
    align-items: center;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.pc-spec-item {
    display: flex;
    flex-direction: column;
}

.pc-spec-label {
    color: #64748b;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.pc-spec-value {
    color: #e2e8f0;
    font-size: 14px;
    font-weight: 600;
}

.pc-spec-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 900px) {
    .premium-champion-banner {
        flex-direction: column;
    }

    .pc-image-bg {
        height: 180px;
    }

    .pc-overlay {
        background: linear-gradient(to bottom, transparent, #001229);
    }

    .pc-specs {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .pc-spec-divider {
        display: none;
    }
}

/* ======== Premium Awards Grid Section ======== */
.awards-value-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.awards-value-content h3 {
    font-size: 28px;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 800;
}

.awards-value-content p {
    font-size: 16px;
    color: #475569;
    line-height: 1.6;
}

.premium-awards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto 60px auto;
    align-items: stretch;
}

.premium-award-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
}

.premium-award-card:hover {
    transform: translateY(-8px);
}

.p-award-icon {
    font-size: 48px;
    margin-bottom: 15px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.p-award-tier {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 10px;
}

.p-award-prizes {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.p-award-prizes li {
    font-size: 14px;
    color: #475569;
    line-height: 1.5;
}

.p-award-prizes li strong {
    color: var(--primary-blue);
}

.p-cash-prize {
    display: block;
    font-size: 32px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 5px;
}

/* Specific themes */
.p-tier-school {
    border-top: 5px solid #cd7f32;
    /* Bronze */
}

.p-tier-school:hover {
    box-shadow: 0 15px 40px rgba(205, 127, 50, 0.15);
    border-color: #cd7f32;
}

.p-tier-district {
    border-top: 5px solid #94a3b8;
    /* Silver */
}

.p-tier-district:hover {
    box-shadow: 0 15px 40px rgba(148, 163, 184, 0.2);
    border-color: #94a3b8;
}

.p-tier-zonal {
    border-top: 5px solid #fbbf24;
    /* Gold */
    background: linear-gradient(to bottom, #fffbeb, #ffffff);
}

.p-tier-zonal .p-cash-prize {
    color: #d97706;
}

.p-tier-zonal:hover {
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.2);
    border-color: #fbbf24;
}

.p-tier-national {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #002b5e 100%);
    border: none;
    color: white;
    transform: scale(1.05);
    z-index: 2;
}

.p-tier-national:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 65, 130, 0.3);
}

.p-tier-national .p-award-tier {
    color: #ffd700;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.p-tier-national .p-award-prizes li {
    color: rgba(255, 255, 255, 0.9);
}

.p-tier-national .p-cash-prize {
    color: white;
}

.p-pop-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-red-solid);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(214, 40, 40, 0.3);
}

.p-tier-national .p-pop-badge {
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
    color: #1a1a1a;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

/* Testimonial Strip */
.award-testimonials-strip {
    background: #f8fafc;
    border-radius: 16px;
    padding: 40px;
    border: 1px solid #e2e8f0;
    max-width: 1000px;
    margin: 0 auto;
}

.strip-header {
    text-align: center;
    margin-bottom: 30px;
}

.strip-header h4 {
    font-size: 22px;
    color: var(--primary-blue);
    font-weight: 800;
    margin-bottom: 5px;
}

.strip-header p {
    color: var(--primary-orange);
    font-weight: 600;
}

.strip-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.strip-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.s-quote-mark {
    position: absolute;
    top: -15px;
    left: 20px;
    font-size: 60px;
    color: rgba(245, 130, 32, 0.15);
    font-family: serif;
    line-height: 1;
}

.s-quote {
    font-size: 15px;
    color: #334155;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.s-author {
    font-size: 14px;
    color: #64748b;
}

.s-author strong {
    color: var(--primary-blue);
}

@media (max-width: 1024px) {
    .premium-awards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 25px;
    }

    .p-tier-national {
        transform: scale(1);
    }

    .p-tier-national:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 768px) {
    .strip-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .awards-grid {
        grid-template-columns: 1fr;
    }

    .sq-award {
        aspect-ratio: auto;
        min-height: 250px;
    }
}

/* ======== Query Form Section ======== */
.query-section {
    padding: 80px 24px;
    background-color: #f1f5f9;
}

.query-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}

.query-content h2 {
    font-size: 36px;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.query-content p {
    font-size: 16px;
    color: #475569;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.c-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #ffffff;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    border: 1px solid #e2e8f0;
}

.c-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(245, 130, 32, 0.1);
    border-radius: 50%;
}

.c-info-item div {
    display: flex;
    flex-direction: column;
}

.c-info-item strong {
    color: var(--primary-blue);
    font-size: 16px;
    font-weight: 700;
}

.c-info-item span {
    color: #64748b;
    font-size: 15px;
}

/* Form Styles */
.query-form-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 65, 130, 0.08);
    border: 1px solid #e2e8f0;
}

.query-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-blue);
    font-family: 'Inter', sans-serif;
}

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--text-color);
    transition: var(--transition);
    background: #f8fafc;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(245, 130, 32, 0.15);
}

.submit-btn {
    width: 100%;
    margin-top: 10px;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

@media (max-width: 900px) {
    .query-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ======== Toppers Testimony Section ======== */
.toppers-section {
    padding: 80px 24px;
    background: #ffffff;
}

.testimonials-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 20px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
}

.testimony-card {
    flex: 0 0 calc(33.333% - 20px);
    background: #f8fafc;
    border-radius: 12px;
    padding: 35px 30px;
    scroll-snap-align: center;
    border: 1px solid #e2e8f0;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.testimony-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 65, 130, 0.08);
    border-color: rgba(245, 130, 32, 0.3);
}

.t-quote-icon {
    font-size: 60px;
    color: rgba(0, 65, 130, 0.1);
    position: absolute;
    top: 10px;
    right: 25px;
    font-family: serif;
    line-height: 1;
}

.t-heading {
    font-size: 18px;
    color: var(--primary-orange);
    margin-bottom: 15px;
    z-index: 2;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

.t-text {
    font-size: 15px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 30px;
    flex-grow: 1;
    font-style: italic;
    z-index: 2;
}

.t-author {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #e2e8f0;
    padding-top: 20px;
}

.t-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), #002b5e);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 1px;
    flex-shrink: 0;
}

.t-info {
    display: flex;
    flex-direction: column;
}

.t-info strong {
    color: var(--primary-blue);
    font-size: 16px;
    margin-bottom: 3px;
}

.t-info span {
    font-size: 13px;
    color: #64748b;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.testimony-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #cbd5e1;
    background: #ffffff;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.testimony-btn:hover {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

@media (max-width: 992px) {
    .testimony-card {
        flex: 0 0 calc(50% - 15px);
    }
}

/* ======== Exam Structure & Dates Section (Light Mode Refined) ======== */
.exam-schedule-section {
    position: relative;
    padding: 80px 24px;
    background:
        radial-gradient(900px 380px at 85% 0%, rgba(11, 68, 117, 0.04) 0%, transparent 60%),
        radial-gradient(800px 340px at 15% 100%, rgba(244, 124, 34, 0.04) 0%, transparent 60%),
        linear-gradient(180deg, #eef4fb 0%, #f3f7fc 100%);
    overflow: hidden;
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 1200px;
    margin: 40px auto 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    /* slightly stronger shadow */
    border-radius: 8px;
    /* For the wrapper */
}

.exam-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    color: #0f172a;
    background: #ffffff;
    border: 2px solid var(--primary-blue);
}

.exam-table th,
.exam-table td {
    padding: 14px 18px;
    text-align: center;
    border: 1px solid #94a3b8;
    vertical-align: middle;
}

/* Force first column styling (Subject + Badge Wrapping) */
.exam-table td:first-child strong {
    display: block;
    /* Forces line break */
    white-space: nowrap;
    margin-bottom: 6px;
    color: var(--primary-blue);
    font-size: 14.5px;
}

/* Border exceptions removed for unified grid layout */

.exam-table thead {
    background-color: var(--primary-blue);
}

.exam-table th {
    font-size: 13px;
    font-weight: 800;
    color: #ffffff;
    vertical-align: middle;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.exam-table tbody tr {
    transition: var(--transition);
}

.exam-table tbody tr:nth-child(even) {
    background-color: #f3f6fa;
}

.exam-table tbody tr:hover {
    background-color: #eaf0f6;
}

.mode-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 10.5px;
    font-weight: 700;
    margin: 0 auto;
    /* Centered under text explicitly */
    text-transform: uppercase;
}

.badge-offline {
    background-color: rgba(245, 130, 32, 0.08);
    /* Paler orange */
    color: var(--primary-orange);
    border: 1px solid rgba(245, 130, 32, 0.2);
}

.badge-online {
    background-color: rgba(0, 65, 130, 0.06);
    /* Paler blue */
    color: var(--primary-blue);
    border: 1px solid rgba(0, 65, 130, 0.15);
}

.date-col-header {
    background-color: #002b5e;
    color: #ffffff;
    font-weight: 600;
}

.result-cell,
.date-cell {
    text-align: center !important;
    vertical-align: middle;
    background-color: #fafad200;
    /* transparent */
}

/* Specific styling for the row-spanned cells */
.merged-cell {
    background-color: #ffffff !important;
    border: 1px solid #94a3b8 !important;
}

.merged-cell.result-cell {
    background: #ffffff;
}

.cell-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    line-height: 1.6;
}

.cell-content strong {
    color: var(--primary-blue);
    font-weight: 700;
}

.result-col-narrow {
    width: 200px;
}

@media (max-width: 600px) {
    .testimony-card {
        flex: 0 0 100%;
        scroll-snap-align: start;
    }
}

/* ======== Footer Section ======== */
.main-footer {
    background-color: #114a91;
    color: #e2e8f0;
    padding: 70px 24px 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 50px;
}

.footer-col h4 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-orange);
}

.brand-col .footer-logo {
    max-height: 70px;
    background: white;
    padding: 8px 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
}

.footer-brand-name {
    font-size: 17px;
    color: white;
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1.3;
    font-family: 'Inter', sans-serif;
}

.footer-tagline {
    font-size: 14px;
    color: #cbd5e1;
    font-style: italic;
}

.links-col ul,
.contact-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.links-col li {
    margin-bottom: 15px;
}

.links-col a,
.contact-details a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition);
    display: inline-block;
}

.links-col a:hover,
.contact-details a:hover {
    color: var(--primary-orange);
    transform: translateX(5px);
}

.contact-details li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.6;
}

.contact-details svg {
    color: var(--primary-orange);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 14px;
    color: #ffffff;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* ======== Study Materials Section ======== */
.study-materials-section {
    padding: 100px 24px 80px;
    background-color: var(--bg-color);
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 80px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.material-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 0 30px 40px;
    text-align: center;
    position: relative;
    border: 1px solid #e2e8f0;
    transition: var(--transition);
    margin-top: 60px;
    display: flex;
    flex-direction: column;
}

.material-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 65, 130, 0.1);
    border-color: rgba(245, 130, 32, 0.3);
}

.material-img-wrapper {
    width: 180px;
    height: 180px;
    margin: -90px auto 25px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border: 5px solid #ffffff;
    background: #ffffff;
    transition: var(--transition);
}

.material-card:hover .material-img-wrapper {
    transform: scale(1.05);
}

.material-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.material-content h3 {
    font-size: 22px;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.material-content p {
    font-size: 15px;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

.highlight-text {
    display: inline-block;
    background: rgba(214, 40, 40, 0.08);
    color: var(--accent-red-solid);
    border: 1px solid var(--accent-red);
    padding: 6px 16px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    margin-top: 15px;
}

/* Responsive Constraints */
@media (max-width: 992px) {
    .materials-grid {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 30px;
        row-gap: 100px;
    }
}

@media (max-width: 600px) {
    .materials-grid {
        grid-template-columns: 1fr;
        row-gap: 120px;
        margin-top: 100px;
    }
}

/* ======== School Registration CTA ======== */
.school-cta-section {
    padding: 20px 24px 60px;
    background-color: var(--bg-color);
}

.cta-banner {
    background: linear-gradient(135deg, rgba(214, 40, 40, 0.03) 0%, rgba(245, 130, 32, 0.05) 100%);
    border: 2px dashed rgba(214, 40, 40, 0.3);
    border-radius: 16px;
    padding: 40px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    transition: var(--transition);
}

.cta-banner:hover {
    border-color: var(--accent-red);
    box-shadow: 0 10px 30px rgba(214, 40, 40, 0.08);
}

.cta-content h2 {
    font-size: 28px;
    color: var(--primary-blue);
    margin-bottom: 12px;
    font-family: 'Playfair Display', serif;
}

.cta-p1 {
    font-size: 18px;
    font-weight: 600;
    color: var(--accent-red-solid);
    margin-bottom: 5px;
}

.cta-p2 {
    font-size: 15px;
    color: #475569;
}

.btn-cta {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--accent-red-solid);
    box-shadow: 0 8px 20px rgba(214, 40, 40, 0.3);
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background-color: var(--primary-blue);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 65, 130, 0.3);
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .cta-banner {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 40px 24px;
    }
}

/* ======== School Reach Section (Infinite Marquee) ======== */
.school-reach-section {
    padding: 80px 0;
    background-color: #f8fafc;
    overflow: hidden;
}

.school-reach-section .container {
    padding: 0 24px;
}

.marquee-container {
    width: 100vw;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    margin-top: 30px;
    display: flex;
}

.marquee-container::before,
.marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, #f8fafc 0%, transparent 100%);
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, #f8fafc 0%, transparent 100%);
}

.marquee-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scrollMarquee 35s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-item {
    width: 350px;
    height: 220px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border: 3px solid white;
    transition: var(--transition);
}

.marquee-item:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 65, 130, 0.15);
    border-color: var(--primary-orange);
}

.marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.marquee-item:hover img {
    transform: scale(1.1);
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 10px));
    }
}

@media (max-width: 768px) {
    .marquee-item {
        width: 280px;
        height: 180px;
    }

    .marquee-container::before,
    .marquee-container::after {
        width: 60px;
    }
}

/* ======== Instagram Section ======== */
.instagram-section {
    position: relative;
    padding: 80px 24px 96px;
    background:
        radial-gradient(900px 360px at 10% 100%, rgba(11, 68, 117, 0.05) 0%, transparent 60%),
        linear-gradient(180deg, #f3f7fc 0%, #e8eff8 100%);
    overflow: hidden;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.instagram-embed {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    display: flex;
    justify-content: center;
}

.instagram-embed:hover {
    transform: translateY(-5px);
}

.instagram-embed iframe {
    width: 100%;
    max-width: 400px;
}

@media (max-width: 900px) {
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .instagram-grid {
        grid-template-columns: 1fr;
    }
}

/* ======== School-Focused Ribbon (B2B2C entry, below navbar) ======== */
.school-ribbon {
    background: var(--primary-blue);
    color: #ffffff;
    position: relative;
    z-index: 900;
}

.school-ribbon-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 8px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

.school-ribbon-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.2px;
    color: rgba(255, 255, 255, 0.92);
    white-space: nowrap;
}

.school-ribbon-label svg {
    flex-shrink: 0;
    color: var(--primary-orange);
}

.school-ribbon-sep {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.28);
    display: inline-block;
}

.school-ribbon-btn {
    display: inline-flex;
    align-items: center;
    padding: 5px 14px;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.2px;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
}

.school-ribbon-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.75);
}

/* Hide the school ribbon entirely on mobile/tablet — primary D2C path is student registration.
   School options remain reachable via the hamburger menu and footer. */
@media (max-width: 992px) {
    .school-ribbon {
        display: none;
    }
}

/* ======== Newspaper Recognition Section ======== */
.newspaper-recognition-section {
    padding: 80px 24px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    overflow: hidden;
}

.newspaper-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

.newspaper-content {
    flex: 1;
    max-width: 550px;
}

.newspaper-badge {
    background: rgba(245, 130, 32, 0.1);
    color: var(--primary-orange);
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 20px;
}

.newspaper-desc {
    margin: 25px 0;
    font-size: 17px;
    line-height: 1.8;
    color: #475569;
}

.newspaper-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.newspaper-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.newspaper-benefits li span:last-child {
    font-weight: 600;
    color: #334155;
    font-size: 16px;
}

.nb-check {
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 3px;
    font-size: 14px;
    font-weight: bold;
}

.newspaper-gallery {
    flex: 1;
    position: relative;
    height: 450px;
    margin-left: 30px;
    background: #e2e8f0;
    overflow: hidden;
    border-width: 1px;
    border-color: #727272;
    border-style: solid;
    border-radius: 5px;
}

.n-images-wrap {
    width: 100%;
    height: 100%;
    position: relative;
}

.n-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0;
}

.n-slide-active {
    opacity: 1;
    z-index: 10;
}

.n-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

@media (max-width: 992px) {
    .newspaper-flex {
        flex-direction: column;
    }

    .newspaper-gallery {
        margin-left: 0;
        margin-top: 40px;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .newspaper-gallery {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .newspaper-gallery {
        height: 250px;
    }
}

/* ======== Mobile Exam Pattern Section ======== */
.mobile-exam-structure {
    display: none;
    /* Hidden on desktop by default */
    margin-top: 20px;
}

.m-common-rules {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.m-rule-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.m-rule-icon {
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e2e8f0;
    flex-shrink: 0;
}

.m-rule-text h4 {
    font-size: 15px;
    color: var(--primary-blue);
    margin-bottom: 4px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

.m-rule-text p {
    font-size: 13.5px;
    color: #475569;
    margin: 0;
}

.m-schedule-header {
    font-size: 18px;
    color: var(--primary-blue);
    margin-bottom: 15px;
    text-align: center;
    position: relative;
    padding-bottom: 8px;
}

.m-schedule-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--primary-orange);
    border-radius: 2px;
}

.m-subjects-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.m-sub-card {
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.04);
}

.m-sub-head {
    background: #f8fafc;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e2e8f0;
}

.m-sub-title h4 {
    font-size: 16px;
    color: #0f172a;
    margin: 0 0 2px 0;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

.m-sub-title p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
}

.m-sub-dates {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    background: white;
}

.m-date-item {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.m-date-item:first-child {
    border-right: 1px dashed #cbd5e1;
    padding-right: 10px;
    margin-right: 10px;
}

.m-date-label {
    font-size: 12px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-bottom: 4px;
}

.m-date-value {
    font-size: 14.5px;
    color: #334155;
    font-weight: 700;
}

@media (max-width: 768px) {
    .desktop-exam-table {
        display: none !important;
    }

    .mobile-exam-structure {
        display: block !important;
    }
}

/* ======== Global Mobile Resets ======== */
@media (max-width: 768px) {
    h1 {
        font-size: 32px !important;
    }

    h2 {
        font-size: 26px !important;
        line-height: 1.3;
    }

    h3 {
        font-size: 20px !important;
    }

    p {
        font-size: 15px;
    }

    /* General tightening of vertical spacing */
    .about-section,
    .ai-benefits-section,
    .exam-schedule-section,
    .exam-info-section,
    .study-materials-section,
    .school-reach-section,
    .school-cta-section,
    .dashboard-info-section,
    .awards-section,
    .toppers-section,
    .newspaper-recognition-section,
    .instagram-section,
    .query-section {
        padding: 45px 0 !important;
    }

    .stats-box {
        margin: 20px 0;
        padding: 30px 16px;
    }

    .container {
        padding: 0 16px;
    }

    .section-header {
        margin-bottom: 30px;
    }

}

/* ======== Mobile Navigation Menu ======== */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    margin-left: 10px;
}

.mobile-nav-dropdown {
    display: none;
    /* Hidden by default */
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-top: 1px solid #e2e8f0;
    flex-direction: column;
    z-index: 999;
}

.mobile-nav-dropdown.show {
    display: flex;
    animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.m-nav-item {
    padding: 15px 24px;
    border-bottom: 1px solid #f1f5f9;
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
    transition: var(--transition);
}

.m-nav-item:hover {
    background: #f8fafc;
    color: var(--primary-orange);
    padding-left: 30px;
    /* Slight indent trick for mobile nav */
}

/* Mobile nav: Login section (B2B2C entry on mobile) */
.m-nav-section-label {
    padding: 14px 24px 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #64748b;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #f1f5f9;
}

.m-nav-login {
    background: #f8fafc;
    color: var(--primary-blue);
    font-weight: 600;
}

.m-nav-login:hover {
    background: #ffffff;
    color: var(--primary-orange);
}

/* Mobile-only utility: hidden on desktop, visible on mobile */
.mobile-only {
    display: none;
}

/* Mobile Login button (icon + label, compact) */
.btn-login-mobile {
    display: none;
    align-items: center;
    gap: 5px;
    padding: 6px 10px;
    color: var(--primary-blue);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(11, 68, 117, 0.25);
    border-radius: 6px;
    background: #ffffff;
    line-height: 1;
    white-space: nowrap;
}

.btn-login-mobile svg {
    flex-shrink: 0;
}

.btn-login-mobile:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

/* Mobile Register button (compact) */
.btn-register-mobile {
    display: none;
    align-items: center;
    padding: 7px 14px;
    background: var(--primary-orange);
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    border-radius: 6px;
    line-height: 1;
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(244, 124, 34, 0.25);
}

.btn-register-mobile:hover {
    background: #e06d12;
}

@media (max-width: 992px) {
    .desktop-only {
        display: none !important;
    }

    .nav-custom-links {
        display: none !important;
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .btn-register {
        display: none !important;
        /* Hide on mobile in favor of sticky bottom CTA */
    }

    .logo img {
        height: 46px;
        /* Scale logo down to make room for CTAs */
    }

    .nav-container {
        padding: 10px 14px;
    }

    .nav-actions {
        gap: 8px;
    }

    .mobile-only {
        display: inline-flex;
    }

    .btn-login-mobile {
        display: inline-flex;
    }

    .btn-register-mobile {
        display: inline-flex;
    }
}

/* On very narrow phones, hide Login text label (icon-only) to keep a single line */
@media (max-width: 420px) {
    .btn-login-mobile span {
        display: none;
    }

    .btn-login-mobile {
        padding: 7px 9px;
    }

    .btn-register-mobile {
        padding: 7px 12px;
        font-size: 12.5px;
    }

    .nav-container {
        padding: 10px 12px;
    }

    .nav-actions {
        gap: 6px;
    }

    .logo img {
        height: 40px;
    }
}

/* ======== Additional Mobile Specific Twists ======== */
@media (max-width: 768px) {

    /* Hero & Topper Slider Resets */
    .hero-container {
        height: auto;
        gap: 20px;
    }

    .hero-left {
        height: auto;
        aspect-ratio: 16 / 9;
        /* Preserves image shape without collapsing */
        min-height: 220px;
    }

    .hero-middle {
        height: auto;
        min-height: 480px;
        /* Increased to accommodate wrapped content securely */
    }

    .topper-card {
        justify-content: flex-start;
        padding-top: 15px;
    }

    .hero-right {
        height: auto;
        /* Allow notice board to expand fully */
    }

    .topper-box {
        padding: 20px 15px;
    }

    .topper-photo {
        width: 100px;
        height: 100px;
        margin-bottom: 15px;
    }

    .topper-name {
        font-size: 20px;
    }

    .topper-prize {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .slide-caption {
        left: 20px;
        bottom: 30px;
    }

    .slide-caption h3 {
        font-size: 22px;
    }

    .slide-caption p {
        font-size: 14px;
        color: #ffffff;
    }

    .slide-btn {
        width: 36px;
        height: 36px;
        font-size: 15px;
    }

    /* Modals & Forms */
    /* Nav bar sticky padding fix */
    .navbar-custom {
        padding: 0;
    }

    .nav-container {
        padding: 10px 16px;
    }

    /* Testimonials slider scroll snapping & size */
    .testimony-card {
        min-width: 280px;
        /* Smaller card size */
        padding: 20px;
    }

    .t-heading {
        font-size: 16px;
    }

    .t-text {
        font-size: 14px;
    }

    body {
        padding-bottom: 70px;
        /* Leave space at bottom so footer links aren't hidden by sticky CTA */
    }
}

/* ======== Mobile Sticky Bottom CTA ======== */
.mobile-sticky-cta {
    display: none;
}

@media (max-width: 992px) {
    .mobile-sticky-cta {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: white;
        padding: 12px 15px;
        box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
        z-index: 2000;
        text-align: center;
    }

    .btn-register-sticky {
        display: block;
        background: var(--primary-orange);
        color: white;
        padding: 14px 0;
        border-radius: 8px;
        font-weight: 700;
        text-decoration: none;
        font-size: 16px;
        box-shadow: 0 4px 10px rgba(245, 130, 32, 0.3);
    }
}

/* ============================================================ */
/* ============  Why National Olympiads by Amar Ujala  ========== */
/* ============================================================ */

.why-auno {
    position: relative;
    padding: 88px 24px 96px;
    background:
        radial-gradient(1200px 500px at 10% 5%, rgba(11, 68, 117, 0.05) 0%, transparent 60%),
        radial-gradient(1100px 460px at 90% 95%, rgba(244, 124, 34, 0.06) 0%, transparent 60%),
        linear-gradient(180deg, #f7fafd 0%, #eef4fb 100%);
    overflow: hidden;
}

.why-auno::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(11, 68, 117, 0.2), transparent);
}

.why-header {
    max-width: 860px;
    margin: 0 auto 64px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.why-eyebrow {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--primary-orange);
    background: rgba(244, 124, 34, 0.10);
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.why-title {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: clamp(30px, 4.2vw, 48px);
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1.1;
    margin: 0 0 14px;
    letter-spacing: -0.025em;
}

.why-sub {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    color: #475569;
    line-height: 1.55;
    margin: 0;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

/* Part block */
.why-part {
    max-width: 1180px;
    margin: 0 auto 72px;
    position: relative;
    z-index: 2;
}

.why-part:last-child {
    margin-bottom: 0;
}

.why-part-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 32px;
}

.why-part-num {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #083657 100%);
    color: #ffffff;
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: -0.02em;
    box-shadow: 0 10px 22px rgba(11, 68, 117, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.why-part-heading {
    flex: 1;
    min-width: 0;
}

.why-part-title {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: clamp(22px, 2.8vw, 30px);
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1.2;
    margin: 0 0 6px;
    letter-spacing: -0.02em;
}

.why-part-sub {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* Level label row */
.why-level-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 32px 0 18px;
    padding-bottom: 14px;
    border-bottom: 1px dashed rgba(11, 68, 117, 0.18);
}

.why-level-label-l2 {
    margin-top: 40px;
}

.why-level-chip {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #135a96 100%);
    padding: 5px 12px;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(11, 68, 117, 0.25);
}

.why-level-chip-orange {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #d65a0a 100%);
    box-shadow: 0 4px 10px rgba(244, 124, 34, 0.3);
}

.why-level-name {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-blue);
    letter-spacing: -0.01em;
}

/* Pricing grid */
.why-pricing-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 20px;
    align-items: stretch;
}

.why-pricing-grid-l2 {
    grid-template-columns: 1fr 1.25fr;
}

/* Price card */
.why-price-card {
    position: relative;
    padding: 28px 26px 26px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.55) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    box-shadow:
        0 10px 32px rgba(11, 68, 117, 0.10),
        0 2px 6px rgba(11, 68, 117, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s ease;
}

.why-price-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 18px 44px rgba(11, 68, 117, 0.14),
        0 4px 10px rgba(244, 124, 34, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.why-price-card-featured {
    border: 1.5px solid rgba(244, 124, 34, 0.4);
    background:
        radial-gradient(120% 80% at 50% 0%, rgba(244, 124, 34, 0.12) 0%, transparent 55%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 248, 240, 0.85) 100%);
    box-shadow:
        0 16px 44px rgba(244, 124, 34, 0.15),
        0 4px 10px rgba(11, 68, 117, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.why-price-ribbon {
    position: absolute;
    top: -12px;
    left: 24px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary-orange) 0%, #d65a0a 100%);
    padding: 5px 14px;
    border-radius: 999px;
    text-transform: uppercase;
    box-shadow: 0 6px 14px rgba(244, 124, 34, 0.4);
}

.why-price-kicker {
    font-family: 'Inter', sans-serif;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--primary-orange);
    text-transform: uppercase;
}

.why-price-amount {
    display: flex;
    align-items: baseline;
    gap: 4px;
    font-family: 'Poppins', 'Inter', sans-serif;
    color: var(--primary-blue);
    line-height: 1;
}

.why-price-plus {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-orange);
    margin-right: 4px;
}

.why-price-currency {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.why-price-number {
    font-size: 64px;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.why-price-per {
    font-size: 16px;
    font-weight: 600;
    color: #64748b;
    margin-left: 4px;
    letter-spacing: 0;
}

.why-price-strikethrough {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #94a3b8;
    text-decoration: line-through;
    text-decoration-color: rgba(244, 124, 34, 0.7);
    text-decoration-thickness: 2.5px;
    margin-right: 10px;
    letter-spacing: -0.02em;
    align-self: center;
}

.why-price-title {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.35;
    margin: 0;
}

.why-price-perks {
    list-style: none;
    padding: 0;
    margin: 4px 0 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.why-price-perks li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    color: #475569;
    line-height: 1.4;
}

.why-perk-tick {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.why-price-earlybird {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: auto;
    padding: 10px 14px;
    background: linear-gradient(135deg, rgba(244, 124, 34, 0.10) 0%, rgba(244, 124, 34, 0.04) 100%);
    border: 1px dashed rgba(244, 124, 34, 0.4);
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 12.5px;
    color: #7a3d05;
    line-height: 1.4;
}

.why-earlybird-dot {
    flex-shrink: 0;
    color: var(--primary-orange);
    font-size: 14px;
    margin-top: 1px;
}

.why-price-footnote {
    font-family: 'Inter', sans-serif;
    font-size: 11.5px;
    color: #94a3b8;
    margin-top: auto;
    padding-top: 8px;
    line-height: 1.4;
    font-style: italic;
}

.why-price-savings {
    display: inline-flex;
    align-items: center;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #059669;
    background: rgba(16, 185, 129, 0.10);
    padding: 6px 12px;
    border-radius: 999px;
    margin-top: auto;
    align-self: flex-start;
    letter-spacing: 0.2px;
}

.why-single-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    max-width: 720px;
    margin: 16px auto 0;
    padding: 12px 18px;
    background: rgba(11, 68, 117, 0.04);
    border-left: 3px solid rgba(11, 68, 117, 0.3);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #475569;
    line-height: 1.5;
}

.why-single-icon {
    flex-shrink: 0;
    color: var(--primary-blue);
    font-size: 16px;
    line-height: 1.3;
}

.why-single-note strong {
    color: var(--primary-blue);
    font-weight: 700;
}

/* Level 2 card */
.why-price-card-l2 .why-price-amount {
    flex-wrap: wrap;
    align-items: center;
}

/* Free bundle card (AI Dashboard + AI Report) */
.why-free-card {
    position: relative;
    padding: 26px 24px 24px;
    background:
        radial-gradient(120% 70% at 50% 0%, rgba(16, 185, 129, 0.10) 0%, transparent 55%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(236, 253, 245, 0.7) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1.5px solid rgba(16, 185, 129, 0.3);
    border-radius: 20px;
    box-shadow:
        0 10px 32px rgba(16, 185, 129, 0.10),
        0 2px 6px rgba(11, 68, 117, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.why-free-badge {
    align-self: flex-start;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #ffffff;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    padding: 5px 12px;
    border-radius: 999px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
}

.why-free-intro {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #0f3c2b;
    line-height: 1.45;
    margin: 0;
    font-weight: 500;
}

.why-free-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.why-free-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 14px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(11, 68, 117, 0.08);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.why-free-item:hover {
    background: #ffffff;
    border-color: rgba(244, 124, 34, 0.35);
    transform: translateX(2px);
    box-shadow: 0 6px 14px rgba(11, 68, 117, 0.08);
}

.why-free-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #135a96 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 14px rgba(11, 68, 117, 0.25);
}

.why-free-icon svg {
    width: 18px;
    height: 18px;
}

.why-free-icon-ai {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #d65a0a 100%);
    box-shadow: 0 6px 14px rgba(244, 124, 34, 0.3);
}

.why-free-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    flex: 1;
}

.why-free-label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-blue);
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.why-free-tag {
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: 0.8px;
    color: var(--primary-orange);
    background: rgba(244, 124, 34, 0.12);
    padding: 3px 7px;
    border-radius: 4px;
    text-transform: uppercase;
}

.why-free-sub {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #64748b;
    line-height: 1.3;
}

.why-free-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 11.5px;
    font-weight: 700;
    color: var(--primary-orange);
    letter-spacing: 0.2px;
}

.why-free-closing {
    font-family: 'Inter', sans-serif;
    font-size: 12.5px;
    color: #064e3b;
    line-height: 1.4;
    margin: 0;
    text-align: center;
    padding-top: 4px;
    font-weight: 600;
    font-style: italic;
}

/* ============ Champion Award ============ */
.why-champion {
    display: grid;
    grid-template-columns: 0.85fr 1fr;
    gap: 32px;
    margin-bottom: 36px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 248, 230, 0.7) 100%);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1.5px solid rgba(244, 180, 0, 0.35);
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 24px 56px rgba(11, 68, 117, 0.12),
        0 6px 16px rgba(244, 180, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.why-champion-image {
    position: relative;
    min-height: 380px;
    overflow: hidden;
}

.why-champion-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-champion-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(11, 68, 117, 0.35) 0%, rgba(11, 68, 117, 0.05) 40%, transparent 60%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.35) 0%, transparent 50%);
}

.why-champion-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 8px 14px;
    border-radius: 999px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(244, 180, 0, 0.5);
}

.why-champion-badge-label {
    font-family: 'Inter', sans-serif;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #8a5a00;
    text-transform: uppercase;
}

.why-champion-content {
    padding: 32px 32px 32px 8px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    justify-content: center;
}

.why-champion-kicker {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #8a5a00;
    text-transform: uppercase;
    padding: 4px 10px;
    background: linear-gradient(135deg, rgba(255, 215, 112, 0.35) 0%, rgba(244, 180, 0, 0.2) 100%);
    border: 1px solid rgba(244, 180, 0, 0.4);
    border-radius: 6px;
    align-self: flex-start;
}

.why-champion-star {
    color: #d4a014;
    font-size: 14px;
}

.why-champion-title {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: clamp(22px, 2.6vw, 30px);
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1.15;
    margin: 0;
    letter-spacing: -0.02em;
}

.why-champion-desc {
    font-family: 'Inter', sans-serif;
    font-size: 14.5px;
    color: #475569;
    line-height: 1.55;
    margin: 0;
}

.why-champion-specs {
    display: flex;
    align-items: stretch;
    gap: 14px;
    margin-top: 6px;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(11, 68, 117, 0.1);
    border-radius: 14px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.why-champ-spec {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
    min-width: 0;
}

.why-champ-spec-lbl {
    font-family: 'Inter', sans-serif;
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: 1.2px;
    color: #94a3b8;
    text-transform: uppercase;
}

.why-champ-spec-val {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.why-champ-spec-divider {
    width: 1px;
    background: rgba(11, 68, 117, 0.12);
    flex-shrink: 0;
}

.why-champ-terms {
    margin-top: 10px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(11, 68, 117, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.why-champ-terms summary {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-blue);
    list-style: none;
    user-select: none;
    transition: background 0.2s ease;
}

.why-champ-terms summary::-webkit-details-marker {
    display: none;
}

.why-champ-terms summary:hover {
    background: rgba(244, 124, 34, 0.04);
}

.why-champ-terms-icon {
    color: var(--primary-orange);
    font-size: 15px;
}

.why-champ-terms-chev {
    margin-left: auto;
    font-size: 18px;
    color: #94a3b8;
    transition: transform 0.25s ease;
    line-height: 1;
}

.why-champ-terms[open] .why-champ-terms-chev {
    transform: rotate(90deg);
}

.why-champ-terms-list {
    list-style: none;
    padding: 0 16px 16px 38px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
    font-family: 'Inter', sans-serif;
    font-size: 12.5px;
    color: #475569;
    line-height: 1.55;
    border-top: 1px dashed rgba(11, 68, 117, 0.15);
    padding-top: 12px;
}

.why-champ-terms-list li {
    position: relative;
    padding-left: 14px;
}

.why-champ-terms-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--primary-orange);
}

.why-champ-terms-list strong {
    color: var(--primary-blue);
    font-weight: 700;
}

/* Awards tier grid */
.why-awards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.why-award-tile {
    position: relative;
    padding: 24px 20px 22px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.6) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 18px;
    box-shadow:
        0 10px 28px rgba(11, 68, 117, 0.10),
        0 2px 6px rgba(11, 68, 117, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    align-items: center;
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s ease;
}

.why-award-tile:hover {
    transform: translateY(-4px);
    box-shadow:
        0 18px 40px rgba(11, 68, 117, 0.14),
        0 4px 10px rgba(244, 124, 34, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.why-award-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    background: linear-gradient(135deg, #fff4d1 0%, #ffe08a 100%);
    box-shadow:
        0 8px 18px rgba(212, 160, 20, 0.25),
        0 0 0 4px rgba(255, 255, 255, 0.8);
}

.why-award-level {
    font-family: 'Inter', sans-serif;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--primary-blue);
    text-transform: uppercase;
}

.why-award-count {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
    letter-spacing: -0.03em;
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
}

.why-award-count-sub {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    letter-spacing: 0.3px;
}

.why-award-prize {
    font-family: 'Inter', sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    color: #475569;
    line-height: 1.4;
    padding-top: 8px;
    border-top: 1px dashed rgba(11, 68, 117, 0.15);
    width: 100%;
}

.why-award-national .why-award-icon {
    background: linear-gradient(135deg, #fff4d1 0%, #ffd770 100%);
    box-shadow: 0 8px 20px rgba(212, 160, 20, 0.35), 0 0 0 4px rgba(255, 255, 255, 0.85);
}

.why-award-state .why-award-icon {
    background: linear-gradient(135deg, #fce7f3 0%, #f9a8d4 100%);
    box-shadow: 0 8px 18px rgba(219, 39, 119, 0.2), 0 0 0 4px rgba(255, 255, 255, 0.85);
}

.why-award-district .why-award-icon {
    background: linear-gradient(135deg, #e0f2fe 0%, #7dd3fc 100%);
    box-shadow: 0 8px 18px rgba(14, 165, 233, 0.2), 0 0 0 4px rgba(255, 255, 255, 0.85);
}

.why-award-school .why-award-icon {
    background: linear-gradient(135deg, #dcfce7 0%, #86efac 100%);
    box-shadow: 0 8px 18px rgba(34, 197, 94, 0.2), 0 0 0 4px rgba(255, 255, 255, 0.85);
}

/* ============ Part 3: Prime Member ============ */
.why-part-prime {
    max-width: 1180px;
}

.why-prime-card {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 32px;
    align-items: center;
    padding: 36px 36px;
    background:
        radial-gradient(80% 120% at 0% 50%, rgba(244, 180, 0, 0.15) 0%, transparent 55%),
        linear-gradient(135deg, #0b4475 0%, #083657 100%);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 24px 56px rgba(11, 68, 117, 0.25),
        0 6px 16px rgba(11, 68, 117, 0.12);
}

.why-prime-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at top right, rgba(244, 180, 0, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.why-prime-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.why-prime-crown {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 35%, rgba(244, 180, 0, 0.25) 0%, transparent 60%);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: primeCrownFloat 4s ease-in-out infinite;
}

.why-prime-crown svg {
    width: 88px;
    height: 88px;
    filter: drop-shadow(0 12px 24px rgba(244, 180, 0, 0.45));
}

@keyframes primeCrownFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.why-prime-body {
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.why-prime-badge {
    display: inline-flex;
    align-items: center;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #6b4400;
    background: linear-gradient(135deg, #ffe9a3 0%, #f4b400 100%);
    padding: 5px 12px;
    border-radius: 999px;
    text-transform: uppercase;
    margin-bottom: 14px;
    box-shadow: 0 6px 14px rgba(244, 180, 0, 0.35);
}

.why-prime-title {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: clamp(19px, 2.2vw, 24px);
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 18px;
    color: #ffffff;
    letter-spacing: -0.01em;
}

.why-prime-perks {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.why-prime-perks li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.5;
}

.why-prime-perks li>div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.why-prime-perks strong {
    color: #ffe9a3;
    font-weight: 700;
}

.why-prime-tick {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffe9a3 0%, #f4b400 100%);
    color: #6b4400;
    font-size: 12px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    box-shadow: 0 4px 10px rgba(244, 180, 0, 0.4);
}

/* Why section - Responsive */
@media (max-width: 992px) {

    .why-pricing-grid,
    .why-pricing-grid-l2 {
        grid-template-columns: 1fr;
    }

    .why-champion {
        grid-template-columns: 1fr;
    }

    .why-champion-image {
        min-height: 260px;
    }

    .why-champion-content {
        padding: 28px 28px 32px;
    }

    .why-awards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-prime-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
        padding: 32px 24px;
    }

    .why-prime-body {
        text-align: left;
    }

    .why-prime-badge {
        margin-left: auto;
        margin-right: auto;
        display: table;
    }

    .why-prime-title {
        text-align: center;
    }

    .why-prime-crown {
        width: 120px;
        height: 120px;
    }

    .why-prime-crown svg {
        width: 72px;
        height: 72px;
    }
}

@media (max-width: 640px) {
    .why-auno {
        padding: 60px 18px 72px;
    }

    .why-header {
        margin-bottom: 44px;
    }

    .why-part {
        margin-bottom: 56px;
    }

    .why-part-header {
        gap: 14px;
        margin-bottom: 24px;
    }

    .why-part-num {
        width: 46px;
        height: 46px;
        font-size: 18px;
        border-radius: 12px;
    }

    .why-price-card,
    .why-free-card {
        padding: 22px 20px 22px;
    }

    .why-price-number {
        font-size: 52px;
    }

    .why-champion-specs {
        flex-direction: column;
        gap: 10px;
    }

    .why-champ-spec-divider {
        width: 100%;
        height: 1px;
    }

    .why-awards-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .why-award-tile {
        flex-direction: row;
        text-align: left;
        padding: 16px 18px;
        gap: 16px;
    }

    .why-award-tile .why-award-icon {
        width: 48px;
        height: 48px;
        font-size: 24px;
        flex-shrink: 0;
    }

    .why-award-tile .why-award-level,
    .why-award-tile .why-award-count,
    .why-award-tile .why-award-prize {
        text-align: left;
        width: auto;
    }

    .why-award-prize {
        border-top: none;
        padding-top: 0;
        border-left: 1px dashed rgba(11, 68, 117, 0.15);
        padding-left: 12px;
    }

    .why-award-tile {
        align-items: center;
    }

    .why-award-tile>*:not(.why-award-icon) {
        flex: 1;
    }
}


/* ============================================================ */
/* ======================  Final CTA  ========================= */
/* ============================================================ */

.final-cta-section {
    position: relative;
    padding: 80px 24px;
    background:
        radial-gradient(1200px 600px at 50% 100%, rgba(244, 124, 34, 0.18) 0%, transparent 65%),
        linear-gradient(135deg, #0b4475 0%, #083657 50%, #0b4475 100%);
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(244, 180, 0, 0.4), transparent);
}

.final-cta-inner {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 40px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 28px;
    box-shadow:
        0 32px 80px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    overflow: hidden;
}

.final-cta-glow {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244, 124, 34, 0.35) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.final-cta-content {
    position: relative;
    text-align: center;
    color: #ffffff;
}

.final-cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ffe9a3;
    background: rgba(244, 180, 0, 0.12);
    border: 1px solid rgba(244, 180, 0, 0.3);
    padding: 7px 14px;
    border-radius: 999px;
    margin-bottom: 22px;
    text-transform: uppercase;
}

.final-cta-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #f4b400;
    box-shadow: 0 0 0 4px rgba(244, 180, 0, 0.25);
    animation: finalCtaDot 2s ease-in-out infinite;
}

@keyframes finalCtaDot {

    0%,
    100% {
        box-shadow: 0 0 0 4px rgba(244, 180, 0, 0.25);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(244, 180, 0, 0.1);
    }
}

.final-cta-title {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 14px;
    color: #ffffff;
    letter-spacing: -0.025em;
}

.final-cta-accent {
    display: inline-block;
    background: linear-gradient(135deg, #ffd770 0%, #f4b400 60%, #f47c22 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.final-cta-sub {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.55;
    margin: 0 auto 30px;
    max-width: 620px;
}

.final-cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.final-cta-btn-primary,
.final-cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.25s ease;
    letter-spacing: -0.01em;
}

.final-cta-btn-primary {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #d65a0a 100%);
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(244, 124, 34, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.final-cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(244, 124, 34, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.final-cta-btn-primary svg {
    transition: transform 0.25s ease;
}

.final-cta-btn-primary:hover svg {
    transform: translateX(3px);
}

.final-cta-btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.final-cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.final-cta-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding-top: 28px;
    border-top: 1px dashed rgba(255, 255, 255, 0.15);
}

.final-cta-trust-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: center;
}

.final-cta-trust-item strong {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -0.02em;
}

.final-cta-trust-item span {
    font-family: 'Inter', sans-serif;
    font-size: 11.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.final-cta-trust-divider {
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 640px) {
    .final-cta-section {
        padding: 60px 16px;
    }

    .final-cta-inner {
        padding: 36px 22px;
    }

    .final-cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .final-cta-btn-primary,
    .final-cta-btn-secondary {
        justify-content: center;
    }

    .final-cta-trust {
        flex-wrap: wrap;
        gap: 16px 20px;
    }
}


/* ============================================================ */
/* ======================  Footer v2  ======================== */
/* ============================================================ */

.main-footer {
    background: #06243e;
    color: rgba(255, 255, 255, 0.72);
    padding: 64px 24px 28px;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
    max-width: 1240px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
    gap: 48px;
    padding-bottom: 44px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .footer-logo {
    height: 44px;
    width: auto;
    margin-bottom: 14px;
    filter: brightness(0) invert(1);
}

.footer-brand-tag {
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.5;
    margin: 0 0 18px;
    max-width: 260px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social-link {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.footer-social-link:hover {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-col-title {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0 0 16px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.62);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-col ul li a:hover {
    color: var(--primary-orange);
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.footer-contact-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(244, 124, 34, 0.12);
    border: 1px solid rgba(244, 124, 34, 0.25);
    color: var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-contact-list li>div {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}

.footer-contact-label {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    margin-bottom: 2px;
}

.footer-contact-list li a,
.footer-contact-list li span:not(.footer-contact-icon):not(.footer-contact-label) {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    line-height: 1.45;
}

.footer-contact-list li a {
    display: block;
}

.footer-contact-list li a:hover {
    color: var(--primary-orange);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 22px;
    flex-wrap: wrap;
}

.footer-copy {
    font-family: 'Inter', sans-serif;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.42);
    margin: 0;
    line-height: 1.5;
}

.footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}

.footer-legal li a {
    font-family: 'Inter', sans-serif;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal li a:hover {
    color: var(--primary-orange);
}

@media (max-width: 900px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

@media (max-width: 560px) {
    .main-footer {
        padding: 52px 18px 22px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .footer-legal {
        gap: 14px;
    }
}


/* ============================================================ */
/* ======================  v3 Refinements ==================== */
/* ============================================================ */

/* Compact pricing cards */
.why-pricing-grid-compact {
    grid-template-columns: 1fr 1fr;
    max-width: 780px;
    margin: 0 auto;
}

.why-price-card-compact {
    padding: 22px 22px 20px;
    gap: 8px;
    min-height: auto;
}

.why-price-card-compact .why-price-kicker {
    margin-bottom: 2px;
}

.why-price-card-compact .why-price-amount {
    margin-bottom: 4px;
}

.why-price-card-compact .why-price-earlybird {
    margin-top: 10px;
    padding: 10px 14px;
    font-size: 12.5px;
}

.why-price-card-compact .why-price-footnote {
    margin-top: 8px;
    font-size: 12px;
}

/* Parent's Tip card */
.why-parent-tip {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    max-width: 980px;
    margin: 22px auto 0;
    padding: 16px 22px;
    background:
        linear-gradient(135deg, rgba(255, 236, 207, 0.95) 0%, rgba(255, 246, 227, 0.85) 100%);
    border: 1px solid rgba(244, 124, 34, 0.22);
    border-radius: 16px;
    box-shadow:
        0 6px 18px rgba(244, 124, 34, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: relative;
}

.why-parent-tip-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffd679 0%, #f4b400 100%);
    color: #7a4b00;
    box-shadow:
        0 4px 10px rgba(244, 180, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.why-parent-tip-icon svg {
    width: 20px;
    height: 20px;
}

.why-parent-tip-body {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.55;
    color: #5b3e0e;
}

.why-parent-tip-body strong {
    color: #7a4b00;
    font-weight: 700;
    margin-right: 2px;
}

/* School award tile eligibility note */
.why-award-eligibility {
    margin-top: 12px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(11, 68, 117, 0.08);
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 11.5px;
    line-height: 1.45;
    color: #4a5b6c;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    text-align: left;
}

.why-award-eligibility-icon {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 13px;
    flex-shrink: 0;
    line-height: 1.3;
}

/* Final CTA: Powered by Amar Ujala heading */
.final-cta-powered {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 32px auto 14px;
    max-width: 560px;
}

.final-cta-powered-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(244, 180, 0, 0.5), transparent);
}

.final-cta-powered-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: #ffe9a3;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
    white-space: nowrap;
}

/* Final CTA: Count-up trust stats (slider counter effect) */
.final-cta-trust-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 8px;
    padding: 6px 0;
    flex-wrap: wrap;
}

.final-cta-trust-counter .final-cta-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
    min-width: 140px;
}

.final-cta-trust-counter .final-cta-trust-item strong {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #ffe9a3 0%, #f4b400 55%, #ffd34a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 6px rgba(244, 180, 0, 0.25));
    font-variant-numeric: tabular-nums;
    display: inline-block;
    transition: transform 0.3s ease;
}

.final-cta-trust-counter .final-cta-trust-item span {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}

.final-cta-trust-counter .final-cta-trust-divider {
    width: 1px;
    height: 42px;
    background: linear-gradient(180deg, transparent, rgba(244, 180, 0, 0.35), transparent);
    flex-shrink: 0;
}

/* Subtle pulse when counting */
.cta-count[data-count-done="1"] {
    animation: ctaCountSettle 0.5s ease-out;
}

@keyframes ctaCountSettle {
    0% {
        transform: scale(1);
    }

    40% {
        transform: scale(1.06);
    }

    100% {
        transform: scale(1);
    }
}

/* Responsive */
@media (max-width: 700px) {
    .why-parent-tip {
        padding: 14px 16px;
        gap: 12px;
    }

    .why-parent-tip-icon {
        width: 36px;
        height: 36px;
    }

    .why-parent-tip-body {
        font-size: 13px;
    }

    .final-cta-powered-label {
        font-size: 10px;
        letter-spacing: 2.5px;
    }

    .final-cta-trust-counter {
        gap: 16px;
    }

    .final-cta-trust-counter .final-cta-trust-item {
        min-width: 110px;
    }

    .final-cta-trust-counter .final-cta-trust-item strong {
        font-size: clamp(24px, 6vw, 32px);
    }

    .final-cta-trust-counter .final-cta-trust-item span {
        font-size: 10.5px;
        letter-spacing: 1.2px;
    }

    .final-cta-trust-counter .final-cta-trust-divider {
        height: 32px;
    }
}

@media (max-width: 560px) {
    .why-pricing-grid-compact {
        grid-template-columns: 1fr;
    }

    .why-award-eligibility {
        font-size: 11px;
    }
}


/* ============================================================ */
/* ======================  Mobile Audit Fixes  ================ */
/* ============================================================ */

/* ----- 640px fixes ----- */
@media (max-width: 640px) {

    /* Why NOAU section tighter padding */
    .why-auno {
        padding: 56px 16px 68px;
    }

    /* Why header spacing */
    .why-part-title {
        font-size: clamp(20px, 5vw, 24px);
        line-height: 1.25;
    }

    .why-part-sub {
        font-size: 14px;
    }

    /* Level label: allow wrapping on narrow screens */
    .why-level-label {
        flex-wrap: wrap;
        gap: 8px 10px;
        margin: 24px 0 14px;
        padding-bottom: 10px;
    }

    /* Compact pricing: single-column stacked */
    .why-pricing-grid-compact {
        grid-template-columns: 1fr;
        max-width: 420px;
        gap: 14px;
    }

    .why-price-card-compact {
        padding: 20px 18px 18px;
    }

    .why-price-card-compact .why-price-number {
        font-size: 48px;
    }

    .why-price-card-compact .why-price-earlybird {
        font-size: 12px;
        padding: 9px 12px;
        line-height: 1.4;
    }

    /* Parent tip: tighter layout */
    .why-parent-tip {
        margin-top: 18px;
        padding: 13px 16px;
        gap: 12px;
        border-radius: 14px;
    }

    .why-parent-tip-icon {
        width: 34px;
        height: 34px;
    }

    .why-parent-tip-icon svg {
        width: 18px;
        height: 18px;
    }

    .why-parent-tip-body {
        font-size: 13px;
        line-height: 1.5;
    }

    /* Single note: smaller text at mobile */
    .why-single-note {
        font-size: 13px;
        padding: 11px 14px;
        line-height: 1.5;
    }

    /* Free card: tighter */
    .why-free-card {
        padding: 22px 18px;
    }

    .why-free-item {
        padding: 14px 14px;
        gap: 12px;
    }

    .why-free-label {
        font-size: 15px;
    }

    .why-free-sub {
        font-size: 12px;
    }

    /* Champion badge: reduce size on mobile so it doesn't cover subjects */
    .why-champion-badge {
        top: 12px;
        left: 12px;
        padding: 6px 11px;
    }

    .why-champion-badge-label {
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    /* Champion content: better vertical rhythm */
    .why-champion-content {
        padding: 24px 22px 28px;
    }

    .why-champion-title {
        font-size: clamp(22px, 5.5vw, 28px);
        line-height: 1.2;
    }

    .why-champion-desc {
        font-size: 14px;
        line-height: 1.55;
    }

    .why-champ-terms summary {
        font-size: 13px;
        padding: 12px 14px;
    }

    .why-champ-terms-list {
        font-size: 13px;
        padding: 14px 16px;
    }

    /* Awards grid: restructure school tile so eligibility note goes full-width under the horizontal row */
    .why-award-tile {
        flex-wrap: wrap;
    }

    .why-award-tile.why-award-school {
        align-items: flex-start;
    }

    .why-award-tile .why-award-eligibility {
        flex-basis: 100%;
        margin-top: 10px;
        margin-left: 0;
        padding: 8px 10px;
        font-size: 11px;
        border-radius: 8px;
    }
}

/* ----- 560px fixes ----- */
@media (max-width: 560px) {

    /* Final CTA: hide thin dividers to let counter items wrap cleanly */
    .final-cta-trust-counter .final-cta-trust-divider {
        display: none;
    }

    .final-cta-trust-counter {
        gap: 18px 12px;
        padding: 10px 0;
    }

    .final-cta-trust-counter .final-cta-trust-item {
        min-width: calc(50% - 8px);
        flex: 0 0 calc(50% - 8px);
    }

    /* The Amar Ujala legacy (3rd) centers on its own row */
    .final-cta-trust-counter .final-cta-trust-item:last-child {
        flex: 0 0 100%;
        min-width: 100%;
    }

    /* Powered by Amar Ujala label */
    .final-cta-powered {
        margin: 26px auto 12px;
        gap: 10px;
    }

    /* Final CTA title + sub */
    .final-cta-title {
        font-size: clamp(22px, 6vw, 28px);
        line-height: 1.25;
    }

    .final-cta-sub {
        font-size: 14px;
    }

    .final-cta-inner {
        padding: 32px 20px 28px;
        border-radius: 22px;
    }

    /* Journey section: ensure horizontal overflow doesn't break the page */
    .journey-section {
        overflow-x: hidden;
    }

    /* Prime card: tighten crown and text */
    .why-prime-crown {
        width: 96px;
        height: 96px;
    }

    .why-prime-crown svg {
        width: 56px;
        height: 56px;
    }

    .why-prime-title {
        font-size: 18px;
        line-height: 1.35;
    }

    .why-prime-perks li {
        font-size: 13.5px;
    }
}

/* ----- 430px (narrow phones) ----- */
@media (max-width: 430px) {

    /* Why NOAU tighter padding */
    .why-auno {
        padding: 48px 14px 60px;
    }

    /* Price number should not bleed past card edge */
    .why-price-number {
        font-size: 44px;
    }

    /* Free card — reduce icon size so label doesn't wrap awkwardly */
    .why-free-icon {
        width: 40px;
        height: 40px;
    }

    .why-free-icon svg {
        width: 20px;
        height: 20px;
    }

    /* Award tile: reduce icon for narrow */
    .why-award-tile .why-award-icon {
        width: 42px;
        height: 42px;
        font-size: 22px;
    }

    .why-award-tile .why-award-count {
        font-size: 22px;
    }

    .why-award-tile .why-award-level {
        font-size: 12px;
        letter-spacing: 1.2px;
    }

    .why-award-tile .why-award-prize {
        font-size: 12.5px;
    }

    /* Champion specs: tighter */
    .why-champion-specs {
        padding: 14px 16px;
    }

    .why-champ-spec-val {
        font-size: 15px;
    }

    .why-champ-spec-lbl {
        font-size: 10px;
        letter-spacing: 1.2px;
    }

    /* Final CTA counter numbers stay readable */
    .final-cta-trust-counter .final-cta-trust-item strong {
        font-size: 26px;
    }

    .final-cta-trust-counter .final-cta-trust-item span {
        font-size: 10px;
        letter-spacing: 1px;
    }

    .final-cta-btn-primary,
    .final-cta-btn-secondary {
        font-size: 14.5px;
        padding: 13px 18px;
    }

    /* Powered by Amar Ujala fits on narrow */
    .final-cta-powered-label {
        font-size: 9.5px;
        letter-spacing: 2px;
    }

    /* Journey cards: tighter padding */
    .jstage-card {
        padding: 20px 18px 22px;
    }

    /* Hero trust pills if present */
    .hero-float-pill {
        font-size: 11px;
        padding: 6px 10px;
    }
}

/* ----- 380px (smallest modern phones) ----- */
@media (max-width: 380px) {
    .why-part-num {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }

    .why-part-title {
        font-size: 19px;
    }

    .why-parent-tip-body {
        font-size: 12.5px;
    }

    .why-single-note {
        font-size: 12.5px;
    }

    .why-free-label {
        font-size: 14px;
    }

    .final-cta-title {
        font-size: 21px;
    }
}

/* ----- Global safety: prevent horizontal scroll ----- */
html,
body {
    overflow-x: hidden;
}

/* Instagram iframes: reduce height on mobile to cut scroll */
@media (max-width: 600px) {
    .instagram-embed iframe {
        height: 400px;
        min-height: 400px;
    }

    .instagram-grid {
        gap: 18px;
        margin-top: 28px;
    }
}

@media (max-width: 430px) {
    .instagram-embed iframe {
        height: 360px;
        min-height: 360px;
    }
}

/* Awards grid: hide count entirely on mobile so icon + level + prize get more space */
@media (max-width: 640px) {
    .why-award-tile .why-award-count {
        display: none;
    }

    .why-award-tile .why-award-level {
        font-size: 13px;
        letter-spacing: 1.3px;
        line-height: 1.35;
    }

    .why-award-tile .why-award-prize {
        font-size: 13px;
        line-height: 1.45;
    }
}

/* "Dates to be announced" styling for Tech & AI */
.exam-table .date-tba {
    text-align: center;
    font-style: italic;
    color: #7a4b00;
    background: linear-gradient(135deg, rgba(255, 236, 207, 0.55) 0%, rgba(255, 246, 227, 0.35) 100%);
    font-weight: 600;
    letter-spacing: 0.3px;
    position: relative;
}

.exam-table .date-tba::before {
    content: "\24D8";
    margin-right: 6px;
    font-style: normal;
    color: var(--primary-orange);
    font-weight: 700;
}

.m-sub-dates-tba {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 14px 16px !important;
}

.m-date-tba {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    color: #7a4b00;
    background: linear-gradient(135deg, rgba(255, 236, 207, 0.8) 0%, rgba(255, 246, 227, 0.6) 100%);
    border: 1px solid rgba(244, 124, 34, 0.25);
    padding: 10px 16px;
    border-radius: 10px;
    letter-spacing: 0.2px;
}

.m-date-tba-icon {
    color: var(--primary-orange);
    font-size: 15px;
    font-weight: 700;
}