/* ==========================================================================
   EXCEL ACADEMICS - Premium Design System & Styles (Light Blue Theme)
   ========================================================================== */

:root {
    /* Color Palette */
    --brand-dark: #0A1931;
    /* Deep Academic Navy */
    --brand-blue: #0284C7;
    /* Primary Light Blue Accent */
    --brand-blue-hover: #0369A1;
    --brand-blue-subtle: #E0F2FE;
    /* Sky 100 */
    --brand-blue-light: #F0F9FF;
    /* Sky 50 */

    --brand-accent: #EF4444;
    /* Energetic Red/Orange Accent */
    --brand-accent-hover: #DC2626;

    --bg-main: #FFFFFF;
    --bg-surface: #F8FAFC;
    /* Slate 50 */
    --border-color: #E2E8F0;
    --border-subtle: #F1F5F9;

    --text-main: #0F172A;
    /* Slate 900 */
    --text-body: #334155;
    /* Slate 700 */
    --text-muted: #64748B;
    /* Slate 500 */

    /* Utility Colors */
    --color-green: #10B981;
    --color-green-light: #D1FAE5;
    --color-purple: #8B5CF6;
    --color-purple-light: #EDE9FE;
    --color-orange: #F59E0B;
    --color-orange-light: #FEF3C7;

    /* Typography & Spacing */
    --font-main: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    /* Elevation */
    --shadow-sm: 0 2px 4px rgba(10, 25, 49, 0.04);
    --shadow-md: 0 10px 25px -5px rgba(10, 25, 49, 0.08);
    --shadow-lg: 0 20px 35px -5px rgba(10, 25, 49, 0.12);
    --shadow-glow: 0 12px 25px -8px rgba(2, 132, 199, 0.4);
    --shadow-glow-accent: 0 12px 25px -8px rgba(239, 68, 68, 0.4);

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ==========================================================================
   Reset & Base Typography
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-main);
    color: var(--text-body);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-main);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

p {
    margin-bottom: 1rem;
}

a {
    color: inherit;
    text-decoration: none;
}

ul,
ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button,
input,
select,
textarea {
    font-family: inherit;
    font-size: 1rem;
    border: none;
    outline: none;
    background: none;
    cursor: pointer;
}

