* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #004aad;
    --color-primary-soft: #e0edff;
    --color-accent: #ffb703;
    --color-bg: #f5f7fb;
    --color-surface: #ffffff;
    --color-text: #111827;
    --color-muted: #6b7280;
    --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.12);
    --radius-lg: 18px;
    --radius-md: 12px;
    --radius-pill: 999px;
    --transition-fast: 0.25s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--color-text);
    background: radial-gradient(circle at top, #e0edff 0, #f5f7fb 45%, #ffffff 100%);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Global Animations and Effects */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeIn 0.8s ease forwards;
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: fadeInLeft 0.8s ease forwards;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    animation: fadeInRight 0.8s ease forwards;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 0.8s ease forwards;
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    animation: scaleIn 0.6s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Staggered animations */
.animate-stagger > * {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.animate-stagger > *:nth-child(1) { animation-delay: 0.1s; }
.animate-stagger > *:nth-child(2) { animation-delay: 0.2s; }
.animate-stagger > *:nth-child(3) { animation-delay: 0.3s; }
.animate-stagger > *:nth-child(4) { animation-delay: 0.4s; }
.animate-stagger > *:nth-child(5) { animation-delay: 0.5s; }
.animate-stagger > *:nth-child(6) { animation-delay: 0.6s; }
.animate-stagger > *:nth-child(7) { animation-delay: 0.7s; }
.animate-stagger > *:nth-child(8) { animation-delay: 0.8s; }

/* Animated Backgrounds */
.animated-bg {
    position: relative;
    overflow: hidden;
}

.animated-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(37, 99, 235, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* Floating particles background */
.particles-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: rgba(37, 99, 235, 0.6);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    animation: float 6s infinite ease-in-out;
}

.particle:nth-child(1) {
    width: 4px;
    height: 4px;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.particle:nth-child(2) {
    width: 6px;
    height: 6px;
    left: 30%;
    animation-delay: 2s;
    animation-duration: 7s;
}

.particle:nth-child(3) {
    width: 3px;
    height: 3px;
    left: 50%;
    animation-delay: 4s;
    animation-duration: 9s;
}

.particle:nth-child(4) {
    width: 5px;
    height: 5px;
    left: 70%;
    animation-delay: 1s;
    animation-duration: 6s;
}

.particle:nth-child(5) {
    width: 4px;
    height: 4px;
    left: 90%;
    animation-delay: 3s;
    animation-duration: 8s;
}

@keyframes float {
    0%, 100% {
        opacity: 0;
        transform: translateY(100px) scale(0);
    }
    10%, 90% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-50px) scale(1.2);
    }
}

/* Gradient animation */
.gradient-animation {
    background: linear-gradient(270deg, #2563eb, #004aad, #2563eb);
    background-size: 600% 600%;
    animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Pulse animation */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

/* Bounce animation */
.bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

/* Parallax scrolling effects */
.parallax {
    position: relative;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
    will-change: transform;
    transform: translateY(0);
    transition: transform 0.5s ease-out;
}

.parallax-slow {
    transform: translateY(var(--scroll-y, 0) * 0.5);
}

.parallax-medium {
    transform: translateY(var(--scroll-y, 0) * 0.3);
}

.parallax-fast {
    transform: translateY(var(--scroll-y, 0) * 0.1);
}

/* Scroll reveal animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.320, 1);
}

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

.scroll-reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.320, 1);
}

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

.scroll-reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.320, 1);
}

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

.scroll-reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.320, 1);
}

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

/* Animated text effects */
.typewriter {
    overflow: hidden;
    border-right: 3px solid #2563eb;
    white-space: nowrap;
    animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: #2563eb; }
}

/* Glitch text effect */
.glitch {
    position: relative;
    color: #2563eb;
    font-size: 2rem;
    font-weight: bold;
    text-transform: uppercase;
    text-shadow: 0.05em 0 0 rgba(255, 0, 0, 0.75),
                -0.025em -0.05em 0 rgba(0, 255, 0, 0.75),
                0.025em 0.05em 0 rgba(0, 0, 255, 0.75);
    animation: glitch 1s linear infinite;
}

@keyframes glitch {
    0%, 100% {
        text-shadow: 0.05em 0 0 rgba(255, 0, 0, 0.75),
                    -0.05em -0.025em 0 rgba(0, 255, 0, 0.75),
                    0.025em 0.05em 0 rgba(0, 0, 255, 0.75);
    }
    14% {
        text-shadow: 0.05em 0 0 rgba(255, 0, 0, 0.75),
                    -0.05em -0.025em 0 rgba(0, 255, 0, 0.75),
                    0.025em 0.05em 0 rgba(0, 0, 255, 0.75);
    }
    15% {
        text-shadow: -0.05em -0.025em 0 rgba(255, 0, 0, 0.75),
                    0.025em 0.025em 0 rgba(0, 255, 0, 0.75),
                    -0.05em -0.05em 0 rgba(0, 0, 255, 0.75);
    }
    49% {
        text-shadow: -0.05em -0.025em 0 rgba(255, 0, 0, 0.75),
                    0.025em 0.025em 0 rgba(0, 255, 0, 0.75),
                    -0.05em -0.05em 0 rgba(0, 0, 255, 0.75);
    }
    50% {
        text-shadow: 0.025em 0.05em 0 rgba(255, 0, 0, 0.75),
                    0.05em 0 0 rgba(0, 255, 0, 0.75),
                    0 -0.05em 0 rgba(0, 0, 255, 0.75);
    }
    99% {
        text-shadow: 0.025em 0.05em 0 rgba(255, 0, 0, 0.75),
                    0.05em 0 0 rgba(0, 255, 0, 0.75),
                    0 -0.05em 0 rgba(0, 0, 255, 0.75);
    }
}

/* Wave text animation */
.wave-text span {
    display: inline-block;
    animation: wave 2s ease-in-out infinite;
    animation-delay: calc(0.1s * var(--i));
}

@keyframes wave {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Neon text effect */
.neon-text {
    color: #fff;
    text-shadow: 0 0 10px #fff,
                 0 0 20px #fff,
                 0 0 30px #2563eb,
                 0 0 40px #2563eb,
                 0 0 50px #2563eb,
                 0 0 60px #2563eb,
                 0 0 70px #2563eb;
    animation: neon-flicker 1.5s infinite alternate;
}

@keyframes neon-flicker {
    0%, 100% {
        text-shadow: 0 0 10px #fff,
                     0 0 20px #fff,
                     0 0 30px #2563eb,
                     0 0 40px #2563eb,
                     0 0 50px #2563eb,
                     0 0 60px #2563eb,
                     0 0 70px #2563eb;
    }
    50% {
        text-shadow: 0 0 5px #fff,
                     0 0 10px #fff,
                     0 0 15px #2563eb,
                     0 0 20px #2563eb,
                     0 0 25px #2563eb,
                     0 0 30px #2563eb,
                     0 0 35px #2563eb;
    }
}

/* Loading animations */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2563eb, #004aad);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    color: white;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.loader-text {
    font-size: 1.2rem;
    font-weight: 500;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Skeleton loading animation */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Page transitions */
.page-transition {
    animation: pageFadeIn 0.8s ease-out;
}

@keyframes pageFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover lift effect */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

.container {
    width: min(1120px, 100% - 3rem);
    margin-inline: auto;
}

.section {
    padding: 4.5rem 0;
}

.section-alt {
    background: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(147, 51, 234, 0.03) 0%, transparent 50%),
        linear-gradient(135deg, #f8fafc, #f1f5f9);
    position: relative;
    overflow: hidden;
}

.section-alt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 75% 75%, rgba(147, 51, 234, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

/* Special background for Teaching-Learning Approach section */
#teaching-learning {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

#teaching-learning::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

@keyframes teachingPulse {
    0%, 100% { 
        opacity: 0.6;
        transform: scale(1);
    }
    50% { 
        opacity: 0.9;
        transform: scale(1.05);
    }
}

/* Enhanced approach highlights for teaching section */
#teaching-learning .approach-highlights {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    margin-top: 2rem;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* Light text for teaching section */
#teaching-learning .section-title,
#teaching-learning .section-intro,
#teaching-learning h3,
#teaching-learning p,
#teaching-learning h4 {
    color: #1e293b;
    text-shadow: none;
}

/* Light background for Study Habits section */
.info-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(147, 51, 234, 0.03) 0%, transparent 50%);
    animation: studyPulse 10s ease-in-out infinite;
    pointer-events: none;
}

@keyframes studyPulse {
    0%, 100% { 
        opacity: 0.3;
        transform: scale(1);
    }
    50% { 
        opacity: 0.6;
        transform: scale(1.02);
    }
}

/* Light text for info card */
.info-card h3,
.info-card p,
.info-card h4 {
    color: #1e293b;
    text-shadow: none;
}

/* Light culture items */
.culture-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.8) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.culture-item:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.15),
        0 0 25px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.3);
}

