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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Navigation Styles */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Navbar logo: rectangle box, larger size, fits within nav bar height */
.nav-logo .logo {
    width: 200px;
    height: 80px;
    object-fit: contain;
    object-position: left center;
}

.logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.logo:hover {
    transform: scale(1.1);
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #2c5530;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2c5530;
    transition: width 0.3s ease;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Announcement Bar */
.announcement-bar {
    background: linear-gradient(135deg, #2c5530, #4a7c59);
    color: white;
    padding: 10px 0;
    margin-top: 100px;
    overflow: hidden;
    position: relative;
}

.announcement-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, 
            rgba(255, 0, 150, 0.3) 0%, 
            rgba(0, 200, 255, 0.3) 25%, 
            rgba(255, 200, 0, 0.3) 50%, 
            rgba(0, 255, 150, 0.3) 75%, 
            rgba(255, 100, 200, 0.3) 100%);
    background-size: 300% 100%;
    animation: announcementRainbow 5s linear infinite;
    pointer-events: none;
}

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

.announcement-content {
    display: flex;
    animation: scroll-left 30s linear infinite;
    white-space: nowrap;
    position: relative;
    z-index: 1;
}

@keyframes scroll-left {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Hero Video Section */
.hero-video {
    position: relative;
    height: 70vh;
    overflow: hidden;
}

.hero-video::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 0, 150, 0.2) 0%, transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(0, 200, 255, 0.2) 0%, transparent 30%),
        radial-gradient(circle at 50% 50%, rgba(255, 200, 0, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 10% 80%, rgba(0, 255, 150, 0.2) 0%, transparent 30%),
        radial-gradient(circle at 90% 20%, rgba(255, 100, 200, 0.2) 0%, transparent 30%);
    animation: heroColorful 12s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes heroColorful {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.6;
    }
    33% {
        transform: scale(1.2) rotate(120deg);
        opacity: 0.8;
    }
    66% {
        transform: scale(0.9) rotate(240deg);
        opacity: 0.7;
    }
}

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

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
}

.video-content {
    color: white;
    animation: fadeInUp 1s ease-out;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #2c5530, #4a7c59);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 85, 48, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 85, 48, 0.4);
}

/* Main Content */
.main-content {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
    opacity: 1;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    opacity: 1;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #2c5530, #4a7c59);
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    position: relative;
    z-index: 2;
    opacity: 1;
}

/* About Section */
.about-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

.curriculum-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.curriculum-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
    border-left: 4px solid #2c5530;
}

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

.curriculum-card h3 {
    color: #2c5530;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.curriculum-card p {
    color: #666;
    font-weight: 500;
}

/* Skills Section */
.skills-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    position: relative;
    overflow: hidden;
}

.skills-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 15% 25%, rgba(255, 0, 150, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(0, 200, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 10%, rgba(255, 200, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 20% 90%, rgba(0, 255, 150, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 90% 30%, rgba(255, 100, 200, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(150, 100, 255, 0.15) 0%, transparent 50%);
    animation: skillsBubbles 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.skills-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, 
            rgba(255, 0, 150, 0.08) 0%, 
            transparent 25%, 
            rgba(0, 200, 255, 0.08) 50%, 
            transparent 75%, 
            rgba(255, 200, 0, 0.08) 100%);
    background-size: 400% 400%;
    animation: skillsGradient 15s linear infinite;
    pointer-events: none;
    z-index: 0;
}

.skills-section .container {
    position: relative;
    z-index: 1;
}

@keyframes skillsBubbles {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    25% {
        transform: translate(30px, -30px) scale(1.1) rotate(90deg);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.9) rotate(180deg);
    }
    75% {
        transform: translate(20px, 30px) scale(1.05) rotate(270deg);
    }
}

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

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.skill-category {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.skill-category:hover {
    transform: translateY(-10px);
}

.skill-category h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    color: white;
    font-weight: 600;
}

.learning-skills {
    background: linear-gradient(135deg, #dc3545, #e74c3c);
}

.literacy-skills {
    background: linear-gradient(135deg, #007bff, #0056b3);
}

.life-skills {
    background: linear-gradient(135deg, #28a745, #1e7e34);
}

.skill-category ul {
    list-style: none;
}

.skill-category li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #555;
    font-weight: 500;
}

.skill-category li:last-child {
    border-bottom: none;
}

.skill-category li::before {
    content: '✓';
    color: #2c5530;
    font-weight: bold;
    margin-right: 10px;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            45deg,
            rgba(255, 0, 150, 0.1) 0px,
            rgba(255, 0, 150, 0.1) 20px,
            rgba(0, 200, 255, 0.1) 20px,
            rgba(0, 200, 255, 0.1) 40px,
            rgba(255, 200, 0, 0.1) 40px,
            rgba(255, 200, 0, 0.1) 60px,
            rgba(0, 255, 150, 0.1) 60px,
            rgba(0, 255, 150, 0.1) 80px
        );
    background-size: 200px 200px;
    animation: featuresZigzag 8s linear infinite;
    pointer-events: none;
    z-index: 0;
}

.features-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, 
            rgba(255, 100, 200, 0.12) 0%, 
            transparent 20%, 
            rgba(150, 100, 255, 0.12) 40%, 
            transparent 60%, 
            rgba(0, 200, 255, 0.12) 80%, 
            transparent 100%);
    background-size: 300% 100%;
    animation: featuresStripe 10s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.features-section .container {
    position: relative;
    z-index: 1;
}

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

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #2c5530;
    box-shadow: 0 15px 40px rgba(44, 85, 48, 0.1);
}

