/* =============================================
   GIMT BCA LANDING PAGE — PREMIUM CSS
   ============================================= */

/* ---- CSS Variables ---- */
:root {
    --blue-dark: #0a1628;
    --blue-mid: #0d2144;
    --blue-600: #0052cc;
    --blue-500: #0066ff;
    --blue-400: #3b82f6;
    --red-500: #e63946;
    --red-400: #ff4d5e;
    --green-500: #10b981;
    --gold-500: #f59e0b;
    --purple-500: #8b5cf6;
    --cyan-500: #06b6d4;

    --white: #ffffff;
    --off-white: #f8faff;
    --text-primary: #0d1b2e;
    --text-secondary: #4a5568;
    --text-muted: #718096;
    --border: rgba(0,82,204,0.12);
    --card-bg: #ffffff;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
    --shadow-blue: 0 8px 40px rgba(0,102,255,0.25);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    --font-main: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.18s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--off-white);
    overflow-x: hidden;
    line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; outline: none; cursor: pointer; font-family: var(--font-main); }
input, select, textarea {
    font-family: var(--font-body);
    outline: none;
    border: none;
    background: none;
}

/* ---- Container ---- */
.container {
    width: 90%;
    max-width: 1180px;
    margin: 0 auto;
}

/* ---- Typography ---- */
.text-gradient {
    background: linear-gradient(135deg, var(--blue-500) 0%, var(--red-500) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =============================================
   OFFICIAL GIMT BRAND LOGO
   ============================================= */
.header-logo-link,
.footer-logo-link {
    display: block;
    text-decoration: none;
    flex-shrink: 0;
}
.site-logo-img {
    height: 110px; /* Increased for maximum visibility as requested */
    width: auto;
    display: block;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.3));
}
.site-header.scrolled .site-logo-img {
    height: 80px; /* Slimmer for scrolled header but still visible */
}
.site-logo-img:hover {
    transform: scale(1.05) rotate(-1deg);
    filter: brightness(1.1) drop-shadow(0 8px 20px rgba(0,0,0,0.4));
}
.footer-logo {
    height: 90px;
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .site-logo-img { height: 80px; }
    .site-header.scrolled .site-logo-img { height: 60px; }
}

@media (max-width: 480px) {
    .site-logo-img { height: 60px; }
    .site-header.scrolled .site-logo-img { height: 50px; }
}

/* =============================================
   FLOATING ACTIONS
   ============================================= */