input,
select,
textarea {
    cursor: text;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Helpers */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.w-100 {
    width: 100%;
}

.mt-2 {
    margin-top: 0.75rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2.5rem;
}

.mt-5 {
    margin-top: 4rem;
}

.mb-4 {
    margin-bottom: 2.5rem;
}

.highlight-blue {
    color: var(--brand-blue);
}

.text-white {
    color: #FFFFFF;
}

.text-blue {
    color: var(--brand-blue-subtle);
}

.bg-red {
    background-color: var(--brand-accent) !important;
    color: white !important;
}

.bg-blue {
    background-color: var(--brand-blue) !important;
    color: white !important;
}

.bg-green {
    background-color: var(--color-green) !important;
    color: white !important;
}

.bg-purple {
    background-color: var(--color-purple) !important;
    color: white !important;
}

.bg-orange {
    background-color: var(--color-orange) !important;
    color: white !important;
}

.bg-dark {
    background-color: var(--brand-dark) !important;
    color: white !important;
}

/* Sub Pill */
.sub-pill {
    display: inline-block;
    padding: 0.35rem 1rem;
    background-color: var(--brand-blue-subtle);
    color: var(--brand-blue);
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 100px;
    margin-bottom: 1rem;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    font-weight: 700;
    border-radius: var(--radius-md);
    transition: var(--transition);
    user-select: none;
}

.btn-lg {
    padding: 1.1rem 2.25rem;
    font-size: 1.05rem;
    border-radius: var(--radius-lg);
}

.btn-sm {
    padding: 0.6rem 1.15rem;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
}

.btn-primary {
    background-color: var(--brand-blue);
    color: #FFFFFF;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    background-color: var(--brand-blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -8px var(--brand-blue);
}

.btn-accent {
    background-color: var(--brand-accent);
    color: #FFFFFF;
    box-shadow: var(--shadow-glow-accent);
}

.btn-accent:hover {
    background-color: var(--brand-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -8px var(--brand-accent);
}

.btn-secondary {
    background-color: var(--brand-blue-subtle);
    color: var(--brand-dark);
    border: 1px solid #CBD5E1;
}

.btn-secondary:hover {
    background-color: #CBD5E1;
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid var(--border-color);
    color: var(--brand-dark);
}

.btn-outline:hover {
    border-color: var(--brand-blue);
    background-color: var(--brand-blue-light);
    transform: translateY(-2px);
}

/* ==========================================================================
   Top Bar & Header
   ========================================================================== */

.top-bar {
    background-color: var(--brand-dark);
    color: #F8FAFC;
    font-size: 0.875rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid #1E293B;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.top-announcement {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
}

.pulse-badge {
    background-color: var(--brand-accent);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    animation: redPulse 2s infinite;
}

@keyframes redPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(239, 68, 68, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

.top-contacts {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
}

.top-contacts a {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: color 0.2s;
}

.top-contacts a:hover {
    color: var(--brand-blue-subtle);
}

.divider {
    color: #475569;
}

@media (max-width: 992px) {
    .top-announcement {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .top-contacts {
        justify-content: center;
        width: 100%;
    }
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 84px;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-badge {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--brand-blue), #0284C7);
    color: white;
    font-weight: 900;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.45rem;
    font-weight: 900;
    color: var(--brand-dark);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.brand-sub {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--brand-blue);
    margin-top: 1px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-weight: 700;
    color: var(--text-body);
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background-color: var(--brand-blue);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--brand-dark);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mobile-toggle {
    display: none;
    font-size: 1.75rem;
    color: var(--brand-dark);
    padding: 0.5rem;
}

@media (max-width: 1024px) {
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 12px 30px -5px rgba(10, 25, 49, 0.15);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-15px);
        transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
        border-top: 1px solid var(--border-color);
        gap: 1.25rem;
    }

    .nav-menu.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-btn {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }
}

/* ==========================================================================
   SECTION 1 — HERO SECTION
   ========================================================================== */

.hero-section {
    padding: 5rem 0 6rem;
    background: radial-gradient(circle at top right, var(--brand-blue-light), transparent 60%),
        var(--bg-main);
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
    align-items: center;
}

.legacy-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 1.15rem 0.4rem 0.5rem;
    background-color: var(--brand-blue-light);
    border: 1px solid #BAE6FD;
    border-radius: 100px;
    margin-bottom: 1.5rem;
}

.legacy-pill .pill-icon {
    width: 28px;
    height: 28px;
    background-color: var(--brand-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.pill-text {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--brand-dark);
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-body);
    margin-bottom: 2rem;
    max-width: 640px;
}

.hero-badges-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.trust-badge {
    background-color: var(--brand-blue-light);
    border: 1px solid #7DD3FC;
    color: var(--brand-dark);
    font-weight: 800;
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.trust-badge i {
    color: var(--brand-blue);
    font-size: 1.15rem;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border-color);
}

.stat-card {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.65rem;
    font-weight: 900;
    color: var(--brand-dark);
    line-height: 1.1;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.visual-card {
    position: relative;
    border-radius: var(--radius-xl);
    padding: 1.25rem;
    background: white;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
}

.visual-bg-glow {
    position: absolute;
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    background: radial-gradient(circle, rgba(2, 132, 199, 0.25), transparent 70%);
    filter: blur(45px);
    z-index: -1;
}

.main-hero-img {
    border-radius: var(--radius-lg);
    width: 100%;
    height: auto;
    object-fit: cover;
    transform: scale(1.01);
}

.float-pill {
    position: absolute;
    background-color: white;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border: 1px solid var(--border-color);
}

.pill-top {
    top: -1rem;
    right: -1rem;
    animation: float1 4s ease-in-out infinite;
}

.pill-bottom {
    bottom: 6rem;
    left: -1.5rem;
    animation: float2 4s ease-in-out infinite;
}

@keyframes float1 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes float2 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

.float-pill .pill-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: white;
}

.float-pill .pill-icon.green {
    background-color: var(--color-green);
}

.float-pill .pill-icon.blue {
    background-color: var(--brand-blue);
}

.pill-info {
    display: flex;
    flex-direction: column;
}

.pill-info strong {
    color: var(--brand-dark);
    font-size: 1rem;
    line-height: 1.1;
}

.pill-info span {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 700;
}

.parent-trust-box {
    position: absolute;
    bottom: -2rem;
    right: 1.5rem;
    left: 1.5rem;
    background: linear-gradient(135deg, var(--brand-dark), #1E293B);
    color: white;
    padding: 1.25rem 1.75rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.trust-stars {
    color: #FBBF24;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.parent-trust-box p {
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 0.25rem;
    color: #F1F5F9;
}

.parent-trust-box span {
    font-size: 0.8rem;
    font-weight: 800;
    color: #7DD3FC;
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-subtitle {
        margin: 0 auto 2rem;
    }

    .hero-badges-row {
        justify-content: center;
    }

    .hero-ctas {
        justify-content: center;
    }

    .pill-top {
        right: 0;
        top: -1rem;
    }

    .pill-bottom {
        left: 0;
        bottom: 5rem;
    }

    .parent-trust-box {
        position: relative;
        bottom: 0;
        right: 0;
        left: 0;
        margin-top: 1.5rem;
        text-align: left;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2.25rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

/* ==========================================================================
   SECTION 2 — RESULTS & TOPPERS
   ========================================================================== */

.results-section {
    padding: 6rem 0;
    background-color: var(--bg-surface);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.section-header {
    max-width: 760px;
    margin: 0 auto 3rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-desc {
    font-size: 1.15rem;
    color: var(--text-body);
}

/* Tabs */
.results-tabs {
    display: inline-flex;
    background-color: white;
    padding: 0.5rem;
    border-radius: 100px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.res-tab-btn {
    padding: 0.85rem 1.75rem;
    font-weight: 800;
    color: var(--text-body);
    border-radius: 100px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.res-tab-btn i {
    font-size: 1.2rem;
}

.res-tab-btn:hover {
    color: var(--brand-dark);
}

.res-tab-btn.active {
    background-color: var(--brand-blue);
    color: white;
    box-shadow: var(--shadow-glow);
}

/* Elite Toppers Grid */
.elite-toppers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.topper-badge-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.25rem 1.75rem;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.topper-badge-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--brand-blue);
}

.highlight-rank {
    border: 2px solid var(--brand-accent);
    box-shadow: var(--shadow-md);
}

.rank-tag {
    position: absolute;
    top: -1rem;
    right: 1.75rem;
    background-color: var(--brand-accent);
    color: white;
    padding: 0.35rem 1.15rem;
    border-radius: 100px;
    font-weight: 900;
    font-size: 0.85rem;
    box-shadow: 0 4px 10px rgba(239, 68, 68, 0.3);
}

.rank-tag.blue {
    background-color: var(--brand-blue);
    box-shadow: 0 4px 10px rgba(2, 132, 199, 0.3);
}

.rank-tag.purple {
    background-color: var(--color-purple);
    box-shadow: 0 4px 10px rgba(139, 92, 246, 0.3);
}

.topper-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-top: 0.5rem;
}

.topper-avatar {
    width: 56px;
    height: 56px;
    background-color: var(--brand-blue-subtle);
    color: var(--brand-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
}

.topper-details h3 {
    font-size: 1.35rem;
    margin-bottom: 2px;
}

.topper-details .exam-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    margin: 0;
}

.topper-quote {
    font-style: italic;
    font-size: 0.95rem;
    color: var(--text-body);
    margin: 0;
}

/* Results Gallery Container */
.results-gallery-container {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
}

.gallery-title h3 {
    font-size: 1.65rem;
    color: var(--brand-dark);
    margin-bottom: 0.25rem;
}

.gallery-title p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 1.75rem;
}

.results-image-box {
    width: 100%;
    overflow-x: auto;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    background-color: var(--bg-surface);
    display: flex;
    justify-content: center;
    padding: 1rem;
}

.exam-result-banner {
    max-height: 540px;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.parent-trust-banner {
    background: linear-gradient(135deg, var(--brand-dark), #1E293B);
    color: white;
    padding: 2.5rem 3rem;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: var(--shadow-lg);
}

.banner-icon {
    width: 64px;
    height: 64px;
    background-color: var(--brand-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    flex-shrink: 0;
}

.banner-text h4 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.banner-text p {
    color: #CBD5E1;
    margin: 0;
    font-size: 1rem;
}

@media (max-width: 1024px) {
    .elite-toppers-grid {
        grid-template-columns: 1fr;
    }

    .parent-trust-banner {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
}

/* ==========================================================================
   SECTION 3 — COURSES OFFERED
   ========================================================================== */

.courses-section {
    padding: 6rem 0;
    background-color: white;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.course-card {
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
    position: relative;
    box-shadow: var(--shadow-sm);
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--brand-blue);
}

.premium-border {
    border: 2px solid var(--brand-accent);
    box-shadow: var(--shadow-md);
}

.premium-border:hover {
    border-color: var(--brand-accent);
}

.card-badge {
    position: absolute;
    top: -1rem;
    left: 2rem;
    padding: 0.35rem 1.15rem;
    border-radius: 100px;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-sm);
}

.course-header {
    margin-bottom: 1.5rem;
    padding-top: 0.5rem;
}

.course-title {
    font-size: 1.65rem;
    margin-bottom: 0.5rem;
    color: var(--brand-dark);
}

.course-ideal {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
}

.course-ideal strong {
    color: var(--brand-blue);
}

.course-desc {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    color: var(--text-body);
}

.course-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    background-color: var(--bg-surface);
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--brand-dark);
}

.course-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.course-meta i {
    color: var(--brand-blue);
    font-size: 1.15rem;
}

.course-perks {
    margin-bottom: 2.5rem;
}

.course-perks li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.95rem;
    color: var(--text-main);
    margin-bottom: 0.75rem;
}

.course-perks i {
    color: var(--color-green);
    font-size: 1.2rem;
    margin-top: 2px;
}

@media (max-width: 1024px) {
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .courses-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   SECTION 4 — WHY STUDENTS SUCCEED HERE
   ========================================================================== */

.why-us-section {
    padding: 6rem 0;
    background-color: var(--bg-surface);
    border-top: 1px solid var(--border-color);
}

.why-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: flex-start;
}

.campus-showcase-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    background: white;
}

.campus-photo {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.campus-label {
    padding: 1.5rem;
}

.campus-label h4 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    color: var(--brand-dark);
}

.campus-label p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.why-card {
    background-color: white;
    padding: 2rem 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--brand-blue);
}

.why-icon {
    width: 48px;
    height: 48px;
    background-color: var(--brand-blue-subtle);
    color: var(--brand-blue);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.why-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--brand-dark);
}

.why-card p {
    font-size: 0.95rem;
    color: var(--text-body);
    margin: 0;
}

@media (max-width: 1024px) {
    .why-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 640px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Custom Animated Cursor
   ========================================================================== */

@media (pointer: fine) {
    body, button, a, input, select, textarea, label, .faq-head { cursor: none !important; }
}

.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    background-color: var(--brand-accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width 0.2s ease, height 0.2s ease, background-color 0.2s ease;
}

.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: 36px;
    height: 36px;
    border: 2px solid var(--brand-blue);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
}

.cursor-hover .cursor-dot {
    width: 16px;
    height: 16px;
    background-color: var(--brand-blue);
}

.cursor-hover .cursor-ring {
    width: 56px;
    height: 56px;
    border-color: var(--brand-accent);
    background-color: rgba(2, 132, 199, 0.1);
}

/* ==========================================================================
   SECTION 5 — TESTIMONIALS + FACULTY TRUST
   ========================================================================== */

.testimonials-faculty-section {
    padding: 6rem 0;
    background-color: white;
}

.tab-buttons { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

.t-btn {
    padding: 0.95rem 2rem;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-body);
    background-color: var(--bg-surface);
    border: 2px solid var(--border-color);
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.t-btn:hover { border-color: var(--brand-blue); color: var(--brand-dark); }

.t-btn.active {
    background-color: var(--brand-blue);
    color: white;
    border-color: var(--brand-blue);
    box-shadow: var(--shadow-glow);
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.testi-card {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.testi-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--brand-blue);
}

.testi-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; }

.author-pic {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.author-meta h4 { font-size: 1.2rem; color: var(--brand-dark); margin-bottom: 2px; }

.badge-tag {
    display: inline-block;
    background-color: var(--brand-blue-subtle);
    color: var(--brand-blue);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 800;
}

.stars { color: #F59E0B; font-size: 1.15rem; margin-bottom: 1rem; display: flex; gap: 0.2rem; }

.testi-quote { font-size: 1.05rem; font-style: italic; color: var(--text-body); margin-bottom: 1.5rem; flex-grow: 1; }

.ver-tag {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-green);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

/* Video Testi Card */
.video-testi-card {
    padding: 0;
    overflow: hidden;
}

.video-thumbnail {
    position: relative;
    height: 220px;
    background: linear-gradient(135deg, var(--brand-dark), #1E3A8A);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.play-btn {
    width: 64px;
    height: 64px;
    background-color: var(--brand-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.5);
    transition: var(--transition);
}

.video-thumbnail:hover .play-btn {
    transform: scale(1.15);
}

.vid-label {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 800;
}

.vid-card-body {
    padding: 1.75rem;
}

.vid-card-body h4 {
    font-size: 1.25rem;
    color: var(--brand-dark);
    margin-bottom: 0.25rem;
}

/* Faculty Grid */
.faculty-showcase {
    padding-top: 5rem;
    border-top: 1px solid var(--border-color);
}

.faculty-title {
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
    color: var(--brand-dark);
}

.faculty-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto;
}

.faculty-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
}

.fac-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.fac-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--brand-blue);
}

.fac-img-wrap {
    position: relative;
    height: 260px;
    background-color: var(--bg-surface);
    display: flex;
    align-items: center;
    justify-content: center;
}

.fac-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.fac-placeholder {
    font-size: 4.5rem;
    color: white;
}

.fac-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background-color: var(--brand-blue);
    color: white;
    padding: 0.35rem 1rem;
    border-radius: 100px;
    font-weight: 800;
    font-size: 0.8rem;
    box-shadow: var(--shadow-sm);
}

