/* ============================================================
   AKSHARA MEDIIT — Main Stylesheet
   Design: Academic Excellence meets Modern Boldness
   Fonts: Playfair Display (headings) + DM Sans (body)
   Colors: Crimson Red #E63946 + Navy #1D3557 + Teal #2A9D8F
   ============================================================ */

/* === RESET & VARIABLES === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary: #E63946;
    --primary-dark: #c1121f;
    --secondary: #1D3557;
    --secondary-light: #2d4a7a;
    --accent: #2A9D8F;
    --accent-warm: #F4A261;
    --text: #1a1a2e;
    --text-muted: #6b7280;
    --text-light: #9ca3af;
    --bg: #ffffff;
    --bg-soft: #f8f9fc;
    --bg-dark: #0f1729;
    --border: #e5e7eb;
    --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
    --shadow: 0 4px 20px rgba(0,0,0,.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,.12);
    --shadow-xl: 0 40px 80px rgba(0,0,0,.15);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, sans-serif;
    --font-mono: 'Space Mono', monospace;
    --container: 1280px;
    --header-height: 72px;
    /* Surface colors used in inner pages */
    --surface: #ffffff;
    --surface-alt: #f4f6fb;
    --primary-light: rgba(230,57,70,.1);
    --secondary-light-bg: rgba(29,53,87,.08);
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text); background: var(--bg); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { border: none; cursor: pointer; font-family: var(--font-body); }

/* === UTILITIES === */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 100px 0; }

.section-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(230,57,70,.1); color: var(--primary);
    padding: 6px 16px; border-radius: var(--radius-full);
    font-size: .8rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
    margin-bottom: 16px;
}
.section-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--primary); animation: pulse 2s infinite; }

