:root {
    --primary-green: #2E7D32;
    --dark-green: #1B5E20;
    --light-green: #4CAF50;
    --earth-yellow: #FFB74D;
    --dark-yellow: #FF9800;
    --earth-brown: #8D6E63;
    --light-brown: #D7CCC8;
    --light-gray: #F5F5F5;
    --text-dark: #333333;
    --text-light: #666666; 
    --pale-green: #e8f5e9;
    --primary-yellow: #ffc107;
    --white: #ffffff;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-deep: 0 8px 24px rgba(0, 0, 0, 0.15);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}
/* RESET: Remove ALL bullets from ALL lists */
        ul, ol, menu {
            list-style: none !important;
            padding-left: 0 !important;
            margin-left: 0 !important;
        }
        
        li {
            list-style: none !important;
        }        

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style-type: none !important;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #fff;
}

h1, h2, h3, h4, h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--dark-green);
    margin-bottom: 1rem;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
    
}

header {
            background-color: var(--white);
            box-shadow: var(--shadow);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }
/* Header & Navigation 
header {
    position: sticky;
}*/

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px;
    width: auto;
    margin-right: 5px;
}

.logo-text h1 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--primary-green);
}

.logo-text p {
    font-size: 0.9rem;
    color: var(--text-light);
}


.nav-container {
    display: flex;
    align-items: center;
}

nav > ul {
            display: flex;
            list-style: none;
        }
        
        nav > ul > li {
            position: relative;
        }
nav a {
    
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 600;
            transition: var(--transition);
            padding: 5px 0;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
            white-space: nowrap;
            
        }
        nav > ul > li > a {
            padding: px 0px;
        }
        
        nav a:hover {
            color: var(--primary-green);
            background-color: var(--pale-green);
        }
nav ul li {
    margin-left: 25px;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s;
    padding: 0px 0px;
    position: relative;
}

nav a:hover {
            color: var(--primary-green);
        }
         nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-green);
            transition: var(--transition);
        }
         nav a:hover::after {
            width: 100%;
        }
nav ul li a:hover {
    color: var(--primary-green);
}
.cta-button {
            display: inline-block;
            background-color: var(--primary-yellow);
            color: var(--text-dark);
            padding: 14px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: var(--transition);
            border: none;
            cursor: pointer;
        }
        
        .cta-button:hover {
            background-color: var(--dark-yellow);
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
        }
        
/* HORIZONTAL Dropdown Menu Styles */
        .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: var(--white);
            min-width: 250px;
            box-shadow: var(--shadow-deep);
            border-radius: var(--border-radius);
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: var(--transition);
            z-index: 100;
        }
        
        .dropdown li {
            width: 90%;
            position: relative;
        }
        
        .dropdown a {
            padding: 12px 10px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
         /* HORIZONTAL Second Level Dropdown
        .dropdown .dropdown {
            top: 0;
            left: 10%;
            margin-left: 100000px;
        } */
        
        /* Show dropdown on hover */
        nav li:hover > .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
nav ul li a.active {
    color: var(--primary-green);
}

nav ul li a.active::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: var(--earth-yellow);
    bottom: -5px;
    left: 0;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(46, 125, 50, 0.85), rgba(46, 125, 50, 0.9)), url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 160px 0 100px;
    text-align: center;
    margin-top: 90px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.btn {
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--earth-yellow);
    color: var(--text-dark);
}

.btn-primary:hover {
    background-color: var(--dark-yellow);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--primary-green);
    transform: translateY(-3px);
}

.full-width {
    width: 100%;
}

/* Section Styling */
section {
    padding: 80px 0;
}

.section-gray {
    background-color: var(--light-gray);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 4px;
    background-color: var(--earth-yellow);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-light);
}

/* Mission & Values */
.mv-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mv-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-10px);
}

.mv-icon {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.value-item {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 5px solid var(--earth-yellow);
}

/* About Us Stats */
.stat-card {
    text-align: center;
    padding: 20px;
    background-color: var(--light-gray);
    border-radius: 8px;
}

.stat-number {
    color: var(--primary-green);
    font-size: 2.5rem;
}

/* Departments */
.departments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.dept-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.dept-card:hover {
    transform: translateY(-10px);
}

.dept-img {
    height: 200px;
    background-color: var(--light-brown);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--earth-brown);
    font-size: 3rem;
}

.dept-content {
    padding: 25px;
}

.dept-team {
    margin-top: 10px;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* News & Announcements */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.news-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.news-date {
    background-color: var(--primary-green);
    color: white;
    padding: 10px 15px;
    display: inline-block;
    font-weight: 600;
    border-radius: 0 0 4px 0;
}

.news-content {
    padding: 25px;
}

.read-more {
    color: var(--primary-green);
    font-weight: 600;
    text-decoration: none;
    margin-top: 15px;
    display: inline-block;
}

.read-more:hover {
    text-decoration: underline;
}

/* Documents */
.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.doc-card {
    background-color: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-top: 5px solid var(--earth-yellow);
    display: flex;
    align-items: center;
}

.doc-icon {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-right: 20px;
}

.doc-link {
    color: var(--primary-green);
    font-weight: 600;
    text-decoration: none;
    margin-top: 10px;
    display: inline-block;
}

.doc-link:hover {
    text-decoration: underline;
}

/* Contact */
.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-top: 5px;
}

