﻿
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
@font-face {
    font-family: 'Present';
    src: url('../Assets/fonts/present.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Present';
    src: url('../Assets/fonts/present.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

:root {
    --navy: #0a1628;
    --navy-mid: #122040;
    --navy-light: #1e3260;
    --gold: #c9a227;
    --gold-light: #e8c44a;
    --gold-pale: #f5e8b8;
    --white: #ffffff;
    --off-white: #f7f5f0;
    --text-muted: #6b7a9a;
    --text-body: #2c3e60;
    --border: rgba(201,162,39,0.2);
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 8px 40px rgba(10,22,40,0.12);
    --shadow-hover: 0 20px 60px rgba(10,22,40,0.2);
    --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-body);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
}

/* ─── UTILITIES ─── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 600;
    color: var(--navy);
    line-height: 1.15;
}

    .section-title span {
        color: var(--gold);
        font-style: italic;
    }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    border: none;
    font-family: 'Outfit', sans-serif;
}

.btn-gold {
    background: var(--gold);
    color: var(--navy);
}

    .btn-gold:hover {
        background: var(--gold-light);
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(201,162,39,0.35);
    }

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

    .btn-outline:hover {
        background: var(--white);
        color: var(--navy);
        transform: translateY(-2px);
    }

.btn-navy {
    background: var(--navy);
    color: var(--white);
}

    .btn-navy:hover {
        background: var(--navy-light);
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(10,22,40,0.3);
    }

/* ─── SCROLL REVEAL ─── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

    .reveal.visible {
        opacity: 1;
        transform: none;
    }

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* ─── NAVBAR ─── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 24px;
    transition: var(--transition);
}

    nav.scrolled {
        background: rgba(10,22,40,0.97);
        backdrop-filter: blur(12px);
        box-shadow: 0 4px 30px rgba(0,0,0,0.3);
    }

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo-icon {
    width: 44px;
    height: 44px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(201,162,39,0.4);
}

    .nav-logo-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
    }

.nav-logo-text {
    color: var(--white);
    font-family: 'Present', sans-serif;    
}

    .nav-logo-text strong {
        display: block;
        font-size: 30px;
        font-weight: 700;
        line-height: 1;
    }

.nav-logo-text span {
    font-size: 15px;
    font-family: 'Present', sans-serif;
    color: var(--gold);
    letter-spacing: 1px;
    font-weight: 400;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

    .nav-links a {
        color: rgba(255,255,255,0.8);
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        transition: color 0.2s;
        position: relative;
    }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            right: 100%;
            height: 2px;
            background: var(--gold);
            transition: right 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--white);
        }

            .nav-links a:hover::after {
                right: 0;
            }

.nav-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

    .nav-hamburger span {
        width: 24px;
        height: 2px;
        background: var(--white);
        transition: var(--transition);
        display: block;
    }

.mobile-menu {
    display: none;
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 24px;
    z-index: 99;
    flex-direction: column;
    gap: 4px;
}

    .mobile-menu.open {
        display: flex;
    }

    .mobile-menu a {
        color: rgba(255,255,255,0.85);
        text-decoration: none;
        padding: 14px 0;
        font-size: 16px;
        font-weight: 500;
        border-bottom: 1px solid rgba(255,255,255,0.07);
    }

/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    position: relative;
    background: var(--navy);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(135deg, #0a1628 0%, #122040 40%, #1a2e5a 70%, #0d1e3e 100%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: radial-gradient(circle at 20% 50%, rgba(201,162,39,0.08) 0%, transparent 60%), radial-gradient(circle at 80% 20%, rgba(201,162,39,0.06) 0%, transparent 50%), radial-gradient(circle at 60% 80%, rgba(201,162,39,0.04) 0%, transparent 40%);
}

.hero-grid-lines {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.04;
    background-image: linear-gradient(rgba(201,162,39,1) 1px, transparent 1px), linear-gradient(90deg, rgba(201,162,39,1) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 120px 0 80px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(201,162,39,0.12);
    border: 1px solid rgba(201,162,39,0.3);
    border-radius: 50px;
    padding: 8px 20px;
    margin-bottom: 28px;
}

.hero-eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
}

.hero-eyebrow span {
    font-size: 16px;
    color: var(--white);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(40px, 5.5vw, 66px);
    font-weight: 600;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
}

    .hero-title em {
        color: var(--gold);
        font-style: italic;
    }

.hero-desc {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    max-width: 480px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.hero-stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 4px;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-img-frame {
    width: 100%;
    aspect-ratio: 4/5;
    max-width: 440px;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.hero-img-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201,162,39,0.15), rgba(30,50,96,0.4));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-img-inner {
    width: 85%;
    height: 85%;
    border-radius: 20px;
    background: linear-gradient(160deg, var(--navy-light) 0%, #2a4580 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201,162,39,0.2);
    gap: 16px;
    padding: 32px;
}

.hero-img-icon {
    font-size: 64px;
}

.hero-img-text {
    color: var(--gold-pale);
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    text-align: center;
    font-style: italic;
}

.hero-badge {
    position: absolute;
    bottom: 32px;
    left: -24px;
    background: var(--white);
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-badge-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.hero-badge-text strong {
    display: block;
    font-size: 18px;
    color: var(--navy);
    font-weight: 700;
}

.hero-badge-text span {
    font-size: 12px;
    color: var(--text-muted);
}

.hero-badge-2 {
    position: absolute;
    top: 32px;
    right: -24px;
    background: var(--navy-mid);
    border: 1px solid rgba(201,162,39,0.3);
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-badge-2-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(201,162,39,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.hero-badge-2-text strong {
    display: block;
    font-size: 15px;
    color: var(--white);
    font-weight: 600;
}

.hero-badge-2-text span {
    font-size: 12px;
    color: var(--gold);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

    .hero-scroll span {
        font-size: 11px;
        color: rgba(255,255,255,0.4);
        letter-spacing: 2px;
        text-transform: uppercase;
    }

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(201,162,39,0.6), transparent);
    animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 0.4;
        transform: scaleY(0.8);
    }

    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

/* ─── HERO VIDEO ─── */
.hero-video {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

    .hero-video video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 135deg, rgba(6,14,30,0.82) 0%, rgba(10,22,40,0.75) 40%, rgba(18,32,64,0.65) 70%, rgba(6,14,30,0.80) 100% );
}

.hero-video-overlay-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, rgba(6,14,30,0.9), transparent);
}

/* ─── QUICK LINKS BAR ─── */
.quicklinks {
    background: var(--gold);
    padding: 0;
}

.quicklinks-inner {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
}

    .quicklinks-inner::-webkit-scrollbar {
        display: none;
    }

.quicklink-item {
    flex: 1;
    min-width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 20px;
    cursor: pointer;
    color: var(--navy);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s;
    white-space: nowrap;
    border-right: 1px solid rgba(10,22,40,0.1);
}

    .quicklink-item:last-child {
        border-right: none;
    }

    .quicklink-item:hover {
        background: rgba(10,22,40,0.08);
    }

    .quicklink-item .qi-icon {
        font-size: 18px;
    }

/* ─── ABOUT / HIGHLIGHTS ─── */
.highlights {
    padding: 100px 0;
    background: var(--off-white);
}

.highlights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-top: 16px;
}

.highlights-text p {
    color: var(--text-muted);
    margin-bottom: 32px;
    font-size: 16px;
    line-height: 1.9;
}

.highlights-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid rgba(10,22,40,0.07);
    transition: var(--transition);
}

    .feature-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-hover);
        border-color: var(--gold);
    }

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(201,162,39,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 12px;
}

.feature-card h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
}

.feature-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

.highlights-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.highlights-img-wrap {
    width: 100%;
    max-width: 500px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.highlights-img-placeholder {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--gold-pale);
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-style: italic;
}

.highlights-floating {
    position: absolute;
    right: -20px;
    top: 40px;
    background: var(--white);
    border-radius: 16px;
    padding: 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

    .highlights-floating .num {
        font-family: 'Cormorant Garamond', serif;
        font-size: 42px;
        font-weight: 700;
        color: var(--gold);
        line-height: 1;
    }

    .highlights-floating .label {
        font-size: 12px;
        color: var(--text-muted);
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-top: 4px;
    }

/* ─── STATS BAND ─── */
.stats-band {
    background: var(--navy);
    padding: 72px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.stat-item {
    padding: 32px;
    text-align: center;
    position: relative;
    border-right: 1px solid rgba(255,255,255,0.07);
}

    .stat-item:last-child {
        border-right: none;
    }

.stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 64px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    display: block;
}

.stat-unit {
    color: var(--gold-light);
    font-size: 32px;
}

.stat-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 8px;
}

