/* ==========================================================================
   BRILLIANT SCHOOL PREMIUM WEBSITE STYLES
   ========================================================================== */

/* 1. CSS VARIABLES & DESIGN SYSTEM */
:root {
    --font-heading: 'Outfit', 'Inter', -apple-system, sans-serif;
    --font-body: 'Inter', -apple-system, sans-serif;

    /* Theme Palette: Blue, White, Gold */
    --color-blue-deep: #0B1E3F;
    --color-blue-primary: #1E40AF;
    --color-blue-light: #EFF6FF;
    --color-gold: #D4AF37;
    --color-gold-hover: #B8962D;
    --color-gold-light: #FEF3C7;
    
    --color-white: #FFFFFF;
    --color-slate-50: #F8FAFC;
    --color-slate-100: #F1F5F9;
    --color-slate-200: #E2E8F0;
    
    --text-primary: #1E293B;
    --text-secondary: #475569;
    --text-muted: #94A3B8;

    --gradient-blue: linear-gradient(135deg, #0B1E3F 0%, #1E40AF 100%);
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #F59E0B 100%);
    --gradient-light: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
    
    --border-glass: rgba(255, 255, 255, 0.5);
    --border-light: rgba(15, 23, 42, 0.06);
    --border-dark: rgba(255, 255, 255, 0.08);

    --shadow-premium: 0 15px 30px -10px rgba(11, 30, 63, 0.06), 0 0 0 1px rgba(11, 30, 63, 0.04);
    --shadow-hover: 0 25px 50px -15px rgba(11, 30, 63, 0.12), 0 0 0 1px rgba(11, 30, 63, 0.06);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 2. BASE GLOBAL SETUP */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

/* Selection Color */
::selection {
    background-color: var(--color-blue-primary);
    color: var(--color-white);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-slate-50);
}
::-webkit-scrollbar-thumb {
    background: var(--color-slate-200);
    border-radius: var(--radius-sm);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* Typography resets */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

h2 {
    font-size: 2.5rem;
    color: var(--color-blue-deep);
}

h3 {
    font-size: 1.5rem;
    color: var(--color-blue-deep);
}

p {
    color: var(--text-secondary);
}

.gradient-gold-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gold {
    color: var(--color-gold) !important;
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.glass {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow-premium);
    transition: all var(--transition-normal);
}

.scroll-tracker {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: var(--gradient-gold);
    z-index: 2000;
    width: 0%;
}

/* 3. BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: 1px solid transparent;
}

.btn-gold {
    background: var(--gradient-gold);
    color: var(--color-white) !important;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.2);
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--color-blue-primary) !important;
    border: 2px solid var(--color-blue-primary);
}
.btn-outline:hover {
    background: var(--color-blue-primary);
    color: var(--color-white) !important;
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: var(--color-white) !important;
    border: 2px solid var(--color-white);
}
.btn-outline-white:hover {
    background: var(--color-white);
    color: var(--color-blue-deep) !important;
    transform: translateY(-2px);
}

.btn-large {
    padding: 14px 28px;
    font-size: 1.05rem;
    border-radius: var(--radius-md);
}

.width-full {
    width: 100%;
}

/* Section tags */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.section-tag {
    color: var(--color-gold);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-block;
    margin-bottom: 0.5rem;
    background: var(--color-gold-light);
    padding: 4px 12px;
    border-radius: 9999px;
}

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

/* 4. STICKY NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--color-slate-100);
    padding: 16px 0;
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-premium);
    background: rgba(255, 255, 255, 0.95);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--color-blue-deep);
}

.logo-svg {
    width: 32px;
    height: 32px;
    color: var(--color-blue-primary);
}

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

.logo-text .main {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    line-height: 1;
    letter-spacing: -0.03em;
}

.logo-text .sub {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--color-gold);
    margin-top: 2px;
}

.nav-links {
    display: flex;
    gap: 24px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.92rem;
    font-weight: 500;
    transition: color var(--transition-fast);
}
.nav-link:hover, .nav-link.active {
    color: var(--color-blue-primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-blue-deep);
}

.mobile-drawer {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-slate-200);
    z-index: 999;
    padding: 24px;
    display: none;
    transform: translateY(-10px);
    opacity: 0;
    transition: all var(--transition-normal);
}
.mobile-drawer.active {
    display: block;
    transform: translateY(0);
    opacity: 1;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--color-slate-100);
}

/* 5. FLOATING ICONS BACKGROUND */
.floating-icons-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -5;
    pointer-events: none;
    overflow: hidden;
}

.floating-icon {
    position: absolute;
    color: var(--color-blue-primary);
    opacity: 0.04;
    animation: drift 15s linear infinite;
}

.shape-1 { top: 15%; left: 8%; font-size: 2.5rem; }
.shape-2 { top: 45%; right: 10%; font-size: 3rem; animation-delay: 2s; }
.shape-3 { top: 75%; left: 12%; font-size: 2.2rem; animation-delay: 4s; }
.shape-4 { top: 30%; left: 85%; font-size: 2.8rem; animation-delay: 1s; }
.shape-5 { top: 85%; right: 15%; font-size: 2.5rem; animation-delay: 3s; }

@keyframes drift {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    padding-top: 140px;
    padding-bottom: 140px;
    background: var(--gradient-blue);
    color: var(--color-white);
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 60px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--color-gold);
    padding: 6px 14px;
    border-radius: 9999px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--color-gold);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

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