/* Light text for culture items */
.culture-item h4,
.culture-item p {
    color: #1e293b;
    text-shadow: none;
}

/* Light method cards for teaching section */
.method-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.8) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.method-card:hover {
    transform: translateY(-8px) scale(1.05);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.15),
        0 0 30px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.3);
}

/* Light text for method cards */
.method-card h4,
.method-card p {
    color: #1e293b;
    text-shadow: none;
}


/* Teaching Methods Grid */
.teaching-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.method-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.8) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.method-card:hover {
    transform: translateY(-8px) scale(1.05);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

.method-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.2rem;
    color: white;
}

.method-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.method-card p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Culture Grid */
.culture-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.culture-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Assessment Grid */
.assessment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.assessment-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.8) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.assessment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.card-header i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.card-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
}

.assessment-card ul {
    list-style: none;
    padding: 0;
}

.assessment-card li {
    padding: 0.8rem 0;
    color: #475569;
    position: relative;
    padding-left: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.assessment-card li:last-child {
    border-bottom: none;
}

.assessment-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
}

/* Activities Grid */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.activity-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.8) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.activity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

.activity-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: white;
}

.activity-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.activity-card p {
    color: #64748b;
    line-height: 1.5;
}

/* Facilities Grid */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.facility-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.8) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.facility-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

.facility-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: white;
}

.facility-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.facility-card p {
    color: #64748b;
    line-height: 1.5;
}

/* Admission Timeline */
.admission-timeline {
    position: relative;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.admission-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #3b82f6, #60a5fa);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: right;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.timeline-content {
    flex: 1;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.8) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin: 0 3rem;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