.stat-divider {
    width: 32px;
    height: 2px;
    background: var(--gold);
    margin: 12px auto 0;
    opacity: 0.4;
}

/* ─── CAMPUS ─── */
.campus {
    padding: 100px 0;
}

.campus-header {
    text-align: center;
    margin-bottom: 56px;
}

    .campus-header p {
        color: var(--text-muted);
        max-width: 560px;
        margin: 16px auto 0;
    }

.campus-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.campus-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--navy);
    position: relative;
    aspect-ratio: 3/4;
    cursor: pointer;
    group: true;
    transition: var(--transition);
}

    .campus-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-hover);
    }

        .campus-card:hover .campus-card-overlay {
            opacity: 1;
        }

        .campus-card:hover .campus-card-body {
            transform: translateY(0);
        }

.campus-card-img {
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, var(--navy-mid), var(--navy-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

.campus-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,22,40,0.95) 0%, rgba(10,22,40,0.3) 60%, transparent 100%);
    opacity: 0.8;
    transition: opacity 0.4s;
}

.campus-card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 24px;
    transform: translateY(8px);
    transition: transform 0.4s;
}

.campus-card-tag {
    font-size: 10px;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 8px;
}

.campus-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 8px;
}

.campus-card p {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

/* ─── PROGRAMS ─── */
.programs {
    padding: 100px 0;
    background: var(--off-white);
}

.programs-header {
    margin-bottom: 56px;
}

.programs-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.prog-tab {
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: 'Outfit', sans-serif;
    background: var(--white);
    color: var(--text-muted);
    border: 1px solid rgba(10,22,40,0.1);
}

    .prog-tab.active, .prog-tab:hover {
        background: var(--navy);
        color: var(--white);
        border-color: var(--navy);
    }

.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.program-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid rgba(10,22,40,0.07);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

    .program-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--gold);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s ease;
    }

    .program-card:hover::before {
        transform: scaleX(1);
    }

    .program-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-hover);
    }

.program-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(10,22,40,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
}

.program-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
}

.program-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.program-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.program-tag {
    font-size: 11px;
    padding: 5px 12px;
    border-radius: 50px;
    background: rgba(201,162,39,0.1);
    color: #8a6d00;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.program-link {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    transition: gap 0.2s;
}

    .program-link:hover {
        gap: 10px;
        color: var(--gold);
    }

/* ─── PLACEMENTS ─── */
.placements {
    padding: 100px 0;
    background: var(--navy);
}

.placements-header {
    text-align: center;
    margin-bottom: 64px;
}

    .placements-header .section-title {
        color: var(--white);
    }

    .placements-header p {
        color: rgba(255,255,255,0.5);
        margin-top: 16px;
    }

.placements-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 56px;
}

.placement-stat {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(201,162,39,0.15);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition);
}

    .placement-stat:hover {
        background: rgba(201,162,39,0.08);
        border-color: rgba(201,162,39,0.4);
        transform: translateY(-4px);
    }

.placement-stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 60px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.placement-stat-label {
    color: rgba(255,255,255,0.6);
    margin-top: 8px;
    font-size: 14px;
}

.recruiters-title {
    text-align: center;
    color: rgba(255,255,255,0.4);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.recruiters-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.recruiter-logo {
    padding: 16px 28px;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
    font-weight: 700;
    font-size: 18px;
    color: rgba(255,255,255,0.4);
    transition: var(--transition);
    cursor: default;
    font-family: 'Outfit', sans-serif;
}

    .recruiter-logo:hover {
        border-color: rgba(201,162,39,0.3);
        color: rgba(255,255,255,0.7);
        background: rgba(255,255,255,0.07);
    }

/* ─── TESTIMONIALS ─── */
.testimonials {
    padding: 100px 0;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 56px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid rgba(10,22,40,0.07);
    transition: var(--transition);
    position: relative;
}

    .testimonial-card:hover {
        box-shadow: var(--shadow);
        transform: translateY(-4px);
    }

.testimonial-quote {
    font-size: 48px;
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
    line-height: 1;
    margin-bottom: 16px;
    font-weight: 700;
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.t-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
}

    .t-avatar.a1 {
        background: rgba(201,162,39,0.15);
        color: var(--gold);
    }

    .t-avatar.a2 {
        background: rgba(10,22,40,0.08);
        color: var(--navy);
    }

    .t-avatar.a3 {
        background: rgba(201,162,39,0.1);
        color: #8a6d00;
    }

.t-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--navy);
}

.t-role {
    font-size: 12px;
    color: var(--text-muted);
}

.t-stars {
    color: var(--gold);
    font-size: 13px;
    margin-top: 2px;
}

/* ─── PARTNERS ─── */
.partners {
    padding: 72px 0;
    background: var(--off-white);
}

.partners-header {
    text-align: center;
    margin-bottom: 48px;
}

    .partners-header .section-label {
        justify-content: center;
        display: flex;
    }

.partners-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.partner-logo {
    font-size: 20px;
    font-weight: 700;
    color: rgba(10,22,40,0.25);
    transition: color 0.3s;
    cursor: default;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.5px;
}

    .partner-logo:hover {
        color: var(--navy);
    }

/* ─── APPLY CTA ─── */
.apply-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    position: relative;
    overflow: hidden;
}

.apply-cta-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 80% 50%, rgba(201,162,39,0.08), transparent 50%);
}

.apply-cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.apply-cta h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.15;
}

    .apply-cta h2 em {
        color: var(--gold);
        font-style: italic;
    }

.apply-cta p {
    color: rgba(255,255,255,0.6);
    font-size: 17px;
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.apply-cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ─── FOOTER ─── */
footer {
    background: #060e1e;
    padding: 72px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255,255,255,0.4);
    line-height: 1.8;
    margin: 16px 0 24px;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: var(--transition);
}

    .social-btn:hover {
        border-color: var(--gold);
        color: var(--gold);
        background: rgba(201,162,39,0.08);
    }

.footer-col h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(201,162,39,0.2);
}

.footer-col ul {
    list-style: none;
}

    .footer-col ul li {
        margin-bottom: 12px;
    }

    .footer-col ul a {
        color: rgba(255,255,255,0.4);
        text-decoration: none;
        font-size: 14px;
        transition: color 0.2s;
    }

        .footer-col ul a:hover {
            color: var(--gold);
        }

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: gap;
    gap: 16px;
}

    .footer-bottom p {
        font-size: 13px;
        color: rgba(255,255,255,0.25);
    }

    .footer-bottom a {
        color: var(--gold);
        text-decoration: none;
    }

