/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #5C589E;
    --secondary-color: #ffffff;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Cursor Trail Particles - Professional Style */
.cursor-trail-particle {
    position: fixed;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    animation: trailFade 1.2s ease-out forwards;
    will-change: transform, opacity;
}

.cursor-trail-particle.purple {
    background: var(--primary-color);
    opacity: 0.6;
    box-shadow: 0 0 4px rgba(92, 88, 158, 0.4);
}

.cursor-trail-particle.white {
    background: var(--secondary-color);
    opacity: 0.4;
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.3);
}

@keyframes trailFade {
    0% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(0.8);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.4);
    }
}

/* Click Ripple Effect */
.ripple-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9997;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    animation: rippleExpand 0.8s ease-out forwards;
    border: 3px solid var(--primary-color);
    box-shadow: 0 0 20px var(--primary-color), inset 0 0 20px rgba(92, 88, 158, 0.3);
}

.ripple.white {
    border-color: var(--secondary-color);
    box-shadow: 0 0 20px var(--secondary-color), inset 0 0 20px rgba(255, 255, 255, 0.3);
}

@keyframes rippleExpand {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        width: 300px;
        height: 300px;
        opacity: 0;
    }
}

/* Ripple particles */
.ripple-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-color);
    pointer-events: none;
    animation: rippleParticle 1s ease-out forwards;
    box-shadow: 0 0 8px var(--primary-color);
}

.ripple-particle.white {
    background: var(--secondary-color);
    box-shadow: 0 0 8px var(--secondary-color);
}

