/* ===================================================
   MDU School of Engineering - Landing Page CSS
   Theme: Maya Devi University (Navy + Gold)
   =================================================== */

/* ===== VARIABLES ===== */
:root {
    --navy: #0a1628;
    --navy-mid: #0d1f3c;
    --navy-light: #152a50;
    --gold: #10c45c;
    --gold-light: #e8c547;
    --gold-dim: rgba(201, 162, 39, 0.15);
    --white: #ffffff;
    --off-white: #f8f9fc;
    --text-muted: #8a9bb5;
    --text-body: #4a5568;
    --border-subtle: rgba(201, 162, 39, 0.2);
    --card-shadow: 0 8px 40px rgba(10, 22, 40, 0.12);
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== BASE ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth;overflow-x: hidden; }
body {
    font-family: 'Inter', sans-serif;
    color: var(--text-body);
    background: var(--white);
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

.section-pad { padding: 90px 0; }
.text-gold { color: var(--gold); }

/* ===== SECTION LABELS ===== */
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--gold-dim);
    border: 1px solid var(--border-subtle);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}
.section-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.7rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 16px;
}
.section-para {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.75;
    margin-bottom: 16px;
}

/* ===== TOP BAR ===== */
.topbar {
    background: var(--navy);
    padding: 8px 0;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.75);
}
.topbar a {
    color: rgba(255,255,255,0.75);
    font-size: 0.78rem;
    transition: var(--transition);
}
.topbar a:hover { color: var(--gold); }
.topbar-apply-btn {
    background: var(--gold);
    color: var(--navy) !important;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.78rem;
}
.topbar-apply-btn:hover { background: var(--gold-light); }

/* ===== NAVBAR ===== */
.main-navbar {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(10,22,40,0.08);
    padding: 10px 0;
    transition: var(--transition);
    z-index: 1050;
}
.main-navbar.scrolled {
    box-shadow: 0 4px 30px rgba(10,22,40,0.12);
}
.nav-logo { height: 52px; }
.main-navbar .nav-link {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--navy) !important;
    padding: 6px 12px !important;
    transition: var(--transition);
    position: relative;
}
.main-navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 12px; right: 12px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s;
}
.main-navbar .nav-link:hover::after { transform: scaleX(1); }
.main-navbar .nav-link:hover { color: var(--gold) !important; }
.nav-cta-btn {
    background: var(--navy);
    color: var(--white) !important;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 9px 22px !important;
    border-radius: 6px;
    transition: var(--transition);
    border: 2px solid var(--navy);
}
.nav-cta-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy) !important;
}
.navbar-toggler { border: none; }
.navbar-toggler-icon-custom { color: var(--navy); font-size: 1.4rem; }

/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, #0f2445 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-container{
    margin: auto 150px;
}

@media (max-width: 767px) {
    .hero-container{
    margin: 0px;
}
}

/* Particle canvas background */
.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.hero-particles::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(201,162,39,0.12) 0%, transparent 70%);
    top: -100px; right: -100px;
    border-radius: 50%;
    animation: pulse-glow 4s ease-in-out infinite;
}
.hero-particles::after {
    content: '';
    position: absolute;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(201,162,39,0.08) 0%, transparent 70%);
    bottom: 50px; left: -50px;
    border-radius: 50%;
    animation: pulse-glow 6s ease-in-out infinite reverse;
}
@keyframes pulse-glow {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.6; }
}

/* Floating gears */
.floating-gear {
    position: absolute;
    color: rgba(201,162,39,0.07);
    pointer-events: none;
}
.floating-gear i { font-size: inherit; }
.gear-1 { font-size: 200px; top: -30px; right: 5%; animation: spin-slow 30s linear infinite; }
.gear-2 { font-size: 120px; bottom: 10%; left: 3%; animation: spin-slow 20s linear infinite reverse; }
.gear-3 { font-size: 80px; top: 40%; right: 30%; animation: spin-slow 15s linear infinite; }
@keyframes spin-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* Circuit lines */
.circuit-line {
    position: absolute;
    left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,162,39,0.3), transparent);
}
.circuit-top { top: 20%; }
.circuit-bottom { bottom: 25%; }