.timeline-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.timeline-content p {
    color: #64748b;
    line-height: 1.5;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #60a5fa 100%);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.cta-content {
    position: relative;
    z-index: 2;
    color: white;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-buttons .btn-primary {
    background: white;
    color: #3b82f6;
    font-weight: 600;
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    font-weight: 600;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: #3b82f6;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    
    .hero-stats .stat-item {
        padding: 1.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .teaching-methods,
    .assessment-grid,
    .activities-grid,
    .facilities-grid {
        grid-template-columns: 1fr;
    }
    
    .culture-items {
        grid-template-columns: 1fr;
    }
    
    .admission-timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start !important;
        margin-left: 60px;
    }
    
    .timeline-icon {
        left: 20px;
        transform: translateX(-50%);
    }
    
    .timeline-content {
        text-align: left !important;
        margin: 0 0 0 3rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 200px;
    }
}

/* Premium Animations and Effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(59, 130, 246, 0.6);
    }
}

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

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Enhanced Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.320, 1);
}

.reveal.fade-up {
    transform: translateY(30px);
}

.reveal.fade-left {
    transform: translateX(-30px);
}

.reveal.fade-right {
    transform: translateX(30px);
}

.reveal.scale {
    transform: scale(0.9);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* Premium Hover Effects */
.premium-hover {
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}

.premium-hover:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

/* Loading Animation */
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(59, 130, 246, 0.1);
    border-top: 3px solid #3b82f6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Shimmer Effect */
.shimmer {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

/* Premium Button Effects */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

/* Enhanced Navigation */
.navbar {
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Parallax Effect */
.parallax {
    transform: translateZ(0);
    will-change: transform;
}

/* Enhanced Footer */
.footer {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
}

/* Enhanced Card Header */
.card-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.card-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.class-range {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.card-body h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 1rem;
}

.subject-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tag {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    color: #0369a1;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid #bae6fd;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: #4b5563;
}

.feature i {
    color: #10b981;
    font-size: 1rem;
}

/* Teaching Grid */
.teaching-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.teaching-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.teaching-card:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.12) 100%);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.5),
        0 0 25px rgba(59, 130, 246, 0.4);
    border-color: rgba(59, 130, 246, 0.4);
}

.teaching-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #34d399, #10b981);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: white;
}

.teaching-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.teaching-card p {
    color: #e2e8f0;
    font-size: 0.95rem;
    line-height: 1.6;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

/* Methods Section */
.methods-section {
    margin-top: 3rem;
}

.methods-section h3 {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

/* Culture Grid */
.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.culture-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.culture-card:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.12) 100%);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.5),
        0 0 25px rgba(59, 130, 246, 0.4);
    border-color: rgba(59, 130, 246, 0.4);
}

.culture-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: white;
}

.culture-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.culture-card p {
    color: #e2e8f0;
    font-size: 0.95rem;
    line-height: 1.6;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

/* Assessment Grid */
.assessment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.assessment-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.assessment-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.15),
        0 0 30px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.3);
}

.assessment-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.assessment-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
}

.assessment-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
}

.assessment-types, .support-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.assessment-type, .support-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.assessment-type i, .support-feature i {
    color: #3b82f6;
    font-size: 1.1rem;
}

.assessment-type span, .support-feature span {
    color: #374151;
    font-weight: 500;
}

/* Parent Communication */
.parent-communication {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
}

.parent-communication h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.comm-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.comm-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.comm-method:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.12) 100%);
    border-color: rgba(59, 130, 246, 0.3);
}

.comm-method i {
    font-size: 1.5rem;
    color: #3b82f6;
}

.comm-method span {
    color: #ffffff;
    font-weight: 500;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

/* Hero Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.particle-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.particle-2 {
    width: 60px;
    height: 60px;
    top: 20%;
    right: 15%;
    animation-delay: 1s;
}

.particle-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

.particle-4 {
    width: 40px;
    height: 40px;
    top: 50%;
    right: 10%;
    animation-delay: 3s;
}

.particle-5 {
    width: 70px;
    height: 70px;
    bottom: 10%;
    right: 30%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.1;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.2;
    }
}

.section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #0f172a;
}

.section-intro {
    max-width: 600px;
    color: var(--color-muted);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.25rem 0.9rem;
    border-radius: var(--radius-pill);
    background: rgba(0, 74, 173, 0.08);
    color: var(--color-primary);
    font-size: 0.8rem;
    font-weight: 500;
}

/* Header / Navigation */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(14px);
    background: linear-gradient(to right, rgba(255, 255, 255, 0.9), rgba(240, 249, 255, 0.95));
    border-bottom: 1px solid rgba(148, 163, 184, 0.3);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.brand-acronym {
    width: 42px;
    height: 42px;
    border-radius: 1.1rem;
    background: radial-gradient(circle at 20% 0, #60a5fa, #004aad);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    letter-spacing: 0.08em;
    font-size: 0.85rem;
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.35);
}

.brand-acronym img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: inherit;
}

.brand-text {
    display: flex;
    flex-direction: column;
    font-size: 0.9rem;
}

.brand-text span:first-child {
    font-weight: 600;
}

.brand-location {
    font-size: 0.75rem;
    color: var(--color-muted);
}

/* Professional Navigation Design */
.nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    font-size: 0.95rem;
}

.nav-links a {
    position: relative;
    color: #1e293b;
    font-weight: 500;
    padding: 0.5rem 0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: #2563eb;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #2563eb;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: #2563eb;
    font-weight: 600;
}

/* Professional Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: #1e293b;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}



/* Hero */