.accreditation {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.accred-badge {
    padding: 6px 14px;
    border-radius: 6px;
    border: 1px solid rgba(201,162,39,0.2);
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .hero-content {
        gap: 40px;
    }

    .campus-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-actions {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        padding: 100px 0 60px;
        gap: 40px;
    }

    .hero-visual {
        display: none;
    }

    .hero-stats {
        gap: 24px;
    }

    .hero-stat-num {
        font-size: 28px;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .highlights-visual {
        display: none;
    }

    .highlights-features {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item {
        border-bottom: 1px solid rgba(255,255,255,0.07);
    }

        .stat-item:nth-child(odd) {
            border-right: 1px solid rgba(255,255,255,0.07);
        }

        .stat-item:nth-child(even) {
            border-right: none;
        }

    .campus-grid {
        grid-template-columns: 1fr;
    }

    .programs-grid {
        grid-template-columns: 1fr;
    }

    .placements-stats {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .quicklink-item {
        flex: 0 0 auto;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
    }

    .btn {
        justify-content: center;
    }

    .apply-cta-btns {
        flex-direction: column;
        align-items: center;
    }
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-eyebrow {
    animation: fadeUp 0.7s ease both;
    animation-delay: 0.1s;
}

.hero-title {
    animation: fadeUp 0.7s ease both;
    animation-delay: 0.2s;
}

.hero-desc {
    animation: fadeUp 0.7s ease both;
    animation-delay: 0.3s;
}

.hero-cta {
    animation: fadeUp 0.7s ease both;
    animation-delay: 0.4s;
}

.hero-stats {
    animation: fadeUp 0.7s ease both;
    animation-delay: 0.5s;
}

.hero-visual {
    animation: fadeUp 0.9s ease both;
    animation-delay: 0.3s;
}

/* Counter animation */
.count-up {
    display: inline;
}

.campus-thumb {
    background-size: cover;
    background-position: center;
    transition: all 0.3s ease;
    background-color: #0a1628;
}
/* ensure fallback if images not loaded: display gradient + icon overlay */
.campus-thumb {
    position: relative;
}

.campus-card:hover .campus-thumb {
    filter: brightness(1.05);
}

@media (max-width: 760px) {
    .campus-thumb {
        height: 180px;
    }
}
/* extra style for readability */
.program-card {
    background: white;
    transition: transform 0.2s;
}

    .program-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }

.stat-num {
    font-size: 3rem;
}

footer a {
    text-decoration: none;
    color: rgba(255,255,255,0.6);
}

    footer a:hover {
        color: var(--gold);
    }
.page-hero {
    min-height: 360px;
    background: var(--navy);
    display: flex;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
    padding-bottom: 60px;
    padding-top: 76px;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #060e1e 0%, #0a1628 50%, #1a2e5a 100%);
}

.page-hero-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 75% 50%, rgba(201,162,39,0.1), transparent 55%), radial-gradient(circle at 15% 80%, rgba(201,162,39,0.06), transparent 40%);
}

.page-hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: linear-gradient(rgba(201,162,39,1) 1px, transparent 1px), linear-gradient(90deg, rgba(201,162,39,1) 1px, transparent 1px);
    background-size: 60px 60px;
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

    .breadcrumb a {
        font-size: 13px;
        color: rgba(255,255,255,0.5);
        text-decoration: none;
        transition: color 0.2s;
    }

        .breadcrumb a:hover {
            color: var(--gold);
        }

    .breadcrumb span {
        color: rgba(255,255,255,0.25);
        font-size: 13px;
    }

.breadcrumb-current {
    font-size: 13px;
    color: var(--gold);
    font-weight: 600;
}

.page-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(40px, 6vw, 70px);
    font-weight: 600;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 16px;
}

    .page-hero h1 em {
        color: var(--gold);
        font-style: italic;
    }

.page-hero p {
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    max-width: 600px;
}

.page-hero-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.intro-section {
    padding: 80px 0;
}

.intro-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 60px;
    align-items: start;
}

.building-img-wrap {
    margin-bottom: 40px;
}

.intro-text p {
    font-size: 16px;
    color: var(--text-body);
    line-height: 1.9;
    margin-bottom: 18px;
}

    .intro-text p strong {
        color: var(--navy);
    }

.highlight-quote {
    border-left: 4px solid var(--gold);
    padding: 20px 24px;
    background: rgba(201,162,39,0.06);
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 28px 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-style: italic;
    color: var(--navy);
    line-height: 1.5;
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 96px;
}

.sidebar-card {
    background: var(--white);
    border: 1px solid rgba(10,22,40,0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.sidebar-card-head {
    background: var(--navy);
    padding: 16px 20px;
}

    .sidebar-card-head h3 {
        font-size: 13px;
        font-weight: 700;
        color: var(--white);
        letter-spacing: 1.5px;
        text-transform: uppercase;
    }

        .sidebar-card-head h3 em {
            color: var(--gold);
            font-style: normal;
        }

.sidebar-links {
    padding: 8px 0;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-body);
    text-decoration: none;
    transition: var(--transition);
    border-bottom: 1px solid rgba(10,22,40,0.05);
}

    .sidebar-link:last-child {
        border-bottom: none;
    }

    .sidebar-link:hover {
        background: rgba(201,162,39,0.07);
        color: var(--navy);
        padding-left: 26px;
    }

.sidebar-link-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}

.sidebar-apply {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
    border: 1px solid var(--border);
}

    .sidebar-apply h4 {
        font-family: 'Cormorant Garamond', serif;
        font-size: 22px;
        font-weight: 600;
        color: var(--white);
        margin-bottom: 8px;
    }

    .sidebar-apply p {
        font-size: 13px;
        color: rgba(255,255,255,0.5);
        margin-bottom: 20px;
        line-height: 1.6;
    }

.vision-section {
    padding: 80px 0;
    background: var(--off-white);
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 48px;
}

.vision-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid rgba(10,22,40,0.07);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

    .vision-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--gold);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s;
    }

    .vision-card:hover::after {
        transform: scaleX(1);
    }

    .vision-card:hover {
        box-shadow: var(--shadow-hover);
        transform: translateY(-4px);
    }

.vision-icon {
    font-size: 40px;
    margin-bottom: 20px;
    display: block;
}

.vision-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 16px;
}

.vision-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
}

.founder-section {
    padding: 80px 0;
}

.founder-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 60px;
    align-items: center;
}

.founder-img-wrap .img-placeholder {
    height: 420px;
}

.founder-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,162,39,0.1);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 6px 18px;
    margin-bottom: 20px;
}

    .founder-tag span {
        font-size: 11px;
        color: var(--gold);
        letter-spacing: 2px;
        text-transform: uppercase;
        font-weight: 600;
    }

.founder-text p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 16px;
}

.founder-text strong {
    color: var(--navy);
}

.founder-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.founder-fact {
    background: var(--off-white);
    border-radius: var(--radius);
    padding: 20px;
    border-left: 3px solid var(--gold);
}

    .founder-fact strong {
        display: block;
        font-size: 15px;
        color: var(--navy);
        font-weight: 700;
        margin-bottom: 4px;
    }

    .founder-fact span {
        font-size: 13px;
        color: var(--text-muted);
    }

.facilities-section {
    padding: 80px 0;
    background: var(--off-white);
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.facility-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(10,22,40,0.07);
    transition: var(--transition);
}

    .facility-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-hover);
    }

.facility-card-img .img-placeholder {
    border-radius: 0;
    border: none;
}

.facility-card-body {
    padding: 24px;
}

.facility-tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.facility-card-body h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 10px;
}

.facility-card-body p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
}

.library-section {
    padding: 80px 0;
    background: var(--navy);
}

.library-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.library-img-wrap .img-placeholder {
    height: 440px;
    background: linear-gradient(135deg, rgba(201,162,39,0.08), rgba(30,50,96,0.6));
    border-color: rgba(201,162,39,0.2);
}

    .library-img-wrap .img-placeholder .img-ph-title {
        color: var(--gold-pale);
    }

    .library-img-wrap .img-placeholder .img-ph-note {
        color: rgba(255,255,255,0.4);
    }

.library-content .section-label {
    color: var(--gold);
}

.library-content .section-title {
    color: var(--white);
}

.library-content p {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    line-height: 1.9;
    margin-bottom: 20px;
}

.library-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.lib-stat {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(201,162,39,0.15);
    border-radius: var(--radius);
    padding: 24px;
    transition: var(--transition);
}

    .lib-stat:hover {
        background: rgba(201,162,39,0.08);
        border-color: rgba(201,162,39,0.4);
    }

.lib-stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.lib-stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.accred-section {
    padding: 72px 0;
}

.accred-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.accred-card {
    text-align: center;
    padding: 36px 24px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(10,22,40,0.08);
    background: var(--white);
    transition: var(--transition);
}

    .accred-card:hover {
        border-color: var(--gold);
        box-shadow: var(--shadow);
    }

.accred-icon {
    font-size: 36px;
    margin-bottom: 12px;
    display: block;
}

.accred-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.accred-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

.img-placeholder {
    width: 100%;
    background: linear-gradient(135deg, #e8edf5 0%, #d4dbe8 100%);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 2px dashed rgba(10,22,40,0.15);
    position: relative;
    overflow: hidden;
}

    .img-placeholder::before {
        content: '';
        position: absolute;
        inset: 0;
        background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(10,22,40,0.02) 10px, rgba(10,22,40,0.02) 20px);
    }

    .img-placeholder.img-fallback::before {
        opacity: 1;
    }

.img-ph-icon {
    font-size: 36px;
    opacity: 0.4;
    position: relative;
}

.img-ph-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    opacity: 0.7;
    letter-spacing: 0.5px;
    position: relative;
    text-align: center;
    padding: 0 16px;
}

.img-ph-dim {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    background: var(--navy);
    color: var(--white);
    padding: 5px 14px;
    border-radius: 50px;
    position: relative;
    font-family: monospace;
}

.img-ph-note {
    font-size: 11px;
    color: var(--text-muted);
    position: relative;
    text-align: center;
    padding: 0 20px;
}

.btn-outline-navy {
    background: transparent;
    border: 2px solid var(--navy);
    color: var(--navy);
}

    .btn-outline-navy:hover {
        background: var(--navy);
        color: var(--white);
    }