.fac-info {
    padding: 1.5rem;
    text-align: left;
}

.fac-info h4 {
    font-size: 1.3rem;
    color: var(--brand-dark);
    margin-bottom: 0.25rem;
}

.fac-spec {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--brand-blue);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.fac-bio {
    font-size: 0.95rem;
    color: var(--text-body);
    margin: 0;
}

@media (max-width: 1024px) {

    .testi-grid,
    .faculty-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {

    .testi-grid,
    .faculty-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   SECTION 6 — CONVERSION + FAQ
   ========================================================================== */

.conversion-section {
    padding: 6rem 0;
    background-color: var(--bg-surface);
    border-top: 1px solid var(--border-color);
}

.conversion-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: flex-start;
}

.conv-heading {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--brand-dark);
}

.conv-sub {
    font-size: 1.15rem;
    color: var(--text-body);
    margin-bottom: 2.5rem;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-card.active {
    border-color: var(--brand-blue);
    box-shadow: var(--shadow-sm);
}

.faq-head {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--brand-dark);
    cursor: pointer;
    user-select: none;
}

.faq-head h3 {
    font-size: 1.15rem;
    margin: 0;
}

.f-icon {
    font-size: 1.5rem;
    color: var(--brand-blue);
    transition: transform 0.3s ease;
}