.hero-desc {
    font-size: 1.15rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.25rem;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.hero-graphics {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 440px;
}

.glow-bg-gold {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    filter: blur(50px);
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
    animation: float 6s ease-in-out infinite;
}

/* Wave Divider */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    overflow: hidden;
}
.hero-wave svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 50px;
}
.hero-wave path {
    fill: var(--color-slate-50);
}

/* Statistics Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 20px;
    position: relative;
    z-index: 10;
}

.stat-card {
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.95);
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-blue-light);
    color: var(--color-blue-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    color: var(--color-blue-deep);
}

.stat-plus {
    color: var(--color-gold);
    font-weight: 800;
    font-size: 1.5rem;
    margin-left: 2px;
}

.stat-label-large {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--color-blue-deep);
    display: block;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-section {
    padding: 100px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1px solid var(--color-slate-100);
}
.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-hover);
}

.feat-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: var(--color-blue-light);
    color: var(--color-blue-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.92rem;
    line-height: 1.5;
}

/* ==========================================================================
   ACADEMIC PROGRAMS
   ========================================================================== */
.programs-section {
    padding: 100px 0;
    background-color: var(--color-slate-100);
}

.programs-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.program-card {
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.program-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.program-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.program-badge {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    background: var(--color-gold-light);
    color: var(--color-gold-hover);
    padding: 4px 10px;
    border-radius: 4px;
}

.program-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-blue-light);
    color: var(--color-blue-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.program-card h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.program-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
}

.program-bullets li {
    font-size: 0.88rem;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.bullet-check {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-gold);
    display: inline-block;
    margin-top: 8px;
    flex-shrink: 0;
}

/* ==========================================================================
   CAMPUS FACILITIES
   ========================================================================== */
.facilities-section {
    padding: 100px 0;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.facility-item {
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.facility-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(212, 175, 55, 0.2);
}

.fac-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-gold-light);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.facility-item h4 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.facility-item p {
    font-size: 0.88rem;
    line-height: 1.4;
}

/* ==========================================================================
   PRACTICAL LEARNING SECTION
   ========================================================================== */
.practical-section {
    padding: 100px 0;
    background-color: var(--color-slate-100);
}

.practical-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 64px;
    align-items: center;
}

.tag-gold {
    background: var(--color-gold-light);
    color: var(--color-gold);
}

.practical-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.pract-item {
    display: flex;
    gap: 20px;
}

.pract-num {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-gold);
    background: var(--color-white);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-premium);
    flex-shrink: 0;
}

