        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Open Sans', sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4 {
            font-family: 'Montserrat', sans-serif;
            color: #006400;
        }
        
        a {
            text-decoration: none;
            color: #006400;
        }
        
        img {
            max-width: 100%;
            height: auto;
        }
        
        /* Animation Classes */
        .fade-in {
            opacity: 0;
            animation: fadeIn 1s ease-in forwards;
        }
        
        @keyframes fadeIn {
            to { opacity: 1; }
        }
        
        .slide-up {
            opacity: 0;
            transform: translateY(30px);
            animation: slideUp 0.8s ease-out forwards;
        }
        
        @keyframes slideUp {
            to { 
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .pulse {
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        /* Header Styles */
        header {
            background-color: #006400;
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        header.scrolled {
            padding: 0.5rem 0;
            background-color: rgba(0, 100, 0, 0.95);
        }
        
        .header-container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo img {
            height: 60px;
            margin-right: 15px;
            transition: all 0.3s ease;
        }
        
        header.scrolled .logo img {
            height: 50px;
        }
        
        .logo-text h1 {
            color: white;
            font-size: 1.5rem;
            margin-bottom: 0.2rem;
            transition: all 0.3s ease;
        }
        
        header.scrolled .logo-text h1 {
            font-size: 1.3rem;
        }
        
        .logo-text p {
            color: #FFD700;
            font-size: 0.8rem;
            transition: all 0.3s ease;
        }
        
        header.scrolled .logo-text p {
            font-size: 0.7rem;
        }
        
        /* Desktop Navigation */
        .desktop-nav ul {
            display: flex;
            list-style: none;
        }
        
        .desktop-nav ul li {
            margin-left: 1.5rem;
        }
        
        .desktop-nav ul li a {
            color: white;
            font-weight: 600;
            transition: all 0.3s;
            position: relative;
        }
        
        .desktop-nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: #FFD700;
            bottom: -5px;
            left: 0;
            transition: width 0.3s ease;
        }
        
        .desktop-nav ul li a:hover::after {
            width: 100%;
        }
        
        .desktop-nav ul li a:hover {
            color: #FFD700;
        }
        
        /* Mobile Navigation */
        .mobile-nav-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        
        .mobile-nav-btn:hover {
            transform: scale(1.1);
        }
        
        .mobile-nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 100, 0, 0.95);
            z-index: 1000;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            transform: translateX(100%);
            transition: transform 0.3s ease-in-out;
        }
        
        .mobile-nav.active {
            transform: translateX(0);
        }
        
        .mobile-nav ul {
            list-style: none;
            text-align: center;
        }
        
        .mobile-nav ul li {
            margin: 1.5rem 0;
        }
        
        .mobile-nav ul li a {
            color: white;
            font-size: 1.5rem;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
        }
        
        .mobile-nav ul li a:hover {
            color: #FFD700;
            transform: translateX(5px);
        }
        
        .mobile-nav-close {
            position: absolute;
            top: 2rem;
            right: 2rem;
            color: white;
            font-size: 2rem;
            background: none;
            border: none;
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        
        .mobile-nav-close:hover {
            transform: rotate(90deg);
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            height: 80vh;
            min-height: 500px;
            display: flex;
            align-items: center;
            text-align: center;
            color: white;
        }
        
        .hero-content {
            width: 90%;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero h2 {
            color: white;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        }
        
        .btn {
            display: inline-block;
            background-color: #FFD700;
            color: #006400;
            padding: 0.8rem 1.5rem;
            border: none;
            border-radius: 5px;
            font-weight: bold;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }
        
        .btn:hover {
            background-color: #e6c200;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        .btn::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.7s;
        }
        
        .btn:hover::after {
            left: 100%;
        }
        
        /* Sections */
        .section {
            padding: 4rem 0;
            opacity: 0;
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        
        .section.visible {
            opacity: 1;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title .section-title-green {
            color: white;
        }
        
        .section-title p {
            color: #666;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        /* About Section */
        .about-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .about-card {
            background-color: #f9f9f9;
            padding: 2rem;
            border-radius: 5px;
            text-align: center;
            transition: all 0.3s;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            opacity: 0;
            transform: translateY(20px);
        }
        
        .about-card.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .about-card:hover {
            transform: translateY(-10px) !important;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        .about-card i {
            font-size: 3rem;
            color: #FFD700;
            margin-bottom: 1rem;
            transition: transform 0.3s ease;
        }
        
        .about-card:hover i {
            transform: scale(1.1);
        }
        
        /* Programs Section */
        .programs {
            background-color: #f0f7f0;
        }
        
        .programs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }
        
        .program-card {
            background-color: white;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            transition: all 0.3s;
            opacity: 0;
            transform: translateY(20px);
        }
        
        .program-card.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .program-card:hover {
            transform: translateY(-10px) scale(1.02) !important;
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        
        .program-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .program-card:hover img {
            transform: scale(1.1);
        }
        
        .program-content {
            padding: 1.5rem;
        }
        
        .program-content h3 {
            margin-bottom: 0.5rem;
            transition: color 0.3s ease;
        }
        
        .program-card:hover .program-content h3 {
            color: #FFD700;
        }
        
        /* Testimonials */
        .testimonials {
            background-color: #006400;
            color: white;
        }
        
        .testimonials .section-title {
            color: white;
        }
        
        .testimonials .section-title p {
            color: #ccc;
        }
        
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .testimonial-card {
            background-color: rgba(255,255,255,0.1);
            padding: 2rem;
            border-radius: 5px;
            transition: all 0.3s;
            opacity: 0;
            transform: translateY(20px);
        }
        
        .testimonial-card.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .testimonial-card:hover {
            background-color: rgba(255,255,255,0.15);
            transform: translateY(-5px) !important;
        }
        
        .testimonial-card .quote {
            font-style: italic;
            margin-bottom: 1rem;
            position: relative;
        }
        
        .testimonial-card .quote::before {
            content: '"';
            font-size: 3rem;
            color: rgba(255, 215, 0, 0.2);
            position: absolute;
            left: -15px;
            top: -20px;
        }
        
        .testimonial-card .author {
            font-weight: bold;
            color: #FFD700;
        }
        
        /* Footer */
        footer {
            background-color: #003300;
            color: white;
            padding: 3rem 0 1rem;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .footer-col h3 {
            color: #FFD700;
            margin-bottom: 1rem;
            font-size: 1.2rem;
            position: relative;
            display: inline-block;
        }
        
        .footer-col h3::after {
            content: '';
            position: absolute;
            width: 50px;
            height: 2px;
            background: #FFD700;
            bottom: -5px;
            left: 0;
        }
        
        .footer-col ul {
            list-style: none;
        }
        
        .footer-col ul li {
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .footer-col ul li a {
            color: #ccc;
            transition: all 0.3s;
        }
        
        .footer-col ul li a:hover {
            color: white;
            padding-left: 5px;
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }
        
        .social-links a {
            color: white;
            background-color: rgba(255,255,255,0.1);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }
        
        .social-links a:hover {
            background-color: #FFD700;
            color: #006400;
            transform: translateY(-3px) rotate(5deg);
        }
        
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #ccc;
            font-size: 0.9rem;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .hero h2 {
                font-size: 2.2rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
        }
        
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            
            .mobile-nav-btn {
                display: block;
            }
            
            .hero {
                height: 70vh;
            }
            
            .hero h2 {
                font-size: 2rem;
            }
            
            .section {
                padding: 3rem 0;
            }
        }
        
        @media (max-width: 576px) {
            .logo-text h1 {
                font-size: 1.2rem;
            }
            
            .hero {
                height: 60vh;
                min-height: 400px;
            }
            
            .hero h2 {
                font-size: 1.8rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .btn {
                padding: 0.7rem 1.2rem;
            }
            
            .section-title h2 {
                color: white;
                font-size: 1.5rem;
            }
        }

/* About Page Specific Styles */
.about-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
}

.about-hero h1 {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.history-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: center;
}

.history-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.history-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.history-image:hover img {
    transform: scale(1.03);
}

.values-section {
    background-color: #f0f7f0;
}

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

.value-card {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.value-card i {
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 1rem;
}

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

.team-card {
    text-align: center;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

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

.team-card h3 {
    margin: 1rem 0 0.5rem;
}

.team-card p {
    color: #666;
    padding-bottom: 1.5rem;
}

.accreditation-section {
    background-color: #006400;
    color: white;
}

.accreditation-section .section-title h2 {
    color: white;
}

.accreditation-section .section-title p {
    color: #ccc;
}

.accreditation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    justify-items: center;
    align-items: center;
}

.accreditation-logo {
    background-color: white;
    padding: 1rem;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
}

.accreditation-logo img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

.newsletter-input {
    padding: 0.8rem;
    width: 100%;
    margin-bottom: 0.8rem;
    border: none;
    border-radius: 5px;
    font-family: 'Open Sans', sans-serif;
}

@media (max-width: 768px) {
    .about-hero {
        height: 50vh;
    }
    
    .about-hero h1 {
        font-size: 2.2rem;
    }
    
    .history-grid {
        grid-template-columns: 1fr;
    }
    
    .history-image {
        order: -1;
    }
}

@media (max-width: 576px) {
    .about-hero h1 {
        font-size: 1.8rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .accreditation-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Branches Page Specific Styles */
.branches-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
}

.branches-hero h1 {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

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

.branch-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.branch-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.branch-image {
    height: 200px;
    overflow: hidden;
}

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

.branch-card:hover .branch-image img {
    transform: scale(1.05);
}

.branch-info {
    padding: 1.5rem;
}

.branch-info h3 {
    color: #006400;
    margin-bottom: 1rem;
}

.branch-info p {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.branch-info i {
    color: #FFD700;
    width: 20px;
}

.programs-offered {
    margin: 1.5rem 0;
    padding-top: 1rem;
    border-top: 1px solid #f0f7f0;
}

.programs-offered h4 {
    color: #006400;
    margin-bottom: 0.8rem;
}

.programs-offered ul {
    list-style-position: inside;
    padding-left: 0.5rem;
}

.programs-offered li {
    margin-bottom: 0.5rem;
}

.branch-btn {
    display: block;
    text-align: center;
    margin-top: 1.5rem;
}

/* Upcoming Branches Section */
.upcoming-section {
    background-color: #f0f7f0;
}

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

.upcoming-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.upcoming-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.upcoming-card h3 {
    color: #006400;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.upcoming-card i {
    color: #FFD700;
}

.upcoming-card p {
    margin-bottom: 0.5rem;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .branches-hero h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .branches-hero {
        height: 50vh;
    }
}

@media (max-width: 576px) {
    .branches-hero h1 {
        font-size: 1.8rem;
    }
    
    .branches-grid {
        grid-template-columns: 1fr;
    }
}

/* Admissions Page Specific Styles */
.admissions-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
}

.admissions-hero h1 {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Admissions Process */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.process-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: #006400;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: bold;
    font-size: 1.2rem;
}

.process-card h3 {
    color: #006400;
    margin-bottom: 0.8rem;
}

/* Requirements Section */
.requirements-section {
    background-color: #f0f7f0;
}

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

.requirements-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.requirements-card h3 {
    color: #006400;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.requirements-card i {
    color: #FFD700;
}

.requirements-card ul {
    list-style-position: inside;
    padding-left: 0.5rem;
}

.requirements-card li {
    margin-bottom: 0.5rem;
}

/* Fee Structure */
.fee-table-container {
    overflow-x: auto;
    margin-top: 2rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.fee-table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
}

.fee-table th, 
.fee-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #f0f7f0;
}

.fee-table th {
    background-color: #006400;
    color: white;
    font-weight: bold;
}

.fee-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.fee-table tr:hover {
    background-color: #f0f7f0;
}

.fee-notes {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: #FFD700;
    border-radius: 5px;
    color: #006400;
    font-weight: 500;
}

/* Application Form */
.application-section {
    background-color: #f0f7f0;
}

.admission-form {
    max-width: 800px;
    margin: 2rem auto 0;
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #006400;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Open Sans', sans-serif;
}

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

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

/* FAQ Section */
.faq-grid {
    max-width: 800px;
    margin: 2rem auto 0;
}

.faq-card {
    margin-bottom: 1rem;
    border: 1px solid #f0f7f0;
    border-radius: 5px;
    overflow: hidden;
}

.faq-card h3 {
    background-color: white;
    padding: 1rem 1.5rem;
    color: #006400;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
}

.faq-card h3:hover {
    background-color: #f9f9f9;
}

.faq-card h3 i {
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 1.5rem;
    background-color: white;
    display: none;
}

.faq-answer p {
    padding: 1rem 0;
    margin: 0;
    border-top: 1px solid #f0f7f0;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .admissions-hero h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .admissions-hero {
        height: 50vh;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .admissions-hero h1 {
        font-size: 1.8rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .admission-form {
        padding: 1.5rem;
    }
}

/* Events & News Page Specific Styles */
.events-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
}

.events-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

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

.event-card {
    display: flex;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.event-date {
    background-color: #006400;
    color: white;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
}

.date-day {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1;
}

.date-month {
    font-size: 1rem;
    text-transform: uppercase;
    margin-top: 0.5rem;
}

.event-details {
    padding: 1.5rem;
    flex-grow: 1;
}

.event-details h3 {
    color: #006400;
    margin-bottom: 0.8rem;
}

.event-details p {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.event-details i {
    color: #FFD700;
    width: 20px;
}

.event-btn {
    display: inline-block;
    margin-top: 1rem;
    color: #006400;
    font-weight: 600;
    transition: color 0.3s;
}

.event-btn:hover {
    color: #003300;
}

/* News Section */
.news-section {
    background-color: #f0f7f0;
}

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

.news-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.news-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-date {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #006400;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.news-content {
    padding: 1.5rem;
}

.news-content h3 {
    color: #006400;
    margin-bottom: 1rem;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #006400;
    font-weight: 600;
    margin-top: 1rem;
    transition: color 0.3s;
}

.news-link:hover {
    color: #003300;
}

.news-link i {
    transition: transform 0.3s;
}

.news-link:hover i {
    transform: translateX(3px);
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

/* Newsletter Section */
.newsletter-section {
    background-color: #006400;
    color: white;
}

.newsletter-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem 2rem;
}

.newsletter-box h2 {
    color: white;
    margin-bottom: 1rem;
}

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

.newsletter-form input {
    flex-grow: 1;
    padding: 0.8rem 1rem;
    border: none;
    border-radius: 5px 0 0 5px;
    font-family: 'Open Sans', sans-serif;
}

.newsletter-form button {
    border-radius: 0 5px 5px 0;
}

/* View All Buttons */
.view-all {
    text-align: center;
    margin-top: 3rem;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .events-hero h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .events-hero {
        height: 50vh;
    }
    
    .event-card {
        flex-direction: column;
    }
    
    .event-date {
        flex-direction: row;
        justify-content: space-between;
        padding: 0.8rem 1.5rem;
    }
    
    .date-day, .date-month {
        font-size: 1.2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
        border-radius: 5px;
    }
    
    .newsletter-form button {
        margin-top: 0.5rem;
    }
}

@media (max-width: 576px) {
    .events-hero h1 {
        font-size: 1.8rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
}