@media (max-width: 1024px) {
    .intro-layout {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .sidebar-card {
        flex: 1;
        min-width: 240px;
    }

    .founder-layout {
        grid-template-columns: 1fr;
    }

    .founder-img-wrap {
        max-width: 400px;
    }

    .library-layout {
        grid-template-columns: 1fr;
    }

    .accred-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .vision-grid {
        grid-template-columns: 1fr;
    }

    .facilities-grid {
        grid-template-columns: 1fr;
    }

    .library-stats {
        grid-template-columns: 1fr 1fr;
    }

    .founder-facts {
        grid-template-columns: 1fr;
    }
}
.page-hero {
    min-height: 340px;
    background: var(--navy);
    display: flex;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
    padding-bottom: 60px;
    padding-top: 76px;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #060e1e 0%, #0a1628 50%, #1a2e5a 100%);
}

.page-hero-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 80% 40%, rgba(201,162,39,0.12), transparent 55%), radial-gradient(circle at 10% 90%, rgba(201,162,39,0.06), transparent 40%);
}

.page-hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: linear-gradient(rgba(201,162,39,1) 1px, transparent 1px), linear-gradient(90deg, rgba(201,162,39,1) 1px, transparent 1px);
    background-size: 60px 60px;
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

    .breadcrumb a {
        font-size: 13px;
        color: rgba(255,255,255,0.5);
        text-decoration: none;
        transition: color 0.2s;
    }

        .breadcrumb a:hover {
            color: var(--gold);
        }

    .breadcrumb span {
        color: rgba(255,255,255,0.25);
        font-size: 13px;
    }

.breadcrumb-current {
    font-size: 13px;
    color: var(--gold);
    font-weight: 600;
}

.page-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(40px, 6vw, 70px);
    font-weight: 600;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 16px;
}

    .page-hero h1 em {
        color: var(--gold);
        font-style: italic;
    }

.page-hero p {
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    max-width: 560px;
}

.page-hero-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.banner-wrap {
    padding: 56px 0 0;
}

.content-sidebar-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 60px;
    padding: 56px 0 80px;
    align-items: start;
}

.facility-block {
    padding: 60px 0;
    border-bottom: 1px solid rgba(10,22,40,0.07);
    scroll-margin-top: 100px;
}

    .facility-block:last-child {
        border-bottom: none;
    }

.facility-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: center;
}

    .facility-layout.reverse {
        direction: rtl;
    }

        .facility-layout.reverse > * {
            direction: ltr;
        }

.facility-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 80px;
    font-weight: 700;
    color: rgba(10,22,40,0.05);
    line-height: 1;
    margin-bottom: -20px;
    display: block;
}

.facility-tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,162,39,0.1);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 5px 16px;
    margin-bottom: 14px;
    font-size: 11px;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.facility-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 600;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 20px;
}

    .facility-content h2 span {
        color: var(--gold);
        font-style: italic;
    }

.facility-bullets {
    list-style: none;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .facility-bullets li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: 14px;
        color: var(--text-muted);
        line-height: 1.6;
    }

        .facility-bullets li::before {
            content: '';
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--gold);
            flex-shrink: 0;
            margin-top: 8px;
        }

        .facility-bullets li strong {
            color: var(--navy);
        }

.facility-img-wrap {
    position: relative;
}

.facility-img-accent {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(201,162,39,0.1);
    border: 2px solid var(--border);
    z-index: 0;
}

.facility-img-accent-2 {
    position: absolute;
    bottom: -16px;
    left: -16px;
    width: 120px;
    height: 120px;
    border-radius: var(--radius-lg);
    background: var(--off-white);
    border: 2px solid rgba(10,22,40,0.05);
    z-index: 0;
}

.facility-img-wrap .img-placeholder {
    position: relative;
    z-index: 1;
}

.facility-sub {
    margin-top: 32px;
    padding: 24px;
    border-radius: var(--radius-lg);
    background: var(--off-white);
    border: 1px solid rgba(10,22,40,0.06);
}

    .facility-sub h4 {
        font-size: 16px;
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .facility-sub h4 span {
            font-size: 20px;
        }

    .facility-sub p {
        font-size: 14px;
        color: var(--text-muted);
        line-height: 1.8;
    }

.extra-section {
    padding: 72px 0;
    background: var(--off-white);
}

.extra-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.extra-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1px solid rgba(10,22,40,0.07);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

    .extra-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--gold);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s;
    }

    .extra-card:hover::before {
        transform: scaleX(1);
    }

    .extra-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-hover);
    }

.extra-card-icon {
    font-size: 42px;
    margin-bottom: 20px;
    display: block;
}

.extra-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 14px;
}

.extra-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 96px;
}

.sidebar-card {
    background: var(--white);
    border: 1px solid rgba(10,22,40,0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.sidebar-card-head {
    background: var(--navy);
    padding: 16px 20px;
}

    .sidebar-card-head h3 {
        font-size: 12px;
        font-weight: 700;
        color: var(--white);
        letter-spacing: 1.5px;
        text-transform: uppercase;
    }

        .sidebar-card-head h3 em {
            color: var(--gold);
            font-style: normal;
        }

.sidebar-links {
    padding: 6px 0;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-body);
    text-decoration: none;
    transition: var(--transition);
    border-bottom: 1px solid rgba(10,22,40,0.05);
}

    .sidebar-link:last-child {
        border-bottom: none;
    }

    .sidebar-link:hover {
        background: rgba(201,162,39,0.07);
        color: var(--navy);
        padding-left: 26px;
    }

    .sidebar-link.active {
        background: rgba(201,162,39,0.08);
        color: var(--navy);
        border-left: 3px solid var(--gold);
    }

.sidebar-link-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}

.sidebar-toc {
    padding: 8px 0;
}

.toc-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
    border-bottom: 1px solid rgba(10,22,40,0.04);
    font-weight: 500;
}

    .toc-link:last-child {
        border-bottom: none;
    }

    .toc-link:hover {
        color: var(--navy);
        background: rgba(201,162,39,0.05);
        padding-left: 26px;
    }

.toc-num {
    font-size: 11px;
    font-weight: 700;
    color: var(--gold);
    min-width: 20px;
}

.sidebar-apply {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
    border: 1px solid var(--border);
}

    .sidebar-apply h4 {
        font-family: 'Cormorant Garamond', serif;
        font-size: 22px;
        font-weight: 600;
        color: var(--white);
        margin-bottom: 8px;
    }

    .sidebar-apply p {
        font-size: 13px;
        color: rgba(255,255,255,0.5);
        margin-bottom: 20px;
        line-height: 1.6;
    }

.body-text {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 16px;
}

    .body-text strong {
        color: var(--navy);
    }

.img-placeholder {
    width: 100%;
    background: linear-gradient(135deg, #e8edf5 0%, #d4dbe8 100%);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 2px dashed rgba(10,22,40,0.15);
    position: relative;
    overflow: hidden;
}

    .img-placeholder::before {
        content: '';
        position: absolute;
        inset: 0;
        background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(10,22,40,0.025) 10px, rgba(10,22,40,0.025) 20px);
    }

    .img-placeholder.img-fallback::before {
        opacity: 1;
    }

.img-ph-icon {
    font-size: 40px;
    opacity: 0.35;
    position: relative;
    z-index: 1;
}

.img-ph-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--navy);
    opacity: 0.65;
    letter-spacing: 0.5px;
    position: relative;
    text-align: center;
    padding: 0 20px;
    z-index: 1;
}

.img-ph-dim {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    background: var(--navy);
    color: var(--white);
    padding: 5px 14px;
    border-radius: 50px;
    position: relative;
    font-family: monospace;
    z-index: 1;
}

.img-ph-file {
    font-size: 10px;
    color: var(--gold);
    position: relative;
    font-weight: 600;
    letter-spacing: 1px;
    font-family: monospace;
    z-index: 1;
}

.img-ph-note {
    font-size: 11px;
    color: var(--text-muted);
    position: relative;
    text-align: center;
    padding: 0 20px;
    line-height: 1.5;
    z-index: 1;
}

@media (max-width: 1024px) {
    .content-sidebar-layout {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .sidebar-apply {
        grid-column: 1 / -1;
    }

    .extra-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .facility-layout, .facility-layout.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .extra-grid {
        grid-template-columns: 1fr;
    }

    .sidebar {
        grid-template-columns: 1fr;
    }
}
.page-hero {
    min-height: 340px;
    background: var(--navy);
    display: flex;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
    padding-bottom: 60px;
    padding-top: 76px;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #060e1e 0%, #0a1628 50%, #1a2e5a 100%);
}

.page-hero-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 80% 40%, rgba(201,162,39,0.12), transparent 55%), radial-gradient(circle at 10% 90%, rgba(201,162,39,0.06), transparent 40%);
}

