@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');
:root {
    --primary: #0f2e5c;
    --primary-light: #1e3a8a;
    --primary-rgb: 15, 46, 92;
    --secondary: #16a34a;
    --secondary-rgb: 22, 163, 74;
    --accent: #d97706;
    --accent-rgb: 217, 119, 6;
    --background: #f8fafc;
    --surface: #ffffff;
    --text-dark: #0f172a;
    --text-muted: #475569;
    --border: #e2e8f0;
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    font-size: 16px;
}
body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--primary);
    font-weight: 700;
}
a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
/* Navigation Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    transition: var(--transition-normal);
}
header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
    padding: 5px 0;
}
.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 15px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo-block {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 10px rgba(var(--primary-rgb), 0.3);
}
.logo-icon svg {
    width: 26px;
    height: 26px;
}
.logo-text h1 {
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}
.logo-text span {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}
nav ul {
    display: flex;
    list-style: none;
    gap: 28px;
    align-items: center;
}
nav ul li a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    padding: 8px 0;
    position: relative;
}
nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition-fast);
}
nav ul li a:hover, nav ul li a.active {
    color: var(--primary);
}
nav ul li a:hover::after, nav ul li a.active::after {
    width: 100%;
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    transition: var(--transition-normal);
    cursor: pointer;
    border: none;
    gap: 8px;
}
.btn-primary {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 4px 6px rgba(var(--primary-rgb), 0.15);
}
.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(var(--primary-rgb), 0.25);
}
.btn-secondary {
    background-color: white;
    color: var(--primary);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
    background-color: var(--background);
    border-color: var(--primary);
    transform: translateY(-2px);
}
.btn-accent {
    background-color: var(--accent);
    color: white;
    box-shadow: 0 4px 6px rgba(var(--accent-rgb), 0.15);
}
.btn-accent:hover {
    background-color: #b45309;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(var(--accent-rgb), 0.25);
}
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary);
    margin: 5px 0;
    transition: var(--transition-normal);
    border-radius: 2px;
}
/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    background-color: #030712;
    overflow: hidden;
    margin-top: 0;
}
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    background-size: cover;
    background-position: center;
}
.hero-slide.active {
    opacity: 1;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(15, 46, 92, 0.9) 20%, rgba(15, 46, 92, 0.6) 60%, rgba(15, 46, 92, 0.3) 100%);
    z-index: 2;
}
.hero-container {
    position: relative;
    z-index: 3;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    color: white;
}
.hero-content {
    max-width: 700px;
}
.badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(22, 163, 74, 0.25);
    border: 1px solid rgba(22, 163, 74, 0.4);
    color: #4ade80;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.hero-content h2 {
    font-size: 3.5rem;
    color: white;
    line-height: 1.15;
    margin-bottom: 15px;
    font-weight: 800;
    letter-spacing: -1px;
}
.tagline-container {
    height: 48px;
    overflow: hidden;
    margin-bottom: 25px;
}
.tagline-item {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    line-height: 48px;
    animation: slideTaglines 12s infinite;
}
@keyframes slideTaglines {
    0%, 25% { transform: translateY(0); }
    30%, 55% { transform: translateY(-48px); }
    60%, 85% { transform: translateY(-96px); }
    90%, 100% { transform: translateY(0); }
}
.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}
.hero-cta .btn {
    padding: 14px 28px;
    font-size: 1.05rem;
}
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
}
.stat-item h4 {
    font-size: 2.2rem;
    color: var(--accent);
    font-weight: 800;
    margin-bottom: 2px;
}
.stat-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}
.hero-slider-nav {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 4;
    display: flex;
    gap: 8px;
}
.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
}
.slider-dot.active {
    background-color: white;
    transform: scale(1.3);
}
/* Sections Common Styles */
section {
    padding: 100px 0;
}
.section-bg-gray {
    background-color: var(--background);
}
.section-bg-white {
    background-color: var(--surface);
}
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}
.section-header .sub {
    color: var(--secondary);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: block;
}
.section-header h3 {
    font-size: 2.5rem;
    line-height: 1.25;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}