.faq-card.active .f-icon {
    transform: rotate(180deg);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    padding: 0 1.5rem;
    color: var(--text-body);
    font-size: 0.95rem;
}

.faq-card.active .faq-body {
    padding: 0 1.5rem 1.5rem;
}

/* Campus Info Box */
.campus-address-box {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.addr-head {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.addr-head i {
    font-size: 1.75rem;
    color: var(--brand-blue);
    margin-top: 2px;
}

.addr-head h4 {
    font-size: 1.25rem;
    color: var(--brand-dark);
    margin-bottom: 0.25rem;
}

.addr-head p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
}

.addr-contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--brand-dark);
}

.addr-contacts span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.addr-contacts i {
    color: var(--brand-blue);
}

/* Premium Form Box */
.premium-form-box {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-lg);
}

.form-title {
    text-align: center;
    margin-bottom: 2rem;
}

.form-title h3 {
    font-size: 1.85rem;
    color: var(--brand-dark);
    margin-bottom: 0.5rem;
}

.form-title p {
    color: var(--text-muted);
    font-size: 1rem;
    margin: 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 800;
    color: var(--brand-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group label i {
    color: var(--brand-blue);
    margin-right: 0.35rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1.15rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    color: var(--text-main);
    background-color: var(--bg-surface);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--brand-blue);
    background-color: white;
    box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.15);
}