.hero {
    position: relative;
    padding: 5.5rem 0 4.5rem;
    background-image: linear-gradient(to right, rgba(15, 23, 42, 0.86), rgba(15, 23, 42, 0.5)),
        url("Images/APS School Head View.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #f9fafb;
}

.hero-container {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: center;
}

.hero-container.hero-single {
    min-height: clamp(380px, 70vh, 520px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.hero-heading {
    font-size: clamp(2.4rem, 4vw, 3rem);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-shadow: 0 18px 45px rgba(0, 0, 0, 0.75);
}

.hero-quote {
    margin-top: 1rem;
    max-width: 520px;
    font-size: 0.98rem;
    font-weight: 400;
    color: #e5e7eb;
}

.hero-btn-main {
    margin-top: 1.7rem;
}

.school-badge {
    margin-top: 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
}

.school-badge-logo {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background: #ffffff;
    padding: 0.25rem;
    object-fit: contain;
    box-shadow: 0 0 0 1px rgba(148, 163, 184, 0.4);
}

.school-badge-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.school-badge-text span:first-child {
    font-size: 0.85rem;
    font-weight: 600;
}

.school-badge-text span:last-child {
    font-size: 0.78rem;
    color: var(--color-muted);
}

.hero-subtitle {
    color: var(--color-muted);
    max-width: 600px;
    margin-bottom: 1.2rem;
}

.hero-highlights {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    color: #1f2937;
    margin-bottom: 1.4rem;
    font-size: 0.95rem;
}

.hero-highlights i {
    color: var(--color-primary);
    margin-right: 0.4rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.7rem 1.4rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    transform: translateY(0);
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:active::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb, #004aad);
    color: #ffffff;
    box-shadow: 0 14px 35px rgba(37, 99, 235, 0.55);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.7);
    background: linear-gradient(135deg, #1d4ed8, #003d82);
}

.btn-primary:active {
    transform: translateY(0) scale(0.98);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(148, 163, 184, 0.7);
    color: #0f172a;
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: #0f172a;
    color: #ffffff;
    border-color: #0f172a;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.3);
}

.btn-outline:active {
    transform: translateY(0) scale(0.98);
}

.hero-visual {
    display: flex;
    justify-content: center;
}

.hero-card {
    position: relative;
    border-radius: 1.6rem;
    overflow: hidden;
    background: radial-gradient(circle at top left, var(--color-primary), #1f2937);
    box-shadow: var(--shadow-soft);
}

.hero-image-wrap {
    position: relative;
    overflow: hidden;
}

.hero-image-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.55), rgba(15, 23, 42, 0.1));
    z-index: 1;
}

.hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    transition: transform 3.5s ease-out;
}

.hero-card:hover img {
    transform: scale(1.1);
}

.hero-card-badge {
    position: absolute;
    left: 1.3rem;
    bottom: 1.3rem;
    right: 1.3rem;
    padding: 0.8rem 1rem;
    border-radius: 1.2rem;
    background: rgba(15, 23, 42, 0.88);
    color: #e5e7eb;
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    font-size: 0.85rem;
}

.hero-card-badge span:first-child {
    font-weight: 600;
}

/* Cards & grids */

.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.4rem;
    margin-top: 2.4rem;
}

.highlights-grid {
    margin-top: 2.1rem;
}

.feature-card {
    padding: 1.4rem 1.3rem;
    border-radius: var(--radius-md);
    background: var(--color-surface);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(148, 163, 184, 0.25);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.10);
    border-color: rgba(37, 99, 235, 0.55);
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(249, 115, 22, 0.15));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1d4ed8;
    margin-bottom: 0.9rem;
}

.feature-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.35rem;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--color-muted);
}

.feature-kicker {
    display: inline-block;
    margin-bottom: 0.5rem;
    padding: 0.15rem 0.7rem;
    border-radius: 999px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #1d4ed8;
    background: rgba(191, 219, 254, 0.9);
}

.two-column {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem;
    align-items: flex-start;
}

.info-list {
    display: grid;
    gap: 1.4rem;
}

.info-item h3 {
    margin-bottom: 0.4rem;
}

.info-item p {
    font-size: 0.92rem;
    color: var(--color-muted);
}

.objectives-list {
    list-style: none;
    display: grid;
    gap: 0.6rem;
    font-size: 0.95rem;
}

.objectives-list li::before {
    content: "●";
    margin-right: 0.45rem;
    color: var(--color-primary);
    font-size: 0.6rem;
}

.info-card,
.highlight-box {
    padding: 1.6rem 1.5rem;
    border-radius: var(--radius-lg);
    background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.08), #ffffff);
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    font-size: 0.93rem;
}

.info-card h3,
.highlight-box h3 {
    margin-bottom: 0.7rem;
}

.glance-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 2.1rem;
}

.glance-card {
    padding: 1.3rem 1.2rem;
    border-radius: 1.4rem;
    background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.14), #ffffff);
    border: 1px solid rgba(148, 163, 184, 0.45);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.glance-card h3 {
    font-size: 1.02rem;
    margin-bottom: 0.6rem;
}

.glance-list {
    list-style: none;
    display: grid;
    gap: 0.4rem;
    font-size: 0.9rem;
    color: var(--color-muted);
}

.glance-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
}

.glance-list i {
    color: #2563eb;
    margin-top: 0.15rem;
}

.glance-objectives {
    margin-top: 2rem;
}