.feature-card i {
    font-size: 3rem;
    color: #2c5530;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: #2c5530;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Contact CTA Section */
.contact-cta {
    background: linear-gradient(135deg, #2c5530, #4a7c59);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15) 2px, transparent 2px),
        radial-gradient(circle at 80% 70%, rgba(255, 200, 0, 0.15) 2px, transparent 2px),
        radial-gradient(circle at 50% 50%, rgba(0, 200, 255, 0.15) 2px, transparent 2px),
        radial-gradient(circle at 10% 80%, rgba(255, 0, 150, 0.15) 2px, transparent 2px),
        radial-gradient(circle at 90% 20%, rgba(0, 255, 150, 0.15) 2px, transparent 2px);
    background-size: 60px 60px, 80px 80px, 70px 70px, 50px 50px, 90px 90px;
    animation: contactParticles 20s linear infinite;
    pointer-events: none;
    z-index: 0;
}

.contact-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, 
            rgba(255, 255, 255, 0.1) 0%, 
            rgba(255, 200, 0, 0.15) 25%, 
            rgba(0, 200, 255, 0.15) 50%, 
            rgba(255, 0, 150, 0.15) 75%, 
            rgba(0, 255, 150, 0.1) 100%);
    background-size: 400% 400%;
    animation: contactColorful 15s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.contact-cta .container {
    position: relative;
    z-index: 1;
}

@keyframes contactParticles {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: translate(100px, 100px) rotate(180deg);
        opacity: 0.9;
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
        opacity: 0.6;
    }
}

@keyframes contactColorful {
    0%, 100% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 100% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    75% {
        background-position: 0% 100%;
    }
}

.contact-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.contact-item i {
    font-size: 1.3rem;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.footer-logo .logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.footer-section h3 {
    color: #2c5530;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #2c5530;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #999;
}

.footer-bottom a {
    color: #2c5530;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-bottom a:hover {
    color: #4a7c59;
    text-decoration: underline;
}

/* Gallery Filter Section */
.gallery-filter {
    padding: 40px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.gallery-filter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, 
            rgba(255, 0, 150, 0.06) 0%, 
            transparent 25%, 
            rgba(0, 200, 255, 0.06) 50%, 
            transparent 75%, 
            rgba(255, 200, 0, 0.06) 100%);
    background-size: 300% 300%;
    animation: galleryFilterGradient 12s linear infinite;
    pointer-events: none;
    z-index: 0;
}

.gallery-filter .container {
    position: relative;
    z-index: 1;
}

@keyframes galleryFilterGradient {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 300% 300%;
    }
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 0, 150, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(0, 200, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(255, 200, 0, 0.08) 0%, transparent 45%);
    animation: galleryBubbles 22s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.gallery-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 50px,
            rgba(255, 0, 150, 0.03) 50px,
            rgba(255, 0, 150, 0.03) 52px,
            transparent 52px,
            transparent 100px,
            rgba(0, 200, 255, 0.03) 100px,
            rgba(0, 200, 255, 0.03) 102px
        );
    animation: galleryLines 14s linear infinite;
    pointer-events: none;
    z-index: 0;
}

.gallery-section .container {
    position: relative;
    z-index: 1;
}

@keyframes galleryBubbles {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

@keyframes galleryLines {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100px 0;
    }
}

/* Video Gallery Section */
.video-gallery {
    padding: 80px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.video-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, 
            rgba(255, 100, 200, 0.08) 0%, 
            transparent 30%, 
            rgba(150, 100, 255, 0.08) 50%, 
            transparent 70%, 
            rgba(0, 200, 255, 0.08) 100%);
    background-size: 350% 350%;
    animation: videoGalleryStripe 16s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.video-gallery .container {
    position: relative;
    z-index: 1;
}

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

/* Gallery CTA Section */
.gallery-cta {
    background: linear-gradient(135deg, #2c5530, #4a7c59);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.gallery-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle, rgba(255, 255, 255, 0.12) 2px, transparent 2px),
        radial-gradient(circle, rgba(255, 200, 0, 0.12) 2px, transparent 2px);
    background-size: 60px 60px, 80px 80px;
    animation: galleryCtaParticles 20s linear infinite;
    pointer-events: none;
    z-index: 0;
}

.gallery-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, 
            rgba(255, 255, 255, 0.1) 0%, 
            rgba(255, 200, 0, 0.12) 25%, 
            rgba(0, 200, 255, 0.12) 50%, 
            rgba(255, 0, 150, 0.1) 75%, 
            rgba(0, 255, 150, 0.1) 100%);
    background-size: 400% 400%;
    animation: galleryCtaColorful 18s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.gallery-cta .container {
    position: relative;
    z-index: 1;
}