.page-hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: linear-gradient(rgba(201,162,39,1) 1px, transparent 1px), linear-gradient(90deg, rgba(201,162,39,1) 1px, transparent 1px);
    background-size: 60px 60px;
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

    .breadcrumb a {
        font-size: 13px;
        color: rgba(255,255,255,0.5);
        text-decoration: none;
        transition: color 0.2s;
    }

        .breadcrumb a:hover {
            color: var(--gold);
        }

    .breadcrumb span {
        color: rgba(255,255,255,0.25);
        font-size: 13px;
    }

.breadcrumb-current {
    font-size: 13px;
    color: var(--gold);
    font-weight: 600;
}

.page-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(40px, 6vw, 70px);
    font-weight: 600;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 16px;
}

    .page-hero h1 em {
        color: var(--gold);
        font-style: italic;
    }

.page-hero p {
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    max-width: 560px;
}

.page-hero-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Courses Stats Band */
.courses-stats-band {
    background: var(--navy);
    padding: 48px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.courses-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.courses-stat-item {
    padding: 24px 32px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.07);
}

    .courses-stat-item:last-child {
        border-right: none;
    }

.courses-stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    display: block;
}

.courses-stat-desc {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 8px;
}

/* Courses Intro */
.courses-intro {
    padding: 80px 0;
    background: var(--off-white);
}

.courses-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.body-text {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 20px;
}

    .body-text strong {
        color: var(--navy);
    }

.courses-intro-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.intro-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid rgba(10,22,40,0.06);
}

.intro-feature-icon {
    font-size: 28px;
}

.intro-feature strong {
    display: block;
    font-size: 14px;
    color: var(--navy);
    font-weight: 700;
}

.intro-feature span {
    font-size: 12px;
    color: var(--text-muted);
}

.intro-visual-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(201,162,39,0.15);
}

.intro-visual-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.intro-visual-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 20px;
}

.intro-visual-card ul {
    list-style: none;
    padding: 0;
}

    .intro-visual-card ul li {
        padding: 10px 0;
        font-size: 14px;
        color: var(--text-muted);
        border-bottom: 1px solid rgba(10,22,40,0.05);
    }

        .intro-visual-card ul li:last-child {
            border-bottom: none;
        }

/* Specializations Section */
.specializations {
    padding: 80px 0;
    background: var(--white);
}

.section-header-center {
    text-align: center;
    margin-bottom: 56px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 560px;
    margin: 16px auto 0;
}

.specializations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.spec-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    border: 1px solid rgba(10,22,40,0.08);
    overflow: hidden;
}

    .spec-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-hover);
        border-color: rgba(201,162,39,0.3);
    }

.spec-card-inner {
    padding: 32px;
    position: relative;
}

.spec-icon {
    font-size: 44px;
    margin-bottom: 16px;
}

.spec-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(201,162,39,0.1);
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.spec-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.3;
}

.spec-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.spec-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.spec-meta-item {
    font-size: 12px;
    padding: 4px 10px;
    background: var(--off-white);
    border-radius: 50px;
    color: var(--navy);
}

.spec-highlights {
    background: var(--off-white);
    padding: 16px;
    border-radius: var(--radius);
    margin-bottom: 20px;
}

    .spec-highlights strong {
        font-size: 12px;
        color: var(--navy);
        display: block;
        margin-bottom: 8px;
    }

    .spec-highlights ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .spec-highlights ul li {
            font-size: 12px;
            color: var(--text-muted);
            padding: 4px 0;
            padding-left: 16px;
            position: relative;
        }

            .spec-highlights ul li::before {
                content: '▹';
                position: absolute;
                left: 0;
                color: var(--gold);
                font-size: 10px;
            }

.spec-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    transition: gap 0.2s;
}

    .spec-link:hover {
        gap: 10px;
        color: var(--gold);
    }

.spec-link-gold {
    color: var(--gold);
}

.spec-highlight {
    border: 2px solid var(--gold);
    position: relative;
}

.spec-badge {
    position: absolute;
    top: -12px;
    left: 24px;
    background: var(--gold);
    color: var(--navy);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Admission Process */
.admission-process {
    padding: 80px 0;
    background: var(--off-white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.process-step {
    text-align: center;
    padding: 32px 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    position: relative;
    transition: var(--transition);
    border: 1px solid rgba(10,22,40,0.06);
}

    .process-step:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow);
    }

.step-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 700;
    color: rgba(201,162,39,0.15);
    position: absolute;
    top: 20px;
    right: 24px;
}

.step-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.process-step h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 12px;
}

.process-step p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

.process-note {
    text-align: center;
    padding: 32px;
    background: rgba(201,162,39,0.06);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(201,162,39,0.15);
}

    .process-note p {
        margin-bottom: 20px;
        font-size: 14px;
        color: var(--text-muted);
    }

.process-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Eligibility Section */
.eligibility {
    padding: 80px 0;
    background: var(--white);
}

.eligibility-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.eligibility-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

    .eligibility-list li {
        padding: 12px 0;
        border-bottom: 1px solid rgba(10,22,40,0.06);
        font-size: 14px;
        color: var(--text-muted);
    }

        .eligibility-list li strong {
            color: var(--navy);
            min-width: 140px;
            display: inline-block;
        }

.eligibility-note {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--off-white);
    padding: 24px;
    border-radius: var(--radius);
    margin-top: 32px;
}

    .eligibility-note span {
        font-size: 32px;
    }

    .eligibility-note strong {
        display: block;
        font-size: 14px;
        color: var(--navy);
        margin-bottom: 4px;
    }

    .eligibility-note p {
        font-size: 13px;
        color: var(--text-muted);
    }

    .eligibility-note a {
        color: var(--gold);
        text-decoration: none;
    }

.eligibility-card {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: var(--radius-lg);
    padding: 32px;
    color: var(--white);
}

.eligibility-card-header span {
    font-size: 12px;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.eligibility-card-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    margin: 8px 0 24px;
}

.eligibility-fact {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

    .eligibility-fact:last-child {
        border-bottom: none;
    }

.fact-label {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

.fact-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
}

/* Fee Structure */
.fee-structure {
    padding: 80px 0;
    background: var(--off-white);
}

.fee-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.fee-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(10,22,40,0.08);
}

    .fee-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-hover);
    }

.fee-card-highlight {
    border: 2px solid var(--gold);
    position: relative;
}

.fee-badge {
    position: absolute;
    top: -12px;
    left: 24px;
    background: var(--gold);
    color: var(--navy);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 50px;
    letter-spacing: 1px;
}

.fee-card-header {
    background: var(--navy);
    padding: 32px;
    text-align: center;
    color: var(--white);
}

    .fee-card-header h3 {
        font-family: 'Cormorant Garamond', serif;
        font-size: 24px;
        margin-bottom: 16px;
    }

.fee-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.fee-currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--gold);
}

.fee-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.fee-period {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}

.fee-card-body {
    padding: 32px;
}

.fee-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

    .fee-list li {
        padding: 8px 0;
        font-size: 14px;
        color: var(--text-muted);
    }

.fee-note {
    font-size: 11px;
    color: var(--text-muted);
    text-align: center;
    padding-top: 16px;
    border-top: 1px solid rgba(10,22,40,0.06);
}

/* Why MASMS */
.why-masms {
    padding: 80px 0;
    background: var(--white);
}

.why-masms-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-features {
    margin-top: 32px;
}

.why-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(10,22,40,0.06);
}

    .why-feature:last-child {
        border-bottom: none;
    }

.why-icon {
    font-size: 36px;
}

.why-feature h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px;
}

.why-feature p {
    font-size: 13px;
    color: var(--text-muted);
}

.why-visual-card {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid rgba(201,162,39,0.15);
}

.testimonial-mini {
    text-align: center;
    margin-bottom: 32px;
}

    .testimonial-mini .testimonial-quote {
        font-size: 48px;
        color: var(--gold);
        font-family: 'Cormorant Garamond', serif;
        line-height: 1;
    }

    .testimonial-mini p {
        font-size: 15px;
        font-style: italic;
        color: var(--text-body);
        margin: 16px 0;
    }

.testimonial-author-mini strong {
    display: block;
    font-size: 14px;
    color: var(--navy);
}

.testimonial-author-mini span {
    font-size: 12px;
    color: var(--text-muted);
}

.stats-mini {
    display: flex;
    justify-content: space-around;
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(10,22,40,0.08);
}

.stats-mini-item {
    display: flex;
    flex-direction: column;
}