.pract-item h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: var(--color-blue-deep);
}

.pract-item p {
    font-size: 0.9rem;
    line-height: 1.5;
}

.practical-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.glow-bg-blue {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(30, 64, 175, 0.15) 0%, transparent 70%);
    filter: blur(50px);
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.practical-img {
    width: 100%;
    max-width: 380px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
}

/* ==========================================================================
   FACULTY (TEACHERS) SECTION
   ========================================================================== */
.faculty-section {
    padding: 100px 0;
}

.faculty-hero-showcase {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 60px;
}

.faculty-image-pane {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
}

.faculty-hero-img {
    width: 100%;
    height: auto;
    display: block;
}

.faculty-desc-pane {
    border-radius: var(--radius-lg);
    padding: 40px;
}

.faculty-desc-pane h3 {
    font-size: 1.8rem;
    margin-bottom: 1.25rem;
}

.faculty-desc-pane p {
    font-size: 1rem;
    margin-bottom: 24px;
}

.bullets-mini {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.bullets-mini span {
    font-size: 0.92rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.teachers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.teacher-card-item {
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.teacher-card-item:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.2);
    box-shadow: var(--shadow-hover);
}

.teacher-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--color-blue-primary);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(30, 64, 175, 0.2);
}

.teacher-card-item h4 {
    font-size: 1.15rem;
    margin-bottom: 4px;
}

.teacher-title {
    color: var(--color-gold);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    display: block;
}

.teacher-qual {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ==========================================================================
   IMAGE GALLERY SLIDER
   ========================================================================== */
.gallery-section {
    padding: 100px 0;
    background-color: var(--color-slate-100);
}

.gallery-slider-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.gallery-slider {
    width: 100%;
    height: 480px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-premium);
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity var(--transition-slow);
    display: flex;
    flex-direction: column;
}

.gallery-slide.active {
    opacity: 1;
    z-index: 5;
}

.slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Fallback/Dummy Slide Graphics inside CSS */
.dummy-slide-bg {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    gap: 16px;
}
.bg-blue-deep {
    background: var(--gradient-blue);
}
.bg-gold-gradient {
    background: var(--gradient-gold);
}
.bg-blue-tint {
    background: radial-gradient(circle, #EFF6FF 0%, #DBEAFE 100%);
    color: var(--color-blue-deep) !important;
}

.dummy-icon {
    width: 64px;
    height: 64px;
}

.dummy-slide-bg span {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 100%);
    color: var(--color-white);
    padding: 40px 32px 32px 32px;
    z-index: 10;
}
.slide-caption h3 {
    font-size: 1.5rem;
    color: var(--color-white);
    margin-bottom: 6px;
}
.slide-caption p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
}

.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-white);
    border: 1px solid var(--color-slate-200);
    color: var(--color-blue-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-premium);
    transition: all var(--transition-fast);
    z-index: 10;
}
.slider-btn:hover {
    background: var(--color-blue-primary);
    color: var(--color-white);
    border-color: var(--color-blue-primary);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-slate-200);
    cursor: pointer;
    transition: background var(--transition-fast);
}
.slider-dot.active {
    background: var(--color-gold);
    width: 24px;
    border-radius: 5px;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
    padding: 100px 0;
}

.testimonial-slider-container {
    max-width: 760px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.test-card-wrapper {
    flex: 0 0 100%;
    width: 100%;
    padding: 10px;
}

.test-card {
    border-radius: var(--radius-lg);
    padding: 40px;
}

.rating-stars {
    display: flex;
    gap: 4px;
    color: var(--color-gold);
    margin-bottom: 20px;
}
.rating-stars i {
    width: 18px;
    height: 18px;
}
.rating-stars i.fill {
    fill: var(--color-gold);
}

.test-quote {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--color-blue-deep);
    font-style: italic;
    margin-bottom: 28px;
}