@keyframes galleryCtaParticles {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    100% {
        transform: translate(60px, 60px) rotate(360deg);
    }
}

@keyframes galleryCtaColorful {
    0%, 100% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 100% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    75% {
        background-position: 0% 100%;
    }
}

/* Curriculum Overview Section */
.curriculum-overview {
    padding: 80px 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.curriculum-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 0, 150, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 75% 75%, rgba(0, 200, 255, 0.1) 0%, transparent 40%);
    animation: curriculumOverviewFloat 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.curriculum-overview::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            45deg,
            rgba(255, 0, 150, 0.04) 0px,
            rgba(255, 0, 150, 0.04) 25px,
            transparent 25px,
            transparent 50px,
            rgba(0, 200, 255, 0.04) 50px,
            rgba(0, 200, 255, 0.04) 75px
        );
    animation: curriculumOverviewDiagonal 14s linear infinite;
    pointer-events: none;
    z-index: 0;
}

.curriculum-overview .container {
    position: relative;
    z-index: 2;
}

.curriculum-overview .section-header {
    position: relative;
    z-index: 2;
    opacity: 1;
}

@keyframes curriculumOverviewFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(25px, -25px) scale(1.1);
    }
}

@keyframes curriculumOverviewDiagonal {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 75px 75px;
    }
}

/* Special Programs Section */
.special-programs {
    padding: 80px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.special-programs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, 
            rgba(255, 100, 200, 0.03) 0%, 
            transparent 25%, 
            rgba(150, 100, 255, 0.03) 50%, 
            transparent 75%, 
            rgba(0, 200, 255, 0.03) 100%);
    background-size: 400% 100%;
    animation: specialProgramsStripe 15s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.special-programs .container {
    position: relative;
    z-index: 10;
    isolation: isolate;
}

.special-programs .section-header {
    position: relative;
    z-index: 10;
    opacity: 1 !important;
    visibility: visible !important;
}

.special-programs .section-header h2 {
    color: #2c5530 !important;
    position: relative;
    z-index: 10;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.special-programs .section-header p {
    color: #666 !important;
    position: relative;
    z-index: 10;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 10;
}

.program-card {
    background: white !important;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: relative;
    z-index: 10;
    opacity: 1 !important;
    color: #333 !important;
    visibility: visible !important;
    display: block !important;
}

.program-card:hover {
    transform: translateY(-10px);
    border-color: #2c5530;
    box-shadow: 0 15px 40px rgba(44, 85, 48, 0.15);
}

.program-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2c5530, #4a7c59) !important;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 10;
    opacity: 1 !important;
    visibility: visible !important;
}

.program-icon i {
    color: white !important;
    font-size: 2rem;
    position: relative;
    z-index: 10;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.program-card * {
    position: relative;
    z-index: 10;
    color: inherit;
}

.program-card h3,
.program-card h4,
.program-card p {
    position: relative;
    z-index: 10;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    color: inherit !important;
}

.program-card h3 {
    color: #2c5530 !important;
    font-size: 1.5rem;
    margin-bottom: 10px;
    position: relative;
    z-index: 10;
    opacity: 1 !important;
    font-weight: 600;
    visibility: visible !important;
    display: block !important;
}

.program-card h4 {
    color: #4a7c59 !important;
    font-size: 1rem;
    margin-bottom: 15px;
    font-weight: 500;
    position: relative;
    z-index: 10;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.program-card p {
    color: #333 !important;
    line-height: 1.6;
    font-size: 0.95rem;
    position: relative;
    z-index: 10;
    opacity: 1 !important;
    font-weight: 400;
    visibility: visible !important;
    display: block !important;
}

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

/* Co-curricular Section */
.co-curricular {
    padding: 80px 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.co-curricular::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 30%, rgba(255, 0, 150, 0.03) 0%, transparent 35%),
        radial-gradient(circle at 85% 70%, rgba(0, 200, 255, 0.03) 0%, transparent 35%),
        radial-gradient(circle at 50% 50%, rgba(255, 200, 0, 0.03) 0%, transparent 40%);
    animation: coCurricularBubbles 18s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.co-curricular::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, 
            rgba(255, 0, 150, 0.02) 0%, 
            transparent 30%, 
            rgba(0, 200, 255, 0.02) 60%, 
            transparent 90%, 
            rgba(255, 200, 0, 0.02) 100%);
    background-size: 300% 300%;
    animation: coCurricularGradient 16s linear infinite;
    pointer-events: none;
    z-index: 1;
}