.section-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; line-height: 1.15; color: var(--secondary); margin-bottom: 16px; }
.section-title span { color: var(--primary); }
.section-subtitle { font-size: 1.1rem; color: var(--text-muted); max-width: 600px; line-height: 1.7; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-subtitle { margin: 0 auto; }

.text-primary { color: var(--primary) !important; }
.text-secondary { color: var(--secondary) !important; }
.text-center { text-align: center; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-4 { gap: 16px; }
.mt-4 { margin-top: 16px; }
.mb-4 { margin-bottom: 16px; }

/* === BUTTONS === */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; border-radius: var(--radius-full);
    font-weight: 600; font-size: .95rem; transition: var(--transition);
    cursor: pointer; border: 2px solid transparent;
    white-space: nowrap; position: relative; overflow: hidden;
}
.btn::before {
    content: ''; position: absolute; inset: 0;
    background: rgba(255,255,255,.15); opacity: 0;
    transition: var(--transition);
}
.btn:hover::before { opacity: 1; }
.btn-primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(230,57,70,.4); }
.btn-secondary { background: var(--secondary); color: #fff; border-color: var(--secondary); }
.btn-secondary:hover { background: var(--secondary-light); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-outline-white:hover { background: #fff; color: var(--secondary); }
.btn-accent { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-sm { padding: 9px 18px; font-size: .85rem; }
.btn-lg { padding: 18px 40px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; margin-bottom: 8px; }

/* === ADMISSION BANNER === */
.admission-banner {
    background: linear-gradient(135deg, var(--primary) 0%, #c1121f 100%);
    padding: 10px 0; position: relative; z-index: 100;
}
.banner-inner { display: flex; align-items: center; justify-content: center; gap: 16px; }
.banner-pulse { width: 8px; height: 8px; border-radius: 50%; background: #fff; animation: pulse 1.5s infinite; flex-shrink: 0; }
.banner-text { color: #fff; font-size: .9rem; font-weight: 500; text-align: center; }
.banner-btn {
    background: rgba(255,255,255,.2); color: #fff; padding: 4px 14px;
    border-radius: var(--radius-full); font-size: .8rem; font-weight: 600;
    border: 1px solid rgba(255,255,255,.4); display: flex; align-items: center; gap: 6px;
}
.banner-btn:hover { background: #fff; color: var(--primary); }
.banner-close { background: none; color: rgba(255,255,255,.7); font-size: 1.2rem; padding: 0 4px; margin-left: 8px; }
.banner-close:hover { color: #fff; }

/* === TOPBAR === */
.topbar { background: var(--secondary); padding: 8px 0; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar a, .topbar span { color: rgba(255,255,255,.75); font-size: .82rem; display: flex; align-items: center; gap: 6px; }
.topbar a:hover { color: #fff; }
.topbar-social { display: flex; gap: 10px; }
.topbar-social a { width: 28px; height: 28px; background: rgba(255,255,255,.1); border-radius: 50%; justify-content: center; font-size: .75rem; }
.topbar-social a:hover { background: var(--primary); color: #fff; }

/* === HEADER === */
.site-header {
    background: #fff; position: sticky; top: 0; z-index: 90;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition), background var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: var(--header-height); }

/* Logo */
.site-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.logo-mark { width: 44px; height: 44px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); border-radius: 11px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.logo-mark.small { width: 34px; height: 34px; border-radius: 8px; }
.logo-icon { color: #fff; font-size: 1.4rem; font-family: var(--font-display); font-weight: 900; line-height: 1; }
.logo-mark.small .logo-icon { font-size: 1rem; }
.logo-text { display: flex; flex-direction: column; white-space: nowrap; }
.logo-name { font-family: var(--font-display); font-size: 1.15rem; font-weight: 800; color: var(--secondary); line-height: 1.2; }
.logo-sub { font-size: .6rem; color: var(--text-muted); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; line-height: 1.3; }

/* Navigation */
.main-nav { flex: 1; display: flex; justify-content: center; min-width: 0; overflow: visible; }
.nav-list { display: flex; align-items: center; gap: 0; flex-wrap: nowrap; }
.nav-item { position: relative; white-space: nowrap; }
.nav-link {
    display: flex; align-items: center; gap: 4px; padding: 7px 10px;
    font-size: .83rem; font-weight: 500; color: var(--text);
    border-radius: var(--radius-sm); transition: var(--transition);
}
.nav-link:hover, .nav-item.active > .nav-link { color: var(--primary); background: rgba(230,57,70,.06); }
.nav-arrow { font-size: .65rem; transition: transform var(--transition); }
.nav-item:hover .nav-arrow { transform: rotate(180deg); }

.dropdown-menu {
    position: absolute; top: calc(100% + 8px); left: 0;
    background: #fff; min-width: 220px; border-radius: var(--radius);
    box-shadow: var(--shadow-lg); border: 1px solid var(--border);
    opacity: 0; visibility: hidden; transform: translateY(10px);
    transition: var(--transition); z-index: 100;
    padding: 8px;
}
.nav-item:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
    display: block; padding: 9px 14px; font-size: .88rem; font-weight: 500;
    color: var(--text); border-radius: var(--radius-sm); transition: var(--transition);
}
.dropdown-menu a:hover, .dropdown-menu a.active { color: var(--primary); background: rgba(230,57,70,.06); padding-left: 20px; }

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 12px; }
.header-call {
    display: flex; align-items: center; gap: 6px;
    font-size: .82rem; font-weight: 600; color: var(--secondary);
    padding: 6px 10px; border-radius: var(--radius-sm);
    border: 1px solid var(--border); white-space: nowrap;
}
.header-call i { font-size: .9rem; color: var(--primary); }
.header-call:hover { color: var(--primary); border-color: var(--primary); background: rgba(230,57,70,.04); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; background: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--secondary); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.mobile-nav {
    position: fixed; top: 0; right: -320px; width: 320px; height: 100vh;
    background: #fff; z-index: 200; transition: right var(--transition);
    display: flex; flex-direction: column; box-shadow: var(--shadow-xl);
}
.mobile-nav.open { right: 0; }
.nav-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 199; opacity: 0; visibility: hidden; transition: var(--transition); }
.nav-overlay.open { opacity: 1; visibility: visible; }
.mobile-nav-header { display: flex; align-items: center; gap: 10px; padding: 20px 20px; border-bottom: 1px solid var(--border); }
.mobile-nav-header .logo-name { font-size: 1rem; }
.mobile-close { margin-left: auto; font-size: 1.5rem; color: var(--text-muted); background: none; }
.mobile-nav-body { flex: 1; overflow-y: auto; padding: 16px; }
.mobile-nav-list { margin-bottom: 24px; }
.mobile-nav-item { border-bottom: 1px solid var(--border); }
.mobile-nav-link { display: flex; justify-content: space-between; align-items: center; padding: 14px 8px; font-weight: 500; color: var(--text); }
.mobile-nav-link:hover { color: var(--primary); }
.mobile-arrow { font-size: .7rem; color: var(--text-muted); }
.mobile-sub-menu { padding: 0 8px 8px 16px; display: none; }
.mobile-sub-menu.open { display: block; }
.mobile-sub-menu a { display: block; padding: 8px 0; font-size: .9rem; color: var(--text-muted); border-bottom: 1px solid var(--border); }
.mobile-sub-menu a:hover { color: var(--primary); }
.mobile-cta { display: flex; flex-direction: column; gap: 8px; }

/* === HERO / SLIDER === */
.hero-section { position: relative; min-height: 92vh; display: flex; align-items: center; background: var(--secondary); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg, #0f1729 0%, var(--secondary) 50%, #1a3a5c 100%); }
.hero-pattern {
    position: absolute; inset: 0;
    background-image: radial-gradient(circle at 25% 25%, rgba(230,57,70,.15) 0, transparent 60%),
        radial-gradient(circle at 75% 75%, rgba(42,157,143,.1) 0, transparent 60%);
}
.hero-grid-overlay {
    position: absolute; inset: 0; opacity: .04;
    background-image: linear-gradient(rgba(255,255,255,.5) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.5) 1px, transparent 1px);
    background-size: 60px 60px;
}
.hero-content { position: relative; z-index: 2; }
.hero-container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; max-width: var(--container); margin: 0 auto; padding: 100px 24px; }

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(230,57,70,.2); border: 1px solid rgba(230,57,70,.4);
    color: #ff7b87; padding: 6px 16px; border-radius: var(--radius-full);
    font-size: .8rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
    margin-bottom: 24px; animation: fadeInUp .8s ease both;
}
.hero-title {
    font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 24px;
    animation: fadeInUp .8s .1s ease both;
}
.hero-title .accent { color: var(--primary); display: block; }
.hero-desc { color: rgba(255,255,255,.75); font-size: 1.05rem; line-height: 1.8; margin-bottom: 40px; animation: fadeInUp .8s .2s ease both; }

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; animation: fadeInUp .8s .3s ease both; }

.hero-stats { display: flex; gap: 32px; animation: fadeInUp .8s .4s ease both; }
.hero-stat { text-align: center; }
.hero-stat-value { font-family: var(--font-display); font-size: 2rem; font-weight: 900; color: #fff; }
.hero-stat-value span { color: var(--primary); }
.hero-stat-label { font-size: .78rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .05em; font-weight: 600; }

.hero-visual { position: relative; animation: fadeInRight .8s .2s ease both; }
.hero-card {
    background: rgba(255,255,255,.07); backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.12); border-radius: 24px; padding: 40px;
    position: relative; overflow: hidden;
}
.hero-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--primary), var(--accent)); }

.hero-streams { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stream-card {
    background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius); padding: 20px; text-align: center;
    transition: var(--transition); cursor: pointer;
}
.stream-card:hover { background: rgba(230,57,70,.2); border-color: rgba(230,57,70,.4); transform: translateY(-4px); }
.stream-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; font-size: 1.4rem; }
.stream-name { color: #fff; font-weight: 700; font-size: .9rem; margin-bottom: 4px; }
.stream-desc { color: rgba(255,255,255,.5); font-size: .75rem; }

.hero-form-box {
    background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius); padding: 20px; margin-top: 16px;
}
.hero-form-title { color: rgba(255,255,255,.9); font-weight: 700; font-size: .95rem; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.hero-form-title i { color: var(--primary); }
.hero-form { display: flex; flex-direction: column; gap: 10px; }
.hero-form input, .hero-form select {
    background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
    color: #fff; padding: 11px 16px; border-radius: var(--radius-sm); font-family: var(--font-body); font-size: .9rem;
}
.hero-form input::placeholder { color: rgba(255,255,255,.4); }
.hero-form select option { background: var(--secondary); color: #fff; }
.hero-form .btn { width: 100%; justify-content: center; }

/* === COURSES SECTION === */
.courses-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.course-card {
    background: #fff; border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow); border: 1px solid var(--border);
    transition: var(--transition); position: relative;
}
.course-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: transparent; }
.course-card-top { padding: 28px; position: relative; }
.course-color-bar { position: absolute; top: 0; left: 0; right: 0; height: 4px; }
.course-icon-wrap { width: 64px; height: 64px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 16px; }
.course-stream-badge {
    display: inline-block; padding: 3px 12px; border-radius: var(--radius-full);
    font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 10px;
}
.course-title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 800; color: var(--secondary); margin-bottom: 10px; line-height: 1.3; }
.course-desc { font-size: .88rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.course-features { list-style: none; }
.course-features li { display: flex; align-items: center; gap: 8px; font-size: .83rem; color: var(--text-muted); padding: 5px 0; border-bottom: 1px solid var(--border); }
.course-features li:last-child { border-bottom: none; }
.course-features li i { color: var(--accent); font-size: .7rem; }
.course-card-foot { padding: 20px 28px; background: var(--bg-soft); border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.course-duration { font-size: .82rem; color: var(--text-muted); display: flex; align-items: center; gap: 6px; }
.course-duration i { color: var(--primary); }

/* === WHY CHOOSE US === */
.why-section { background: var(--secondary); position: relative; overflow: hidden; }
.why-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 80% 50%, rgba(230,57,70,.1) 0, transparent 60%); }
.why-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; align-items: center; }
.why-left .section-title, .why-left .section-subtitle { color: rgba(255,255,255,.9); }
.why-left .section-badge { background: rgba(230,57,70,.2); color: #ff7b87; border: 1px solid rgba(230,57,70,.3); }
.why-left .section-title { color: #fff; }
.why-left .section-subtitle { color: rgba(255,255,255,.65); }
.why-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 36px; }
.why-feature {
    background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius); padding: 24px; transition: var(--transition);
}
.why-feature:hover { background: rgba(255,255,255,.12); transform: translateY(-4px); }
.why-feature-icon { width: 48px; height: 48px; background: rgba(230,57,70,.2); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--primary); margin-bottom: 14px; }
.why-feature-title { color: #fff; font-weight: 700; font-size: .95rem; margin-bottom: 6px; }
.why-feature-text { color: rgba(255,255,255,.55); font-size: .83rem; line-height: 1.6; }

.why-right { position: relative; }
.stats-showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.stat-card {
    background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-lg); padding: 32px; text-align: center;
    transition: var(--transition); position: relative; overflow: hidden;
}
.stat-card::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--primary), var(--accent)); }
.stat-card:hover { background: rgba(255,255,255,.12); transform: translateY(-6px); }
.stat-card:nth-child(2) { margin-top: 24px; }
.stat-card:nth-child(3) { margin-top: -24px; }
.stat-number { font-family: var(--font-display); font-size: 3rem; font-weight: 900; color: #fff; line-height: 1; }
.stat-number .suffix { color: var(--primary); }
.stat-icon { font-size: 2rem; color: rgba(255,255,255,.2); margin-bottom: 12px; }
.stat-label { color: rgba(255,255,255,.65); font-size: .85rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; margin-top: 8px; }

/* === TESTIMONIALS === */
.testimonials-section { background: var(--bg-soft); }
.testimonials-slider { overflow: hidden; position: relative; }
.testimonials-track { display: flex; gap: 28px; transition: transform .5s cubic-bezier(0.4, 0, 0.2, 1); }
.testimonial-card {
    background: #fff; border-radius: var(--radius-lg); padding: 36px;
    box-shadow: var(--shadow); flex: 0 0 calc(33.333% - 19px);
    border: 1px solid var(--border); position: relative;
}
.testimonial-card::before { content: '"'; font-family: var(--font-display); font-size: 6rem; color: var(--primary); opacity: .1; position: absolute; top: 16px; right: 24px; line-height: 1; }
.testimonial-stars { display: flex; gap: 4px; color: #f59e0b; margin-bottom: 16px; }
.testimonial-text { font-size: .92rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testimonial-footer { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar { width: 50px; height: 50px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--secondary)); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 1.1rem; flex-shrink: 0; }
.testimonial-name { font-weight: 700; color: var(--secondary); font-size: .95rem; }
.testimonial-info { font-size: .78rem; color: var(--text-muted); }
.testimonial-rank { display: inline-flex; align-items: center; gap: 4px; background: rgba(230,57,70,.08); color: var(--primary); font-size: .75rem; font-weight: 700; padding: 2px 10px; border-radius: var(--radius-full); margin-top: 4px; }

.slider-controls { display: flex; justify-content: center; gap: 12px; margin-top: 40px; }
.slider-btn { width: 48px; height: 48px; border-radius: 50%; border: 2px solid var(--border); background: #fff; font-size: 1rem; color: var(--text); transition: var(--transition); display: flex; align-items: center; justify-content: center; }
.slider-btn:hover { background: var(--primary); border-color: var(--primary); color: #fff; transform: scale(1.1); }
.slider-dots { display: flex; gap: 8px; align-items: center; }
.slider-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); cursor: pointer; transition: var(--transition); }
.slider-dot.active { background: var(--primary); width: 24px; border-radius: var(--radius-full); }

/* === ACHIEVEMENTS BANNER === */
.achievements-section { background: linear-gradient(135deg, var(--primary) 0%, #c1121f 100%); padding: 56px 0; position: relative; overflow: hidden; }
.achievements-section::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,.1) 0, transparent 50%); }
.achievements-inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 48px; }
.achievement-item { text-align: center; color: #fff; }
.achievement-number { font-family: var(--font-display); font-size: 3.5rem; font-weight: 900; line-height: 1; }
.achievement-suffix { color: rgba(255,255,255,.7); font-size: 2rem; }
.achievement-label { font-size: .85rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.8); margin-top: 6px; }