.test-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: var(--color-white);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.avatar.bg-blue { background: var(--color-blue-primary); }
.avatar.bg-gold { background: var(--color-gold); }

.test-author h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}
.test-author span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.test-navigation {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

/* ==========================================================================
   ADMISSIONS & FAQ SECTION
   ========================================================================== */
.admissions-section {
    padding: 100px 0;
    background-color: var(--color-slate-100);
}

.admissions-banner {
    background: var(--gradient-blue);
    border-radius: var(--radius-xl);
    padding: 60px;
    color: var(--color-white);
    position: relative;
    overflow: hidden;
    margin-bottom: 60px;
    box-shadow: 0 20px 40px -10px rgba(11,30,63,0.3);
}

.admissions-glow {
    position: absolute;
    bottom: -40%;
    right: -10%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.banner-content h2 {
    font-size: 2.5rem;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.banner-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
}

.banner-actions {
    display: flex;
    gap: 16px;
}

.faq-admissions-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: flex-start;
}

.faq-pane h3 {
    font-size: 1.8rem;
    margin-top: 0.5rem;
    margin-bottom: 28px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border-radius: var(--radius-sm);
    background: var(--color-white);
    border: 1px solid var(--color-slate-200);
    overflow: hidden;
    transition: all var(--transition-fast);
}
.faq-item.active {
    border-color: var(--color-gold);
    box-shadow: var(--shadow-premium);
}

.faq-trigger {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 24px;
    text-align: left;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--color-blue-deep);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.faq-chevron {
    color: var(--text-muted);
    transition: transform var(--transition-fast);
    flex-shrink: 0;
}
.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    color: var(--color-gold);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal) ease-out;
}
.faq-item.active .faq-content {
    max-height: 200px;
}

.faq-content p {
    padding: 0 24px 20px 24px;
    font-size: 0.92rem;
    line-height: 1.5;
}

/* Admission Form styling */
.form-pane {
    border-radius: var(--radius-lg);
    padding: 36px;
}

.form-pane h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: var(--color-blue-deep);
}

.admission-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.form-group input, .form-group select {
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-slate-200);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: all var(--transition-fast);
    background-color: var(--color-white);
}

.form-group input:focus, .form-group select:focus {
    border-color: var(--color-blue-primary);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.15);
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-section {
    padding: 100px 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 64px;
    align-items: center;
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-top: 0.5rem;
    margin-bottom: 4px;
}
.contact-info .tagline {
    font-style: italic;
    color: var(--color-gold);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 28px;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.contact-detail-item {
    display: flex;
    gap: 16px;
}

.c-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-blue-light);
    color: var(--color-blue-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-item h4 {
    font-size: 1.05rem;
    margin-bottom: 4px;
    color: var(--color-blue-deep);
}

.contact-detail-item p, .contact-detail-item a {
    font-size: 0.92rem;
    color: var(--text-secondary);
    text-decoration: none;
}
.contact-detail-item a:hover {
    color: var(--color-blue-primary);
}

.social-links-circle {
    display: flex;
    gap: 12px;
}
.social-links-circle a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--color-slate-200);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    text-decoration: none;
}
.social-links-circle a:hover {
    background: var(--color-blue-primary);
    color: var(--color-white);
    border-color: var(--color-blue-primary);
}

/* Stylized Mock Map */
.map-wrapper {
    border-radius: var(--radius-lg);
    padding: 8px;
    box-shadow: var(--shadow-premium);
}
.map-header {
    background: var(--color-slate-50);
    padding: 8px 16px;
    border-top-left-radius: var(--radius-md);
    border-top-right-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--color-slate-200);
}
.map-embed-mock {
    height: 320px;
    background: radial-gradient(circle at 70% 30%, #E0F2FE 0%, #BAE6FD 100%);
    border-bottom-left-radius: var(--radius-md);
    border-bottom-right-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--color-slate-200);
    border-top: none;
}
.mock-map-pin {
    position: absolute;
    top: 35%;
    left: 48%;
    transform: translate(-50%, -50%);
}
.pin-icon {
    width: 32px;
    height: 32px;
    color: var(--color-blue-primary);
    position: relative;
    z-index: 2;
}
.pulse-ring {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-blue-primary);
    opacity: 0.3;
    animation: pulse 2s infinite;
    top: -4px;
    left: -4px;
    z-index: 1;
}