.floating-actions {
    position: fixed;
    bottom: 90px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9000;
}
.fab {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    transition: var(--transition);
    color: white;
}
.fab svg { width: 24px; height: 24px; }
.fab:hover { transform: scale(1.12); box-shadow: 0 8px 30px rgba(0,0,0,0.35); }
.fab-call { background: var(--blue-600); }
.fab-whatsapp { background: #25d366; }

.sticky-apply-tab {
    position: fixed;
    right: -36px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    background: var(--red-500);
    color: white;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.05em;
    padding: 12px 20px;
    border-radius: 8px 8px 0 0;
    z-index: 8999;
    transition: right 0.3s ease;
    white-space: nowrap;
}
.sticky-apply-tab:hover { right: -40px; background: var(--red-400); }

/* =============================================
   HEADER
   ============================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0; /* More room for the large logo */
    transition: all 0.4s ease;
}
.site-header.scrolled {
    padding: 12px 0;
    background: rgba(10, 22, 40, 0.98);
    box-shadow: var(--shadow-md);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.logo-block {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-fallback-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #0047b3; /* Deep blue matching screenshot */
    color: white;
    font-family: var(--font-main);
    font-size: 20px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.logo-fallback-icon.small { width: 36px; height: 36px; font-size: 16px; }
.logo-text-block {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.logo-title {
    font-family: var(--font-main);
    font-size: 22px;
    font-weight: 800;
    color: white;
    letter-spacing: 0.02em;
}
.logo-sub {
    font-size: 10px;
    color: rgba(255,255,255,0.55);
    font-weight: 500;
    letter-spacing: 0.01em;
    max-width: 200px;
    line-height: 1.3;
}
.header-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}
.header-nav a {
    color: rgba(255,255,255,0.75);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: var(--transition-fast);
    position: relative;
    padding-bottom: 2px;
}
.header-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blue-400);
    transition: width 0.25s ease;
}
.header-nav a:hover { color: white; }
.header-nav a:hover::after { width: 100%; }
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #cc0000 0%, #ff3333 100%); /* Vibrant Red for high visibility */
    color: white;
    font-family: var(--font-main);
    font-weight: 800;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 14px 32px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(204, 0, 0, 0.4);
    white-space: nowrap;
    border: 2px solid rgba(255,255,255,0.1);
}
.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(204, 0, 0, 0.6);
    background: linear-gradient(135deg, #ff3333 0%, #cc0000 100%);
    border-color: rgba(255,255,255,0.3);
}
.btn-large { 
    padding: 18px 48px; 
    font-size: 18px; 
    border-radius: 50px; 
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
    min-height: 100vh;
    background: var(--blue-dark);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 0 60px;
}
.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.25;
}
.b1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, #0052cc, transparent);
    top: -200px; right: -150px;
    animation: blobFloat 8s ease-in-out infinite;
}
.b2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, #e63946, transparent);
    bottom: -100px; left: -100px;
    animation: blobFloat 11s ease-in-out infinite reverse;
}
.b3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, #8b5cf6, transparent);
    top: 40%; left: 40%;
    animation: blobFloat 14s ease-in-out infinite;
}
@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 15px) scale(0.95); }
}
.hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.hero-message { color: white; }
.hero-badge-row {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.9);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    letter-spacing: 0.02em;
}
.hero-headline {
    font-family: var(--font-main);
    font-size: clamp(36px, 4.5vw, 45px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    color: white;
}
.hero-subtext {
    font-size: 17px;
    color: rgba(255,255,255,0.72);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 36px;
}
.hero-stats-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}
.hstat { text-align: center; }
.hstat-num {
    display: block;
    font-family: var(--font-main);
    font-size: 28px;
    font-weight: 800;
    color: white;
    line-height: 1;
}
.hstat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
}
.hstat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
}
.hero-trust-logos { margin-top: 8px; }
.trust-label {
    font-size: 11px;
    color: rgba(255,255,255,0.45);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}
.trust-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.trust-chip {
    font-size: 12px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 50px;
    background: rgba(0,102,255,0.2);
    border: 1px solid rgba(0,102,255,0.4);
    color: var(--blue-400);
    letter-spacing: 0.03em;
}

/* =============================================
   HERO FORM CARD
   ============================================= */
.glass-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-xl);
    padding: 36px 32px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.08);
}
.form-card-badge {
    background: linear-gradient(135deg, var(--red-500), #ff6b35);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 16px;
    letter-spacing: 0.04em;
    animation: pulse-badge 2s ease-in-out infinite;
}
@keyframes pulse-badge {
    0%, 100% { box-shadow: 0 0 0 0 rgba(230,57,70,0.4); }
    50% { box-shadow: 0 0 0 8px rgba(230,57,70,0); }
}
.form-card-title {
    font-family: var(--font-main);
    font-size: 26px;
    font-weight: 800;
    color: white;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}
.form-card-sub {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 24px;
    line-height: 1.5;
}
.form-field {
    margin-bottom: 14px;
}
.form-field label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    margin-bottom: 6px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}
.form-field input,
.form-field select {
    width: 100%;
    padding: 13px 16px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-sm);
    color: white;
    font-size: 14px;
    transition: var(--transition-fast);
    -webkit-appearance: none;
    appearance: none;
}
.form-field input::placeholder { color: rgba(255,255,255,0.35); }
.form-field input:focus,
.form-field select:focus {
    border-color: var(--blue-400);
    background: rgba(255,255,255,0.12);
    box-shadow: 0 0 0 3px rgba(59,130,246,0.2);
}
.form-field select option { background: #0d2144; color: white; }
.btn-apply-now {
    width: 100%;
    padding: 18px 24px;
    background: linear-gradient(135deg, #cc0000 0%, #ff3333 100%);
    color: white;
    font-family: var(--font-main);
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 40px rgba(204, 0, 0, 0.45);
    margin-top: 10px;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}
.btn-apply-now::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}
.btn-apply-now:hover::before { transform: translateX(100%); }
.btn-apply-now:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 15px 50px rgba(204, 0, 0, 0.6);
    background: linear-gradient(135deg, #ff3333 0%, #cc0000 100%);
}
.btn-apply-now svg { width: 22px; height: 22px; flex-shrink: 0; }
.form-privacy {
    text-align: center;
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    margin-top: 12px;
}
.form-success {
    text-align: center;
    padding: 20px 0;
}
.success-icon { font-size: 52px; margin-bottom: 12px; }
.form-success h3 {
    font-family: var(--font-main);
    font-size: 22px;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
}
.form-success p { color: rgba(255,255,255,0.7); font-size: 14px; }

.hero-scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
    color: rgba(255,255,255,0.35);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
}
.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