/* Page Graphics Styling */
.hero-graphic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.floating-icons {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-icon {
    position: absolute;
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 
        0 0 20px rgba(59, 130, 246, 0.8),
        0 0 40px rgba(59, 130, 246, 0.4),
        0 0 60px rgba(59, 130, 246, 0.2);
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.5));
}

.hero-icon.float-1 { 
    top: 20%; left: 10%; 
    animation-delay: 0s;
    color: rgba(59, 130, 246, 0.9);
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.8);
}
.hero-icon.float-2 { 
    top: 30%; right: 15%; 
    animation-delay: 1s;
    color: rgba(147, 51, 234, 0.9);
    text-shadow: 0 0 20px rgba(147, 51, 234, 0.8);
}
.hero-icon.float-3 { 
    top: 60%; left: 20%; 
    animation-delay: 2s;
    color: rgba(236, 72, 153, 0.9);
    text-shadow: 0 0 20px rgba(236, 72, 153, 0.8);
}
.hero-icon.float-4 { 
    top: 50%; right: 10%; 
    animation-delay: 3s;
    color: rgba(34, 197, 94, 0.9);
    text-shadow: 0 0 20px rgba(34, 197, 94, 0.8);
}
.hero-icon.float-5 { 
    top: 70%; right: 25%; 
    animation-delay: 4s;
    color: rgba(251, 146, 60, 0.9);
    text-shadow: 0 0 20px rgba(251, 146, 60, 0.8);
}

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

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(15px);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.stat-item:hover {
    transform: translateY(-5px) scale(1.05);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(59, 130, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(59, 130, 246, 0.5);
}

.stat-item i {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    display: block;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.8);
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.5));
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-content {
    position: relative;
    z-index: 1;
}

.subject-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.subject-tag {
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.subject-tag:hover {
    background: rgba(59, 130, 246, 0.3);
    transform: scale(1.05);
}

.card-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #94a3b8;
    font-size: 0.9rem;
}

.feature-item i {
    color: #3b82f6;
    font-size: 1rem;
}

/* Culture Grid */
.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.culture-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.culture-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.culture-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.culture-text h4 {
    margin: 0 0 0.5rem 0;
    color: #ffffff;
    font-size: 1.1rem;
}

.culture-text p {
    margin: 0;
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Approach Highlights */
.approach-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #10b981, #3b82f6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.highlight-content h4 {
    margin: 0 0 0.5rem 0;
    color: #ffffff;
    font-size: 1.1rem;
}

.highlight-content p {
    margin: 0;
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Learning Methods */
.learning-methods {
    margin-top: 2rem;
}

.methods-title {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.method-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.method-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.method-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.method-card h4 {
    color: #ffffff;
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.method-card p {
    color: #94a3b8;
    margin: 0;
    font-size: 0.9rem;
}

/* Assessment Section */
.assessment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.assessment-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.assessment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.assessment-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.assessment-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.assessment-header h3 {
    color: #ffffff;
    margin: 0;
    font-size: 1.5rem;
}

.assessment-types, .support-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.assessment-item, .support-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.assessment-item:hover, .support-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.assessment-item i, .support-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.assessment-item h4, .support-content h4 {
    color: #ffffff;
    margin: 0 0 0.3rem 0;
    font-size: 1.1rem;
}

.assessment-item p, .support-content p {
    color: #94a3b8;
    margin: 0;
    font-size: 0.9rem;
}

/* Parent Communication */
.parent-communication {
    margin-top: 3rem;
}

.comm-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.comm-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981, #3b82f6);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    flex-shrink: 0;
}

.comm-content h3 {
    color: #ffffff;
    margin: 0 0 1.5rem 0;
    font-size: 1.5rem;
}

.comm-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.comm-method {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.comm-method:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: scale(1.05);
}

.comm-method i {
    color: #3b82f6;
    font-size: 1rem;
}

.comm-method span {
    color: #ffffff;
    font-size: 0.9rem;
}

/* Enhanced CTA Section */
.cta-graphics {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.floating-icons-cta {
    position: relative;
    width: 100%;
    height: 100%;
}

.cta-icon {
    position: absolute;
    font-size: 2rem;
    color: rgba(59, 130, 246, 0.2);
    animation: floatCta 8s ease-in-out infinite;
}

.cta-icon.float-cta-1 { top: 20%; left: 10%; animation-delay: 0s; }
.cta-icon.float-cta-2 { top: 30%; right: 15%; animation-delay: 2s; }
.cta-icon.float-cta-3 { top: 60%; left: 20%; animation-delay: 4s; }

@keyframes floatCta {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

.cta-content {
    text-align: center;
    margin-bottom: 2rem;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #94a3b8;
    font-size: 0.9rem;
}

.cta-feature i {
    color: #10b981;
    font-size: 1rem;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-actions .btn-primary {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    border: none;
}

.cta-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.cta-actions .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-actions .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.life-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 2.2rem;
}

.life-card {
    border-radius: 1.4rem;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.10);
    display: flex;
    flex-direction: column;
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
}

.life-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(168, 85, 247, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 1.4rem;
    z-index: 1;
}

.life-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.2);
    border-color: rgba(37, 99, 235, 0.5);
}

.life-card:hover::before {
    opacity: 1;
}

.life-card:hover .life-body {
    transform: translateY(-2px);
}

.life-image {
    position: relative;
    overflow: hidden;
}

.life-image img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    transform: scale(1.03);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.life-card:hover .life-image img {
    transform: scale(1.15);
}

.life-body {
    padding: 0.95rem 1.1rem 1.15rem;
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
}

.life-body h3 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.life-body p {
    font-size: 0.88rem;
    color: var(--color-muted);
}

/* Page hero */

.page-hero {
    padding: 5.2rem 0 3rem;
    background: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(147, 51, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(236, 72, 153, 0.08) 0%, transparent 60%),
        linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 75% 75%, rgba(147, 51, 234, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
    animation: heroPulse 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes heroPulse {
    0%, 100% { 
        opacity: 0.3;
        transform: scale(1);
    }
    50% { 
        opacity: 0.6;
        transform: scale(1.05);
    }
}

.page-hero .badge {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(147, 51, 234, 0.2));
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.page-hero h1 {
    font-size: clamp(2rem, 3vw, 2.5rem);
    margin-top: 0.8rem;
    color: #ffffff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.page-hero-subtitle {
    color: rgba(255, 255, 255, 0.8);
    max-width: 580px;
    margin-top: 0.4rem;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

/* Leadership cards */

.leader-card {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    padding: 1.4rem 1.3rem;
    border-radius: var(--radius-lg);
    background: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.3);
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.06);
}

.leader-card-alt {
    background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.08), #ffffff);
}

.leader-photo-wrap {
    width: 88px;
    height: 88px;
    border-radius: 24px;
    overflow: hidden;
    background: #e5e7eb;
    flex-shrink: 0;
}

.leader-info {
    font-size: 0.92rem;
}

.leader-role {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-muted);
    margin-bottom: 0.2rem;
}