/* Hero content */
.hero-content-col { padding: 40px 0; }
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 20px;
    background: rgba(201,162,39,0.12);
    border: 1px solid rgba(201,162,39,0.3);
    padding: 7px 16px;
    border-radius: 30px;
    animation: blink-border 2s ease-in-out infinite;
}
@keyframes blink-border {
    0%, 100% { border-color: rgba(201,162,39,0.3); }
    50% { border-color: rgba(201,162,39,0.7); }
}
.eyebrow-dot {
    width: 8px; height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: blink-dot 1.5s ease-in-out infinite;
}
@keyframes blink-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
}
.hero-heading {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}
.heading-line {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.02em;
}
.heading-accent {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5.5vw, 4.2rem);
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    text-shadow: 0 0 40px rgba(201,162,39,0.3);
}
.heading-sub {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(0.9rem, 1.8vw, 1.15rem);
    font-weight: 500;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-top: 6px;
}
.hero-desc {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 520px;
}

/* Hero stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 32px;
    padding: 20px 24px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}
.stat-item { text-align: center; }
.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}
.stat-plus { font-size: 1.3rem; color: var(--gold); font-weight: 700; }
.stat-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
    margin-top: 4px;
}
.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
}

/* Hero CTAs */
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: var(--navy);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 8px;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(201,162,39,0.4);
}
.btn-hero-primary:hover {
    background: var(--gold-light);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201,162,39,0.5);
}
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    color: rgba(255,255,255,0.85);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 14px 24px;
    border-radius: 8px;
    border: 1.5px solid rgba(255,255,255,0.3);
    transition: var(--transition);
}
.btn-hero-secondary:hover {
    background: rgba(255,255,255,0.08);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

/* Accreditation badges */
.hero-accreditation { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.accred-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.accred-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.accred-badge {
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.7);
    font-family: 'Space Grotesk', sans-serif;
}

/* ===== HERO FORM ===== */
.hero-form-col { display: flex; justify-content: flex-end; padding: 40px 0; }
.hero-form-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
    max-width: 460px;
    box-shadow: 0 24px 80px rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.1);
}
.form-card-header {
    background: linear-gradient(135deg, var(--navy-light), var(--navy));
    padding: 22px 26px;
    display: flex;
    align-items: center;
    gap: 14px;
    border-bottom: 2px solid var(--gold);
}
.form-header-icon {
    width: 44px; height: 44px;
    background: rgba(201,162,39,0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.3rem;
    flex-shrink: 0;
}
.form-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}
.form-card-subtitle {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.6);
    margin: 3px 0 0;
}
.form-card-body {
    padding: 24px 26px;
    background: var(--white);
}
.form-trust-row {
    display: flex;
    justify-content: space-around;
    padding: 12px 16px;
    background: var(--off-white);
    border-top: 1px solid #e8ecf0;
    font-size: 0.73rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ===== MARQUEE BELT ===== */
.marquee-belt {
    background: var(--gold);
    padding: 12px 0;
    overflow: hidden;
    white-space: nowrap;
}
.marquee-track {
    display: inline-flex;
    animation: marquee-scroll 35s linear infinite;
    gap: 0;
}
.marquee-item {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0 30px;
}
@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ===== ABOUT SECTION ===== */
.about-section { background: var(--off-white); }

.about-image-stack {
    position: relative;
    padding-bottom: 60px;
    padding-right: 60px;
}
.about-img-main {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}
.about-img-main img { width: 100%; object-fit: cover; height: 400px; }
.about-img-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 160px;
    border-radius: 12px;
    overflow: hidden;
    border: 4px solid var(--white);
    box-shadow: var(--card-shadow);
}
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.about-badge-float {
    position: absolute;
    top: 20px;
    right: -20px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 12px;
    padding: 16px 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(201,162,39,0.4);
}
.float-badge-num { font-size: 0.7rem; color: var(--navy); font-weight: 600; display: block; opacity: 0.8; }
.float-badge-year {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--navy);
    display: block;
    line-height: 1;
}
.float-badge-sub { font-size: 0.65rem; color: var(--navy); font-weight: 600; display: block; margin-top: 2px; }

.about-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.pillar-card {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 16px;
    background: var(--white);
    border-radius: 10px;
    border: 1px solid #e8ecf0;
    transition: var(--transition);
}
.pillar-card:hover {
    border-color: var(--gold);
    box-shadow: 0 4px 20px rgba(201,162,39,0.1);
    transform: translateY(-2px);
}
.pillar-icon {
    width: 38px; height: 38px;
    background: var(--gold-dim);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    font-size: 1rem;
    flex-shrink: 0;
}
.pillar-text h5 { font-size: 0.875rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.pillar-text p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; margin: 0; }