@keyframes rippleParticle {
    0% {
        opacity: 1;
        transform: scale(1) translate(0, 0);
    }
    100% {
        opacity: 0;
        transform: scale(0.2) translate(var(--tx), var(--ty));
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Header - Reference Site Style */
#top {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--secondary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
    animation: slideDown 0.5s ease;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.g-0 {
    margin: 0;
}

.justify-content-center {
    justify-content: center;
}

.col-11 {
    width: 91.666667%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.site-logo {
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    animation: fadeInLeft 0.8s ease;
    display: inline-block;
}

.logo-img {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.logo-text {
    display: inline-block;
    animation: pulse 2s infinite;
}

.menu-action {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1001;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.menu-action:hover {
    transform: scale(1.1);
}

.menu-action .icon {
    width: 30px;
    height: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.menu-action .icon span {
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
    display: block;
}

.menu-action.active .icon span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-action.active .icon span:nth-child(2) {
    opacity: 0;
}

.menu-action.active .icon span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

#mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: var(--secondary-color);
    z-index: 999;
    transition: left 0.3s ease;
    overflow-y: auto;
}

#mobile-menu.active {
    left: 0;
    animation: slideInLeft 0.3s ease;
}

#mobile-menu .contents {
    padding: 5rem 2rem 2rem;
}

.site-menu {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem 1.5rem;
    column-gap: 1.5rem;
    row-gap: 0.75rem;
}

.site-menu li {
    margin: 0;
    animation: fadeInUp 0.6s ease backwards;
}

.site-menu li:nth-child(1) { animation-delay: 0.1s; }
.site-menu li:nth-child(2) { animation-delay: 0.2s; }
.site-menu li:nth-child(3) { animation-delay: 0.3s; }
.site-menu li:nth-child(4) { animation-delay: 0.4s; }
.site-menu li:nth-child(5) { animation-delay: 0.5s; }
.site-menu li:nth-child(6) { animation-delay: 0.6s; }
.site-menu li:nth-child(7) { animation-delay: 0.7s; }
.site-menu li:nth-child(8) { animation-delay: 0.8s; }
.site-menu li:nth-child(9) { animation-delay: 0.9s; }
.site-menu li:nth-child(10) { animation-delay: 1.0s; }
.site-menu li:nth-child(11) { animation-delay: 1.1s; }
.site-menu li:nth-child(12) { animation-delay: 1.2s; }
.site-menu li:nth-child(13) { animation-delay: 1.3s; }

.site-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    display: block;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    position: relative;
}

.site-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.site-menu a:hover::before,
.site-menu a.active::before {
    width: 100%;
}

.site-menu a:hover {
    color: var(--primary-color);
    transform: translateX(10px);
}

.site-menu a[href*="donation"],
.site-menu a[href*="Donation"] {
    background: linear-gradient(135deg, var(--primary-color), #4a4680);
    color: var(--secondary-color) !important;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(92, 88, 158, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.site-menu a[href*="donation"]::before,
.site-menu a[href*="Donation"]::before {
    display: none;
}

.site-menu a[href*="donation"]:hover,
.site-menu a[href*="Donation"]:hover {
    background: linear-gradient(135deg, #4a4680, var(--primary-color));
    transform: translateX(10px) scale(1.05);
    box-shadow: 0 6px 20px rgba(92, 88, 158, 0.4);
    color: var(--secondary-color) !important;
}

.site-menu a[href*="donation"].active,
.site-menu a[href*="Donation"].active {
    background: linear-gradient(135deg, #4a4680, var(--primary-color));
    box-shadow: 0 6px 20px rgba(92, 88, 158, 0.5);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--secondary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: slideDown 0.5s ease;
}

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

.logo a {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

.donate-btn {
    background: var(--primary-color);
    color: var(--secondary-color) !important;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.donate-btn:hover {
    background: #4a4680;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

/* Floating Orbs */
.floating-orb {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    filter: blur(40px);
    pointer-events: none;
    z-index: 0;
    animation: floatOrb 15s ease-in-out infinite;
}

.orb-1 {
    width: 200px;
    height: 200px;
    top: 20%;
    left: 10%;
    animation: floatOrb 12s ease-in-out infinite;
    background: rgba(255, 255, 255, 0.25);
}

.orb-2 {
    width: 250px;
    height: 250px;
    top: 60%;
    right: 15%;
    animation: floatOrb 18s ease-in-out infinite;
    animation-delay: -5s;
    background: rgba(255, 255, 255, 0.2);
}

.orb-3 {
    width: 180px;
    height: 180px;
    bottom: 20%;
    left: 50%;
    animation: floatOrb 14s ease-in-out infinite;
    animation-delay: -8s;
    background: rgba(255, 255, 255, 0.3);
}

@keyframes floatOrb {
    0% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(100px, -150px) scale(1.2);
    }
    50% {
        transform: translate(-80px, 100px) scale(0.9);
    }
    75% {
        transform: translate(120px, 80px) scale(1.1);
    }
    100% {
        transform: translate(0, 0) scale(1);
    }
}

/* Hero Slider */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: visible;
}

.hero-slider .slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.hero-slider button {
    z-index: 1000;
    position: absolute;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(92, 88, 158, 0.5);
    z-index: 1;
    pointer-events: none;
}

/* Slider Navigation Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(92, 88, 158, 0.8);
    border: 3px solid var(--secondary-color);
    border-radius: 50%;
    color: var(--secondary-color);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    pointer-events: auto;
}

.slider-arrow:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 8px 30px rgba(92, 88, 158, 0.5);
    border-color: var(--secondary-color);
}

.slider-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.slider-arrow-prev {
    left: 30px;
    animation: arrowPulseLeft 2s ease-in-out infinite;
}

.slider-arrow-next {
    right: 30px;
    animation: arrowPulseRight 2s ease-in-out infinite;
}

.slider-arrow i {
    transition: transform 0.3s ease;
}

.slider-arrow-prev:hover i {
    transform: translateX(-3px);
}

.slider-arrow-next:hover i {
    transform: translateX(3px);
}

@keyframes arrowPulseLeft {
    0%, 100% {
        left: 30px;
        opacity: 1;
    }
    50% {
        left: 25px;
        opacity: 0.8;
    }
}

@keyframes arrowPulseRight {
    0%, 100% {
        right: 30px;
        opacity: 1;
    }
    50% {
        right: 25px;
        opacity: 0.8;
    }
}

/* Responsive arrows */
@media (max-width: 768px) {
    .slider-arrow {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .slider-arrow-prev {
        left: 15px;
    }
    
    .slider-arrow-next {
        right: 15px;
    }
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1);
    transition: none;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

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

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

/* Transition 1: BOX EXPLODE - Forms into boxes then erupts */
.slide[data-transition="box-explode"].active {
    animation: boxExplodeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    will-change: transform, opacity, clip-path;
}

.slide[data-transition="box-explode"]:not(.active) {
    animation: boxExplodeOut 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    will-change: transform, opacity, clip-path;
}

@keyframes boxExplodeIn {
    0% {
        opacity: 0;
        clip-path: polygon(50% 50%, 50% 50%, 50% 50%, 50% 50%);
        transform: scale(0.8);
    }
    50% {
        opacity: 0.6;
        clip-path: polygon(20% 20%, 80% 20%, 80% 80%, 20% 80%);
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
        transform: scale(1);
    }
}

@keyframes boxExplodeOut {
    0% {
        opacity: 1;
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        clip-path: polygon(30% 30%, 70% 30%, 70% 70%, 30% 70%);
        transform: scale(1.1);
    }
    100% {
        opacity: 0;
        clip-path: polygon(50% 50%, 50% 50%, 50% 50%, 50% 50%);
        transform: scale(1.2);
    }
}

/* Transition 2: LIQUID MORPH - Insane liquid morphing effect */
.slide[data-transition="liquid-morph"].active {
    animation: liquidMorphIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    will-change: transform, opacity, clip-path;
}

.slide[data-transition="liquid-morph"]:not(.active) {
    animation: liquidMorphOut 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    will-change: transform, opacity, clip-path;
}

@keyframes liquidMorphIn {
    0% {
        opacity: 0;
        clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
        transform: scale(0.5) rotate(0deg) skew(45deg, 45deg);
        filter: blur(30px) hue-rotate(180deg) saturate(3);
    }
    25% {
        opacity: 0.4;
        clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
        transform: scale(0.7) rotate(90deg) skew(30deg, 30deg);
        filter: blur(20px) hue-rotate(120deg) saturate(2.5);
    }
    50% {
        opacity: 0.7;
        clip-path: polygon(20% 0%, 80% 0%, 100% 50%, 80% 100%, 20% 100%, 0% 50%);
        transform: scale(0.9) rotate(180deg) skew(15deg, 15deg);
        filter: blur(10px) hue-rotate(60deg) saturate(2);
    }
    75% {
        opacity: 0.9;
        clip-path: polygon(10% 0%, 90% 0%, 100% 20%, 100% 80%, 90% 100%, 10% 100%, 0% 80%, 0% 20%);
        transform: scale(1.05) rotate(270deg) skew(5deg, 5deg);
        filter: blur(5px) hue-rotate(30deg) saturate(1.5);
    }
    100% {
        opacity: 1;
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
        transform: scale(1) rotate(360deg) skew(0deg, 0deg);
        filter: blur(0) hue-rotate(0deg) saturate(1);
    }
}

@keyframes liquidMorphOut {
    0% {
        opacity: 1;
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
        transform: scale(1) rotate(0deg) skew(0deg, 0deg);
        filter: blur(0) hue-rotate(0deg) saturate(1);
    }
    50% {
        opacity: 0.5;
        clip-path: polygon(20% 0%, 80% 0%, 100% 50%, 80% 100%, 20% 100%, 0% 50%);
        transform: scale(1.3) rotate(-180deg) skew(-15deg, -15deg);
        filter: blur(12px) hue-rotate(-60deg) saturate(2);
    }
    100% {
        opacity: 0;
        clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
        transform: scale(1.7) rotate(-360deg) skew(-30deg, -30deg);
        filter: blur(25px) hue-rotate(-180deg) saturate(3);
    }
}

/* Transition 3: PIXEL BURST - Explodes into pixels */
.slide[data-transition="pixel-burst"].active {
    animation: pixelBurstIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    will-change: transform, opacity, clip-path;
}

.slide[data-transition="pixel-burst"]:not(.active) {
    animation: pixelBurstOut 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    will-change: transform, opacity, clip-path;
}

@keyframes pixelBurstIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
        clip-path: polygon(0% 0%, 0% 0%, 0% 0%, 0% 0%);
    }
    50% {
        opacity: 0.6;
        transform: scale(0.95);
        clip-path: polygon(0% 0%, 50% 0%, 50% 50%, 0% 50%);
    }
    100% {
        opacity: 1;
        transform: scale(1);
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    }
}

@keyframes pixelBurstOut {
    0% {
        opacity: 1;
        transform: scale(1) translate(0, 0);
        filter: blur(0) brightness(1) contrast(1);
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    }
    50% {
        opacity: 0.4;
        transform: scale(1.4) translate(50px, -50px);
        filter: blur(20px) brightness(0.4) contrast(2);
        clip-path: polygon(25% 25%, 75% 25%, 75% 75%, 25% 75%);
    }
    100% {
        opacity: 0;
        transform: scale(1.8) translate(80px, -80px);
        filter: blur(40px) brightness(0) contrast(3);
        clip-path: polygon(50% 50%, 50% 50%, 50% 50%, 50% 50%);
    }
}

/* Transition 4: SLICE ROTATE - Slices rotate and reveal */
.slide[data-transition="slice-rotate"].active {
    animation: sliceRotateIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    will-change: transform, opacity, clip-path;
}

.slide[data-transition="slice-rotate"]:not(.active) {
    animation: sliceRotateOut 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    will-change: transform, opacity, clip-path;
}

@keyframes sliceRotateIn {
    0% {
        opacity: 0;
        transform: perspective(1000px) rotateX(90deg) rotateY(90deg) scale(0.5);
        filter: brightness(0.3) contrast(2) blur(20px);
        clip-path: polygon(50% 0%, 50% 0%, 50% 100%, 50% 100%);
    }
    25% {
        opacity: 0.4;
        transform: perspective(1000px) rotateX(45deg) rotateY(45deg) scale(0.7);
        filter: brightness(0.5) contrast(1.8) blur(15px);
        clip-path: polygon(25% 0%, 75% 0%, 75% 100%, 25% 100%);
    }
    50% {
        opacity: 0.7;
        transform: perspective(1000px) rotateX(22deg) rotateY(22deg) scale(0.85);
        filter: brightness(0.7) contrast(1.5) blur(10px);
        clip-path: polygon(10% 0%, 90% 0%, 90% 100%, 10% 100%);
    }
    75% {
        opacity: 0.9;
        transform: perspective(1000px) rotateX(5deg) rotateY(5deg) scale(0.95);
        filter: brightness(0.85) contrast(1.2) blur(5px);
        clip-path: polygon(5% 0%, 95% 0%, 95% 100%, 5% 100%);
    }
    100% {
        opacity: 1;
        transform: perspective(1000px) rotateX(0deg) rotateY(0deg) scale(1);
        filter: brightness(1) contrast(1) blur(0);
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    }
}

@keyframes sliceRotateOut {
    0% {
        opacity: 1;
        transform: perspective(1000px) rotateX(0deg) rotateY(0deg) scale(1);
        filter: brightness(1) contrast(1) blur(0);
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    }
    50% {
        opacity: 0.5;
        transform: perspective(1000px) rotateX(-30deg) rotateY(-30deg) scale(1.3);
        filter: brightness(0.5) contrast(1.6) blur(12px);
        clip-path: polygon(20% 0%, 80% 0%, 80% 100%, 20% 100%);
    }
    100% {
        opacity: 0;
        transform: perspective(1000px) rotateX(-70deg) rotateY(-70deg) scale(1.7);
        filter: brightness(0.2) contrast(2) blur(20px);
        clip-path: polygon(50% 0%, 50% 0%, 50% 100%, 50% 100%);
    }
}

/* Transition 5: SHATTER - Shatters into pieces */
.slide[data-transition="shatter"].active {
    animation: shatterIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    will-change: transform, opacity, clip-path;
}

.slide[data-transition="shatter"]:not(.active) {
    animation: shatterOut 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    will-change: transform, opacity, clip-path;
}

@keyframes shatterIn {
    0% {
        opacity: 0;
        transform: scale(0.2) rotate(180deg);
        filter: blur(40px) brightness(0.1) contrast(4) saturate(0);
        clip-path: polygon(50% 50%, 50% 50%, 50% 50%, 50% 50%, 50% 50%, 50% 50%);
    }
    15% {
        opacity: 0.2;
        transform: scale(0.4) rotate(135deg);
        filter: blur(30px) brightness(0.3) contrast(3.5) saturate(0.3);
        clip-path: polygon(30% 30%, 70% 30%, 70% 70%, 30% 70%);
    }
    30% {
        opacity: 0.4;
        transform: scale(0.6) rotate(90deg);
        filter: blur(25px) brightness(0.5) contrast(3) saturate(0.5);
        clip-path: polygon(20% 20%, 80% 20%, 80% 80%, 20% 80%);
    }
    50% {
        opacity: 0.7;
        transform: scale(0.8) rotate(45deg);
        filter: blur(15px) brightness(0.7) contrast(2.5) saturate(0.7);
        clip-path: polygon(10% 10%, 90% 10%, 90% 90%, 10% 90%);
    }
    70% {
        opacity: 0.85;
        transform: scale(0.95) rotate(22deg);
        filter: blur(8px) brightness(0.85) contrast(2) saturate(0.85);
        clip-path: polygon(5% 5%, 95% 5%, 95% 95%, 5% 95%);
    }
    85% {
        opacity: 0.95;
        transform: scale(1.02) rotate(10deg);
        filter: blur(4px) brightness(0.95) contrast(1.5) saturate(0.95);
        clip-path: polygon(2% 2%, 98% 2%, 98% 98%, 2% 98%);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
        filter: blur(0) brightness(1) contrast(1) saturate(1);
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    }
}

@keyframes shatterOut {
    0% {
        opacity: 1;
        transform: scale(1);
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    }
    50% {
        opacity: 0.4;
        transform: scale(1.1);
        clip-path: polygon(20% 20%, 80% 20%, 80% 80%, 20% 80%);
    }
    100% {
        opacity: 0;
        transform: scale(1.2);
        clip-path: polygon(50% 50%, 50% 50%, 50% 50%, 50% 50%);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(92, 88, 158, 0.6);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--secondary-color);
    padding: 2rem;
    pointer-events: none;
}

.hero-content * {
    pointer-events: auto;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 1s ease 0.4s both;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.btn-primary:hover {
    background: #4a4680;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(92, 88, 158, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.btn-white {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.btn-white:hover {
    background: #f0f0f0;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--secondary-color);
    text-align: center;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    display: block;
    margin-top: 10px;
    font-size: 1.5rem;
}

/* Announcements - Continuous Scrolling Marquee */
.announcements {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 1.5rem 0;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
}

.announcements-wrapper {
    width: 100%;
    overflow: hidden;
}

.announcements-scroll {
    display: flex;
    gap: 4rem;
    animation: scrollAnnouncements 30s linear infinite;
    width: fit-content;
}

.announcement-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
    padding: 0 2rem;
    font-size: 1.1rem;
}

.announcement-item i {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.announcement-item span {
    white-space: nowrap;
}

.announcement-item strong {
    font-weight: 700;
    margin-right: 0.5rem;
}

@keyframes scrollAnnouncements {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

/* Vision & Mission Sections */
.vision-section,
.mission-section {
    background: var(--bg-light);
}

/* Welcome Section */
.welcome-section {
    background: var(--secondary-color);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

/* Tablet view - 2 columns */
@media (max-width: 1024px) and (min-width: 769px) {
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.program-card {
    background: var(--secondary-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(92, 88, 158, 0.2);
}

.program-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 15px;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 15px;
}

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

.program-content {
    padding: 1.5rem;
}

.program-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.program-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.program-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.program-link:hover {
    gap: 1rem;
}

/* Stats Section */
.stats-section {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 5rem 0;
}

.stats-section .section-header h2,
.stats-section .section-header p {
    color: var(--secondary-color);
}

.stats-section .status-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stats-section .status-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stats-section .status-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.stats-section .status-number {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    line-height: 1;
}

.stats-section .status-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stats-section .status-card p {
    font-size: 0.95rem;
    color: var(--secondary-color);
    opacity: 0.9;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Projects Preview */
.projects-preview {
    background: var(--bg-light);
}

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

.project-card {
    position: relative;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(92, 88, 158, 0.9), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    color: var(--secondary-color);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-overlay h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.text-center {
    text-align: center;
    margin-top: 3rem;
}

/* News Section */
.news-section {
    background: var(--secondary-color);
}

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

.news-card {
    background: var(--secondary-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-content {
    padding: 1.5rem;
}

.news-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.news-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.news-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.news-link:hover {
    gap: 1rem;
}

/* Newsletter Section */
.newsletter-section {
    background: var(--primary-color);
    color: var(--secondary-color);
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 1rem 2rem;
    border-radius: 30px;
}

/* Footer */
.footer {
    background: #2c2c2c;
    color: var(--secondary-color);
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.footer-section p i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.footer-section ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem 1.5rem;
    padding: 0;
    margin: 0;
    align-items: start;
}

.footer-section ul li {
    margin: 0;
    padding: 0;
    break-inside: avoid;
    line-height: 1.6;
}

.footer-section ul li a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #4a4680;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo {
    display: inline-block;
    text-decoration: none;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

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

.footer-social a {
    color: var(--secondary-color);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--primary-color);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(92, 88, 158, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top:hover {
    background: #4a4680;
    transform: translateY(-5px);
}

.back-to-top.show {
    display: flex;
}

/* Page Specific Styles */
.page-header {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 8rem 0 4rem;
    text-align: center;
    margin-top: 70px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.page-content {
    padding: 4rem 0;
}

.content-section {
    margin-bottom: 3rem;
}

.content-section h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.content-section p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

/* Donation Page - 2 cards per row */
.page-content .content-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
}

.content-card {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.content-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Donation Page Styles */
.donation-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.donation-amounts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.amount-btn {
    padding: 1rem;
    background: var(--bg-light);
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.amount-btn:hover,
.amount-btn.active {
    background: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
}

/* Donation Page - Enhanced Styles */
.donation-header {
    background: linear-gradient(135deg, var(--primary-color), #4a4680);
    position: relative;
    overflow: hidden;
}

.donation-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.donation-content {
    background: var(--bg-light);
    padding: 5rem 0;
}

.donation-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
    padding: 2rem;
    background: var(--secondary-color);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.donation-intro .lead-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0;
}

.section-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), #4a4680);
    border-radius: 2px;
}

/* Sponsorship Schemes */
.sponsorship-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.sponsorship-card {
    background: var(--secondary-color);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.4s ease;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.sponsorship-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(92, 88, 158, 0.1), transparent);
    transition: left 0.5s ease;
}

.sponsorship-card:hover::before {
    left: 100%;
}

.sponsorship-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(92, 88, 158, 0.3);
}

.sponsorship-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), #4a4680);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--secondary-color);
    font-size: 2.5rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(92, 88, 158, 0.3);
}

.sponsorship-card:hover .sponsorship-icon {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 15px 35px rgba(92, 88, 158, 0.5);
}

.sponsorship-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.sponsorship-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(92, 88, 158, 0.1), rgba(74, 70, 128, 0.1));
    border-radius: 15px;
}

.sponsorship-amount .currency {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
}

.sponsorship-amount .amount {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 800;
    line-height: 1;
}

.sponsorship-amount .period {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

.sponsorship-amount .amount-text {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 700;
}

.sponsorship-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.05rem;
    margin-top: 1rem;
}

.tax-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(92, 88, 158, 0.1), rgba(74, 70, 128, 0.1));
    border-radius: 15px;
    margin-top: 3rem;
    border-left: 4px solid var(--primary-color);
}

.tax-note i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.tax-note p {
    margin: 0;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.tax-note p strong {
    color: var(--primary-color);
}

/* Payment Methods */
.payment-method-section {
    margin: 4rem 0;
    padding: 3rem;
    background: var(--secondary-color);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.method-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--primary-color);
}

.method-title i {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--primary-color), #4a4680);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.method-description {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.banks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.bank-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid #e0e0e0;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.bank-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), #4a4680);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.bank-card:hover::before {
    transform: scaleY(1);
}

.bank-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(92, 88, 158, 0.2);
    border-color: var(--primary-color);
}

.bank-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #e0e0e0;
}

.bank-header i {
    font-size: 2rem;
    color: var(--primary-color);
    background: rgba(92, 88, 158, 0.1);
    padding: 1rem;
    border-radius: 15px;
}

.bank-header h4 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 0;
    font-weight: 700;
}

.bank-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.bank-detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--secondary-color);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.bank-detail-item:hover {
    background: rgba(92, 88, 158, 0.05);
    transform: translateX(5px);
}

.detail-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.detail-value {
    color: var(--text-light);
    font-size: 1.05rem;
}

.detail-value.highlight {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
    background: rgba(92, 88, 158, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: inline-block;
    margin-top: 0.25rem;
}

/* Cheque Details */
.cheque-details-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
    transition: all 0.4s ease;
}

.cheque-details-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(92, 88, 158, 0.2);
    transform: translateY(-5px);
}

.cheque-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--secondary-color);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.cheque-detail-item:hover {
    background: rgba(92, 88, 158, 0.05);
    transform: translateX(10px);
}

.cheque-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--primary-color);
    min-width: 200px;
    font-size: 1.05rem;
}