.leader-name {
    font-size: 1.05rem;
    margin-bottom: 0.15rem;
}

.leader-qualifications {
    font-size: 0.85rem;
    color: var(--color-muted);
    margin-bottom: 0.4rem;
}

/* CTA section */

.section-cta {
    background: linear-gradient(135deg, #1d4ed8, #0f172a);
    color: #e5e7eb;
}

.section-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.section-cta h2 {
    font-size: 1.7rem;
    margin-bottom: 0.4rem;
}

.section-cta p {
    color: #d1d5db;
}

.section-cta .btn-outline {
    background: transparent;
    border-color: rgba(209, 213, 219, 0.7);
    color: #e5e7eb;
}

.section-cta .btn-outline:hover {
    background: #ffffff;
    color: #111827;
}

/* Gallery */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.8rem;
}

.gallery-item {
    border-radius: 1.1rem;
    overflow: hidden;
    background: #0b1120;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.18);
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
    transition: transform 1.7s ease-out, filter 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.12);
    filter: brightness(1.05);
}

.gallery-item figcaption {
    position: absolute;
    left: 0.7rem;
    right: 0.7rem;
    bottom: 0.7rem;
    padding: 0.45rem 0.6rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.88);
    color: #e5e7eb;
    font-size: 0.78rem;
    text-align: center;
}

.note-box {
    background: #eff6ff;
    border-radius: 1.1rem;
    border: 1px dashed rgba(37, 99, 235, 0.6);
    padding: 1.1rem 1.2rem;
    font-size: 0.9rem;
    color: #1e293b;
}

/* Contact */

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 2.8rem;
}

.contact-info p {
    font-size: 0.95rem;
    color: var(--color-muted);
    margin-bottom: 1.2rem;
}

.contact-info .btn {
    margin-top: 0.6rem;
}

.contact-form-wrap {
    padding: 1.7rem 1.5rem;
    border-radius: 1.4rem;
    background: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.3);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.contact-form {
    margin-top: 1.2rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.9rem;
}

.form-field label {
    font-weight: 500;
    color: #111827;
}

.form-field input,
.form-field textarea {
    padding: 0.55rem 0.75rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(148, 163, 184, 0.9);
    font: inherit;
    outline: none;
    background: #f9fafb;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.form-field input:focus,
.form-field textarea:focus {
    background: #ffffff;
    border-color: #2563eb;
    box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.4);
}

.form-note {
    margin-top: 0.6rem;
    font-size: 0.8rem;
    color: var(--color-muted);
}

.form-success {
    margin-top: 0.8rem;
    font-size: 0.88rem;
    color: #15803d;
}

/* Footer */

.site-footer {
    background: #020617;
    color: #e5e7eb;
    padding-top: 2.8rem;
    margin-top: 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 1fr));
    gap: 2.5rem;
    padding-bottom: 1.8rem;
}

.footer-col h3 {
    margin-bottom: 0.4rem;
}

.footer-col h4 {
    font-size: 0.95rem;
    margin-bottom: 0.7rem;
}

.footer-col p,
.footer-col a {
    font-size: 0.88rem;
    color: #9ca3af;
    display: block;
    margin-bottom: 0.25rem;
}

.footer-col a:hover {
    color: #e5e7eb;
}

.footer-col i {
    margin-right: 0.4rem;
}

.footer-bottom {
    border-top: 1px solid rgba(55, 65, 81, 0.85);
    padding: 0.9rem 0 1.1rem;
    text-align: center;
    font-size: 0.8rem;
    color: #6b7280;
}

/* Modern Footer Styles */
.footer-brand {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-logo {
    width: 50px;
    height: 50px;
    margin-right: 1rem;
    flex-shrink: 0;
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.footer-logo img:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.15);
}

.footer-brand h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: #f3f4f6;
}