.co-curricular .container {
    position: relative;
    z-index: 10;
    isolation: isolate;
}

.co-curricular .section-header {
    position: relative;
    z-index: 10;
    opacity: 1 !important;
    visibility: visible !important;
}

.co-curricular .section-header h2 {
    color: #2c5530 !important;
    position: relative;
    z-index: 10;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.co-curricular .section-header p {
    color: #666 !important;
    position: relative;
    z-index: 10;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 10;
}

.activity-category {
    background: white !important;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative;
    z-index: 10;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    color: #333 !important;
}

.activity-category * {
    position: relative;
    z-index: 10;
    color: inherit;
}

.activity-category h3 {
    color: #2c5530 !important;
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #2c5530;
    position: relative;
    z-index: 10;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.activity-category ul {
    list-style: none;
    position: relative;
    z-index: 10;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.activity-category li {
    padding: 8px 0;
    color: #555 !important;
    font-weight: 500;
    border-bottom: 1px solid #eee;
    position: relative;
    z-index: 10;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.activity-category li:last-child {
    border-bottom: none;
}

.activity-category li::before {
    content: '✓';
    color: #2c5530 !important;
    font-weight: bold;
    margin-right: 10px;
    position: relative;
    z-index: 10;
    opacity: 1 !important;
    visibility: visible !important;
}

@keyframes coCurricularBubbles {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.95) rotate(240deg);
    }
}

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

/* Assessment Section */
.assessment-section {
    padding: 80px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.assessment-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 45px,
            rgba(255, 0, 150, 0.02) 45px,
            rgba(255, 0, 150, 0.02) 47px,
            transparent 47px,
            transparent 90px,
            rgba(0, 200, 255, 0.02) 90px,
            rgba(0, 200, 255, 0.02) 92px
        );
    animation: assessmentLines 11s linear infinite;
    pointer-events: none;
    z-index: 1;
}

.assessment-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 40% 50%, rgba(255, 200, 0, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 60% 50%, rgba(0, 255, 150, 0.03) 0%, transparent 40%);
    animation: assessmentOrbs 17s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.assessment-section .container {
    position: relative;
    z-index: 10;
    isolation: isolate;
}

.assessment-section .section-header {
    position: relative;
    z-index: 10;
    opacity: 1 !important;
    visibility: visible !important;
}

.assessment-section .section-header h2 {
    color: #2c5530 !important;
    position: relative;
    z-index: 10;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.assessment-section .section-header p {
    color: #666 !important;
    position: relative;
    z-index: 10;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.assessment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 10;
}

.assessment-card {
    background: white !important;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: relative;
    z-index: 10;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    color: #333 !important;
}

.assessment-card * {
    position: relative;
    z-index: 10;
    color: inherit;
}

.assessment-card i {
    font-size: 2.5rem;
    color: #2c5530 !important;
    margin-bottom: 20px;
    position: relative;
    z-index: 10;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.assessment-card h3 {
    color: #2c5530 !important;
    font-size: 1.3rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 10;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.assessment-card p {
    color: #333 !important;
    line-height: 1.6;
    font-size: 0.95rem;
    position: relative;
    z-index: 10;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.assessment-card:hover {
    transform: translateY(-5px);
    border-color: #2c5530;
    box-shadow: 0 15px 40px rgba(44, 85, 48, 0.1);
}

@keyframes assessmentLines {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 0 90px;
    }
}

@keyframes assessmentOrbs {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(25px, -25px) scale(1.12);
    }
}

/* Teaching Methodology Section */
.teaching-methodology {
    padding: 80px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.teaching-methodology::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, 
            rgba(255, 100, 200, 0.06) 0%, 
            transparent 30%, 
            rgba(150, 100, 255, 0.06) 50%, 
            transparent 70%, 
            rgba(0, 200, 255, 0.06) 100%);
    background-size: 400% 100%;
    animation: teachingMethodologyStripe 14s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.teaching-methodology .container {
    position: relative;
    z-index: 2;
}

.teaching-methodology .section-header {
    position: relative;
    z-index: 2;
    opacity: 1;
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.methodology-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    z-index: 2;
    opacity: 1;
}

.methodology-card:hover {
    transform: translateY(-5px);
    border-color: #2c5530;
    box-shadow: 0 15px 40px rgba(44, 85, 48, 0.1);
}

.methodology-card i {
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    opacity: 1;
}

.methodology-card h3 {
    color: #2c5530;
    font-size: 1.3rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    opacity: 1;
}

.methodology-card p {
    color: #666;
    line-height: 1.6;
    position: relative;
    z-index: 2;
    opacity: 1;
}

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

/* Methodology Grid and Cards - Already defined above with visibility fixes */

/* Scholarship Section */
.scholarship-section {
    padding: 80px 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.scholarship-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 0, 150, 0.08) 0%, transparent 35%),
        radial-gradient(circle at 75% 75%, rgba(0, 200, 255, 0.08) 0%, transparent 35%);
    animation: scholarshipFloat 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.scholarship-section .container {
    position: relative;
    z-index: 2;
}

.scholarship-section .section-header {
    position: relative;
    z-index: 2;
    opacity: 1;
}

.scholarship-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.scholarship-info {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
    opacity: 1;
}

.scholarship-info h3 {
    color: #2c5530;
    font-size: 1.8rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    opacity: 1;
}

.scholarship-info h4 {
    color: #2c5530;
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    opacity: 1;
}

.scholarship-info p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
    position: relative;
    z-index: 2;
    opacity: 1;
}

.scholarship-info ul {
    position: relative;
    z-index: 2;
    opacity: 1;
}

.scholarship-info .curriculum-features {
    margin-top: 15px;
    position: relative;
    z-index: 2;
    opacity: 1;
}

@keyframes scholarshipFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

/* Scholarship Content and Info - Already defined above with visibility fixes */

/* Programs Grid - Already defined above with visibility fixes */

/* Activities Grid - Already defined above with visibility fixes */

/* Assessment Grid - Already defined above with visibility fixes */

/* Curriculum CTA Section */
.curriculum-cta {
    background: linear-gradient(135deg, #2c5530, #4a7c59);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.curriculum-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 25% 35%, rgba(255, 255, 255, 0.12) 2px, transparent 2px),
        radial-gradient(circle at 75% 65%, rgba(255, 200, 0, 0.12) 2px, transparent 2px),
        radial-gradient(circle at 50% 50%, rgba(0, 200, 255, 0.12) 2px, transparent 2px);
    background-size: 65px 65px, 85px 85px, 75px 75px;
    animation: curriculumCtaParticles 19s linear infinite;
    pointer-events: none;
    z-index: 0;
}

.curriculum-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, 
            rgba(255, 255, 255, 0.1) 0%, 
            rgba(255, 200, 0, 0.12) 25%, 
            rgba(0, 200, 255, 0.12) 50%, 
            rgba(255, 0, 150, 0.1) 75%, 
            rgba(0, 255, 150, 0.1) 100%);
    background-size: 400% 400%;
    animation: curriculumCtaColorful 17s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.curriculum-cta .container {
    position: relative;
    z-index: 2;
}

.curriculum-cta h2,
.curriculum-cta p,
.curriculum-cta .cta-buttons,
.curriculum-cta .cta-button {
    position: relative;
    z-index: 2;
    opacity: 1;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.cta-button.secondary {
    background: white;
    color: #2c5530;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background: transparent;
    color: white;
    border-color: white;
}

@keyframes curriculumCtaParticles {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translate(90px, 90px) rotate(180deg);
        opacity: 0.9;
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
        opacity: 0.7;
    }
}

@keyframes curriculumCtaColorful {
    0%, 100% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 100% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    75% {
        background-position: 0% 100%;
    }
}

/* Contact Info Section */
.contact-info-section {
    padding: 80px 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.contact-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 0, 150, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(0, 200, 255, 0.1) 0%, transparent 40%);
    animation: contactInfoFloat 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.contact-info-section .container {
    position: relative;
    z-index: 2;
}

.contact-info-section .contact-info-grid,
.contact-info-section .contact-info-card {
    position: relative;
    z-index: 2;
    opacity: 1;
    visibility: visible;
}

.contact-info-section .contact-info-card h4,
.contact-info-section .contact-info-card p,
.contact-info-section .contact-info-card i {
    position: relative;
    z-index: 2;
    color: inherit;
    opacity: 1;
    visibility: visible;
}

@keyframes contactInfoFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, 
            rgba(255, 0, 150, 0.05) 0%, 
            transparent 25%, 
            rgba(0, 200, 255, 0.05) 50%, 
            transparent 75%, 
            rgba(255, 200, 0, 0.05) 100%);
    background-size: 300% 300%;
    animation: contactFormGradient 13s linear infinite;
    pointer-events: none;
    z-index: 0;
}