/* =============================================
   SECTION COMMON STYLES
   ============================================= */
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-eyebrow {
    display: inline-block;
    font-family: var(--font-main);
    font-size: 12px;
    font-weight: 700;
    color: var(--blue-600);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 5px 14px;
    background: rgba(0,82,204,0.08);
    border: 1px solid rgba(0,82,204,0.15);
    border-radius: 50px;
    margin-bottom: 16px;
}
.section-title {
    font-family: var(--font-main);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}
.section-desc {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 560px;
    line-height: 1.7;
    margin: 0 auto;
}

/* =============================================
   USP / WHY GIMT SECTION
   ============================================= */
.usp-section {
    padding: 100px 0;
    background: var(--off-white);
}
.usp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.usp-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.usp-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--ic, var(--blue-500)), transparent);
    opacity: 0;
    transition: var(--transition);
}
.usp-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0,82,204,0.2);
}
.usp-card:hover::before { opacity: 1; }
.usp-icon {
    width: 52px;
    height: 52px;
    background: color-mix(in srgb, var(--ic) 12%, transparent);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}
.usp-icon svg {
    width: 26px;
    height: 26px;
    fill: var(--ic);
}
.usp-card:hover .usp-icon {
    background: color-mix(in srgb, var(--ic) 20%, transparent);
    transform: scale(1.05);
}
.usp-card h3 {
    font-family: var(--font-main);
    font-size: 19px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}
.usp-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* =============================================
   CURRICULUM SECTION
   ============================================= */
.curriculum-section {
    padding: 100px 0;
    background: var(--blue-dark);
    position: relative;
    overflow: hidden;
}
.curriculum-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 50px 50px;
}
.curriculum-section .section-header { position: relative; z-index: 1; }
.curriculum-section .section-eyebrow {
    color: var(--blue-400);
    background: rgba(59,130,246,0.1);
    border-color: rgba(59,130,246,0.2);
}
.curriculum-section .section-title { color: white; }
.curriculum-section .section-desc { color: rgba(255,255,255,0.6); }
.curriculum-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}
.semester-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}
.semester-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(59,130,246,0.4);
    transform: translateY(-4px);
}
.sem-header { margin-bottom: 20px; }
.sem-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: var(--blue-400);
    background: rgba(59,130,246,0.12);
    border: 1px solid rgba(59,130,246,0.25);
    padding: 4px 10px;
    border-radius: 50px;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.sem-header h3 {
    font-family: var(--font-main);
    font-size: 20px;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}
.sem-subjects { display: flex; flex-direction: column; gap: 12px; }
.sem-subjects li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.75);
    font-size: 14px;
    font-weight: 500;
}
.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue-400);
    flex-shrink: 0;
}
.career-paths {
    position: relative;
    z-index: 1;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 50px;
}
.career-paths-title {
    font-family: var(--font-main);
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    opacity: 0.9;
}
.career-roles {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}
.role-chip {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.85);
    padding: 9px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition-fast);
    cursor: default;
}
.role-chip:hover {
    background: rgba(0,102,255,0.2);
    border-color: rgba(0,102,255,0.4);
    color: white;
    transform: translateY(-2px);
}

/* =============================================
   STATS BANNER
   ============================================= */