.contact-form {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 8px;
}

.contact-form h3 {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Open Sans', sans-serif;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-green);
}

/* Footer */
footer {
    background-color: var(--dark-green);
    color: white;
    padding: 60px 0 30px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h3 {
    color: white;
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--earth-yellow);
    color: var(--text-dark);
}

.footer-links h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: var(--earth-yellow);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #aaa;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-green);
    cursor: pointer;
    display: none;
    padding: 10px;
}
 /* Mobile Menu Overlay */
        .mobile-menu-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 999;
        }
/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 90px;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: none;
    z-index: 999;
}
/* Mobile Navigation - Becomes vertical */
        @media (max-width: 1100px) {
            .mobile-menu-btn {
                display: block;
            }
            nav {
                position: fixed;
                top: 0;
                right: -100%;
                width: 320px;
                height: 100%;
                background-color: var(--white);
                overflow-y: auto;
                transition: var(--transition);
                z-index: 1000;
                box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
            }
            
            nav.active {
                right: 0;
            }
            
            nav > ul {
                flex-direction: column;
                padding: 20px 0;
                width: 100%;
            }
            
            nav > ul > li > a {
                padding: 15px 25px;
            }
            
            .dropdown {
                position: static;
                box-shadow: none;
                border-radius: 0;
                opacity: 1;
                visibility: visible;
                transform: none;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
                background-color: var(--pale-green);
                margin-left: 0;
                width: 100%;
            }
            
            .dropdown.active {
                max-height: 1000px;
            }
            
            .dropdown a {
                padding: 12px 25px 12px 40px;
            }
            
            .dropdown .dropdown a {
                padding-left: 55px;
            }
            
            .has-dropdown > a::after {
                content: '\f054';
                transition: transform 0.3s ease;
            }
            
            .has-dropdown > a.active::after {
                transform: rotate(90deg);
            }
            
            .mobile-menu-overlay.active {
                display: block;
            }
            
            /* Adjust header for mobile */
            .header-container {
                flex-wrap: wrap;
            }
            
            .logo {
                flex: 1;
            }
        }
.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu ul li {
    margin-bottom: 15px;
}

.mobile-menu ul li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.1rem;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    nav ul {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
}
 /* For very wide screens, we can adjust spacing */
        @media (min-width: 1101px) {
            nav > ul > li:last-child .dropdown {
                left: auto;
                right: 0;
            }
            
            nav > ul > li:last-child .dropdown .dropdown {
                left: auto;
                right: 100%;
            }
        }

@media (max-width: 768px) {
    .hero {
        padding: 140px 0 80px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .header-container {
        padding: 15px 0;
    }
    
    .logo-text h1 {
        font-size: 1.3rem;
    }
    
    .logo-img {
        height: 60px;
    }
}


/* Language Switcher Dropdown */
.language-switcher {
    position: fixed;
    top: 5px;
    right: 10px;
    z-index: 1001;
}

.lang-dropdown {
    position: relative;
    display: inline-block;
}

.lang-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #ddd;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.6rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 50px;
    justify-content: space-between;
}

.lang-dropdown-btn:hover {
    background: white;
    border-color: var(--primary-green);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.lang-dropdown-btn i:first-child {
    color: var(--primary-green);
}

.lang-dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    min-width: 90px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    z-index: 1;
    overflow: hidden;
}

.lang-dropdown:hover .lang-dropdown-content {
    display: block;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.lang-option:hover {
    background-color: var(--light-gray);
    color: var(--primary-green);
}

.lang-flag {
    font-size: 0.8rem;
}

.lang-name {
    font-weight: 500;
}

/* Responsive adjustments for dropdown */
@media (max-width: 768px) {
    .language-switcher {
        top: 10px;
        right: 10px;
    }
    
    .lang-dropdown-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
        min-width: 110px;
    }
    
    .lang-dropdown-content {
        min-width: 120px;
    }
}
/* Gallery Section */
#gallery {
    background-color: white;
}

.gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 20px;
    background: var(--light-gray);
    border: none;
    border-radius: 30px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: var(--earth-yellow);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--primary-green);
    color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 250px;
    position: relative;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.gallery-img {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-caption {
    font-weight: 600;
    font-size: 1rem;
}

.gallery-more {
    text-align: center;
    margin-top: 30px;
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1100;
    justify-content: center;
    align-items: center;
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    width: auto;
    height: auto;
}

.lightbox-image-container {
    position: relative;
}

#lightboxImage {
    max-width: 100%;
    max-height: 80vh;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
}

.lightbox-caption {
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 500;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: -10px;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.3);
}

.lightbox-prev {
    left: -70px;
}

.lightbox-next {
    right: -70px;
}

/* Responsive adjustments for gallery */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .gallery-item {
        height: 220px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-close {
        top: -50px;
        right: 10px;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 10px;
    }
    
    .gallery-item {
        height: 180px;
    }
    
    .filter-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}