/* ===== PROGRAMS SECTION ===== */
.programs-section {
    background: var(--white);
    position: relative;
    overflow: hidden;
}
.programs-bg-shape {
    position: absolute;
    right: -200px; top: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(201,162,39,0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.program-tabs { gap: 6px; border: none; }
.program-tab-link {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 10px 28px;
    border-radius: 30px;
    border: 2px solid #e0e7f0;
    color: var(--text-muted);
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    display: block;
}
.program-tab-link.active, .program-tab-link:hover {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
}
.program-tab-content { display: none; }
.program-tab-content.active { display: block; }

.program-card {
    background: var(--white);
    border-radius: 16px;
    padding: 28px 24px;
    border: 1px solid #e8ecf0;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.program-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    transition: var(--transition);
}
.program-orange::before { background: linear-gradient(90deg, #e67c2a, #f0a05a); }
.program-blue::before { background: linear-gradient(90deg, #1a5fa8, #3b82d4); }
.program-green::before { background: linear-gradient(90deg, #1a7a4a, #2ecc71); }
.program-purple::before { background: linear-gradient(90deg, #6a1a9a, #9b59b6); }

.program-card:hover {
    box-shadow: 0 16px 50px rgba(10,22,40,0.12);
    transform: translateY(-6px);
    border-color: transparent;
}
.program-card-icon {
    width: 52px; height: 52px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 16px;
}
.program-orange .program-card-icon { background: rgba(230,124,42,0.12); color: #e67c2a; }
.program-blue .program-card-icon { background: rgba(26,95,168,0.12); color: #1a5fa8; }
.program-green .program-card-icon { background: rgba(26,122,74,0.12); color: #1a7a4a; }
.program-purple .program-card-icon { background: rgba(106,26,154,0.12); color: #6a1a9a; }

.program-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}
.program-card-desc { font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }
.program-meta {
    display: flex; gap: 16px;
    font-size: 0.78rem; font-weight: 600;
    color: var(--text-body);
    padding: 10px 0;
    border-top: 1px solid #f0f4f8;
    border-bottom: 1px solid #f0f4f8;
    margin-bottom: 14px;
}
.program-highlights {
    list-style: none;
    margin: 0 0 20px;
    flex: 1;
}
.program-highlights li {
    font-size: 0.82rem;
    color: var(--text-body);
    padding: 4px 0;
}
.program-highlights i { color: var(--gold); }
.program-apply-btn {
    display: block;
    text-align: center;
    background: var(--navy);
    color: var(--white);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 11px;
    border-radius: 8px;
    transition: var(--transition);
    margin-top: auto;
}
.program-apply-btn:hover {
    background: var(--gold);
    color: var(--navy);
}

/* ===== WHY SECTION ===== */
.why-section { background: var(--navy); }
.why-section .section-heading { color: var(--white); }
.why-section .section-para { color: rgba(255,255,255,0.65); }
.why-section .section-eyebrow { color: var(--gold); }
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.why-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 28px 22px;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}
.why-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: left;
}
.why-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(201,162,39,0.3);
    transform: translateY(-4px);
}
.why-card:hover::after { transform: scaleX(1); }
.why-card-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(201,162,39,0.12);
    position: absolute;
    top: 14px; right: 18px;
    line-height: 1;
}
.why-card-icon {
    width: 46px; height: 46px;
    background: var(--gold-dim);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 14px;
}
.why-card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}
.why-card-desc { font-size: 0.8rem; color: rgba(255,255,255,0.55); line-height: 1.6; margin: 0; }

/* ===== STATS SECTION ===== */
.stats-section {
    background: linear-gradient(135deg, var(--navy-light), var(--navy));
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}
.stats-bg-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a227' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stats-card {
    text-align: center;
    padding: 20px;
    position: relative;
}
.stats-icon {
    width: 50px; height: 50px;
    background: var(--gold-dim);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
    margin: 0 auto 12px;
}
.stats-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    display: inline;
}
.stats-suffix { font-size: 1.6rem; color: var(--gold); font-weight: 700; display: inline; }
.stats-label { font-size: 0.75rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 500; margin-top: 6px; }

/* ===== FACILITIES ===== */
.facilities-section { background: var(--off-white); }
.facility-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    height: 100%;
}
.facility-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(10,22,40,0.15);
}
.facility-img-wrap { position: relative; overflow: hidden; height: 220px; }
.facility-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.facility-card:hover .facility-img { transform: scale(1.06); }
.facility-tag {
    position: absolute;
    top: 14px; left: 14px;
    background: var(--gold);
    color: var(--navy);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.facility-body { padding: 20px; }
.facility-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}
.facility-desc { font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* ===== PLACEMENTS ===== */
.placements-section { background: var(--white); }
.btn-outline-gold {
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 10px 22px;
    border-radius: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}
.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--navy);
}
.placement-highlight-card {
    border-radius: 14px;
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
}
.placement-highlight-card:hover { transform: translateY(-4px); }
.placement-highlight-card i { font-size: 2rem; margin-bottom: 12px; display: block; }
.ph-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 6px;
}
.ph-label { font-size: 0.8rem; font-weight: 600; opacity: 0.8; font-family: 'Space Grotesk', sans-serif; }
.ph-primary { background: linear-gradient(135deg, var(--navy), var(--navy-light)); color: var(--gold); }
.ph-primary .ph-number { color: var(--gold); }
.ph-secondary { background: linear-gradient(135deg, #1a5fa8, #2980d4); color: var(--white); }
.ph-third { background: linear-gradient(135deg, #1a7a4a, #27ae60); color: var(--white); }
.ph-fourth { background: linear-gradient(135deg, #6a1a9a, #8e44ad); color: var(--white); }

.recruiters-heading h5 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.recruiter-marquee { overflow: hidden; padding: 16px 0; }
.recruiter-track {
    display: inline-flex;
    animation: marquee-scroll 25s linear infinite;
    gap: 12px;
}
.recruiter-chip {
    background: var(--off-white);
    border: 1px solid #e0e7f0;
    color: var(--navy);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 6px;
    white-space: nowrap;
    transition: var(--transition);
}
.recruiter-chip:hover {
    background: var(--navy);
    color: var(--gold);
    border-color: var(--navy);
}

/* ===== ADMISSION PROCESS ===== */
.admission-section {
    background: var(--navy);
    position: relative;
    overflow: hidden;
}
.admission-section .section-heading { color: var(--white); }
.admission-section .section-eyebrow { color: var(--gold); }
.admission-bg-shape {
    position: absolute;
    left: -300px; bottom: -300px;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(201,162,39,0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.admission-steps-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
}
.admission-step {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 28px 22px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}
.admission-step:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(201,162,39,0.3);
    transform: translateY(-4px);
}
.step-connector { display: none; }
.step-circle {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--navy);
    font-size: 1.3rem;
    margin: 0 auto 10px;
}
.step-num {
    font-family: 'Playfair Display', serif;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.05em;
    margin-bottom: 10px;
    opacity: 0.7;
}
.step-content h5 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}
.step-content p { font-size: 0.8rem; color: rgba(255,255,255,0.55); line-height: 1.6; margin: 0; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--off-white); }
.testimonial-slider { position: relative; min-height: 200px; }
.testimonial-slide { display: none; }
.testimonial-slide.active { display: block; }
.testimonial-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--card-shadow);
    border: 1px solid #e8ecf0;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}
.quote-mark {
    font-size: 2rem;
    color: var(--gold);
    opacity: 0.4;
    margin-bottom: 16px;
}
.testimonial-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--navy);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 24px;
}
.testimonial-meta { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
    width: 50px; height: 50px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    flex-shrink: 0;
}
.testimonial-name { font-weight: 700; color: var(--navy); font-size: 0.95rem; margin-bottom: 2px; }
.testimonial-batch { font-size: 0.78rem; color: var(--text-muted); }
.testimonial-company { font-size: 0.78rem; color: var(--gold); font-weight: 600; margin-top: 2px; }
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}
.t-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #d0d8e8;
    cursor: pointer;
    transition: var(--transition);
}
.t-dot.active {
    background: var(--gold);
    width: 24px;
    border-radius: 4px;
}