.cheque-label i {
    font-size: 1.2rem;
    background: linear-gradient(135deg, var(--primary-color), #4a4680);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cheque-value {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.6;
    flex: 1;
}

/* Responsive for Donation Page */
@media (max-width: 768px) {
    .sponsorship-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .banks-grid {
        grid-template-columns: 1fr;
    }

    .cheque-detail-item {
        flex-direction: column;
        gap: 1rem;
    }

    .cheque-label {
        min-width: auto;
    }

    .section-title {
        font-size: 2rem;
    }

    .method-title {
        font-size: 1.5rem;
    }
}

/* Gallery Styles */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: var(--bg-light);
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(92, 88, 158, 0.95), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    color: var(--secondary-color);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.gallery-view-btn {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.gallery-view-btn:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: scale(1.1);
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.lightbox.show {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: var(--secondary-color);
    font-size: 3rem;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary-color);
    font-size: 2rem;
    cursor: pointer;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

/* Responsive Design */
@media (max-width: 1200px) {
    .menu-action {
        display: flex;
    }
}

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

    .menu-action {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--secondary-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .announcements .container {
        flex-direction: column;
        text-align: center;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .programs-grid,
    .projects-grid,
    .news-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-filters {
        justify-content: center;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 2rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .page-header h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* About Page Styles */
.about-hero {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 10rem 0 4rem;
    margin-top: 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(92, 88, 158, 0.9), rgba(92, 88, 158, 0.7));
    z-index: 0;
}

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

.about-hero h1 {
    font-size: 4rem;
    font-weight: bold;
    margin: 0;
    animation: fadeInUp 1s ease;
}

.about-page-content {
    padding: 4rem 0;
    background: var(--bg-light);
}

.about-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
    background: var(--secondary-color);
    border-radius: 10px;
    padding: 2rem 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-nav li {
    margin: 0;
}

.about-nav a {
    display: block;
    padding: 1rem 2rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    position: relative;
}

.about-nav a:hover,
.about-nav a.active {
    color: var(--primary-color);
    background: rgba(92, 88, 158, 0.05);
    border-left-color: var(--primary-color);
    transform: translateX(5px);
}

.about-main {
    background: var(--secondary-color);
    border-radius: 10px;
    padding: 3rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-section {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e0e0e0;
}

.about-section:last-child {
    border-bottom: none;
}

.about-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.about-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.about-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.about-image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.about-image-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-image-item:hover {
    transform: translateY(-5px);
}

.about-image-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-image-item:hover img {
    transform: scale(1.1);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.mission-card {
    background: linear-gradient(135deg, var(--primary-color), #4a4680);
    color: var(--secondary-color);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(92, 88, 158, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(92, 88, 158, 0.4);
}

.mission-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

.mission-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.vision-statement-large {
    font-size: 1.8rem;
    font-weight: bold;
    margin-top: 1rem;
    animation: pulse 2s infinite;
}

.mission-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-top: 1rem;
}

.timeline-section {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    align-items: flex-start;
}

.timeline-year {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    min-width: 150px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(92, 88, 158, 0.3);
    animation: scaleIn 0.5s ease;
}

.timeline-content {
    flex: 1;
}

.timeline-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.curriculum-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.curriculum-highlight {
    background: rgba(92, 88, 158, 0.1);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    margin: 2rem 0;
}

.curriculum-highlight h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.support-items {
    margin-top: 2rem;
}

.support-items h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

.support-item {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.support-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(92, 88, 158, 0.2);
}

.support-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: block;
    animation: bounce 2s infinite;
}

.support-item span {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
}

/* Status Section Styles */
.status-hero {
    background: linear-gradient(135deg, var(--primary-color), #4a4680);
    color: #ffffff;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(92, 88, 158, 0.3);
}

/* Strength Counter Section inside About Status */
.strength-counter-section {
    margin-bottom: 3rem;
}

.strength-counter-section .section-title {
    text-align: center;
    justify-content: center;
}

.strength-counter-section .status-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.strength-counter-section .status-card {
    background: linear-gradient(135deg, var(--primary-color), #4a4680);
    color: var(--secondary-color);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(92, 88, 158, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.strength-counter-section .status-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(92, 88, 158, 0.4);
}

.strength-counter-section .status-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.strength-counter-section .status-label {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.strength-counter-section .status-card p {
    font-size: 0.9rem;
    opacity: 0.9;
    color: var(--secondary-color);
}

.status-hero-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.status-hero h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: #ffffff;
}

.hero-number {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
}

.results-section,
.careers-section {
    margin-bottom: 3rem;
}

.section-title {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 700;
}

.section-title i {
    font-size: 2rem;
}

/* Grade Results Grid */
.grade-results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.grade-card {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.grade-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), #4a4680);
}

.grade-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(92, 88, 158, 0.3);
}

.grade-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.grade-a-one .grade-icon {
    color: #FFD700;
}

.grade-a .grade-icon {
    color: #4CAF50;
}

.grade-b .grade-icon {
    color: #2196F3;
}

.grade-c .grade-icon {
    color: #9C27B0;
}

.grade-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.grade-count {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
    margin: 0.5rem 0;
}

.grade-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Careers Grid */
.careers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.career-card {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.career-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 35px rgba(92, 88, 158, 0.2);
}

.career-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #4a4680);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
    box-shadow: 0 5px 15px rgba(92, 88, 158, 0.3);
}

.career-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.career-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.career-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.transparency-note {
    background: rgba(92, 88, 158, 0.1);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.transparency-note h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.values-intro {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    text-align: center;
}

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

.value-item {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.value-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(92, 88, 158, 0.2);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.value-item:hover .value-icon {
    transform: scale(1.1) rotate(360deg);
    background: #4a4680;
}

.value-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.value-item p {
    color: var(--text-light);
    line-height: 1.6;
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.8;
    }
}

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

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

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

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design for About Page */
@media (max-width: 968px) {
    .about-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 20px;
    }

    .about-sidebar {
        position: relative;
        top: 0;
        margin-bottom: 2rem;
    }

    .about-nav {
        display: flex;
        overflow-x: auto;
        padding: 1rem 0;
        -webkit-overflow-scrolling: touch;
        gap: 0.5rem;
    }

    .about-nav li {
        white-space: nowrap;
        margin-right: 0;
    }

    .about-nav a {
        padding: 0.75rem 1.25rem;
        border-left: none;
        border-bottom: 3px solid transparent;
        font-size: 0.95rem;
    }

    .about-nav a:hover,
    .about-nav a.active {
        border-left: none;
        border-bottom-color: var(--primary-color);
        transform: none;
    }

    .about-hero h1 {
        font-size: 2.5rem;
    }

    .about-main {
        padding: 2rem 1.5rem;
    }

    .about-section h2 {
        font-size: 2rem;
    }

    .about-image-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .timeline-section {
        flex-direction: column;
        gap: 1rem;
    }

    .timeline-year {
        min-width: auto;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 8rem 0 3rem;
        margin-top: 60px;
    }

    .about-hero h1 {
        font-size: 2rem;
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 15px;
    }

    .about-sidebar {
        position: relative;
        top: 0;
        margin-bottom: 2rem;
        padding: 1rem 0;
        width: 100%;
        overflow-x: auto;
    }

    .about-nav {
        display: flex;
        overflow-x: auto;
        padding: 1rem 0;
        -webkit-overflow-scrolling: touch;
        gap: 0.5rem;
        scrollbar-width: thin;
    }

    .about-nav::-webkit-scrollbar {
        height: 4px;
    }

    .about-nav::-webkit-scrollbar-track {
        background: rgba(92, 88, 158, 0.1);
        border-radius: 10px;
    }

    .about-nav::-webkit-scrollbar-thumb {
        background: var(--primary-color);
        border-radius: 10px;
    }

    .about-nav li {
        white-space: nowrap;
        margin-right: 0;
        flex-shrink: 0;
    }

    .about-nav a {
        padding: 0.75rem 1.25rem;
        border-left: none;
        border-bottom: 3px solid transparent;
        font-size: 0.9rem;
        display: inline-block;
    }

    .about-nav a:hover,
    .about-nav a.active {
        border-left: none;
        border-bottom-color: var(--primary-color);
        transform: none;
    }

    .about-main {
        padding: 2rem 1rem;
        width: 100%;
        overflow-x: hidden;
    }

    .about-section {
        margin-bottom: 3rem;
        padding-bottom: 2rem;
    }

    .about-section h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        padding-bottom: 0.75rem;
    }

    .lead-text {
        font-size: 1.1rem;
    }

    .about-intro p {
        font-size: 1rem;
        margin-bottom: 1rem;
        line-height: 1.7;
    }

    .about-image-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1.5rem;
    }

    .about-image-item img {
        height: 250px;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .status-hero {
        padding: 2rem 1.5rem;
    }

    .status-hero-icon {
        font-size: 3rem;
    }

    .status-hero h3 {
        font-size: 1.5rem;
    }

    .hero-number {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 1.3rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .section-title i {
        font-size: 1.5rem;
    }

    .strength-counter-section .status-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .strength-counter-section .status-card {
        padding: 1.5rem;
    }

    .strength-counter-section .status-number {
        font-size: 2.5rem;
    }

    .grade-results-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .grade-card {
        padding: 1.5rem;
    }

    .grade-icon {
        font-size: 2.5rem;
    }

    .grade-count {
        font-size: 2.5rem;
    }

    .careers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .career-card {
        padding: 1.5rem;
    }

    .career-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }

    .career-number {
        font-size: 1.75rem;
    }

    .career-title {
        font-size: 1rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .support-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .timeline-section {
        flex-direction: column;
        gap: 1rem;
    }

    .timeline-year {
        min-width: auto;
        width: 100%;
        text-align: center;
    }

    .transparency-note {
        padding: 1.5rem;
    }

    .transparency-note h3 {
        font-size: 1.3rem;
    }

    .transparency-note p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

/* Management Page Styles */
.management-intro {
    padding: 3rem 0;
    background: var(--bg-light);
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
}

.management-section {
    padding: 5rem 0;
    background: var(--secondary-color);
}

.management-section.alt-section {
    background: var(--bg-light);
}

.management-section .section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.management-section .section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.management-section .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.management-section .section-header p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.management-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.management-card {
    background: var(--secondary-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    animation: cardFloat 6s ease-in-out infinite;
}

.management-card:nth-child(1) { animation-delay: 0s; }
.management-card:nth-child(2) { animation-delay: 0.2s; }
.management-card:nth-child(3) { animation-delay: 0.4s; }
.management-card:nth-child(4) { animation-delay: 0.6s; }

.management-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(92, 88, 158, 0.3);
}

.card-image-wrapper {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.management-card:hover .card-image-wrapper img {
    transform: scale(1.15) rotate(2deg);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(92, 88, 158, 0.8));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.management-card:hover .card-overlay {
    opacity: 1;
}

.card-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 1.5rem;
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
    box-shadow: 0 5px 15px rgba(92, 88, 158, 0.4);
}

.management-card:hover .card-icon {
    transform: scale(1) rotate(360deg);
}

.card-content {
    padding: 2rem;
    text-align: center;
}

.card-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.management-card:hover .card-content h3 {
    color: #4a4680;
}

.designation {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-description {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

.committees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.committee-card {
    background: linear-gradient(135deg, var(--primary-color), #4a4680);
    color: var(--secondary-color);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(92, 88, 158, 0.3);
}

.committee-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    transform: rotate(45deg);
    transition: transform 0.6s ease;
}

.committee-card:hover::before {
    transform: rotate(45deg) translate(20px, 20px);
}

.committee-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 50px rgba(92, 88, 158, 0.4);
}

.committee-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.committee-card:hover .committee-icon {
    transform: scale(1.2) rotate(360deg);
    background: rgba(255, 255, 255, 0.3);
}

.committee-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.committee-card p {
    line-height: 1.8;
    position: relative;
    z-index: 1;
    font-size: 1rem;
}

.committee-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--secondary-color);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.committee-card:hover .committee-decoration {
    transform: scaleX(1);
}

.trustees-list-container {
    margin-top: 3rem;
}

.trustees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.trustee-item {
    background: var(--secondary-color);
    padding: 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    animation: slideInRight 0.6s ease backwards;
}

.trustee-item:nth-child(1) { animation-delay: 0.1s; }
.trustee-item:nth-child(2) { animation-delay: 0.2s; }
.trustee-item:nth-child(3) { animation-delay: 0.3s; }
.trustee-item:nth-child(4) { animation-delay: 0.4s; }
.trustee-item:nth-child(5) { animation-delay: 0.5s; }
.trustee-item:nth-child(6) { animation-delay: 0.6s; }

.trustee-item:hover {
    border-color: var(--primary-color);
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(92, 88, 158, 0.2);
}

.trustee-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #4a4680);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(92, 88, 158, 0.3);
    transition: transform 0.3s ease;
}

.trustee-item:hover .trustee-number {
    transform: scale(1.2) rotate(360deg);
}

.trustee-info {
    flex: 1;
}

.trustee-info h4 {
    color: var(--text-dark);
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.trustee-info span {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
}

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

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

/* Curriculum Page Styles */
.curriculum-hero {
    padding: 3rem 0;
    background: var(--bg-light);
}

.curriculum-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.curriculum-intro h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.curriculum-intro p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.curriculum-levels {
    padding: 4rem 0;
    background: var(--secondary-color);
}

.curriculum-level-card {
    background: var(--secondary-color);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.curriculum-level-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(92, 88, 158, 0.1), transparent);
    transition: left 0.5s ease;
}

.curriculum-level-card:hover::before {
    left: 100%;
}

.curriculum-level-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(92, 88, 158, 0.2);
}

.level-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 3px solid var(--primary-color);
}

.level-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), #4a4680);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 2.5rem;
    box-shadow: 0 10px 30px rgba(92, 88, 158, 0.3);
    transition: transform 0.4s ease;
}

.curriculum-level-card:hover .level-icon {
    transform: scale(1.1) rotate(360deg);
}

.level-title h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.level-title p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.level-subjects {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.subject-badge {
    background: linear-gradient(135deg, var(--primary-color), #4a4680);
    color: var(--secondary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    animation: badgePulse 2s ease-in-out infinite;
}

.subject-badge:nth-child(1) { animation-delay: 0s; }
.subject-badge:nth-child(2) { animation-delay: 0.1s; }
.subject-badge:nth-child(3) { animation-delay: 0.2s; }
.subject-badge:nth-child(4) { animation-delay: 0.3s; }
.subject-badge:nth-child(5) { animation-delay: 0.4s; }
.subject-badge:nth-child(6) { animation-delay: 0.5s; }
.subject-badge:nth-child(7) { animation-delay: 0.6s; }
.subject-badge:nth-child(8) { animation-delay: 0.7s; }
.subject-badge:nth-child(9) { animation-delay: 0.8s; }

.subject-badge:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 5px 15px rgba(92, 88, 158, 0.4);
}

.level-textbooks {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.level-textbooks h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.level-textbooks ul {
    list-style: none;
    padding: 0;
}

.level-textbooks li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e0e0e0;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.level-textbooks li:hover {
    color: var(--primary-color);
    padding-left: 1rem;
}

.level-textbooks li:last-child {
    border-bottom: none;
}

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

.textbook-item {
    background: var(--secondary-color);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.textbook-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.hidden-curriculum {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color), #4a4680);
    color: var(--secondary-color);
}

.hidden-curriculum-card {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hidden-icon {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
    animation: float 3s ease-in-out infinite;
}

.hidden-curriculum-card h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.hidden-curriculum-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.character-traits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.trait-item {
    background: rgba(255, 255, 255, 0.2);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.trait-item:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px) scale(1.05);
}

.trait-item i {
    font-size: 1.5rem;
}

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

/* Financial Resources Page Styles */
.financial-intro {
    padding: 3rem 0;
    background: var(--bg-light);
}

.intro-card {
    max-width: 900px;
    margin: 0 auto;
    background: var(--secondary-color);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--primary-color);
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.funding-sources {
    padding: 5rem 0;
    background: var(--secondary-color);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

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

.funding-card {
    background: linear-gradient(135deg, var(--primary-color), #4a4680);
    color: var(--secondary-color);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(92, 88, 158, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.funding-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    transform: rotate(45deg);
    transition: transform 0.6s ease;
}

.funding-card:hover::before {
    transform: rotate(45deg) translate(30px, 30px);
}

.funding-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(92, 88, 158, 0.4);
}

.funding-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.funding-card:hover .funding-icon {
    transform: scale(1.2) rotate(360deg);
    background: rgba(255, 255, 255, 0.3);
}

.funding-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.funding-card p {
    line-height: 1.8;
    font-size: 1rem;
}

.sponsorship-schemes {
    padding: 5rem 0;
    background: var(--bg-light);
}

.scheme-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.scheme-card {
    background: var(--secondary-color);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.scheme-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(92, 88, 158, 0.2);
}

.scheme-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 3px solid var(--primary-color);
}

.scheme-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #4a4680);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 2rem;
    flex-shrink: 0;
    transition: transform 0.4s ease;
}

.scheme-card:hover .scheme-icon {
    transform: scale(1.1) rotate(360deg);
}

.scheme-header h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.scheme-content p {
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.scheme-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-box {
    flex: 1;
    background: linear-gradient(135deg, var(--primary-color), #4a4680);
    color: var(--secondary-color);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-box:hover {
    transform: scale(1.05);
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.financial-reports {
    padding: 5rem 0;
    background: var(--secondary-color);
}

.reports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.report-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.report-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(92, 88, 158, 0.2);
}

.report-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), #4a4680);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--secondary-color);
    font-size: 2.5rem;
    transition: transform 0.4s ease;
}

.report-card:hover .report-icon {
    transform: scale(1.2) rotate(360deg);
}

.report-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.report-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.report-link:hover {
    background: #4a4680;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(92, 88, 158, 0.4);
}

/* Teachers Training Page Styles */
.training-intro {
    padding: 3rem 0;
    background: var(--bg-light);
}

.training-intro .intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
}

.training-images {
    padding: 4rem 0;
    background: var(--secondary-color);
}

.training-image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.training-image-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
}

.training-image-card:hover {
    transform: translateY(-10px) scale(1.02);
}

.training-image-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(92, 88, 158, 0.95), transparent);
    color: var(--secondary-color);
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.training-image-card:hover .image-overlay {
    transform: translateY(0);
}

.image-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pcp-recognition {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color), #4a4680);
    color: var(--secondary-color);
}

.pcp-card {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.pcp-icon {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
    animation: float 3s ease-in-out infinite;
}

.pcp-card h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.pcp-card p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.training-programs {
    padding: 5rem 0;
    background: var(--bg-light);
}


.program-card {
    background: var(--secondary-color);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.program-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(92, 88, 158, 0.2);
}

.program-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), #4a4680);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--secondary-color);
    font-size: 2.5rem;
    transition: transform 0.4s ease;
}

.program-card:hover .program-icon {
    transform: scale(1.2) rotate(360deg);
}

.program-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.program-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* History Timeline Styles */
.history-timeline {
    padding: 5rem 0;
    background: var(--bg-light);
    position: relative;
}

.timeline-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary-color), #4a4680);
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
    z-index: 2;
}

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

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