.stats-mini-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
}

.stats-mini-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Apply CTA */
.apply-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    position: relative;
    overflow: hidden;
}

.apply-cta-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 80% 50%, rgba(201,162,39,0.08), transparent 50%);
}

.apply-cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

    .apply-cta-inner h2 {
        font-family: 'Cormorant Garamond', serif;
        font-size: clamp(36px, 5vw, 60px);
        font-weight: 600;
        color: var(--white);
        margin-bottom: 20px;
        line-height: 1.15;
    }

        .apply-cta-inner h2 em {
            color: var(--gold);
            font-style: italic;
        }

    .apply-cta-inner p {
        color: rgba(255,255,255,0.6);
        font-size: 17px;
        max-width: 560px;
        margin: 0 auto 40px;
        line-height: 1.8;
    }

.apply-cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

    .btn-outline:hover {
        background: var(--white);
        color: var(--navy);
    }

/* Responsive */
@media (max-width: 1024px) {
    .specializations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .courses-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .courses-stat-item {
        border-bottom: 1px solid rgba(255,255,255,0.07);
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .courses-intro-grid {
        grid-template-columns: 1fr;
    }

    .specializations-grid {
        grid-template-columns: 1fr;
    }

    .eligibility-grid {
        grid-template-columns: 1fr;
    }

    .why-masms-grid {
        grid-template-columns: 1fr;
    }

    .fee-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .courses-stats-grid {
        grid-template-columns: 1fr;
    }

    .courses-intro-features {
        grid-template-columns: 1fr;
    }
}
.page-hero {
    min-height: 340px;
    background: var(--navy);
    display: flex;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
    padding-bottom: 60px;
    padding-top: 76px;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #060e1e 0%, #0a1628 50%, #1a2e5a 100%);
}

.page-hero-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 80% 40%, rgba(201,162,39,0.12), transparent 55%), radial-gradient(circle at 10% 90%, rgba(201,162,39,0.06), transparent 40%);
}

.page-hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: linear-gradient(rgba(201,162,39,1) 1px, transparent 1px), linear-gradient(90deg, rgba(201,162,39,1) 1px, transparent 1px);
    background-size: 60px 60px;
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

    .breadcrumb a {
        font-size: 13px;
        color: rgba(255,255,255,0.5);
        text-decoration: none;
        transition: color 0.2s;
    }

        .breadcrumb a:hover {
            color: var(--gold);
        }

    .breadcrumb span {
        color: rgba(255,255,255,0.25);
        font-size: 13px;
    }

.breadcrumb-current {
    font-size: 13px;
    color: var(--gold);
    font-weight: 600;
}

.page-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(40px, 6vw, 70px);
    font-weight: 600;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 16px;
}

    .page-hero h1 em {
        color: var(--gold);
        font-style: italic;
    }

.page-hero p {
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    max-width: 560px;
}

.page-hero-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Placement Stats Banner */
.placement-stats-banner {
    padding: 60px 0;
    background: var(--white);
}

.placement-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.placement-stat-card {
    text-align: center;
    padding: 32px 24px;
    background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(201,162,39,0.15);
    transition: var(--transition);
}

    .placement-stat-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow);
        border-color: var(--gold);
    }

.placement-stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat-percent, .stat-unit {
    font-size: 28px;
    color: var(--gold-light);
}

.placement-stat-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    margin: 12px 0 8px;
}

.placement-stat-trend {
    font-size: 11px;
    color: var(--text-muted);
}

/* Section Header */
.section-header-center {
    text-align: center;
    margin-bottom: 56px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 560px;
    margin: 16px auto 0;
}

/* Placement Highlights */
.placement-highlights {
    padding: 0 0 80px 0;
    background: var(--white);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.highlight-card {
    display: flex;
    gap: 20px;
    padding: 28px;
    background: var(--off-white);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    border: 1px solid rgba(10,22,40,0.06);
}

    .highlight-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow);
        border-color: rgba(201,162,39,0.2);
    }

.highlight-icon {
    font-size: 44px;
}

.highlight-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
}

.highlight-content p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Top Recruiters */
.top-recruiters {
    padding: 80px 0;
    background: var(--off-white);
}

.recruiters-showcase {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.recruiter-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.recruiter-logo-card {
    padding: 16px 28px;
    background: var(--white);
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 16px;
    color: var(--navy);
    transition: var(--transition);
    border: 1px solid rgba(10,22,40,0.08);
    min-width: 140px;
    text-align: center;
}

    .recruiter-logo-card:hover {
        transform: translateY(-3px);
        border-color: var(--gold);
        color: var(--gold);
        box-shadow: var(--shadow);
    }

.recruiters-note {
    text-align: center;
    margin-top: 32px;
    padding: 20px;
    background: rgba(201,162,39,0.06);
    border-radius: var(--radius);
    font-size: 14px;
    color: var(--text-muted);
}

/* Placement Process */
.placement-process {
    padding: 80px 0;
    background: var(--white);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.timeline-item {
    text-align: center;
    position: relative;
}

    .timeline-item:not(:last-child)::after {
        content: '→';
        position: absolute;
        right: -20px;
        top: 60px;
        font-size: 24px;
        color: var(--gold);
        opacity: 0.5;
    }

.timeline-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 700;
    color: rgba(201,162,39,0.2);
    margin-bottom: 16px;
}

.timeline-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.timeline-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 12px;
}

.timeline-content p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Training Section */
.training-section {
    padding: 80px 0;
    background: var(--off-white);
}

.training-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.body-text {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 24px;
}

.training-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.training-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.training-check {
    width: 24px;
    height: 24px;
    background: rgba(201,162,39,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--gold);
    flex-shrink: 0;
}

.training-item strong {
    display: block;
    font-size: 14px;
    color: var(--navy);
    margin-bottom: 4px;
}

.training-item span {
    font-size: 13px;
    color: var(--text-muted);
}

.training-card {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: var(--radius-lg);
    padding: 40px;
    color: var(--white);
}

.training-card-header span {
    font-size: 12px;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.training-card-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    margin: 8px 0 20px;
}

.training-card-body p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 24px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .contact-item span {
        font-size: 24px;
    }

    .contact-item strong {
        display: block;
        font-size: 12px;
        color: rgba(255,255,255,0.5);
    }

    .contact-item a {
        color: var(--gold);
        text-decoration: none;
        font-size: 14px;
    }

/* Alumni Testimonials */
.alumni-testimonials {
    padding: 80px 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid rgba(10,22,40,0.08);
    transition: var(--transition);
}

    .testimonial-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow);
        border-color: rgba(201,162,39,0.2);
    }

.testimonial-quote {
    font-size: 48px;
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
    line-height: 1;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.t-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
}

.t-avatar-1 {
    background: rgba(201,162,39,0.15);
    color: var(--gold);
}

.t-avatar-2 {
    background: rgba(10,22,40,0.08);
    color: var(--navy);
}

.t-avatar-3 {
    background: rgba(201,162,39,0.1);
    color: #8a6d00;
}

.t-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--navy);
}

.t-role {
    font-size: 12px;
    color: var(--text-muted);
}

.t-package {
    font-size: 12px;
    color: var(--gold);
    font-weight: 600;
    margin-top: 4px;
}

.t-stars {
    color: var(--gold);
    font-size: 12px;
    margin-top: 4px;
}

/* Placement Stats Detail */
.placement-stats-detail {
    padding: 80px 0;
    background: var(--off-white);
}

.stats-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 48px;
}

.chart-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.chart-label {
    width: 60px;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
}

.chart-bar-bg {
    flex: 1;
    height: 32px;
    background: rgba(10,22,40,0.08);
    border-radius: 16px;
    overflow: hidden;
}

.chart-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 12px;
    color: var(--navy);
    font-size: 12px;
    font-weight: 600;
}

.chart-value {
    width: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
}

.stats-breakdown {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    text-align: center;
    padding: 32px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(10,22,40,0.06);
}

.breakdown-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
}

.breakdown-label {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Alumni Network */
.alumni-network {
    padding: 80px 0;
    background: var(--white);
}

.alumni-network-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.alumni-stats {
    display: flex;
    gap: 32px;
    margin-top: 32px;
}

.alumni-stat {
    text-align: center;
}

.alumni-stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--gold);
    display: block;
}

.alumni-stat-label {
    font-size: 12px;
    color: var(--text-muted);
}

.alumni-quote-card {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    border-left: 4px solid var(--gold);
}

.alumni-quote-icon {
    font-size: 48px;
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
    line-height: 1;
    margin-bottom: 16px;
}