/* === BLOG SECTION === */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); transition: var(--transition); }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.blog-image { height: 200px; overflow: hidden; background: var(--bg-soft); position: relative; }
.blog-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.blog-card:hover .blog-image img { transform: scale(1.05); }
.blog-category {
    position: absolute; top: 14px; left: 14px;
    background: var(--primary); color: #fff; font-size: .72rem; font-weight: 700;
    padding: 4px 12px; border-radius: var(--radius-full); text-transform: uppercase; letter-spacing: .05em;
}
.blog-content { padding: 24px; }
.blog-meta { display: flex; align-items: center; gap: 12px; font-size: .78rem; color: var(--text-muted); margin-bottom: 12px; }
.blog-meta i { color: var(--primary); }
.blog-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 800; color: var(--secondary); margin-bottom: 10px; line-height: 1.4; }
.blog-title a:hover { color: var(--primary); }
.blog-excerpt { font-size: .86rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.blog-read-more { display: inline-flex; align-items: center; gap: 6px; color: var(--primary); font-weight: 600; font-size: .88rem; }
.blog-read-more i { transition: transform var(--transition); }
.blog-read-more:hover i { transform: translateX(4px); }

/* === CONTACT CTA SECTION === */
.cta-section { background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%); padding: 80px 0; position: relative; overflow: hidden; }
.cta-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.cta-text .section-title { color: #fff; }
.cta-text .section-subtitle { color: rgba(255,255,255,.7); }
.cta-form-wrap { background: rgba(255,255,255,.08); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius-lg); padding: 36px; }
.cta-form-title { color: #fff; font-size: 1.3rem; font-weight: 700; margin-bottom: 24px; }

/* === FORM STYLES === */
.form-group { margin-bottom: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-label { display: block; font-size: .85rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-label-white { color: rgba(255,255,255,.8); }
.form-control {
    width: 100%; padding: 13px 16px; border: 2px solid var(--border);
    border-radius: var(--radius-sm); font-family: var(--font-body); font-size: .9rem;
    color: var(--text); background: var(--bg); transition: var(--transition);
}
.form-control-dark {
    background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); color: #fff;
}
.form-control-dark::placeholder { color: rgba(255,255,255,.4); }
.form-control-dark:focus { border-color: var(--primary); background: rgba(255,255,255,.15); }
.form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(230,57,70,.1); }
.form-control.error { border-color: var(--primary); }
.form-error { color: var(--primary); font-size: .78rem; margin-top: 4px; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%236b7280'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 20px; padding-right: 40px; }
textarea.form-control { resize: vertical; min-height: 100px; }

/* === BREADCRUMB === */
.page-hero { background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%); padding: 60px 0; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 70% 50%, rgba(230,57,70,.12) 0, transparent 60%); }
.page-hero-content { position: relative; z-index: 2; }
.page-hero-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: #fff; margin-bottom: 12px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,.65); font-size: .88rem; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: rgba(255,255,255,.4); font-size: .75rem; }
.breadcrumb .current { color: rgba(255,255,255,.9); font-size: .88rem; font-weight: 600; }