.stats-banner {
    background: linear-gradient(135deg, var(--blue-600), #0030aa);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}
.stats-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.07) 0%, transparent 50%),
                      radial-gradient(circle at 80% 50%, rgba(255,255,255,0.05) 0%, transparent 50%);
}
.stats-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}
.stat-item {
    text-align: center;
    color: white;
}
.stat-num {
    font-family: var(--font-main);
    font-size: 54px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.03em;
}
.stat-suffix {
    font-family: var(--font-main);
    font-size: 36px;
    font-weight: 900;
    color: rgba(255,255,255,0.7);
}
.stat-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* =============================================
   PLACEMENTS SECTION
   ============================================= */
.placements-section {
    padding: 100px 0;
    background: var(--off-white);
}
.employers-marquee-wrap {
    margin-bottom: 60px;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}
.employers-marquee {
    overflow: hidden;
    padding: 16px 0;
}
.marquee-track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: marqueeScroll 30s linear infinite;
}
@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.marquee-track:hover { animation-play-state: paused; }
.employer-chip {
    background: white;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
    letter-spacing: 0.02em;
    font-family: var(--font-main);
    cursor: default;
}
.employer-chip:hover {
    border-color: var(--blue-400);
    color: var(--blue-600);
    box-shadow: 0 4px 16px rgba(0,82,204,0.15);
}
.placement-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.pcard {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.pcard:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0,82,204,0.2);
}
.pcard-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-main);
    font-size: 24px;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
}
.pcard-info h4 {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}
.pcard-role {
    display: block;
    font-size: 13px;
    color: var(--blue-600);
    font-weight: 600;
    margin-bottom: 4px;
}
.pcard-batch {
    font-size: 12px;
    color: var(--text-muted);
}
.pcard-package {
    margin-top: 8px;
    padding: 8px 16px;
    background: rgba(16,185,129,0.08);
    border: 1px solid rgba(16,185,129,0.2);
    border-radius: var(--radius-sm);
    text-align: center;
}
.package-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    color: var(--green-500);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.package-val {
    display: block;
    font-family: var(--font-main);
    font-size: 18px;
    font-weight: 800;
    color: var(--green-500);
}

/* =============================================
   TESTIMONIALS SECTION
   ============================================= */
.testimonials-section {
    padding: 100px 0;
    background: var(--blue-mid);
    position: relative;
    overflow: hidden;
}
.testimonials-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 70% 30%, rgba(0,102,255,0.1), transparent 50%);
}
.testimonials-section .section-eyebrow {
    color: var(--blue-400);
    background: rgba(59,130,246,0.1);
    border-color: rgba(59,130,246,0.2);
}
.testimonials-section .section-title { color: white; }
.testimonials-slider {
    overflow: hidden;
    position: relative;
    z-index: 1;
    margin-bottom: 32px;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.testimonials-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.testi-card {
    min-width: 360px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-xl);
    padding: 36px 32px;
    backdrop-filter: blur(15px);
    flex-shrink: 0;
}
.testi-stars {
    color: var(--gold-500);
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}
.testi-text {
    font-size: 15px;
    color: rgba(255,255,255,0.82);
    line-height: 1.75;
    margin-bottom: 24px;
    font-style: italic;
}
.testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.testi-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-main);
    font-size: 18px;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
}
.testi-author strong {
    display: block;
    color: white;
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 2px;
}
.testi-author span {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
}
.testi-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}
.testi-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    color: white;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    cursor: pointer;
}
.testi-btn:hover {
    background: rgba(0,102,255,0.4);
    border-color: rgba(0,102,255,0.5);
}
.testi-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}
.testi-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    transition: var(--transition);
    cursor: pointer;
}
.testi-dot.active {
    background: var(--blue-400);
    width: 24px;
    border-radius: 4px;
}

/* =============================================
   FACILITIES SECTION
   ============================================= */
.facilities-section {
    padding: 100px 0;
    background: white;
}
.facilities-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 24px;
}
.facility-card {
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.facility-card::after {
    content: '';
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, var(--blue-600), transparent);
    opacity: 0.05;
    transition: var(--transition);
}
.facility-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0,82,204,0.2);
    background: white;
}
.facility-card:hover::after { opacity: 0.1; transform: scale(1.3); }
.facility-card.fc-large {
    grid-column: span 2;
    display: flex;
    align-items: flex-start;
    gap: 24px;
}
.facility-card.fc-large .facility-icon { font-size: 48px; flex-shrink: 0; }
.facility-icon { font-size: 40px; margin-bottom: 16px; }
.facility-card h3 {
    font-family: var(--font-main);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}