.btn-submit {
    padding: 1.1rem;
    font-size: 1.15rem;
    margin-top: 0.5rem;
}

.form-trust-note {
    font-size: 0.85rem;
    color: var(--text-muted);
}

@media (max-width: 1024px) {
    .conversion-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .premium-form-box {
        padding: 2.25rem 1.75rem;
    }
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
    background-color: var(--brand-dark);
    color: #E2E8F0;
    padding: 5rem 0 2.5rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.9fr 1.1fr;
    gap: 3.5rem;
    margin-bottom: 4rem;
    padding-bottom: 3.5rem;
    border-bottom: 1px solid #1E293B;
}

.footer-bio {
    color: #94A3B8;
    margin-top: 1.25rem;
    margin-bottom: 1.75rem;
    font-size: 0.95rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: #1E293B;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--brand-blue);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-addr h4 {
    color: white;
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-links h4::after,
.footer-addr h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--brand-blue);
}

.footer-links ul li {
    margin-bottom: 0.85rem;
}

.footer-links ul li a {
    color: #94A3B8;
    transition: color 0.2s;
}

.footer-links ul li a:hover {
    color: var(--brand-blue-subtle);
}

.footer-addr p {
    color: #94A3B8;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: #94A3B8;
}

.legal-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.legal-links a:hover {
    color: white;
}