.footer-tagline {
    margin: 0.25rem 0 0 0;
    font-size: 0.85rem;
    color: #9ca3af;
    font-style: italic;
}

.footer-info {
    margin-top: 1rem;
}

.footer-info p {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: #d1d5db;
}

.footer-info i {
    margin-right: 0.75rem;
    color: #60a5fa;
    width: 16px;
}

.contact-list p {
    margin-bottom: 0.75rem;
}

.contact-list a {
    display: flex;
    align-items: center;
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    font-size: 0.9rem;
}

.contact-list a:hover {
    color: #60a5fa;
    transform: translateX(3px);
}

.contact-list i {
    margin-right: 0.75rem;
    color: #60a5fa;
    width: 16px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    display: flex;
    align-items: center;
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    font-size: 0.9rem;
    padding: 0.25rem 0;
}

.footer-links a:hover {
    color: #60a5fa;
    transform: translateX(3px);
}

.footer-links i {
    margin-right: 0.75rem;
    color: #60a5fa;
    width: 16px;
}

.footer-col h4 {
    display: flex;
    align-items: center;
    font-size: 1rem;
    margin-bottom: 1.2rem;
    color: #f3f4f6;
    font-weight: 600;
}

.footer-col h4 i {
    margin-right: 0.75rem;
    color: #60a5fa;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-bottom-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #d1d5db;
}

.separator {
    color: #6b7280;
    font-size: 0.8rem;
}

.footer-bottom {
    border-top: 1px solid rgba(55, 65, 81, 0.85);
    padding: 1.2rem 0;
    text-align: center;
    font-size: 0.85rem;
    color: #9ca3af;
    background: rgba(17, 24, 39, 0.3);
    margin-top: 2rem;
}

/* Footer animation delays */
.footer-col:nth-child(1) { animation-delay: 0s; }
.footer-col:nth-child(2) { animation-delay: 0.1s; }
.footer-col:nth-child(3) { animation-delay: 0.2s; }

/* Responsive footer */
@media (max-width: 768px) {
    .footer-brand {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-logo {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .contact-list {
        text-align: center;
    }
}

/* Reveal animation */

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

.hero-text.reveal {
    transition-delay: 0.08s;
}

.hero-visual.reveal {
    transition-delay: 0.18s;
}

.reveal.fade-left {
    transform: translateX(-26px);
}

.reveal.fade-right {
    transform: translateX(26px);
}

.reveal.fade-up {
    transform: translateY(28px);
}

.reveal.zoom-in {
    transform: scale(0.9);
}

.reveal.in-view.fade-left,
.reveal.in-view.fade-right,
.reveal.in-view.fade-up {
    transform: translateX(0);
}

.reveal.in-view.zoom-in {
    transform: scale(1);
}

/* Section graphic accents */

.section,
.section-alt {
    position: relative;
    overflow: hidden;
}

#highlights::before,
#school-life::before,
#overview::before,
#leaders::before {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 30%, rgba(37, 99, 235, 0.16), transparent 60%);
    opacity: 0.85;
    filter: blur(1px);
    pointer-events: none;
}

#highlights::before {
    top: -60px;
    right: -80px;
}

/* ===================================
   ULTRA-MODERN FOOTER DESIGN
   =================================== */

.footer-wave {
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 50px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 50'%3E%3Cpath fill='%231f2937' fill-opacity='1' d='M0,25L60,21.7C120,19,240,13,360,13C480,13,600,19,720,20.8C840,23,960,21,1080,18.8C1200,17,1320,13,1380,11.7L1440,10L1440,50L1380,50C1320,50,1200,50,1080,50C960,50,840,50,720,50C600,50,480,50,360,50C240,50,120,50,60,50L0,50Z'%3E%3C/path%3E%3C/svg%3E") no-repeat;
    background-size: cover;
}

/* Ultra-Modern Footer Design */
.site-footer {
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 30%, #334155 60%, #475569 100%);
    color: #ffffff;
    padding: 0;
    overflow: hidden;
    margin-top: 4rem;
    box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.4);
}

.site-footer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 25%, rgba(59, 130, 246, 0.1) 50%, transparent 75%);
    animation: footerShimmer 10s linear infinite;
    pointer-events: none;
}

@keyframes footerShimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.site-footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(147, 51, 234, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(236, 72, 153, 0.1) 0%, transparent 70%);
    pointer-events: none;
    animation: pulse 4s ease-in-out infinite;
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 80"><path fill="%23f5f7fb" fill-opacity="1" d="M0,32L48,37.3C96,43,192,53,288,58.7C384,64,480,64,576,58.7C672,53,768,43,864,48C960,53,1056,75,1152,74.7C1248,75,1344,53,1392,42.7L1440,32L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"></path></svg>') no-repeat;
    background-size: cover;
    animation: wave 15s linear infinite;
}

@keyframes wave {
    0% { background-position-x: 0; }
    100% { background-position-x: 1440px; }
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding: 5rem 2rem 3rem;
    position: relative;
}

.footer-brand-section {
    animation: fadeInLeft 1s ease-out;
}

.footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.footer-brand-logo img {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    border: 2px solid rgba(59, 130, 246, 0.3);
}

.footer-brand-logo:hover img {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.4);
    border-color: rgba(59, 130, 246, 0.6);
}

.footer-brand-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(30deg); }
}

.footer-tagline {
    font-size: 0.95rem;
    color: #94a3b8;
    margin: 0.5rem 0 0;
    font-weight: 500;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #cbd5e1;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.social-icon:hover::before {
    width: 100px;
    height: 100px;
}