.contact-form-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 55px,
            rgba(255, 100, 200, 0.03) 55px,
            rgba(255, 100, 200, 0.03) 57px
        );
    animation: contactFormLines 10s linear infinite;
    pointer-events: none;
    z-index: 0;
}

.contact-form-section .container {
    position: relative;
    z-index: 2;
}

.contact-form-section .contact-form-container,
.contact-form-section .form-header,
.contact-form-section .contact-form {
    position: relative;
    z-index: 2;
    opacity: 1;
    visibility: visible;
}

.contact-form-section .form-header h2,
.contact-form-section .form-header p,
.contact-form-section .form-group label,
.contact-form-section .form-group input,
.contact-form-section .form-group textarea,
.contact-form-section .form-group select,
.contact-form-section .submit-btn {
    position: relative;
    z-index: 2;
    color: inherit;
    opacity: 1;
    visibility: visible;
}

@keyframes contactFormGradient {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 300% 300%;
    }
}

@keyframes contactFormLines {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 110px 0;
    }
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.map-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(255, 200, 0, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 70% 60%, rgba(0, 255, 150, 0.1) 0%, transparent 40%);
    animation: mapOrbs 16s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.map-section .container {
    position: relative;
    z-index: 2;
}

.map-section .section-header,
.map-section .map-container {
    position: relative;
    z-index: 2;
    opacity: 1;
    visibility: visible;
}