/* === FOOTER === */
.footer-newsletter { background: var(--secondary); padding: 40px 0; }
.newsletter-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.newsletter-text h3 { color: #fff; font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; margin-bottom: 4px; }
.newsletter-text p { color: rgba(255,255,255,.6); font-size: .88rem; }
.newsletter-form { display: flex; gap: 0; flex-shrink: 0; }
.newsletter-form input { padding: 14px 20px; border: 2px solid rgba(255,255,255,.2); border-right: none; background: rgba(255,255,255,.1); color: #fff; border-radius: var(--radius-full) 0 0 var(--radius-full); font-family: var(--font-body); width: 280px; }
.newsletter-form input::placeholder { color: rgba(255,255,255,.4); }
.newsletter-form input:focus { outline: none; border-color: var(--primary); }
.newsletter-form .btn { border-radius: 0 var(--radius-full) var(--radius-full) 0; }

.site-footer { background: var(--bg-dark); }
.footer-main { padding: 60px 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; }
.footer-about .footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-about .logo-name { color: #fff; }
.footer-about .logo-sub { color: rgba(255,255,255,.5); }
.footer-about p { color: rgba(255,255,255,.55); font-size: .88rem; line-height: 1.8; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 38px; height: 38px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.6); font-size: .85rem; transition: var(--transition); }
.footer-social a:hover { background: var(--primary); border-color: var(--primary); color: #fff; transform: translateY(-3px); }
.footer-heading { color: #fff; font-weight: 700; font-size: 1rem; margin-bottom: 20px; position: relative; padding-bottom: 12px; }
.footer-heading::after { content: ''; position: absolute; bottom: 0; left: 0; width: 32px; height: 2px; background: var(--primary); border-radius: 2px; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,.55); font-size: .88rem; display: flex; align-items: center; gap: 8px; transition: var(--transition); }
.footer-links a i { font-size: .65rem; color: var(--primary); }
.footer-links a:hover { color: #fff; padding-left: 4px; }
.footer-contact-list li { display: flex; gap: 12px; margin-bottom: 14px; color: rgba(255,255,255,.55); font-size: .88rem; line-height: 1.6; }
.footer-contact-list i { color: var(--primary); margin-top: 3px; flex-shrink: 0; }
.footer-contact-list a { color: rgba(255,255,255,.55); }
.footer-contact-list a:hover { color: var(--primary); }
.footer-map-link { margin-top: 16px; }
.footer-bottom { background: rgba(0,0,0,.3); padding: 16px 0; border-top: 1px solid rgba(255,255,255,.05); }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { color: rgba(255,255,255,.4); font-size: .82rem; }
.footer-legal { display: flex; gap: 16px; }
.footer-legal a { color: rgba(255,255,255,.4); font-size: .82rem; }
.footer-legal a:hover { color: rgba(255,255,255,.8); }

/* === WHATSAPP + SCROLL === */
.whatsapp-float {
    position: fixed; bottom: 24px; right: 24px; z-index: 99;
    width: 60px; height: 60px; background: #25d366; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.6rem;
    box-shadow: 0 8px 28px rgba(37,211,102,.4); transition: var(--transition); animation: float 3s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.15); background: #1ebe5d; color: #fff; }
.whatsapp-tooltip {
    position: absolute; right: 70px; white-space: nowrap;
    background: var(--secondary); color: #fff; font-size: .8rem; font-weight: 600;
    padding: 6px 12px; border-radius: var(--radius-sm); opacity: 0; pointer-events: none;
    transition: var(--transition); box-shadow: var(--shadow);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

.scroll-top {
    position: fixed; bottom: 24px; left: 24px; z-index: 99;
    width: 44px; height: 44px; background: var(--secondary); border-radius: 50%;
    color: #fff; font-size: .85rem; box-shadow: var(--shadow);
    transition: var(--transition); opacity: 0; visibility: hidden;
    display: flex; align-items: center; justify-content: center;
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--primary); transform: translateY(-4px); }

/* === ADMIN STYLES === */
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar {
    width: 260px; background: var(--secondary); flex-shrink: 0;
    position: fixed; top: 0; left: 0; bottom: 0; overflow-y: auto; z-index: 50;
    transition: transform var(--transition);
}
.admin-main { flex: 1; margin-left: 260px; background: var(--bg-soft); min-height: 100vh; }
.admin-topbar { background: #fff; padding: 0 24px; height: 64px; display: flex; align-items: center; justify-content: space-between; box-shadow: var(--shadow-sm); position: sticky; top: 0; z-index: 40; }
.admin-content { padding: 32px; }
.admin-sidebar-logo { padding: 20px; border-bottom: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; gap: 10px; }
.admin-sidebar-logo .logo-icon { font-size: 1.2rem; }
.admin-sidebar-logo .logo-name { font-size: .95rem; }
.admin-nav-group { padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.admin-nav-group-title { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.3); padding: 0 20px 8px; }
.admin-nav-item a {
    display: flex; align-items: center; gap: 10px; padding: 11px 20px;
    color: rgba(255,255,255,.65); font-size: .88rem; font-weight: 500; transition: var(--transition);
}
.admin-nav-item a i { width: 18px; text-align: center; }
.admin-nav-item a:hover, .admin-nav-item.active a { color: #fff; background: rgba(255,255,255,.08); }
.admin-nav-item.active a { border-right: 3px solid var(--primary); }
.admin-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 24px; margin-bottom: 24px; border: 1px solid var(--border); }
.admin-card-title { font-size: 1.05rem; font-weight: 700; color: var(--secondary); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 8px; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { background: var(--bg-soft); padding: 12px 16px; text-align: left; font-size: .78rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .05em; border-bottom: 2px solid var(--border); }
.admin-table td { padding: 14px 16px; font-size: .88rem; color: var(--text); border-bottom: 1px solid var(--border); vertical-align: middle; }
.admin-table tr:hover td { background: rgba(230,57,70,.03); }
.badge { display: inline-flex; align-items: center; padding: 3px 10px; border-radius: var(--radius-full); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.badge-success { background: rgba(16,185,129,.1); color: #059669; }
.badge-warning { background: rgba(245,158,11,.1); color: #d97706; }
.badge-danger { background: rgba(230,57,70,.1); color: var(--primary); }
.badge-info { background: rgba(42,157,143,.1); color: var(--accent); }
.stat-widget { background: #fff; border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); border: 1px solid var(--border); display: flex; justify-content: space-between; align-items: flex-start; }
.stat-widget-val { font-family: var(--font-display); font-size: 2.2rem; font-weight: 900; color: var(--secondary); }
.stat-widget-label { font-size: .82rem; color: var(--text-muted); margin-top: 4px; }
.stat-widget-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; }
.dashboard-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 28px; }

/* === ANIMATIONS === */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .5; transform: scale(1.2); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes countUp { from { opacity: 0; } to { opacity: 1; } }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* Toast notifications */
.toast-container { position: fixed; top: 24px; right: 24px; z-index: 9999; display: flex; flex-direction: column; gap: 12px; }
.toast { background: #fff; border-radius: var(--radius); padding: 14px 20px; box-shadow: var(--shadow-lg); border-left: 4px solid var(--accent); display: flex; align-items: center; gap: 12px; font-size: .9rem; font-weight: 500; min-width: 280px; animation: fadeInRight .3s ease; }
.toast-success { border-color: #10b981; }
.toast-error { border-color: var(--primary); }
.toast-icon { font-size: 1.1rem; }
.toast-success .toast-icon { color: #10b981; }
.toast-error .toast-icon { color: var(--primary); }

/* Loader */
.page-loader { position: fixed; inset: 0; background: var(--secondary); z-index: 9999; display: flex; align-items: center; justify-content: center; transition: opacity .5s ease; }
.page-loader.hidden { opacity: 0; pointer-events: none; }
.loader-logo { text-align: center; animation: fadeInUp .5s ease; }
.loader-spinner { width: 40px; height: 40px; border: 3px solid rgba(255,255,255,.2); border-top-color: var(--primary); border-radius: 50%; animation: spin .8s linear infinite; margin: 16px auto 0; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   UTILITY STYLES — used by new pages (about, faculty, etc.)
   ============================================================ */

/* Generic card — used across all inner pages */
.card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
    overflow: hidden;
}
.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

/* Surface alt */
.surface-alt { background: var(--surface-alt); }

/* Form control dark — used in CTA form */
.form-control-dark {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.2);
    color: #fff;
}
.form-control-dark::placeholder { color: rgba(255,255,255,.5); }
.form-control-dark:focus { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.4); }
.form-label-white { color: rgba(255,255,255,.85); }

/* Toast container */
.toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.toast {
    background: #fff;
    border-radius: var(--radius);
    padding: 14px 20px;
    box-shadow: var(--shadow-lg);
    border-left: 4px solid var(--accent);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .9rem;
    font-weight: 500;
    min-width: 280px;
    max-width: 380px;
    animation: slideInRight .3s ease;
}
.toast-success { border-left-color: #10b981; }
.toast-error   { border-left-color: var(--primary); }
.toast-icon    { font-size: 1.1rem; }
.toast-success .toast-icon { color: #10b981; }
.toast-error   .toast-icon { color: var(--primary); }

@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to   { transform: translateX(0);   opacity: 1; }
}

/* Page loader */
.page-loader {
    position: fixed; inset: 0;
    background: var(--secondary);
    display: flex; align-items: center; justify-content: center;
    z-index: 99999;
    transition: opacity .4s ease, visibility .4s ease;
}
.page-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-spinner {
    width: 32px; height: 32px;
    border: 3px solid rgba(255,255,255,.2);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin .8s linear infinite;
    margin: 16px auto 0;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Scroll to top */
.scroll-top {
    position: fixed; bottom: 90px; right: 20px;
    width: 44px; height: 44px;
    background: var(--secondary); color: #fff;
    border-radius: 50%; border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: .9rem;
    opacity: 0; visibility: hidden;
    transition: var(--transition);
    z-index: 900;
    box-shadow: var(--shadow);
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--primary); transform: translateY(-3px); }

/* WhatsApp float */
.whatsapp-float {
    position: fixed; bottom: 24px; right: 20px;
    width: 52px; height: 52px;
    background: #25d366; color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(37,211,102,.4);
    z-index: 900;
    transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); background: #1ebe5d; }
.whatsapp-tooltip {
    position: absolute; right: 60px;
    background: #333; color: #fff;
    font-size: .75rem; padding: 4px 10px;
    border-radius: 4px; white-space: nowrap;
    opacity: 0; pointer-events: none;
    transition: opacity .2s;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* Gallery filter buttons active state */
.gallery-item { transition: transform .2s ease; }

/* Admission banner */
.admission-banner {
    background: linear-gradient(90deg, var(--primary), #c1121f);
    color: #fff; padding: 10px 0;
    position: sticky; top: 0; z-index: 200;
}
.banner-inner {
    display: flex; align-items: center;
    gap: 12px; flex-wrap: wrap;
    justify-content: center;
}
.banner-pulse {
    width: 8px; height: 8px;
    background: #fff; border-radius: 50%;
    animation: pulse 1.5s infinite;
}
@keyframes pulse {
    0%,100% { transform: scale(1); opacity: 1; }
    50%      { transform: scale(1.4); opacity: .6; }
}
.banner-text { font-size: .9rem; font-weight: 500; }
.banner-btn {
    background: rgba(255,255,255,.2); color: #fff;
    padding: 4px 14px; border-radius: 20px;
    font-size: .82rem; font-weight: 600;
    border: 1px solid rgba(255,255,255,.4);
    transition: background .2s;
}
.banner-btn:hover { background: rgba(255,255,255,.35); color: #fff; }
.banner-close {
    background: none; border: none; color: rgba(255,255,255,.7);
    font-size: 1.2rem; cursor: pointer; line-height: 1;
    margin-left: 4px;
}
.banner-close:hover { color: #fff; }