.timeline-year-badge {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color), #4a4680);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 10px 30px rgba(92, 88, 158, 0.4);
    position: relative;
    z-index: 3;
    flex-shrink: 0;
    transition: transform 0.4s ease;
    border: 5px solid var(--secondary-color);
}

.timeline-item:hover .timeline-year-badge {
    transform: scale(1.2) rotate(360deg);
}

.timeline-content {
    flex: 1;
    max-width: 400px;
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 0 3rem;
    transition: all 0.4s ease;
}

.timeline-item:hover .timeline-content {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(92, 88, 158, 0.3);
}

.timeline-image {
    width: 100%;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.timeline-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.timeline-item:hover .timeline-image img {
    transform: scale(1.1);
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.6;
}

@media (max-width: 968px) {
    .timeline-line {
        left: 60px;
    }

    .timeline-item {
        flex-direction: row !important;
        padding-left: 100px;
    }

    .timeline-year-badge {
        position: absolute;
        left: 0;
        width: 80px;
        height: 80px;
        font-size: 1.2rem;
    }

    .timeline-content {
        margin: 0;
        max-width: 100%;
    }

    .scheme-cards {
        grid-template-columns: 1fr;
    }
}

/* Contact Page Styles */
.contact-information {
    padding: 5rem 0;
    background: var(--secondary-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.contact-card {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.contact-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(92, 88, 158, 0.2);
}

.contact-card h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--primary-color);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #4a4680);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.contact-card:hover .contact-item i {
    transform: scale(1.1) rotate(360deg);
}

.contact-item div {
    flex: 1;
}

.contact-item strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #4a4680;
    text-decoration: underline;
}