.section-header h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--primary);
    border-radius: 2px;
}
.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}
/* Welcome Section */
.welcome-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}
.welcome-text h4 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}
.welcome-text p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 20px;
}
.welcome-highlight {
    background-color: rgba(15, 46, 92, 0.05);
    border-left: 4px solid var(--primary);
    padding: 16px 20px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--primary);
    font-weight: 500;
    margin: 25px 0;
}
.welcome-image-wrapper {
    position: relative;
}
.welcome-img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 8px solid white;
    transform: rotate(1deg);
    transition: var(--transition-normal);
}
.welcome-img:hover {
    transform: rotate(0) scale(1.02);
}
.welcome-image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background: radial-gradient(var(--primary-light) 20%, transparent 20%);
    background-size: 10px 10px;
    opacity: 0.3;
    z-index: -1;
}
.welcome-badge {
    position: absolute;
    bottom: -20px;
    right: -10px;
    background: linear-gradient(135deg, var(--secondary), #15803d);
    color: white;
    padding: 15px 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    text-align: center;
    z-index: 10;
}
.welcome-badge span {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}
/* Why Choose Us Section */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.why-card {
    background-color: var(--surface);
    border: 1px solid var(--border);
    padding: 30px 24px;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}
.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: transparent;
    transition: var(--transition-fast);
}
.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(var(--primary-rgb), 0.1);
}
.why-card:hover::before {
    background-color: var(--primary);
}
.why-card.highlighted:hover::before {
    background-color: var(--secondary);
}
.why-icon {
    width: 54px;
    height: 54px;
    border-radius: var(--radius-sm);
    background-color: rgba(15, 46, 92, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 24px;
    transition: var(--transition-normal);
}
.why-card:hover .why-icon {
    background-color: var(--primary);
    color: white;
}
.why-card.highlighted .why-icon {
    background-color: rgba(22, 163, 74, 0.08);
    color: var(--secondary);
}
.why-card.highlighted:hover .why-icon {
    background-color: var(--secondary);
    color: white;
}
.why-icon svg {
    width: 28px;
    height: 28px;
}
.why-card h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    font-weight: 600;
}
.why-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}
/* Academics Section */
.academics-container {
    background-color: var(--surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    overflow: hidden;
}
.academics-tabs {
    display: flex;
    border-bottom: 1px solid var(--border);
    background-color: #f8fafc;
}
.academic-tab-btn {
    flex: 1;
    padding: 20px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-muted);
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    border-bottom: 3px solid transparent;
}
.academic-tab-btn:hover {
    color: var(--primary);
    background-color: rgba(15, 46, 92, 0.02);
}
.academic-tab-btn.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    background-color: var(--surface);
}
.academics-content {
    padding: 50px;
}
.academic-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}
.academic-pane.active {
    display: block;
}
.academic-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}
.academic-text h4 {
    font-size: 2rem;
    margin-bottom: 15px;
}
.academic-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 30px;
}
.academic-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.ac-feature {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.ac-feature svg {
    color: var(--secondary);
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    margin-top: 3px;
}
.ac-feature h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}
.ac-feature p {
    font-size: 0.88rem;
    color: var(--text-muted);
}
.academic-photo-wrapper {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.academic-photo {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition-slow);
}
.academic-photo-wrapper:hover .academic-photo {
    transform: scale(1.05);
}
/* Staff Excellence Section */
.staff-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 60px;
    align-items: center;
}
.staff-info h4 {
    font-size: 2rem;
    margin-bottom: 20px;
}
.staff-info p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 25px;
}
.staff-checklist {
    list-style: none;
    margin-bottom: 35px;
}
.staff-checklist li {
    display: flex;
    gap: 12px;
    align-items: center;
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 500;
}
.staff-checklist li svg {
    color: var(--primary);
    width: 20px;
    height: 20px;
}
.staff-quote {
    background-color: rgba(217, 119, 6, 0.05);
    border-left: 4px solid var(--accent);
    padding: 20px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin-top: 30px;
}
.staff-quote p {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 8px;
    line-height: 1.5;
}
.staff-quote span {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.staff-image-card {
    position: relative;
}
.staff-main-img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 6px solid white;
}
.staff-accent-box {
    position: absolute;
    top: -25px;
    right: -25px;
    width: 140px;
    height: 140px;
    border: 4px solid var(--primary);
    border-radius: var(--radius-md);
    z-index: -1;
    opacity: 0.5;
}
/* Infrastructure and Atmosphere */
.infra-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.infra-desc-pane {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.infra-desc-pane h4 {
    font-size: 2rem;
    margin-bottom: 20px;
}
.infra-desc-pane p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 30px;
}
.infra-features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}
.infra-feat-item {
    background: white;
    padding: 16px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    display: flex;
    gap: 12px;
    align-items: center;
}
.infra-feat-item svg {
    color: var(--primary);
    width: 22px;
    height: 22px;
}
.infra-feat-item span {
    font-weight: 600;
    font-size: 0.95rem;
}
.infra-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.gallery-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 220px;
}
.gallery-card.large {
    grid-column: span 2;
    height: 280px;
}
.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px 20px 20px;
    background: linear-gradient(to top, rgba(15, 46, 92, 0.9), transparent);
    color: white;
    transform: translateY(100%);
    transition: var(--transition-normal);
}
.gallery-card:hover img {
    transform: scale(1.08);
}
.gallery-card:hover .gallery-overlay {
    transform: translateY(0);
}
.gallery-overlay h5 {
    color: white;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 4px;
}
.gallery-overlay p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}
/* Games & Activities Section */
.games-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 60px;
    align-items: center;
}
.games-content h4 {
    font-size: 2rem;
    margin-bottom: 20px;
}
.games-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 30px;
}
.games-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
.game-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.game-item-number {
    width: 36px;
    height: 36px;
    background-color: rgba(22, 163, 74, 0.1);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    flex-shrink: 0;
    font-family: 'Outfit', sans-serif;
}
.game-item-text h5 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}
.game-item-text p {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 0;
}
.games-image-wrapper {
    position: relative;
}
.games-img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 6px solid white;
    transform: rotate(-1deg);
}
.games-image-wrapper::before {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: radial-gradient(var(--secondary) 20%, transparent 20%);
    background-size: 10px 10px;
    opacity: 0.25;
    z-index: -1;
}
/* Testimonials Section */
.testimonials-section {
    background-color: var(--primary);
    color: white;
    overflow: hidden;
    position: relative;
}
.testimonials-section h2, 
.testimonials-section h3,
.testimonials-section .section-header p {
    color: white;
}
.testimonials-section .section-header h3::after {
    background-color: var(--accent);
}
.testimonials-section .section-header .sub {
    color: var(--accent);
}
.testimonials-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 0 40px;
}
.testimonials-slider {
    position: relative;
    min-height: 280px;
}
.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: scale(0.96);
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
}
.testimonial-slide.active {
    opacity: 1;
    transform: scale(1);
    position: relative;
    pointer-events: auto;
}
.testimonial-card {
    background-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
}
.quote-icon {
    width: 48px;
    height: 48px;
    color: rgba(217, 119, 6, 0.4);
    margin: 0 auto 20px auto;
}
.rating-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 20px;
    color: var(--accent);
}
.rating-stars svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}
.testimonial-text {
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.95);
}
.testimonial-author h5 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 2px;
}
.testimonial-author p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 10;
}
.slider-arrow:hover {
    background-color: var(--accent);
    border-color: var(--accent);
    transform: translateY(-50%) scale(1.05);
}
.arrow-prev {
    left: -20px;
}
.arrow-next {
    right: -20px;
}
/* Location Section */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: stretch;
}
.location-map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    min-height: 400px;
    background-color: #e2e8f0;
}
.location-map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}
.location-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.location-details h4 {
    font-size: 2rem;
    margin-bottom: 20px;
}
.location-details p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 30px;
}
.location-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
.loc-card {
    background-color: var(--surface);
    border: 1px solid var(--border);
    padding: 24px;
    border-radius: var(--radius-md);
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.loc-card-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background-color: rgba(15, 46, 92, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}
.loc-card-icon svg {
    width: 22px;
    height: 22px;
}
.loc-card-text h5 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}
.loc-card-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.5;
}
/* Admission / Enquiry Section */
.enquiry-card-wrapper {
    background-color: var(--surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
}
.enquiry-info-side {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.enquiry-info-top h4 {
    color: white;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}
.enquiry-info-top p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    margin-bottom: 30px;
}
.enquiry-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.enquiry-step {
    display: flex;
    gap: 16px;
    align-items: center;
}
.step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: white;
}
.step-text {
    font-weight: 600;
    font-size: 0.95rem;
}
.enquiry-info-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 25px;
    margin-top: 40px;
}
.enquiry-info-footer p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 4px;
}
.enquiry-info-phone {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent);
}
.enquiry-form-side {
    padding: 50px;
}
.form-title {
    font-size: 1.6rem;
    margin-bottom: 30px;
    font-weight: 700;
}
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.form-group.full-width {
    grid-column: span 2;
}
.form-group label {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text-dark);
}
.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background-color: #f8fafc;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: var(--transition-fast);
    outline: none;
}
.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: var(--primary);
    background-color: white;
    box-shadow: 0 0 0 3px rgba(15, 46, 92, 0.08);
}
.form-group textarea {
    height: 110px;
    resize: none;
}
.enquiry-submit-btn {
    width: 100%;
    margin-top: 10px;
    padding: 14px;
    font-size: 1.05rem;
}
/* Form success message */
.form-success-alert {
    display: none;
    background-color: rgba(22, 163, 74, 0.1);
    border: 1px solid var(--secondary);
    color: #15803d;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    margin-bottom: 25px;
    font-weight: 500;
    align-items: center;
    gap: 12px;
    animation: fadeIn 0.4s ease;
}
.form-success-alert svg {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
}
/* Footer Styles */
footer {
    background-color: #0c1e36;
    color: #cbd5e1;
    padding: 80px 0 30px 0;
    border-top: 4px solid var(--primary);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.7fr 1.2fr;
    gap: 50px;
    margin-bottom: 50px;
}
.footer-brand .logo-icon {
    background: linear-gradient(135deg, var(--accent), #b45309);
    box-shadow: 0 4px 10px rgba(var(--accent-rgb), 0.3);
}
.footer-brand h1 {
    color: white;
}
.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 20px 0;
    color: #94a3b8;
}
.social-links {
    display: flex;
    gap: 12px;
}
.social-btn {
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-fast);
}
.social-btn:hover {
    background-color: var(--accent);
    color: white;
    border-color: var(--accent);
    transform: translateY(-3px);
}
.social-btn svg {
    width: 18px;
    height: 18px;
}
.footer-links h4 {
    color: white;
    font-size: 1.15rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 10px;
}
.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background-color: var(--accent);
    border-radius: 1.5px;
}
.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-links ul li a {
    font-size: 0.9rem;
    color: #94a3b8;
}
.footer-links ul li a:hover {
    color: white;
    padding-left: 5px;
}
.footer-contact h4 {
    color: white;
    font-size: 1.15rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 10px;
}
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background-color: var(--accent);
    border-radius: 1.5px;
}
.footer-contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-size: 0.9rem;
    color: #94a3b8;
}
.footer-contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.footer-contact-item svg {
    color: var(--accent);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}