.map-section .section-header h2 {
    color: #2c5530;
    opacity: 1;
    visibility: visible;
}

.map-section .section-header p {
    color: #666;
    opacity: 1;
    visibility: visible;
}

@keyframes mapOrbs {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(20px, -20px) scale(1.15);
    }
}

.map-container {
    width: 100%;
    max-width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
}

@media (max-width: 768px) {
    .map-container iframe {
        height: 350px;
    }
}

/* Admission Process Section */
.admission-process {
    padding: 80px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.admission-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, 
            rgba(255, 100, 200, 0.08) 0%, 
            transparent 30%, 
            rgba(150, 100, 255, 0.08) 50%, 
            transparent 70%, 
            rgba(0, 200, 255, 0.08) 100%);
    background-size: 400% 100%;
    animation: admissionStripe 14s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.admission-process::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        repeating-linear-gradient(
            45deg,
            rgba(255, 0, 150, 0.04) 0px,
            rgba(255, 0, 150, 0.04) 28px,
            rgba(0, 255, 150, 0.04) 28px,
            rgba(0, 255, 150, 0.04) 56px
        );
    animation: admissionDiagonal 15s linear infinite;
    pointer-events: none;
    z-index: 0;
}

.admission-process .container {
    position: relative;
    z-index: 2;
}

.admission-process .section-header,
.admission-process .process-steps,
.admission-process .process-step {
    position: relative;
    z-index: 2;
    opacity: 1;
    visibility: visible;
}

.admission-process .section-header h2,
.admission-process .section-header p,
.admission-process .step-content h3,
.admission-process .step-content p,
.admission-process .step-number {
    position: relative;
    z-index: 2;
    color: inherit;
    opacity: 1;
    visibility: visible;
}

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

@keyframes admissionDiagonal {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(56px, 56px);
    }
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 0, 150, 0.08) 0%, transparent 35%),
        radial-gradient(circle at 75% 75%, rgba(0, 200, 255, 0.08) 0%, transparent 35%),
        radial-gradient(circle at 50% 50%, rgba(255, 200, 0, 0.06) 0%, transparent 40%);
    animation: faqBubbles 19s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.faq-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, 
            rgba(255, 0, 150, 0.04) 0%, 
            transparent 30%, 
            rgba(0, 200, 255, 0.04) 60%, 
            transparent 90%, 
            rgba(255, 200, 0, 0.04) 100%);
    background-size: 300% 300%;
    animation: faqGradient 15s linear infinite;
    pointer-events: none;
    z-index: 0;
}

.faq-section .container {
    position: relative;
    z-index: 2;
}

.faq-section .section-header,
.faq-section .faq-container,
.faq-section .faq-item {
    position: relative;
    z-index: 2;
    opacity: 1;
    visibility: visible;
}

.faq-section .section-header h2,
.faq-section .section-header p,
.faq-section .faq-question h3,
.faq-section .faq-question i,
.faq-section .faq-answer,
.faq-section .faq-answer p {
    position: relative;
    z-index: 2;
    color: inherit;
    opacity: 1;
    visibility: visible;
}

@keyframes faqBubbles {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    33% {
        transform: translate(25px, -25px) scale(1.08) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.96) rotate(240deg);
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 20px 0;
    }

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

    .nav-toggle {
        display: flex;
    }

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

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

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

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

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

    .contact-info {
        flex-direction: column;
        gap: 20px;
    }

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

    .container {
        padding: 0 15px;
    }

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

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

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

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

    .scholarship-info {
        padding: 30px 20px;
    }

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

    .cta-button.secondary {
        width: 100%;
        max-width: 300px;
    }
}

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

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

    .cta-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

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

    .curriculum-card {
        padding: 20px;
    }

    .skill-category {
        padding: 25px;
    }

    .feature-card {
        padding: 30px 15px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #2c5530;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, #2c5530, #4a7c59);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, 
            rgba(255, 0, 150, 0.2) 0%, 
            rgba(0, 200, 255, 0.2) 25%, 
            rgba(255, 200, 0, 0.2) 50%, 
            rgba(0, 255, 150, 0.2) 75%, 
            rgba(255, 100, 200, 0.2) 100%);
    background-size: 300% 100%;
    animation: pageHeaderRainbow 6s linear infinite;
    pointer-events: none;
    z-index: 0;
}

.page-header::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle, rgba(255, 255, 255, 0.1) 2px, transparent 2px);
    background-size: 80px 80px;
    animation: pageHeaderDots 15s linear infinite;
    pointer-events: none;
    z-index: 0;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

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