.email-note {
    margin-top: 3rem;
    text-align: center;
    padding: 2rem;
    background: rgba(92, 88, 158, 0.1);
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
}

.email-note p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.email-note a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.email-note a:hover {
    color: #4a4680;
    text-decoration: underline;
}

.contact-form-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.contact-form {
    max-width: 800px;
    margin: 3rem auto 0;
    background: var(--secondary-color);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-row {
    margin-bottom: 1.5rem;
}

.form-group {
    width: 100%;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--secondary-color);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(92, 88, 158, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn-primary {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
    border-radius: 10px;
    margin-top: 1rem;
}

/* Affiliation Page Image Styles */
.affiliation-image {
    margin-top: 2rem;
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.affiliation-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.affiliation-image img:hover {
    transform: scale(1.02);
}

.affiliation-images {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.affiliation-images img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    object-fit: contain;
    background: var(--secondary-color);
    padding: 1rem;
}

.affiliation-images img:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(92, 88, 158, 0.2);
}

/* School Activities Page Styles */
.activities-header {
    background: linear-gradient(135deg, var(--primary-color), #4a4680);
}

.activities-intro {
    padding: 3rem 0;
    background: var(--bg-light);
}

.activities-intro .intro-content {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
}

.activities-list-section {
    padding: 4rem 0;
    background: var(--secondary-color);
}

.activities-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.activity-bubble {
    background: linear-gradient(135deg, var(--primary-color), #4a4680);
    color: var(--secondary-color);
    padding: 1.5rem 2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(92, 88, 158, 0.3);
    transition: all 0.3s ease;
    animation: bubbleFloat 3s ease-in-out infinite;
}

.activity-bubble:nth-child(1) { animation-delay: 0s; }
.activity-bubble:nth-child(2) { animation-delay: 0.2s; }
.activity-bubble:nth-child(3) { animation-delay: 0.4s; }
.activity-bubble:nth-child(4) { animation-delay: 0.6s; }
.activity-bubble:nth-child(5) { animation-delay: 0.8s; }
.activity-bubble:nth-child(6) { animation-delay: 1s; }
.activity-bubble:nth-child(7) { animation-delay: 1.2s; }
.activity-bubble:nth-child(8) { animation-delay: 1.4s; }
.activity-bubble:nth-child(9) { animation-delay: 1.6s; }

.activity-bubble:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(92, 88, 158, 0.4);
}

.activity-bubble i {
    font-size: 1.5rem;
    animation: iconSpin 2s ease-in-out infinite;
}

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

@keyframes iconSpin {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(360deg);
    }
}

.activities-gallery {
    padding: 5rem 0;
    background: var(--bg-light);
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.activity-card {
    background: var(--secondary-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    border: 3px solid transparent;
}

.activity-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(92, 88, 158, 0.3);
}

.activity-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.activity-card:hover .activity-image img {
    transform: scale(1.15) rotate(2deg);
}

.activity-content {
    padding: 2rem;
    text-align: center;
    position: relative;
}

.activity-content h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.activity-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #4a4680);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: var(--secondary-color);
    font-size: 2rem;
    transition: transform 0.4s ease;
    box-shadow: 0 5px 15px rgba(92, 88, 158, 0.3);
}

.activity-card:hover .activity-icon {
    transform: scale(1.2) rotate(360deg);
}

.assistance-section {
    padding: 5rem 0;
    background: var(--secondary-color);
}

.assistance-content {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
}

.assistance-content strong {
    color: var(--primary-color);
    font-weight: 700;
}

.assistance-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.assistance-image-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
}

.assistance-image-card:hover {
    transform: translateY(-10px) scale(1.02);
}

.assistance-image-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.image-label {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(92, 88, 158, 0.95), transparent);
    color: var(--secondary-color);
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.image-label i {
    font-size: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

/* ============================================
   COMPREHENSIVE MOBILE & TABLET RESPONSIVE
   (Desktop/Laptop styles remain unchanged)
   ============================================ */

/* Tablet Styles (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
    .container {
        padding: 0 30px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .management-cards-grid,
    .contact-grid,
    .activities-grid,
    .assistance-images {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .affiliation-images {
        grid-template-columns: repeat(2, 1fr);
    }

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

    /* Donation Page - Keep 2 columns on tablet */
    .page-content .content-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-section .status-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

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

/* Mobile Styles (below 768px) */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    /* Hero Section */
    .hero {
        height: 70vh;
        min-height: 500px;
        padding: 0 1rem;
    }

    .hero-content {
        padding: 1rem;
        width: 100%;
        max-width: 100%;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        padding: 0;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        padding: 0;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        padding: 0;
        max-width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 100%;
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }

    /* Slider Arrows */
    .slider-arrow {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .slider-arrow-prev {
        left: 10px;
    }

    .slider-arrow-next {
        right: 10px;
    }

    /* Section Headers */
    .section-header {
        padding: 2rem 0;
    }

    .section-header h2 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .section-header p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    /* Menu - Single column on mobile */
    .site-menu {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    /* Grids - All become single column */
    .programs-grid,
    .projects-grid,
    .news-grid,
    .gallery-grid,
    .management-cards-grid,
    .content-grid,
    .stats-section .status-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stats-section .status-card {
        padding: 2rem 1.5rem;
    }

    .stats-section .status-number {
        font-size: 2.5rem;
    }

    .stats-grid,
    .contact-grid,
    .activities-grid,
    .assistance-images,
    .scheme-cards,
    .curriculum-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Donation Page - Single column on mobile */
    .page-content .content-grid {
        grid-template-columns: 1fr;
    }

    /* Affiliation Images */
    .affiliation-images {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .affiliation-image {
        padding: 1.5rem;
    }

    /* Cards */
    .program-card,
    .project-card,
    .news-card,
    .management-card,
    .content-card,
    .contact-card,
    .activity-card,
    .assistance-image-card {
        margin: 0 auto;
        max-width: 100%;
    }

    /* About Page */
    .about-hero {
        padding: 6rem 0 2rem;
        margin-top: 60px;
    }

    .about-hero h1 {
        font-size: 2rem;
    }

    .about-section h2 {
        font-size: 1.8rem;
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 15px;
    }

    .about-sidebar {
        position: relative;
        top: 0;
        margin-bottom: 2rem;
        padding: 1rem 0;
    }

    .about-nav {
        display: flex;
        overflow-x: auto;
        padding: 1rem 0;
        -webkit-overflow-scrolling: touch;
        gap: 0.5rem;
    }

    .about-nav li {
        white-space: nowrap;
        margin-right: 0;
    }

    .about-nav a {
        padding: 0.75rem 1.25rem;
        border-left: none;
        border-bottom: 3px solid transparent;
        font-size: 0.9rem;
    }

    .about-main {
        padding: 2rem 1rem;
    }

    .about-section {
        margin-bottom: 3rem;
        padding-bottom: 2rem;
    }

    .about-section h2 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
        padding-bottom: 0.75rem;
    }

    .lead-text {
        font-size: 1.1rem;
    }

    .about-intro p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .about-image-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1.5rem;
    }

    .about-image-item img {
        height: 250px;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .status-hero {
        padding: 2.5rem 2rem;
    }

    .strength-counter-section .status-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .grade-results-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .careers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .support-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .timeline-section {
        flex-direction: column;
        gap: 1rem;
    }

    .timeline-year {
        min-width: auto;
        width: 100%;
        text-align: center;
    }

    /* Management Page */
    .management-section {
        padding: 3rem 0;
    }

    .management-section .section-header h2 {
        font-size: 2rem;
    }

    /* Contact Page */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-card {
        padding: 2rem;
    }

    .contact-item {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    /* Curriculum Page */
    .curriculum-section {
        padding: 3rem 0;
    }

    /* Financial Resources */
    .financial-section {
        padding: 3rem 0;
    }

    /* Teachers Training */
    .training-section {
        padding: 3rem 0;
    }

    /* History/Timeline */
    .timeline-line {
        left: 30px;
    }

    .timeline-item {
        flex-direction: column;
        padding-left: 80px;
        padding-right: 0;
    }

    .timeline-year-badge {
        position: absolute;
        left: 0;
        width: 60px;
        height: 60px;
        font-size: 1rem;
    }

    .timeline-content {
        margin: 0;
        max-width: 100%;
    }

    .timeline-image {
        height: 200px;
    }

    /* Gallery */
    .gallery-filters {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    .gallery-filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    /* Forms */
    .newsletter-form,
    .contact-form {
        flex-direction: column;
    }

    .newsletter-form input,
    .contact-form input,
    .contact-form textarea,
    .contact-form select {
        width: 100%;
        margin-bottom: 1rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-section ul {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem 1.5rem;
        text-align: left;
        justify-items: start;
        padding: 0;
        margin: 0;
    }

    .footer-section ul li {
        margin: 0;
        padding: 0;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    /* Page Headers */
    .page-header {
        padding: 5rem 0 2rem;
        margin-top: 60px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    /* Stats */
    .stat-item {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    /* Activities Page */
    .activities-list {
        flex-direction: column;
        align-items: stretch;
    }

    .activity-bubble {
        width: 100%;
        justify-content: center;
    }

    .activities-grid {
        grid-template-columns: 1fr;
    }

    /* Donation Page */
    .donation-methods {
        grid-template-columns: 1fr;
    }

    .bank-details {
        padding: 1.5rem;
    }

    /* School Activities */
    .assistance-content {
        padding: 1.5rem;
        font-size: 1rem;
    }

    .assistance-images {
        grid-template-columns: 1fr;
    }

    /* Floating Orbs - Hide on mobile */
    .floating-orb {
        display: none;
    }

    /* Lightbox */
    .lightbox img {
        max-width: 95%;
        max-height: 80%;
    }

    .lightbox-close {
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }
}

/* Small Mobile (below 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        height: 60vh;
        min-height: 400px;
        padding: 0 0.5rem;
    }

    .hero-content {
        padding: 0.5rem;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 0.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        padding: 0;
    }

    .hero-buttons .btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .section-header p {
        font-size: 0.9rem;
    }

    .about-hero {
        padding: 5rem 0 1.5rem;
    }

    .about-hero h1 {
        font-size: 1.5rem;
    }

    .about-layout {
        padding: 0 10px;
        gap: 1.5rem;
    }

    .about-sidebar {
        width: 100%;
        overflow-x: auto;
    }

    .about-nav {
        gap: 0.25rem;
    }

    .about-nav a {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .about-main {
        padding: 1.5rem 0.75rem;
        width: 100%;
        overflow-x: hidden;
    }

    .about-section {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }

    .about-section h2 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .lead-text {
        font-size: 1rem;
    }

    .about-intro p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .about-image-item img {
        height: 200px;
    }

    .mission-card,
    .value-item {
        padding: 1.5rem;
    }

    .strength-counter-section .status-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .grade-results-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .careers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .support-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2rem;
    }

    .management-section .section-header h2 {
        font-size: 1.5rem;
    }

    .contact-card {
        padding: 1.5rem;
    }

    .contact-card h3 {
        font-size: 1.5rem;
    }

    .page-header h1 {
        font-size: 1.5rem;
    }

    .timeline-year-badge {
        width: 50px;
        height: 50px;
        font-size: 0.9rem;
    }

    .timeline-item {
        padding-left: 70px;
    }

    .gallery-filter-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
}