.facility-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* =============================================
   ADMISSION PROCESS SECTION
   ============================================= */
.admission-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f5ff, #e8f0fe);
    position: relative;
}
.steps-timeline {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 60px;
    position: relative;
}
.step-item {
    flex: 1;
    text-align: center;
    padding: 0 20px;
}
.step-num {
    font-family: var(--font-main);
    font-size: 48px;
    font-weight: 900;
    color: var(--blue-600);
    opacity: 0.15;
    line-height: 1;
    margin-bottom: 16px;
}
.step-item h3 {
    font-family: var(--font-main);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}
.step-item p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}
.step-connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--blue-400), var(--blue-600));
    margin-top: 24px;
    opacity: 0.3;
    flex-shrink: 0;
}
.admission-cta-block {
    text-align: center;
    padding: 48px;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}
.admission-cta-block p {
    font-size: 17px;
    font-weight: 600;
    color: var(--red-500);
    margin-bottom: 24px;
}

/* =============================================
   BOTTOM CTA SECTION
   ============================================= */
.bottom-cta-section {
    padding: 80px 0;
    background: var(--blue-dark);
    position: relative;
    overflow: hidden;
}
.bottom-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(0,82,204,0.3), transparent 60%);
}
.glass-card-dark {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-xl);
    padding: 56px 48px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.bottom-cta-text h2 {
    font-family: var(--font-main);
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 900;
    color: white;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.bottom-cta-text p {
    font-size: 15px;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin-bottom: 28px;
}
.contact-icons { display: flex; flex-direction: column; gap: 12px; }
.contact-icon-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    font-weight: 600;
    transition: var(--transition-fast);
}
.contact-icon-link:hover { color: white; }
.contact-icon-link.whatsapp-link { color: #25d366; }
.bottom-cta-form { display: flex; flex-direction: column; gap: 14px; }
.bottom-cta-form input {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-sm);
    color: white;
    font-size: 14px;
    font-family: var(--font-body);
    transition: var(--transition-fast);
}
.bottom-cta-form input::placeholder { color: rgba(255,255,255,0.35); }
.bottom-cta-form input:focus {
    border-color: var(--blue-400);
    outline: none;
    background: rgba(255,255,255,0.12);
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
    background: #060e1c;
    color: rgba(255,255,255,0.65);
    padding: 60px 0 0;
}
.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-sub { color: rgba(255,255,255,0.45); }
.footer-tagline {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    line-height: 1.65;
    margin: 16px 0;
    max-width: 280px;
}
.footer-affiliation { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-links-col h4 {
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.footer-links-col a,
.footer-links-col p {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    margin-bottom: 12px;
    transition: var(--transition-fast);
    line-height: 1.55;
}
.footer-links-col a:hover { color: var(--blue-400); }
.footer-bottom {
    padding: 20px 0;
    text-align: center;
}
.footer-bottom p {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
}

/* =============================================
   SCROLL REVEAL ANIMATION
   ============================================= */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   RESPONSIVE — TABLET
   ============================================= */
@media (max-width: 1024px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .hero-section { padding: 120px 0 80px; min-height: auto; }
    .hero-scroll-hint { display: none; }
    .usp-grid { grid-template-columns: repeat(2, 1fr); }
    .curriculum-grid { grid-template-columns: 1fr; gap: 16px; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .placement-cards { grid-template-columns: repeat(2, 1fr); }
    .facilities-bento { grid-template-columns: 1fr 1fr; }
    .facility-card.fc-large { grid-column: span 1; flex-direction: column; }
    .steps-timeline { flex-direction: column; gap: 32px; }
    .step-connector { width: 2px; height: 40px; margin: 0 auto; }
    .glass-card-dark { grid-template-columns: 1fr; gap: 40px; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
    .header-nav { display: none; }
}

/* =============================================
   RESPONSIVE — MOBILE
   ============================================= */
@media (max-width: 640px) {
    .usp-grid { grid-template-columns: 1fr; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); }
    .placement-cards { grid-template-columns: 1fr; }
    .facilities-bento { grid-template-columns: 1fr; }
    .facility-card.fc-large { grid-column: span 1; }
    .footer-inner { grid-template-columns: 1fr; }
    .hero-stats-row { gap: 14px; }
    .testi-card { min-width: 300px; }
    .glass-card { padding: 28px 20px; }
    .glass-card-dark { padding: 36px 24px; }
    .logo-sub { display: none; }
    .btn-primary.header-cta .header-cta { font-size: 13px; padding: 8px 14px; }
    .hero-headline { font-size: 32px; }
    .stat-num { font-size: 38px; }
    .stat-suffix { font-size: 26px; }
}

/* =============================================
   IMAGE INTEGRATION STYLES
   ============================================= */

/* --- Hero Background Photo --- */
.hero-student-img-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-student-img-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}
.hero-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(10, 22, 40, 0.96) 0%,
        rgba(10, 22, 40, 0.85) 45%,
        rgba(10, 22, 40, 0.55) 75%,
        rgba(10, 22, 40, 0.75) 100%
    );
}
/* Ensure blobs render above photo */
.hero-bg .hero-blob { z-index: 1; }
.hero-bg .hero-grid-lines { z-index: 1; }
.hero-layout { z-index: 2; }