.alumni-quote-card p {
    font-size: 18px;
    font-style: italic;
    color: var(--navy);
    line-height: 1.6;
    margin-bottom: 20px;
}

.alumni-quote-author strong {
    display: block;
    font-size: 14px;
    color: var(--navy);
}

.alumni-quote-author span {
    font-size: 12px;
    color: var(--text-muted);
}

/* FAQ */
.placement-faq {
    padding: 80px 0;
    background: var(--off-white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: var(--transition);
    border: 1px solid rgba(10,22,40,0.06);
}

    .faq-item:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow);
    }

.faq-question {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

    .faq-question span {
        font-size: 24px;
    }

    .faq-question h3 {
        font-size: 16px;
        font-weight: 600;
        color: var(--navy);
    }

.faq-answer p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    padding-left: 36px;
}

/* Apply CTA */
.apply-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    position: relative;
    overflow: hidden;
}

.apply-cta-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 80% 50%, rgba(201,162,39,0.08), transparent 50%);
}

.apply-cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

    .apply-cta-inner h2 {
        font-family: 'Cormorant Garamond', serif;
        font-size: clamp(36px, 5vw, 60px);
        font-weight: 600;
        color: var(--white);
        margin-bottom: 20px;
        line-height: 1.15;
    }

        .apply-cta-inner h2 em {
            color: var(--gold);
            font-style: italic;
        }

    .apply-cta-inner p {
        color: rgba(255,255,255,0.6);
        font-size: 17px;
        max-width: 560px;
        margin: 0 auto 40px;
        line-height: 1.8;
    }

.apply-cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

    .btn-outline:hover {
        background: var(--white);
        color: var(--navy);
    }

/* Responsive */
@media (max-width: 1024px) {
    .placement-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline-item:not(:last-child)::after {
        display: none;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .placement-stats-grid {
        grid-template-columns: 1fr;
    }

    .process-timeline {
        grid-template-columns: 1fr;
    }

    .training-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .stats-detail-grid {
        grid-template-columns: 1fr;
    }

    .alumni-network-grid {
        grid-template-columns: 1fr;
    }

    .alumni-stats {
        flex-direction: column;
        align-items: center;
    }
}
.page-hero {
    min-height: 340px;
    background: var(--navy);
    display: flex;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
    padding-bottom: 60px;
    padding-top: 76px;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #060e1e 0%, #0a1628 50%, #1a2e5a 100%);
}

.page-hero-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 80% 40%, rgba(201,162,39,0.12), transparent 55%), radial-gradient(circle at 10% 90%, rgba(201,162,39,0.06), transparent 40%);
}

.page-hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: linear-gradient(rgba(201,162,39,1) 1px, transparent 1px), linear-gradient(90deg, rgba(201,162,39,1) 1px, transparent 1px);
    background-size: 60px 60px;
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

    .breadcrumb a {
        font-size: 13px;
        color: rgba(255,255,255,0.5);
        text-decoration: none;
        transition: color 0.2s;
    }

        .breadcrumb a:hover {
            color: var(--gold);
        }

    .breadcrumb span {
        color: rgba(255,255,255,0.25);
        font-size: 13px;
    }

.breadcrumb-current {
    font-size: 13px;
    color: var(--gold);
    font-weight: 600;
}

.page-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(40px, 6vw, 70px);
    font-weight: 600;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 16px;
}

    .page-hero h1 em {
        color: var(--gold);
        font-style: italic;
    }

.page-hero p {
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    max-width: 560px;
}

.page-hero-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Contact Cards */
.contact-cards {
    padding: 60px 0;
    background: var(--white);
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.contact-info-card {
    text-align: center;
    padding: 32px 24px;
    background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(10,22,40,0.06);
    transition: var(--transition);
}

    .contact-info-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow);
        border-color: rgba(201,162,39,0.2);
    }

.contact-card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-info-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 16px;
}

.contact-info-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 12px;
}

    .contact-info-card p strong {
        color: var(--navy);
    }

    .contact-info-card p a {
        color: var(--text-muted);
        text-decoration: none;
        transition: color 0.2s;
    }

        .contact-info-card p a:hover {
            color: var(--gold);
        }

.contact-card-link {
    display: inline-block;
    margin-top: 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    text-decoration: none;
}

    .contact-card-link:hover {
        text-decoration: underline;
    }

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: var(--off-white);
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.section-header-left {
    margin-bottom: 32px;
}

    .section-header-left .section-title {
        margin-bottom: 16px;
    }

    .section-header-left p {
        font-size: 15px;
        color: var(--text-muted);
    }

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        font-size: 13px;
        font-weight: 600;
        color: var(--navy);
        margin-bottom: 8px;
    }

.form-control {
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
    font-family: 'Outfit', sans-serif;
    border: 1px solid rgba(10,22,40,0.15);
    border-radius: var(--radius);
    transition: var(--transition);
    background: var(--white);
}

    .form-control:focus {
        outline: none;
        border-color: var(--gold);
        box-shadow: 0 0 0 3px rgba(201,162,39,0.1);
    }

textarea.form-control {
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

    .checkbox-group input {
        width: 18px;
        height: 18px;
        cursor: pointer;
    }

    .checkbox-group label {
        margin-bottom: 0;
        font-size: 13px;
        font-weight: normal;
        cursor: pointer;
    }

.submit-btn {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 15px;
}

/* Map Card */
.contact-map-container {
    height: 100%;
}

.map-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.map-header {
    padding: 24px 28px;
    background: var(--navy);
    color: var(--white);
}

    .map-header .map-badge {
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--gold);
        display: block;
        margin-bottom: 8px;
    }

    .map-header h3 {
        font-family: 'Cormorant Garamond', serif;
        font-size: 24px;
        font-weight: 600;
    }

.map-wrapper {
    flex: 1;
}

    .map-wrapper iframe {
        width: 100%;
        height: 350px;
        display: block;
    }

.map-address {
    padding: 20px 28px;
    border-top: 1px solid rgba(10,22,40,0.06);
    background: var(--off-white);
}

.map-address-item {
    display: flex;
    gap: 12px;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

    .map-address-item:first-child {
        margin-bottom: 12px;
    }

    .map-address-item span {
        font-size: 18px;
        flex-shrink: 0;
    }

    .map-address-item strong {
        color: var(--navy);
    }

/* Important Contacts */
.important-contacts {
    padding: 80px 0;
    background: var(--white);
}

.section-header-center {
    text-align: center;
    margin-bottom: 56px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 560px;
    margin: 16px auto 0;
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.contact-person-card {
    display: flex;
    gap: 20px;
    padding: 28px;
    background: var(--off-white);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    border: 1px solid rgba(10,22,40,0.06);
}

    .contact-person-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow);
        border-color: rgba(201,162,39,0.2);
    }

.contact-person-avatar {
    font-size: 48px;
    flex-shrink: 0;
}

.contact-person-details {
    flex: 1;
}

    .contact-person-details h3 {
        font-size: 18px;
        font-weight: 600;
        color: var(--navy);
        margin-bottom: 8px;
    }

    .contact-person-details > p {
        font-size: 13px;
        color: var(--text-muted);
        margin-bottom: 12px;
        line-height: 1.5;
    }

.contact-person-info {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 12px;
}

    .contact-person-info span {
        font-size: 13px;
        color: var(--navy);
    }

.contact-person-name {
    font-size: 12px;
    color: var(--gold);
    font-weight: 600;
    margin-top: 8px;
}

/* Social Connect */
.social-connect {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
}

.social-connect-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.social-connect-content .section-label {
    color: var(--gold);
}

.social-connect-content .section-title {
    color: var(--white);
    margin-bottom: 20px;
}

.social-connect-content p {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}

.social-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.social-link-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius);
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.1);
}

    .social-link-card:hover {
        background: rgba(255,255,255,0.15);
        transform: translateX(4px);
    }

.social-icon {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
}

.facebook .social-icon {
    color: #1877f2;
}

.linkedin .social-icon {
    color: #0077b5;
}

.twitter .social-icon {
    color: #1da1f2;
}

.youtube .social-icon {
    color: #ff0000;
}

.instagram .social-icon {
    color: #e4405f;
}

.social-info {
    flex: 1;
}

    .social-info span {
        font-size: 11px;
        color: rgba(255,255,255,0.5);
        display: block;
    }

    .social-info strong {
        font-size: 15px;
        color: var(--white);
    }

.social-arrow {
    font-size: 18px;
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
}

.social-link-card:hover .social-arrow {
    transform: translateX(4px);
    color: var(--gold);
}