@keyframes pageHeaderDots {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    100% {
        transform: translate(80px, 80px) rotate(360deg);
    }
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.2s both;
}

/* Philosophy Section */
.philosophy-section {
    padding: 80px 0;
    background: white;
}

.philosophy-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.philosophy-text h2 {
    color: #2c5530;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.philosophy-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.chairman-photo {
    width: 100%;
    max-width: 300px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.chairman-photo:hover {
    transform: scale(1.05);
}

/* Leader Section */
.leader-section {
    padding: 80px 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.leader-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 0, 150, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 75% 75%, rgba(0, 200, 255, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(255, 200, 0, 0.1) 0%, transparent 50%);
    animation: leaderFloat 18s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.leader-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, 
            transparent 48%, 
            rgba(255, 0, 150, 0.05) 49%, 
            rgba(255, 0, 150, 0.05) 51%, 
            transparent 52%),
        linear-gradient(-45deg, 
            transparent 48%, 
            rgba(0, 200, 255, 0.05) 49%, 
            rgba(0, 200, 255, 0.05) 51%, 
            transparent 52%);
    background-size: 120px 120px;
    animation: leaderPattern 12s linear infinite;
    pointer-events: none;
    z-index: 0;
}

.leader-section .container {
    position: relative;
    z-index: 1;
}

@keyframes leaderFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

@keyframes leaderPattern {
    0% {
        background-position: 0 0, 0 0;
    }
    100% {
        background-position: 120px 120px, -120px 120px;
    }
}

.leader-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.leader-photo {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.leader-info h2 {
    color: #2c5530;
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.leader-info h3 {
    color: #4a7c59;
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.leader-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.leader-achievements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.achievement-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.achievement-item i {
    color: #2c5530;
    font-size: 1.5rem;
}

.achievement-item span {
    font-weight: 600;
    color: #333;
}

/* Mission Vision Section */
.mission-vision-section {
    padding: 80px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.mission-vision-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, 
            rgba(255, 100, 200, 0.08) 0%, 
            transparent 30%, 
            rgba(150, 100, 255, 0.08) 50%, 
            transparent 70%, 
            rgba(0, 200, 255, 0.08) 100%);
    background-size: 400% 100%;
    animation: missionStripe 14s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.mission-vision-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        repeating-linear-gradient(
            45deg,
            rgba(255, 0, 150, 0.06) 0px,
            rgba(255, 0, 150, 0.06) 30px,
            rgba(0, 255, 150, 0.06) 30px,
            rgba(0, 255, 150, 0.06) 60px,
            rgba(255, 200, 0, 0.06) 60px,
            rgba(255, 200, 0, 0.06) 90px
        );
    animation: missionDiagonal 16s linear infinite;
    pointer-events: none;
    z-index: 0;
}

.mission-vision-section .container {
    position: relative;
    z-index: 1;
}

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

@keyframes missionDiagonal {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(90px, 90px);
    }
}

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

.mission-card, .vision-card, .values-card {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease;
    border-top: 4px solid #2c5530;
}

.mission-card:hover, .vision-card:hover, .values-card:hover {
    transform: translateY(-10px);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2c5530, #4a7c59);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.card-icon i {
    color: white;
    font-size: 2rem;
}

.mission-card h3, .vision-card h3, .values-card h3 {
    color: #2c5530;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.mission-card p, .vision-card p, .values-card p {
    color: #555;
    line-height: 1.6;
}

/* History Section */
.history-section {
    padding: 80px 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.history-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 30%, rgba(255, 0, 150, 0.1) 0%, transparent 35%),
        radial-gradient(circle at 85% 70%, rgba(0, 200, 255, 0.1) 0%, transparent 35%),
        radial-gradient(circle at 50% 10%, rgba(255, 200, 0, 0.1) 0%, transparent 35%),
        radial-gradient(circle at 20% 90%, rgba(0, 255, 150, 0.1) 0%, transparent 35%);
    animation: historyBubbles 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.history-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, 
            rgba(255, 0, 150, 0.06) 0%, 
            transparent 25%, 
            rgba(0, 200, 255, 0.06) 50%, 
            transparent 75%, 
            rgba(255, 200, 0, 0.06) 100%);
    background-size: 300% 300%;
    animation: historyGradient 18s linear infinite;
    pointer-events: none;
    z-index: 0;
}

.history-section .container {
    position: relative;
    z-index: 1;
}

@keyframes historyBubbles {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    33% {
        transform: translate(25px, -25px) scale(1.1) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.95) rotate(240deg);
    }
}

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

.history-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.history-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #2c5530;
    transform: translateX(-50%);
}

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

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

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