/* ===== FAQ ===== */
.faq-section { background: var(--white); }
.faq-cta-box {
    margin-top: 30px;
    padding: 24px;
    background: var(--navy);
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.faq-cta-box p { color: rgba(255,255,255,0.7); font-size: 0.85rem; margin: 0; }
.faq-call-btn, .faq-contact-btn {
    display: inline-flex; align-items: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 10px 18px;
    border-radius: 8px;
    transition: var(--transition);
}
.faq-call-btn {
    background: var(--gold);
    color: var(--navy);
}
.faq-call-btn:hover { background: var(--gold-light); color: var(--navy); }
.faq-contact-btn {
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.8);
}
.faq-contact-btn:hover { border-color: var(--gold); color: var(--gold); }
.faq-accordion { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
    border: 1px solid #e8ecf0;
    border-radius: 10px !important;
    overflow: hidden;
}
.faq-btn {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy);
    background: var(--white);
    padding: 16px 20px;
    box-shadow: none !important;
}
.faq-btn:not(.collapsed) {
    background: var(--navy);
    color: var(--gold);
}
.faq-btn::after { filter: invert(0); }
.faq-btn:not(.collapsed)::after { filter: invert(1); }
.faq-body {
    font-size: 0.875rem;
    color: var(--text-body);
    line-height: 1.7;
    padding: 16px 20px;
    background: var(--off-white);
}