@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 640px) {
    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ==========================================================================
   Floating WhatsApp CTA & Sticky Mobile Bar
   ========================================================================== */

.wa-float-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: #25D366;
    color: white;
    padding: 0.85rem 1.5rem;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 800;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.wa-float-btn i {
    font-size: 1.6rem;
}

.wa-float-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
}

.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1001;
    padding: 0.75rem 1rem;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 0.5rem;
}

.m-call-btn,
.m-wa-btn,
.m-book-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.75rem;
    border-radius: var(--radius-sm);
    font-weight: 800;
    font-size: 0.9rem;
}

.m-call-btn {
    background-color: var(--brand-dark);
    color: white;
}

.m-wa-btn {
    background-color: #25D366;
    color: white;
}

.m-book-btn {
    background-color: var(--brand-blue);
    color: white;
}

@media (max-width: 768px) {
    .wa-float-btn {
        display: none;
    }

    .mobile-bottom-bar {
        display: grid;
    }

    body {
        padding-bottom: 70px;
    }
}

/* ==========================================================================
   Modals & Notifications
   ========================================================================== */

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(10, 25, 49, 0.7);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 1.5rem;
}

.modal-backdrop.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    background-color: white;
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    max-width: 500px;
    width: 100%;
    position: relative;
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.modal-backdrop.open .modal-card {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background-color: var(--bg-surface);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--brand-dark);
    transition: var(--transition);
}

.modal-close:hover {
    background-color: var(--brand-accent);
    color: white;
    transform: rotate(90deg);
}

.modal-header h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--brand-dark);
}

.modal-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

/* Toast */
.toast-popup {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: white;
    border-left: 6px solid var(--color-green);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 3000;
    transform: translateX(150%);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    max-width: 420px;
}

.toast-popup.show {
    transform: translateX(0);
}

.toast-icon {
    font-size: 2.25rem;
    color: var(--color-green);
}

.toast-content h4 {
    font-size: 1.1rem;
    color: var(--brand-dark);
    margin-bottom: 2px;
}

.toast-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}