.timeline-year {
    background: #2c5530;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

.timeline-content {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin: 0 30px;
    flex: 1;
}

.timeline-content h4 {
    color: #2c5530;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.timeline-content p {
    color: #555;
    line-height: 1.6;
}

/* Facilities Section */
.facilities-section {
    padding: 80px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.facilities-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 40px,
            rgba(255, 0, 150, 0.04) 40px,
            rgba(255, 0, 150, 0.04) 42px,
            transparent 42px,
            transparent 80px,
            rgba(0, 200, 255, 0.04) 80px,
            rgba(0, 200, 255, 0.04) 82px
        );
    animation: facilitiesLines 10s linear infinite;
    pointer-events: none;
    z-index: 0;
}

.facilities-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(255, 200, 0, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 70% 60%, rgba(0, 255, 150, 0.08) 0%, transparent 40%);
    animation: facilitiesOrbs 15s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.facilities-section .container {
    position: relative;
    z-index: 1;
}

@keyframes facilitiesLines {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 0 80px;
    }
}

@keyframes facilitiesOrbs {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(20px, -20px) scale(1.15);
    }
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.facility-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.facility-card:hover {
    transform: translateY(-5px);
    border-color: #2c5530;
    box-shadow: 0 15px 40px rgba(44, 85, 48, 0.1);
}

.facility-card i {
    font-size: 3rem;
    color: #2c5530;
    margin-bottom: 20px;
}

.facility-card h4 {
    color: #2c5530;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.facility-card p {
    color: #666;
    line-height: 1.6;
}

/* Statistics Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c5530, #4a7c59);
    color: white;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.12) 2px, transparent 2px),
        radial-gradient(circle at 80% 70%, rgba(255, 200, 0, 0.12) 2px, transparent 2px),
        radial-gradient(circle at 50% 50%, rgba(0, 200, 255, 0.12) 2px, transparent 2px);
    background-size: 70px 70px, 90px 90px, 80px 80px;
    animation: statsParticles 18s linear infinite;
    pointer-events: none;
    z-index: 0;
}

.stats-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, 
            rgba(255, 255, 255, 0.08) 0%, 
            rgba(255, 200, 0, 0.1) 25%, 
            rgba(0, 200, 255, 0.1) 50%, 
            rgba(255, 0, 150, 0.08) 75%, 
            rgba(0, 255, 150, 0.08) 100%);
    background-size: 400% 400%;
    animation: statsColorful 16s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.stats-section .container {
    position: relative;
    z-index: 1;
}

@keyframes statsParticles {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translate(100px, 100px) rotate(180deg);
        opacity: 0.9;
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
        opacity: 0.7;
    }
}

@keyframes statsColorful {
    0%, 100% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 100% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    75% {
        background-position: 0% 100%;
    }
}

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

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

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

/* Gallery Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 40px 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    display: block;
    opacity: 1;
}

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

.gallery-item img {
    width: 100%;
    height: auto;
    min-height: 250px;
    max-height: 350px;
    object-fit: contain;
    object-position: center;
    background: #f8f9fa;
    transition: transform 0.3s ease;
    display: block;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: transparent;
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    pointer-events: none;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
    background: transparent;
}

.gallery-overlay h3,
.gallery-overlay p {
    display: none;
}

.gallery-item:hover .gallery-overlay h3,
.gallery-item:hover .gallery-overlay p {
    display: none;
}

.gallery-zoom {
    pointer-events: auto;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-zoom {
    color: white;
    transform: scale(1.2);
}

/* Curriculum Styles */
.curriculum-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    padding: 40px 0;
    position: relative;
    z-index: 2;
}

.curriculum-card-detailed {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
    opacity: 1;
}

.curriculum-card-detailed:hover {
    transform: translateY(-10px);
}

.curriculum-header {
    background: linear-gradient(135deg, #2c5530, #4a7c59);
    color: white;
    padding: 30px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.curriculum-header h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.curriculum-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.curriculum-content {
    padding: 30px;
    position: relative;
    z-index: 2;
    opacity: 1;
    color: #333;
}

.curriculum-content h4 {
    color: #2c5530;
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 15px;
}

.curriculum-content h4:first-child {
    margin-top: 0;
}

.curriculum-content p {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.curriculum-features {
    list-style: none;
    position: relative;
    z-index: 2;
    opacity: 1;
}

.curriculum-features li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    opacity: 1;
    font-weight: 500;
}

.curriculum-features li:last-child {
    border-bottom: none;
}

/* Contact Form Styles */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

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

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #2c5530;
}

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

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.contact-info-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.contact-info-card i {
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 20px;
}

.contact-info-card h4 {
    color: #2c5530;
    margin-bottom: 15px;
}

.contact-info-card p {
    color: #666;
    line-height: 1.6;
}

/* Responsive Updates for New Sections */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .philosophy-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .leader-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .history-timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 50px;
    }
    
    .timeline-year {
        position: absolute;
        left: -40px;
        top: 0;
    }
    
    .timeline-content {
        margin: 20px 0 0 0;
        width: 100%;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    
    .facilities-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .curriculum-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}