/* ===== CTA STRIP ===== */
.cta-strip {
    background: linear-gradient(135deg, var(--gold), #a87a15);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}
.cta-strip-bg {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23fff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}
.cta-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
}
.cta-sub { color: rgba(10,22,40,0.7); font-size: 1rem; margin: 0; }
.btn-cta-primary {
    background: var(--navy);
    color: var(--gold);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: 8px;
    display: inline-block;
    transition: var(--transition);
}
.btn-cta-primary:hover { background: #0a1628dd; color: var(--gold-light); transform: translateY(-2px); }
.btn-cta-secondary {
    border: 2px solid var(--navy);
    color: var(--navy);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 24px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}
.btn-cta-secondary:hover { background: var(--navy); color: var(--gold); }

/* ===== FOOTER ===== */
.footer-section { background: var(--navy); padding: 70px 0 0; }
.footer-top { padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-logo { height: 50px; margin-bottom: 18px; }
.footer-about { font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 18px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.07);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: var(--transition);
}
.footer-socials a:hover { background: var(--gold); color: var(--navy); }
.footer-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 18px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: 0.82rem; color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-list { list-style: none; padding: 0; margin: 0; }
.footer-contact-list li {
    display: flex; gap: 12px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 12px;
    line-height: 1.5;
}
.footer-contact-list i { color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.footer-contact-list a { color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-contact-list a:hover { color: var(--gold); }
.footer-bottom {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.35); margin: 0; }
.footer-bottom-links { display: flex; gap: 16px; }
.footer-bottom-links a { font-size: 0.78rem; color: rgba(255,255,255,0.35); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--gold); }

/* ===== STICKY MOBILE CTA ===== */
.sticky-cta-bar {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--navy);
    display: flex;
    border-top: 2px solid var(--gold);
    z-index: 2000;
}
.sticky-cta-bar a {
    flex: 1;
    text-align: center;
    padding: 12px 6px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
    border-right: 1px solid rgba(255,255,255,0.08);
}
.sticky-cta-bar a:last-child { border-right: none; }
.sticky-cta-bar a.sticky-apply {
    background: var(--gold);
    color: var(--navy);
}
.sticky-cta-bar a:hover:not(.sticky-apply) { color: var(--gold); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1199px) {
    .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 991px) {
    .hero-section { min-height: auto; padding: 80px 0 40px; }
    .hero-form-col { justify-content: center; }
    .hero-form-card { max-width: 100%; }
    .admission-steps-wrapper { grid-template-columns: repeat(2, 1fr); }
    .about-image-stack { padding-right: 30px; padding-bottom: 50px; }
    .about-badge-float { right: -10px; }
    body { padding-bottom: 56px; }
}
@media (max-width: 767px) {
    .section-pad { padding: 60px 0; }
    .hero-stats { flex-direction: column; gap: 16px; }
    .stat-divider { width: 60px; height: 1px; }
    .hero-ctas { flex-direction: column; }
    .btn-hero-primary, .btn-hero-secondary { width: 100%; justify-content: center; }
    .why-grid { grid-template-columns: 1fr; }
    .about-pillars { grid-template-columns: 1fr; }
    .admission-steps-wrapper { grid-template-columns: 1fr; }
    .about-image-stack { padding-right: 0; padding-bottom: 30px; }
    .about-badge-float { right: 10px; }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