.social-icon:nth-child(1):hover { background: linear-gradient(135deg, #1877f2, #0e5fd8); }
.social-icon:nth-child(2):hover { background: linear-gradient(135deg, #e4405f, #c13584); }
.social-icon:nth-child(3):hover { background: linear-gradient(135deg, #000000, #333333); }
.social-icon:nth-child(4):hover { background: linear-gradient(135deg, #ff0000, #cc0000); }

.footer-links-section {
    animation: fadeInUp 1s ease-out 0.2s both;
}

.footer-links-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffffff;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-links-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 2px;
    animation: lineGrow 1s ease-out;
}

@keyframes lineGrow {
    from { width: 0; }
    to { width: 40px; }
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 1.5rem;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #3b82f6;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.footer-links a:hover::before {
    transform: translateX(3px);
}

.footer-contact-section {
    animation: fadeInRight 1s ease-out 0.4s both;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: #94a3b8;
    font-size: 0.95rem;
}

.contact-item i {
    width: 20px;
    color: #3b82f6;
    margin-top: 2px;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #3b82f6, #8b5cf6, transparent);
    animation: scanLine 3s linear infinite;
}

@keyframes scanLine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.footer-copyright {
    color: #94a3b8;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #ffffff;
}

.footer-brand-logo:hover img {
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
}

.footer-brand-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    font-size: 1rem;
    color: #94a3b8;
    margin: 0.25rem 0 0 0;
    font-weight: 500;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #cbd5e1;
    margin-bottom: 2rem;
    max-width: 400px;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-icon:hover {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    border-color: transparent;
}

.footer-section {
    animation: fadeInUp 1s ease-out;
    animation-fill-mode: both;
}

.footer-section:nth-child(2) { animation-delay: 0.2s; }
.footer-section:nth-child(3) { animation-delay: 0.4s; }
.footer-section:nth-child(4) { animation-delay: 0.6s; }

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffffff;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.footer-section:hover .footer-title::after {
    width: 100px;
}

.contact-grid {
    display: grid;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #d1d5db;
    text-decoration: none;
    padding: 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item:hover {
    background: rgba(59, 130, 246, 0.2);
    transform: translateX(5px);
    color: #ffffff;
}

.contact-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.contact-text {
    font-size: 0.95rem;
    line-height: 1.4;
}

.footer-links-grid {
    display: grid;
    gap: 0.75rem;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #d1d5db;
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer-link::before {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
    transition: left 0.5s ease;
}

.footer-link:hover::before {
    left: 100%;
}

.footer-link:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.footer-link i {
    color: #3b82f6;
    transition: color 0.3s ease;
}

.footer-link:hover i {
    color: #8b5cf6;
}

.newsletter-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.newsletter-button {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border: none;
    border-radius: 8px;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.newsletter-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    margin-top: 3rem;
}

.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: #94a3b8;
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #ffffff;
}

/* Ultra-Modern Footer Responsive Design */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-brand-section {
        grid-column: span 2;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-brand-section {
        grid-column: span 1;
    }
    
    .newsletter-form {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-brand-logo img {
        width: 50px;
        height: 50px;
    }
    
    .footer-brand-content h3 {
        font-size: 1.5rem;
    }
    
    .footer-container {
        padding: 2.5rem 1rem 1rem;
    }
}

#school-life::before {
    bottom: -80px;
    left: -90px;
}

#overview::before {
    top: -70px;
    left: 40%;
}


#leaders::before {
    top: 20%;
    left: -70px;
}

/* Responsive */

@media (max-width: 960px) {
    .hero-container {
        grid-template-columns: minmax(0, 1.2fr);
    }

    .hero-visual {
        order: -1;
    }

    .cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .life-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .glance-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .two-column {
        grid-template-columns: minmax(0, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .contact-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .section-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        border-top: 1px solid #e2e8f0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
    }

    .nav-links.active {
        max-height: 400px;
        padding: 1rem 0;
    }

    .nav-links li {
        border-bottom: 1px solid #f1f5f9;
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        padding: 1rem 2rem;
        color: #1e293b;
        font-weight: 500;
    }

    .nav-links a:hover {
        background: #f8fafc;
        color: #2563eb;
    }

    .nav-links a.active {
        background: #eff6ff;
        color: #2563eb;
        font-weight: 600;
    }
}

    @media (max-width: 480px) {
    .hero {
        padding-top: 6rem;
    }
    
    .nav-links a {
        padding: 0.75rem 1rem;
    }
    
    .cards-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .life-grid,
    .glance-grid {
        grid-template-columns: minmax(0, 1fr);
    }
    
    /* Responsive styles for new graphics elements */
    .hero-stats {
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1rem 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .assessment-grid {
        grid-template-columns: 1fr;
    }
    
    .comm-card {
        flex-direction: column;
        text-align: center;
    }
    
    .culture-grid {
        grid-template-columns: 1fr;
    }
    
    .method-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .cta-features {
        gap: 1rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-actions .btn {
        width: 100%;
        max-width: 300px;
    }

    .form-row {
        grid-template-columns: minmax(0, 1fr);
    }

    .footer-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 520px) {
    .container {
        width: min(100% - 2rem, 100%);
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .gallery-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .school-badge {
        flex-direction: row;
        align-items: center;
        max-width: 100%;
    }
}