/* FAQ Accordion */
.contact-faq {
    padding: 80px 0;
    background: var(--off-white);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-accordion-item {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 16px;
    overflow: hidden;
    border: 1px solid rgba(10,22,40,0.06);
}

.faq-accordion-question {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    cursor: pointer;
    transition: background 0.2s;
}

    .faq-accordion-question:hover {
        background: rgba(201,162,39,0.05);
    }

.faq-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 700;
    color: rgba(201,162,39,0.4);
    min-width: 50px;
}

.faq-accordion-question h3 {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
}

.faq-toggle {
    font-size: 24px;
    color: var(--gold);
    transition: transform 0.3s;
}

.faq-accordion-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-accordion-answer {
    display: none;
    padding: 0 24px 24px 90px;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    border-top: 1px solid rgba(10,22,40,0.06);
}

.faq-accordion-item.active .faq-accordion-answer {
    display: block;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #060e1e 0%, var(--navy) 100%);
    text-align: center;
}

.cta-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

    .cta-content h2 em {
        color: var(--gold);
        font-style: italic;
    }

.cta-content p {
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    max-width: 500px;
    margin: 0 auto 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline-gold {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

    .btn-outline-gold:hover {
        background: var(--gold);
        color: var(--navy);
        transform: translateY(-2px);
    }

/* Responsive */
@media (max-width: 1024px) {
    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .contacts-grid {
        grid-template-columns: 1fr;
    }

    .social-connect-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .contact-cards-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .social-links-grid {
        grid-template-columns: 1fr;
    }

    .faq-accordion-question {
        flex-wrap: wrap;
    }

    .faq-accordion-answer {
        padding: 0 20px 20px 20px;
    }
}
/* Courses Page Additional Styles */
.page-hero {
    min-height: 340px;
    background: var(--navy);
    display: flex;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
    padding-bottom: 60px;
    padding-top: 76px;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #060e1e 0%, #0a1628 50%, #1a2e5a 100%);
}

.page-hero-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 80% 40%, rgba(201,162,39,0.12), transparent 55%), radial-gradient(circle at 10% 90%, rgba(201,162,39,0.06), transparent 40%);
}

.page-hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: linear-gradient(rgba(201,162,39,1) 1px, transparent 1px), linear-gradient(90deg, rgba(201,162,39,1) 1px, transparent 1px);
    background-size: 60px 60px;
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

    .breadcrumb a {
        font-size: 13px;
        color: rgba(255,255,255,0.5);
        text-decoration: none;
        transition: color 0.2s;
    }

        .breadcrumb a:hover {
            color: var(--gold);
        }

    .breadcrumb span {
        color: rgba(255,255,255,0.25);
        font-size: 13px;
    }

.breadcrumb-current {
    font-size: 13px;
    color: var(--gold);
    font-weight: 600;
}

.page-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(40px, 6vw, 70px);
    font-weight: 600;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 16px;
}

    .page-hero h1 em {
        color: var(--gold);
        font-style: italic;
    }

.page-hero p {
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    max-width: 560px;
}

.page-hero-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Courses Overview */
.courses-overview {
    padding: 60px 0;
    background: var(--white);
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.body-text {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.9;
    margin: 20px 0;
}

    .body-text strong {
        color: var(--navy);
    }

.overview-stats {
    display: flex;
    gap: 32px;
    margin-top: 32px;
}

.overview-stat {
    text-align: center;
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--gold);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.image-placeholder {
    background: linear-gradient(135deg, var(--navy-light), var(--navy-mid));
    border-radius: var(--radius-lg);
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

    .image-placeholder img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.image-icon {
    font-size: 64px;
    position: relative;
    z-index: 1;
}

.image-text {
    color: var(--gold-pale);
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

/* Course Cards */
.courses-list {
    padding: 80px 0;
    background: var(--off-white);
}

.section-header-center {
    text-align: center;
    margin-bottom: 56px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 560px;
    margin: 16px auto 0;
}

.course-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    margin-bottom: 32px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(10,22,40,0.08);
}

    .course-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-hover);
    }

.course-card-highlight {
    border: 2px solid var(--gold);
    position: relative;
}

.course-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 32px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--white);
}

.course-icon {
    font-size: 48px;
}

.course-title h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 4px;
}

.course-code {
    font-size: 13px;
    color: var(--gold);
    letter-spacing: 2px;
}

.course-badge {
    margin-left: auto;
    padding: 6px 16px;
    background: rgba(255,255,255,0.15);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.course-badge-gold {
    background: var(--gold);
    color: var(--navy);
}

.course-card-body {
    padding: 32px;
}

.course-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(10,22,40,0.08);
}

.course-info-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.info-label {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.info-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
}

.course-description h4,
.course-eligibility h4,
.specializations h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 12px;
}

.course-description p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.specializations {
    margin: 20px 0;
}

.specialization-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    list-style: none;
    padding: 0;
}

    .specialization-list li {
        background: rgba(201,162,39,0.1);
        padding: 6px 16px;
        border-radius: 50px;
        font-size: 13px;
        font-weight: 500;
        color: var(--gold);
    }

.course-eligibility {
    background: var(--off-white);
    padding: 20px;
    border-radius: var(--radius);
    margin: 20px 0;
}

    .course-eligibility p {
        font-size: 14px;
        color: var(--text-muted);
        line-height: 1.7;
    }

    .course-eligibility small {
        font-size: 12px;
        color: var(--text-muted);
    }

.course-cta {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 24px;
}

.course-syllabus {
    font-size: 13px;
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
}

    .course-syllabus:hover {
        text-decoration: underline;
    }

/* Comparison Table */
.course-comparison {
    padding: 80px 0;
    background: var(--white);
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

    .comparison-table th {
        background: var(--navy);
        color: var(--white);
        padding: 16px 20px;
        text-align: left;
        font-size: 14px;
        font-weight: 600;
    }

    .comparison-table td {
        padding: 16px 20px;
        border-bottom: 1px solid rgba(10,22,40,0.08);
        font-size: 13px;
        color: var(--text-muted);
    }

    .comparison-table tr:last-child td {
        border-bottom: none;
    }

    .comparison-table .course-name strong {
        color: var(--navy);
        font-size: 14px;
    }

    .comparison-table .course-name span {
        font-size: 11px;
        color: var(--text-muted);
    }

/* Why Courses */
.why-courses {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
}

.why-courses-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.career-paths {
    margin-top: 32px;
}

.career-path {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(10,22,40,0.06);
}

    .career-path:last-child {
        border-bottom: none;
    }

.career-icon {
    font-size: 32px;
}

.career-path strong {
    display: block;
    font-size: 15px;
    color: var(--navy);
    margin-bottom: 4px;
}

.career-path p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

.placement-highlight {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    color: var(--white);
}

.placement-icon {
    font-size: 56px;
    margin-bottom: 16px;
}

.placement-highlight h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    margin-bottom: 12px;
}

.placement-highlight p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 24px;
}

.recruiters-mini {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

    .recruiters-mini span {
        background: rgba(255,255,255,0.1);
        padding: 6px 14px;
        border-radius: 50px;
        font-size: 12px;
    }

/* Admission CTA */
.admission-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .admission-cta::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle at 80% 50%, rgba(201,162,39,0.08), transparent 50%);
    }

.admission-cta-content {
    position: relative;
    z-index: 1;
}

    .admission-cta-content h2 {
        font-family: 'Cormorant Garamond', serif;
        font-size: clamp(36px, 5vw, 52px);
        font-weight: 600;
        color: var(--white);
        margin-bottom: 20px;
    }

        .admission-cta-content h2 em {
            color: var(--gold);
            font-style: italic;
        }

    .admission-cta-content p {
        font-size: 16px;
        color: rgba(255,255,255,0.6);
        max-width: 500px;
        margin: 0 auto 32px;
    }

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline-gold {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

    .btn-outline-gold:hover {
        background: var(--gold);
        color: var(--navy);
        transform: translateY(-2px);
    }

/* Responsive */
@media (max-width: 968px) {
    .overview-grid {
        grid-template-columns: 1fr;
    }

    .why-courses-grid {
        grid-template-columns: 1fr;
    }

    .course-card-header {
        flex-wrap: wrap;
    }

    .course-badge {
        margin-left: 0;
    }

    .course-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .course-info-grid {
        grid-template-columns: 1fr;
    }

    .course-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px;
        font-size: 12px;
    }

    .overview-stats {
        justify-content: center;
    }
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

    .reveal.visible {
        opacity: 1;
        transform: none;
    }

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}