.footer-contact-item p {
    margin-bottom: 0;
}
.footer-contact-item a {
    color: #cbd5e1;
}
.footer-contact-item a:hover {
    color: white;
}
.whatsapp-footer-btn {
    display: inline-flex;
    align-items: center;
    background-color: #25d366;
    color: white;
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.88rem;
    gap: 8px;
    margin-top: 10px;
    box-shadow: 0 4px 6px rgba(37, 211, 102, 0.15);
    transition: var(--transition-normal);
}
.whatsapp-footer-btn:hover {
    background-color: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(37, 211, 102, 0.25);
    color: white;
}
.whatsapp-footer-btn svg {
    width: 18px;
    height: 18px;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #64748b;
}
.footer-bottom p {
    margin-bottom: 0;
}
/* Floating Actions */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.floating-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    cursor: pointer;
}
.floating-btn:hover {
    transform: scale(1.1) translateY(-3px);
}
.floating-whatsapp {
    background-color: #25d366;
}
.floating-whatsapp:hover {
    background-color: #128c7e;
}
.floating-whatsapp svg {
    width: 28px;
    height: 28px;
}
/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
/* Responsive Media Queries */
@media (max-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .academics-content {
        padding: 30px;
    }
    
    .academic-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .academic-photo-wrapper {
        order: -1;
    }
    
    .academic-photo {
        height: 260px;
    }
    
    .infra-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-brand {
        grid-column: span 2;
    }
}
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .nav-container {
        padding: 12px 20px;
    }
    
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-md);
        display: none;
        padding: 20px;
    }
    
    nav.active {
        display: block;
        animation: fadeIn 0.3s ease;
    }
    
    nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    nav ul li a {
        display: block;
        padding: 10px 0;
        font-size: 1.05rem;
    }
    
    .nav-actions {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .tagline-item {
        font-size: 1.15rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .welcome-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .welcome-image-wrapper {
        max-width: 450px;
        margin: 0 auto;
    }
    
    .staff-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .staff-image-card {
        max-width: 450px;
        margin: 0 auto;
        order: -1;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .games-image-wrapper {
        max-width: 450px;
        margin: 0 auto;
        order: -1;
    }
    
    .testimonial-card {
        padding: 24px;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .location-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .location-map-container {
        min-height: 300px;
    }
    
    .enquiry-card-wrapper {
        grid-template-columns: 1fr;
    }
    
    .enquiry-info-side {
        padding: 30px 24px;
    }
    
    .enquiry-form-side {
        padding: 30px 24px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    section {
        padding: 60px 0;
    }
}
@media (max-width: 480px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .academics-tabs {
        flex-direction: column;
    }
    
    .academic-tab-btn {
        border-bottom: none;
        border-left: 3px solid transparent;
        text-align: left;
        padding: 15px 20px;
    }
    
    .academic-tab-btn.active {
        border-bottom: none;
        border-left-color: var(--primary);
    }
    
    .infra-features-list {
        grid-template-columns: 1fr;
    }
    
    .infra-gallery {
        grid-template-columns: 1fr;
    }
    
    .gallery-card.large {
        grid-column: span 1;
    }
}