/* --- Hero Social Proof / Model Strip --- */
.hero-model-strip {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    padding: 14px 18px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    backdrop-filter: blur(12px);
    width: fit-content;
    max-width: 100%;
}
.hero-model-avatars {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.model-av {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2.5px solid var(--blue-dark);
    object-fit: cover;
    margin-left: -10px;
    display: block;
    transition: transform 0.2s ease;
}
.model-av:first-child { margin-left: 0; }
.model-av:hover { transform: scale(1.15) translateY(-2px); z-index: 1; }
.model-more {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--blue-600);
    border: 2.5px solid var(--blue-dark);
    color: white;
    font-size: 11px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -10px;
    font-family: var(--font-main);
    flex-shrink: 0;
}
.hero-model-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.model-stars {
    font-size: 13px;
    color: var(--gold-500);
    letter-spacing: 1px;
    line-height: 1;
}
.model-label {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
    white-space: nowrap;
}

/* --- Placement Card Photo Avatars --- */
.pcard-photo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(0, 102, 255, 0.3);
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    transition: var(--transition);
}
.pcard:hover .pcard-photo {
    border-color: var(--blue-400);
    transform: scale(1.05);
}
/* Adjust pcard layout for photo */
.pcard {
    gap: 14px;
}

/* --- Testimonial Photo Avatars --- */
.testi-avatar-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid rgba(59, 130, 246, 0.4);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* --- Facility Image Cards --- */
.facility-card.fc-img {
    position: relative;
    overflow: hidden;
    padding: 0;
    min-height: 260px;
    display: flex;
    align-items: flex-end;
}
.facility-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.facility-card.fc-img:hover .facility-bg-img {
    transform: scale(1.06);
}
.facility-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 22, 40, 0.92) 0%,
        rgba(10, 22, 40, 0.5) 50%,
        rgba(10, 22, 40, 0.1) 100%
    );
    z-index: 1;
}
.facility-content {
    position: relative;
    z-index: 2;
    padding: 28px 28px 32px;
    width: 100%;
}
.facility-card.fc-img .facility-icon {
    font-size: 36px;
    margin-bottom: 12px;
}
.facility-card.fc-img h3 {
    color: white;
    font-size: 22px;
}
.facility-card.fc-img p {
    color: rgba(255,255,255,0.78);
    font-size: 14px;
}
.facility-card.fc-large.fc-img {
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
}

/* --- Image responsive fixes --- */
@media (max-width: 1024px) {
    .hero-student-img-bg img {
        object-position: 60% top;
    }
    .facility-card.fc-img { min-height: 220px; }
    .hero-model-strip { border-radius: 16px; }
    .model-label { white-space: normal; }
}
@media (max-width: 640px) {
    .hero-student-img-bg img { object-position: 70% top; }
    .facility-card.fc-img { min-height: 200px; }
    .hero-model-strip { padding: 12px 14px; gap: 12px; }
    .model-av { width: 30px; height: 30px; }
    .model-more { width: 30px; height: 30px; font-size: 10px; }
    .pcard-photo { width: 58px; height: 58px; }
}