.map-card {
    position: absolute;
    bottom: 20px;
    left: 20px;
    padding: 16px;
    border-radius: var(--radius-sm);
    width: 220px;
    display: flex;
    flex-direction: column;
}
.map-card strong {
    font-size: 0.85rem;
    color: var(--color-blue-deep);
}
.map-card span {
    font-size: 0.72rem;
    color: var(--text-secondary);
    margin-top: 2px;
}
.map-link {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--color-blue-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 10px;
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.footer {
    background-color: var(--color-blue-deep);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 32px 0;
    border-top: 1px solid var(--border-dark);
}

.footer-container {
    display: grid;
    grid-template-columns: 0.9fr 2.1fr;
    gap: 64px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.brand-tag {
    font-size: 0.9rem;
    margin-top: 16px;
    line-height: 1.5;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-white);
    margin-bottom: 8px;
}

.footer-col a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.88rem;
    transition: color var(--transition-fast);
}
.footer-col a:hover {
    color: var(--color-gold);
}

.footer-col span {
    font-size: 0.88rem;
}

.text-white { color: var(--color-white) !important; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 32px;
}

.bottom-container {
    display: flex;
    justify-content: space-between;
    font-size: 0.82rem;
}

.redirect-link {
    color: var(--color-gold);
    text-decoration: none;
    font-weight: 700;
    transition: color var(--transition-fast);
}
.redirect-link:hover {
    color: var(--color-white);
}

.bottom-links {
    display: flex;
    gap: 20px;
}
.bottom-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition-fast);
}
.bottom-links a:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* ==========================================================================
   WHATSAPP FLOATING BUTTON
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #FFFFFF;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 999;
    text-decoration: none;
    transition: all var(--transition-fast);
}
.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.45);
}

.whatsapp-icon {
    width: 28px;
    height: 28px;
}

/* ==========================================================================
   KEYFRAME ANIMATIONS
   ========================================================================== */
@keyframes pulse {
    0% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.6); opacity: 0; }
    100% { transform: scale(1); opacity: 0; }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Scroll reveal triggers */
.scroll-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
    h2 { font-size: 2.1rem; }
    .hero-title { font-size: 2.8rem; }
    
    .hero-container, .practical-container, .faculty-hero-showcase, .faq-admissions-grid, .contact-container, .footer-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .hero-content {
        text-align: center;
        align-items: center;
    }
    .hero-badge { justify-content: center; }
    .hero-buttons { justify-content: center; }
    
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .programs-timeline { grid-template-columns: repeat(2, 1fr); }
    .facilities-grid { grid-template-columns: repeat(2, 1fr); }
    .teachers-grid { grid-template-columns: repeat(2, 1fr); }
    
    .footer-links { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

@media (max-width: 768px) {
    .nav-links, .header-cta { display: none; }
    .mobile-toggle { display: block; }
    
    .stats-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .programs-timeline { grid-template-columns: 1fr; }
    .facilities-grid { grid-template-columns: 1fr; }
    .teachers-grid { grid-template-columns: 1fr; }
    
    .gallery-slider { height: 320px; }
    .slide-caption { padding: 24px 16px 16px 16px; }
    .slide-caption h3 { font-size: 1.25rem; }
    
    .admissions-banner { padding: 32px; text-align: center; }
    .banner-content h2 { font-size: 2rem; }
    .banner-actions { flex-direction: column; }
    
    .form-row { grid-template-columns: 1fr; }
    
    .contact-map { height: 280px; }
    
    .footer-links { grid-template-columns: 1fr; }
    .bottom-container { flex-direction: column; gap: 16px; text-align: center; }
}
