
   :root {
            --primary-green: #1a6d2c;
            --secondary-green: #2e8b57;
            --light-green: #e8f5e9;
            --dark-green: #0d4d1a;
            --accent-gold: #d4af37;
            --text-dark: #2c3e50;
            --text-light: #666666;
            --bg-light: #f9f9f9;
            --white: #ffffff;
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.15);
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
            --border-radius: 12px;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
    
        
        h1, h2, h3, h4, h5, h6 {
            font-weight: 800;
            color: var(--dark-green);
            line-height: 1.3;
        }
        
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        
        .btn-primary {
            background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
            border: none;
            padding: 14px 32px;
            font-weight: 700;
            border-radius: var(--border-radius);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            z-index: 1;
            box-shadow: 0 5px 15px rgba(26, 109, 44, 0.3);
        }
        
        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 0;
            height: 100%;
            background: linear-gradient(135deg, var(--dark-green), var(--primary-green));
            transition: var(--transition);
            z-index: -1;
        }
        
        .btn-primary:hover::before {
            width: 100%;
            left: 0;
            right: auto;
        }
        
        .btn-primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 25px rgba(26, 109, 44, 0.4);
        }
        
        .btn-outline-primary {
       color: var(--white) !important;
            border: 2px solid var(--primary-green) !important;
            padding: 12px 30px;
            font-weight: 700;
            border-radius: var(--border-radius);
            transition: var(--transition);
            background: transparent;
        }
        
        .btn-outline-primary:hover {
            background: var(--primary-green );
            color: var(--white);
            transform: translateY(-5px);
            box-shadow: var(--shadow);
        }
        
        /* Enhanced Navbar */
        .navbar {
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            padding: 20px 0;
            transition: var(--transition);
        }
        
        .navbar.scrolled {
            padding: 12px 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            font-weight: 900;
            font-size: 2rem;
            color: var(--primary-green);
            display: flex;
            align-items: center;
            position: relative;
        }
        
        .navbar-brand i {
            color: var(--accent-gold);
            margin-left: 10px;
            font-size: 2.2rem;
            transition: var(--transition);
        }
        
        .navbar-brand:hover i {
            transform: rotate(15deg);
        }
        
        .nav-link {
            font-weight: 700;
            color: var(--text-dark);
            margin: 0 10px;
            position: relative;
            padding: 8px 0 !important;
        }
        
        .nav-link::before {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            background: linear-gradient(to left, var(--primary-green), var(--accent-gold));
            bottom: 0;
            right: 0;
            transition: var(--transition);
            border-radius: 3px;
        }
        
        .nav-link:hover, .nav-link.active {
            color: var(--primary-green);
        }
        
        .nav-link:hover::before, .nav-link.active::before {
            width: 100%;
        }
        
        /* Enhanced Hero Section */
        .hero-section {
            background: linear-gradient(rgba(13, 77, 26, 0.85), rgba(26, 109, 44, 0.9)), 
                        url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2073&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: var(--white);
            padding: 180px 0 120px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 100%;
            height: 100px;
            background: linear-gradient(to top, var(--bg-light), transparent);
        }
        
        .hero-section h1 {
            color: var(--white);
            font-size: 3.8rem;
            margin-bottom: 25px;
            font-weight: 900;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            line-height: 1.2;
        }
        
        .hero-section .highlight {
            color: var(--accent-gold);
            position: relative;
            display: inline-block;
        }
        
        .hero-section .highlight::after {
            content: '';
            position: absolute;
            bottom: 5px;
            right: 0;
            width: 100%;
            height: 8px;
            background: rgba(212, 175, 55, 0.3);
            z-index: -1;
            border-radius: 4px;
        }
        
        .hero-section p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 40px;
            opacity: 0.95;
            font-weight: 400;
        }
        
        .hero-cta {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        /* Enhanced Section Styling */
        .section-padding {
            padding: 100px 0;
        }
        
        .section-title {
            position: relative;
            margin-bottom: 70px;
            text-align: center;
        }
        
        .section-title h2 {
            display: inline-block;
            padding-bottom: 20px;
            position: relative;
            font-size: 2.5rem;
        }
  
        
        .section-title p {
            max-width: 700px;
            margin: 20px auto 0;
            color: var(--text-light);
            font-size: 1.1rem;
        }
        
        /* Enhanced Features Section */
        .feature-card {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 40px 30px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            height: 100%;
            text-align: center;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(232, 245, 233, 0.5);
        }
        
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to left, var(--primary-green), var(--accent-gold));
            transition: var(--transition);
        }
        
        .feature-card:hover {
            transform: translateY(-15px);
            box-shadow: var(--shadow-hover);
        }
        
        .feature-card:hover::before {
            height: 100%;
            opacity: 0.05;
        }
        
        .feature-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, var(--light-green), #d4edda);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: var(--primary-green);
            font-size: 2.2rem;
            transition: var(--transition);
            position: relative;
            z-index: 1;
        }
        
        .feature-card:hover .feature-icon {
            transform: scale(1.1) rotate(5deg);
            background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
            color: var(--white);
        }
        
        .feature-card h4 {
            margin-bottom: 15px;
            font-size: 1.5rem;
            position: relative;
            z-index: 1;
        }
        
        .feature-card p {
            color: var(--text-light);
            position: relative;
            z-index: 1;
        }
        
        /* Enhanced Projects Section */
        .project-card {
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            margin-bottom: 30px;
            background: var(--white);
            position: relative;
        }
        
        .project-card:hover {
            transform: translateY(-15px);
            box-shadow: var(--shadow-hover);
        }
        
        .project-img {
            height: 280px;
            overflow: hidden;
            position: relative;
        }
        
        .project-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .project-card:hover .project-img img {
            transform: scale(1.1);
        }
        
        .project-overlay {
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(13, 77, 26, 0.9), transparent);
            opacity: 0;
            transition: var(--transition);
            display: flex;
            align-items: flex-end;
            padding: 25px;
        }
        
        .project-card:hover .project-overlay {
            opacity: 1;
        }
        
        .project-status {
            position: absolute;
            top: 20px;
            left: 20px;
            background: var(--accent-gold);
            color: var(--white);
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 0.9rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .project-info {
            padding: 25px;
        }
        
        .project-info h4 {
            margin-bottom: 10px;
            font-size: 1.4rem;
        }
        
        .project-meta {
            display: flex;
            justify-content: space-between;
            margin-top: 15px;
            color: var(--text-light);
            font-size: 0.95rem;
        }
        
        /* Enhanced Stats Section */
        .stats-section {
            background: linear-gradient(135deg, var(--dark-green), var(--primary-green));
            color: var(--white);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }
        
        .stats-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895 2 2 2z' fill='%231a6d2c' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 0.3;
        }
        
        .stat-item {
            text-align: center;
            padding: 20px;
            position: relative;
            z-index: 1;
        }
        
        .stat-number {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 10px;
            color: var(--accent-gold);
            line-height: 1;
        }
        
        .stat-text {
            font-size: 1.2rem;
            font-weight: 600;
            opacity: 0.95;
        }
        
        /* Testimonials Section */
        .testimonial-card {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 35px;
            box-shadow: var(--shadow);
            margin: 15px;
            position: relative;
            transition: var(--transition);
        }
        
        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }
        
        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 20px;
            right: 25px;
            font-size: 5rem;
            color: var(--light-green);
            font-family: serif;
            line-height: 1;
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 25px;
            color: var(--text-dark);
            position: relative;
            z-index: 1;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-left: 15px;
            border: 3px solid var(--light-green);
        }
        
        .author-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .author-info h5 {
            margin-bottom: 5px;
            font-size: 1.1rem;
        }
        
        .author-info p {
            color: var(--text-light);
            font-size: 0.9rem;
            margin: 0;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
            color: var(--white);
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 0.2;
        }
        
        .cta-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .cta-content h2 {
            color: var(--white);
            font-size: 2.8rem;
            margin-bottom: 20px;
        }
        
        .cta-content p {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 35px;
        }
        
        /* Enhanced Footer */
        .footer {
            background-color: #0a3a14;
            color: var(--white);
            padding: 80px 0 30px;
            position: relative;
        }
        
        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, var(--primary-green), var(--accent-gold));
        }
        
        .footer h5 {
            color: var(--white);
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
            font-size: 1.3rem;
        }
        

        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: #ddd;
            transition: var(--transition);
            display: inline-block;
        }
        
        .footer-links a:hover {
            color: var(--accent-gold);
            transform: translateX(-5px);
        }
        
        .social-icons {
            display: flex;
            gap: 12px;
            margin-top: 20px;
        }
        
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transition: var(--transition);
            font-size: 1.2rem;
        }
        
        .social-icons a:hover {
            background: var(--primary-green);
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .contact-info li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }
        
        .contact-info i {
            color: var(--accent-gold);
            margin-left: 15px;
            font-size: 1.2rem;
            margin-top: 5px;
        }
        
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 25px;
            margin-top: 60px;
            text-align: center;
            color: #aaa;
            font-size: 0.95rem;
        }
        
        /* Responsive Design */
        @media (max-width: 1200px) {
            .hero-section h1 {
                font-size: 3.2rem;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
        }
        
        @media (max-width: 992px) {
            .hero-section {
                padding: 150px 0 100px;
            }
            
            .hero-section h1 {
                font-size: 2.8rem;
            }
            
            .section-padding {
                padding: 80px 0;
            }
            
            .stat-number {
                font-size: 3rem;
            }
        }
        
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.4rem;
            }
            
            .hero-section p {
                font-size: 1.1rem;
            }
            
            .navbar-brand {
                font-size: 1.6rem;
            }
            
            .navbar-brand i {
                font-size: 1.8rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .cta-content h2 {
                font-size: 2.2rem;
            }
            
            .hero-cta {
                flex-direction: column;
                align-items: center;
            }
            
            .hero-cta .btn {
                width: 100%;
                max-width: 300px;
                margin-bottom: 15px;
            }
        }
        
        @media (max-width: 576px) {
            .hero-section {
                padding: 120px 0 80px;
            }
            
            .hero-section h1 {
                font-size: 2rem;
            }
            
            .section-padding {
                padding: 60px 0;
            }
            
            .feature-card, .project-card, .testimonial-card {
                padding: 25px 20px;
            }
            
            .footer {
                padding: 60px 0 25px;
            }
        }
        
        /* Animation Classes */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        
        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }

        /** Smooth Scroll Behavior **/
         :root {
            --primary-green: #1a6d2c;
            --secondary-green: #2e8b57;
            --light-green: #e8f5e9;
            --dark-green: #0d4d1a;
            --accent-gold: #d4af37;
            --text-dark: #2c3e50;
            --text-light: #666666;
            --bg-light: #f9f9f9;
            --white: #ffffff;
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.15);
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
            --border-radius: 12px;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
  
        
        h1, h2, h3, h4, h5, h6 {
            font-weight: 800;
            color: var(--dark-green);
            line-height: 1.3;
        }
        
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        
        .btn-primary {
            background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
            border: none;
            padding: 14px 32px;
            font-weight: 700;
            border-radius: var(--border-radius);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            z-index: 1;
            box-shadow: 0 5px 15px rgba(26, 109, 44, 0.3);
        }
        
        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 0;
            height: 100%;
            background: linear-gradient(135deg, var(--dark-green), var(--primary-green));
            transition: var(--transition);
            z-index: -1;
        }
        
        .btn-primary:hover::before {
            width: 100%;
            left: 0;
            right: auto;
        }
        
        .btn-primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 25px rgba(26, 109, 44, 0.4);
        }
        
        /* Navbar */
        .navbar {
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            padding: 20px 0;
            transition: var(--transition);
        }
        
        .navbar.scrolled {
            padding: 12px 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            font-weight: 900;
            font-size: 2rem;
            color: var(--primary-green);
            display: flex;
            align-items: center;
            position: relative;
        }
        
        .navbar-brand i {
            color: var(--accent-gold);
            margin-left: 10px;
            font-size: 2.2rem;
            transition: var(--transition);
        }
        
        .navbar-brand:hover i {
            transform: rotate(15deg);
        }
        
        .nav-link {
            font-weight: 700;
            color: var(--text-dark);
            margin: 0 10px;
            position: relative;
            padding: 8px 0 !important;
        }
        
        .nav-link::before {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            background: linear-gradient(to left, var(--primary-green), var(--accent-gold));
            bottom: 0;
            right: 0;
            transition: var(--transition);
            border-radius: 3px;
        }
        
        .nav-link:hover, .nav-link.active {
            color: var(--primary-green);
        }
        
        .nav-link:hover::before, .nav-link.active::before {
            width: 100%;
        }
        
        /* Page Header */
        .page-header {
            background: linear-gradient(rgba(13, 77, 26, 0.9), rgba(26, 109, 44, 0.95)), 
                        url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2073&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: var(--white);
            padding: 160px 0 100px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .page-header::before {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 100%;
            height: 100px;
            background: linear-gradient(to top, var(--bg-light), transparent);
        }
        
        .page-header h1 {
            color: var(--white);
            font-size: 3.5rem;
            margin-bottom: 20px;
            font-weight: 900;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            line-height: 1.2;
        }
        
        .page-header .highlight {
            color: var(--accent-gold);
            position: relative;
            display: inline-block;
        }
        
        .page-header .highlight::after {
            content: '';
            position: absolute;
            bottom: 5px;
            right: 0;
            width: 100%;
            height: 8px;
            background: rgba(212, 175, 55, 0.3);
            z-index: -1;
            border-radius: 4px;
        }
        
        .page-header p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto;
            opacity: 0.95;
            font-weight: 400;
        }
        
        /* Page Content */
        .page-content {
            padding: 100px 0;
        }
        
        .section-title {
            position: relative;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            display: inline-block;
            padding-bottom: 15px;
            position: relative;
            font-size: 2.5rem;
        }
   
        
        .section-title.center-title h2::after {
            right: 50%;
            transform: translateX(50%);
        }
        
        .section-title p {
            max-width: 700px;
            margin-top: 20px;
            color: var(--text-light);
            font-size: 1.1rem;
        }
        
        /* About Intro */
        .about-intro {
            padding: 80px 0;
        }
        
        .about-img {
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            position: relative;
        }
        
        .about-img img {
            width: 100%;
            height: auto;
            transition: var(--transition);
        }
        
        .about-img:hover img {
            transform: scale(1.03);
        }
        
        .about-img-overlay {
            position: absolute;
            bottom: 0;
            right: 0;
            width: 100%;
            padding: 30px;
            background: linear-gradient(to top, rgba(13, 77, 26, 0.9), transparent);
            color: var(--white);
        }
        
        .about-img-overlay h4 {
            color: var(--white);
            margin-bottom: 10px;
        }
        
        /* Mission & Vision Cards */
        .mission-vision-card {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 40px 35px;
            box-shadow: var(--shadow);
            height: 100%;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(232, 245, 233, 0.5);
        }
        
        .mission-vision-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to left, var(--primary-green), var(--accent-gold));
            transition: var(--transition);
        }
        
        .mission-vision-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }
        
        .mission-vision-card:hover::before {
            height: 100%;
            opacity: 0.05;
        }
        
        .mission-vision-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--light-green), #d4edda);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            color: var(--primary-green);
            font-size: 2rem;
            transition: var(--transition);
        }
        
        .mission-vision-card:hover .mission-vision-icon {
            transform: scale(1.1) rotate(5deg);
            background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
            color: var(--white);
        }
        
        /* Values Section */
        .values-section {
            background: linear-gradient(135deg, rgba(232, 245, 233, 0.3), rgba(212, 237, 218, 0.1));
            padding: 100px 0;
            position: relative;
        }
        
        .value-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 40px;
            padding: 25px;
            background: var(--white);
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .value-item:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }
        
        .value-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--light-green), #d4edda);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-green);
            font-size: 1.8rem;
            margin-left: 20px;
            flex-shrink: 0;
            transition: var(--transition);
        }
        
        .value-item:hover .value-icon {
            transform: scale(1.1);
            background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
            color: var(--white);
        }
        
        .value-content h4 {
            margin-bottom: 10px;
            font-size: 1.4rem;
        }
        
        /* Timeline */
        .timeline-section {
            padding: 100px 0;
        }
        
        .timeline {
            position: relative;
            padding-right: 30px;
            margin-top: 50px;
        }
        
        .timeline::before {
            content: '';
            position: absolute;
            right: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: linear-gradient(to bottom, var(--primary-green), var(--accent-gold));
            border-radius: 3px;
        }
        
        .timeline-item {
            position: relative;
            margin-bottom: 50px;
            padding-right: 40px;
        }
        
        .timeline-item::before {
            content: '';
            position: absolute;
            right: -41px;
            top: 10px;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: var(--primary-green);
            border: 4px solid var(--white);
            box-shadow: 0 0 0 4px var(--primary-green);
            z-index: 1;
        }
        
        .timeline-year {
            font-weight: 900;
            color: var(--primary-green);
            margin-bottom: 10px;
            font-size: 1.3rem;
            display: inline-block;
            padding: 8px 20px;
            background: var(--light-green);
            border-radius: 30px;
        }
        
        .timeline-content {
            background: var(--white);
            padding: 25px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .timeline-content:hover {
            transform: translateX(-10px);
            box-shadow: var(--shadow-hover);
        }
        
        .timeline-content h4 {
            margin-bottom: 10px;
            color: var(--dark-green);
        }
        
        /* Team Section */
        .team-section {
            padding: 100px 0;
            background: var(--bg-light);
        }
        
        .team-card {
            background: var(--white);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            margin-bottom: 30px;
            position: relative;
        }
        
        .team-card:hover {
            transform: translateY(-15px);
            box-shadow: var(--shadow-hover);
        }
        
        .team-img {
            height: 300px;
            overflow: hidden;
            position: relative;
        }
        
        .team-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .team-card:hover .team-img img {
            transform: scale(1.1);
        }
        
        .team-overlay {
            position: absolute;
            bottom: 0;
            right: 0;
            width: 100%;
            padding: 20px;
            background: linear-gradient(to top, rgba(13, 77, 26, 0.9), transparent);
            color: var(--white);
            opacity: 0;
            transition: var(--transition);
        }
        
        .team-card:hover .team-overlay {
            opacity: 1;
        }
        
        .team-info {
            padding: 25px;
            text-align: center;
        }
        
        .team-info h4 {
            margin-bottom: 5px;
            font-size: 1.3rem;
        }
        
        .team-info p {
            color: var(--text-light);
            margin-bottom: 15px;
            font-size: 0.95rem;
        }
        
        .team-social {
            display: flex;
            justify-content: center;
            gap: 10px;
        }
        
        .team-social a {
            width: 35px;
            height: 35px;
            background: var(--light-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-green);
            transition: var(--transition);
        }
        
        .team-social a:hover {
            background: var(--primary-green);
            color: var(--white);
            transform: translateY(-3px);
        }
        
        /* Certifications */
        .certifications-section {
            padding: 80px 0;
        }
        
        .certification-item {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 30px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
            height: 100%;
        }
        
        .certification-item:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }
        
        .certification-icon {
            font-size: 3rem;
            color: var(--primary-green);
            margin-bottom: 20px;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
            color: var(--white);
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 0.2;
        }
        
        .cta-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .cta-content h2 {
            color: var(--white);
            font-size: 2.8rem;
            margin-bottom: 20px;
        }
        
        .cta-content p {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 35px;
        }
        
        /* Footer */
        .footer {
            background-color: #0a3a14;
            color: var(--white);
            padding: 80px 0 30px;
            position: relative;
        }
        
        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, var(--primary-green), var(--accent-gold));
        }
        
        .footer h5 {
            color: var(--white);
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
            font-size: 1.3rem;
        }
  
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: #ddd;
            transition: var(--transition);
            display: inline-block;
        }
        
        .footer-links a:hover {
            color: var(--accent-gold);
            transform: translateX(-5px);
        }
        
        .social-icons {
            display: flex;
            gap: 12px;
            margin-top: 20px;
        }
        
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transition: var(--transition);
            font-size: 1.2rem;
        }
        
        .social-icons a:hover {
            background: var(--primary-green);
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .contact-info li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }
        
        .contact-info i {
            color: var(--accent-gold);
            margin-left: 15px;
            font-size: 1.2rem;
            margin-top: 5px;
        }
        
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 25px;
            margin-top: 60px;
            text-align: center;
            color: #aaa;
            font-size: 0.95rem;
        }
        
        /* Animation Classes */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        
        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Responsive Design */
        @media (max-width: 1200px) {
            .page-header h1 {
                font-size: 3rem;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
        }
        
        @media (max-width: 992px) {
            .page-header {
                padding: 140px 0 80px;
            }
            
            .page-header h1 {
                font-size: 2.6rem;
            }
            
            .page-content {
                padding: 80px 0;
            }
            
            .timeline {
                padding-right: 20px;
            }
            
            .timeline-item::before {
                right: -31px;
            }
        }
        
        @media (max-width: 768px) {
            .page-header h1 {
                font-size: 2.2rem;
            }
            
            .page-header p {
                font-size: 1.1rem;
            }
            
            .navbar-brand {
                font-size: 1.6rem;
            }
            
            .navbar-brand i {
                font-size: 1.8rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .cta-content h2 {
                font-size: 2.2rem;
            }
            
            .value-item {
                flex-direction: column;
                text-align: center;
            }
            
            .value-icon {
                margin-left: 0;
                margin-bottom: 15px;
            }
        }
        
        @media (max-width: 576px) {
            .page-header {
                padding: 120px 0 60px;
            }
            
            .page-header h1 {
                font-size: 1.9rem;
            }
            
            .page-content {
                padding: 60px 0;
            }
            
            .mission-vision-card, .timeline-content, .team-card, .certification-item {
                padding: 25px 20px;
            }
            
            .footer {
                padding: 60px 0 25px;
            }
        }

        /* Contact Form Styles */

              :root {
            --primary-green: #1a6d2c;
            --secondary-green: #2e8b57;
            --light-green: #e8f5e9;
            --dark-green: #0d4d1a;
            --accent-gold: #d4af37;
            --text-dark: #2c3e50;
            --text-light: #666666;
            --bg-light: #f9f9f9;
            --white: #ffffff;
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.15);
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
            --border-radius: 12px;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
  
        
        h1, h2, h3, h4, h5, h6 {
            font-weight: 800;
            color: var(--dark-green);
            line-height: 1.3;
        }
        
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        
        .btn-primary {
            background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
            border: none;
            padding: 14px 32px;
            font-weight: 700;
            border-radius: var(--border-radius);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            z-index: 1;
            box-shadow: 0 5px 15px rgba(26, 109, 44, 0.3);
        }
        
        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 0;
            height: 100%;
            background: linear-gradient(135deg, var(--dark-green), var(--primary-green));
            transition: var(--transition);
            z-index: -1;
        }
        
        .btn-primary:hover::before {
            width: 100%;
            left: 0;
            right: auto;
        }
        
        .btn-primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 25px rgba(26, 109, 44, 0.4);
        }
        
        .btn-outline-primary {
            color: var(--primary-green);
            border: 2px solid var(--primary-green);
            padding: 12px 30px;
            font-weight: 700;
            border-radius: var(--border-radius);
            transition: var(--transition);
            background: transparent;
        }
        
        .btn-outline-primary:hover {
            background: var(--primary-green);
            color: var(--white);
            transform: translateY(-5px);
            box-shadow: var(--shadow);
        }
        
        /* Navbar */
        .navbar {
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            padding: 20px 0;
            transition: var(--transition);
        }
        
        .navbar.scrolled {
            padding: 12px 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            font-weight: 900;
            font-size: 1rem;
            color: var(--primary-green);
            display: flex;
            align-items: center;
            position: relative;
        }
        
        .navbar-brand i {
            color: var(--accent-gold);
            margin-left: 10px;
            font-size: 2.2rem;
            transition: var(--transition);
        }
        
        .navbar-brand:hover i {
            transform: rotate(15deg);
        }
        
        .nav-link {
            font-weight: 700;
            color: var(--text-dark);
            margin: 0 10px;
            position: relative;
            padding: 8px 0 !important;
        }
        
        .nav-link::before {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            background: linear-gradient(to left, var(--primary-green), var(--accent-gold));
            bottom: 0;
            right: 0;
            transition: var(--transition);
            border-radius: 3px;
        }
        
        .nav-link:hover, .nav-link.active {
            color: var(--primary-green);
        }
        
        .nav-link:hover::before, .nav-link.active::before {
            width: 100%;
        }
        
        /* Page Header */
        .page-header {
            background: linear-gradient(rgba(13, 77, 26, 0.9), rgba(26, 109, 44, 0.95)), 
                        url('https://images.unsplash.com/photo-1558036117-15e82a2c9a9a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: var(--white);
            padding: 160px 0 100px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .page-header::before {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 100%;
            height: 100px;
            background: linear-gradient(to top, var(--bg-light), transparent);
        }
        
        .page-header h1 {
            color: var(--white);
            font-size: 3.5rem;
            margin-bottom: 20px;
            font-weight: 900;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            line-height: 1.2;
        }
        
        .page-header .highlight {
            color: var(--accent-gold);
            position: relative;
            display: inline-block;
        }
        
        .page-header .highlight::after {
            content: '';
            position: absolute;
            bottom: 5px;
            right: 0;
            width: 100%;
            height: 8px;
            background: rgba(212, 175, 55, 0.3);
            z-index: -1;
            border-radius: 4px;
        }
        
        .page-header p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto;
            opacity: 0.95;
            font-weight: 400;
        }
        
        /* Page Content */
        .page-content {
            padding: 100px 0;
        }
        
        .section-title {
            position: relative;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            display: inline-block;
            padding-bottom: 15px;
            position: relative;
            font-size: 2.5rem;
        }
        
     
        
        .section-title.center-title h2::after {
            right: 50%;
            transform: translateX(50%);
        }
        
        .section-title p {
            max-width: 700px;
            margin-top: 20px;
            color: var(--text-light);
            font-size: 1.1rem;
        }
        
        /* Contact Form */
        .contact-form-container {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 50px;
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(232, 245, 233, 0.5);
        }
        
        .contact-form-container::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to left, var(--primary-green), var(--accent-gold));
        }
        
        .form-header {
            margin-bottom: 40px;
            text-align: center;
        }
        
        .form-header h3 {
            font-size: 1.8rem;
            margin-bottom: 10px;
        }
        
        .form-header p {
            color: var(--text-light);
        }
        
        .contact-form .form-group {
            margin-bottom: 25px;
        }
        
        .contact-form label {
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--dark-green);
            display: block;
        }
        
        .contact-form .form-control {
            padding: 15px 20px;
            border-radius: var(--border-radius);
            border: 1px solid #e0e0e0;
            font-size: 1rem;
            transition: var(--transition);
            background: #fdfdfd;
        }
        
        .contact-form .form-control:focus {
            border-color: var(--primary-green);
            box-shadow: 0 0 0 0.25rem rgba(26, 109, 44, 0.15);
            background: var(--white);
        }
        
        .contact-form textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        
        .form-select {
            padding: 15px 20px;
            border-radius: var(--border-radius);
            border: 1px solid #e0e0e0;
            font-size: 1rem;
            transition: var(--transition);
            background: #fdfdfd;
        }
        
        .form-select:focus {
            border-color: var(--primary-green);
            box-shadow: 0 0 0 0.25rem rgba(26, 109, 44, 0.15);
            background: var(--white);
        }
        
        .form-check-input:checked {
            background-color: var(--primary-green);
            border-color: var(--primary-green);
        }
        
        .form-check-input:focus {
            border-color: var(--primary-green);
            box-shadow: 0 0 0 0.25rem rgba(26, 109, 44, 0.25);
        }
        
        /* Contact Info Cards */
        .contact-info-card {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 35px 30px;
            box-shadow: var(--shadow);
            /* height: 100%; */
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(232, 245, 233, 0.5);
            text-align: center;
        }
        
        .contact-info-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to left, var(--primary-green), var(--accent-gold));
            transition: var(--transition);
        }
        
        .contact-info-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }
        
        .contact-info-card:hover::before {
            height: 100%;
            opacity: 0.05;
        }
        
        .contact-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--light-green), #d4edda);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: var(--primary-green);
            font-size: 2rem;
            transition: var(--transition);
        }
        
        .contact-info-card:hover .contact-icon {
            transform: scale(1.1) rotate(5deg);
            background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
            color: var(--white);
        }
        
        .contact-info-card h4 {
            margin-bottom: 15px;
            font-size: 1.4rem;
        }
        
        .contact-info-card p {
            color: var(--text-light);
            margin-bottom: 10px;
        }
        
        .contact-link {
            color: var(--primary-green);
            font-weight: 700;
            display: inline-block;
            margin-top: 10px;
            transition: var(--transition);
        }
        
        .contact-link:hover {
            color: var(--dark-green);
            transform: translateX(-5px);
        }
        
        /* Departments Section */
        .departments-section {
            background: linear-gradient(135deg, rgba(232, 245, 233, 0.3), rgba(212, 237, 218, 0.1));
            padding: 100px 0;
            position: relative;
        }
        
        .department-card {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 30px;
            box-shadow: var(--shadow);
            height: 100%;
            transition: var(--transition);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .department-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 5px;
            height: 0;
            background: linear-gradient(to bottom, var(--primary-green), var(--accent-gold));
            transition: var(--transition);
        }
        
        .department-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }
        
        .department-card:hover::before {
            height: 100%;
        }
        
        .department-icon {
            font-size: 2.5rem;
            color: var(--primary-green);
            margin-bottom: 20px;
            transition: var(--transition);
        }
        
        .department-card:hover .department-icon {
            transform: scale(1.1);
            color: var(--accent-gold);
        }
        
        .department-card h4 {
            margin-bottom: 15px;
            font-size: 1.3rem;
        }
        
        .department-card p {
            color: var(--text-light);
            margin-bottom: 20px;
            font-size: 0.95rem;
        }
        
        /* FAQ Section */
        .faq-section {
            padding: 100px 0;
        }
        
        .accordion-item {
            border: 1px solid #e0e0e0;
            border-radius: var(--border-radius) !important;
            margin-bottom: 15px;
            overflow: hidden;
        }
        
        .accordion-button {
            background-color: var(--white);
            color: var(--dark-green);
            font-weight: 700;
            padding: 20px 25px;
            border-radius: var(--border-radius) !important;
            transition: var(--transition);
        }
        
        .accordion-button:not(.collapsed) {
            background-color: var(--light-green);
            color: var(--dark-green);
            box-shadow: none;
        }
        
        .accordion-button:focus {
            border-color: var(--primary-green);
            box-shadow: 0 0 0 0.25rem rgba(26, 109, 44, 0.15);
        }
        
        .accordion-button::after {
            margin-right: auto;
            margin-left: 0;
        }
        
        .accordion-body {
            padding: 20px 25px;
            color: var(--text-light);
        }
        
        /* Map Section */
        .map-section {
            padding: 0 0 100px;
        }
        
        .map-container {
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            height: 500px;
            position: relative;
        }
        
        .map-container iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }
        
        .map-overlay {
            position: absolute;
            bottom: 30px;
            right: 30px;
            background: var(--white);
            padding: 25px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            max-width: 350px;
            z-index: 10;
        }
        
        .map-overlay h4 {
            margin-bottom: 15px;
       
            .map-overlay h4 {
            margin-bottom: 15px;
            color: var(--dark-green);
        }
        
        .map-overlay p {
            color: var(--text-light);
            margin-bottom: 10px;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
            color: var(--white);
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 0.2;
        }
        
        .cta-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .cta-content h2 {
            color: var(--white);
            font-size: 2.8rem;
            margin-bottom: 20px;
        }
        
        .cta-content p {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 35px;
        }
        
        /* Footer */
        .footer {
            background-color: #0a3a14;
            color: var(--white);
            padding: 80px 0 30px;
            position: relative;
        }
        
        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, var(--primary-green), var(--accent-gold));
        }
        
        .footer h5 {
            color: var(--white);
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
            font-size: 1.3rem;
        }

        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: #ddd;
            transition: var(--transition);
            display: inline-block;
        }
        
        .footer-links a:hover {
            color: var(--accent-gold);
            transform: translateX(-5px);
        }
        
        .social-icons {
            display: flex;
            gap: 12px;
            margin-top: 20px;
        }
        
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transition: var(--transition);
            font-size: 1.2rem;
        }
        
        .social-icons a:hover {
            background: var(--primary-green);
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .contact-info li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }
        
        .contact-info i {
            color: var(--accent-gold);
            margin-left: 15px;
            font-size: 1.2rem;
            margin-top: 5px;
        }
        
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 25px;
            margin-top: 60px;
            text-align: center;
            color: #aaa;
            font-size: 0.95rem;
        }
        
        /* Animation Classes */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        
        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Responsive Design */
        @media (max-width: 1200px) {
            .page-header h1 {
                font-size: 3rem;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
        }
        
        @media (max-width: 992px) {
            .page-header {
                padding: 140px 0 80px;
            }
            
            .page-header h1 {
                font-size: 2.6rem;
            }
            
            .page-content {
                padding: 80px 0;
            }
            
            .contact-form-container {
                padding: 40px 30px;
            }
            
            .map-overlay {
                position: relative;
                bottom: auto;
                right: auto;
                margin-top: 20px;
                max-width: 100%;
            }
        }
        
        @media (max-width: 768px) {
            .page-header h1 {
                font-size: 2.2rem;
            }
            
            .page-header p {
                font-size: 1.1rem;
            }
            
            .navbar-brand {
                font-size: 1rem;
            }
            
            .navbar-brand i {
                font-size: 1.8rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .cta-content h2 {
                font-size: 2.2rem;
            }
            
            .contact-form-container {
                padding: 30px 20px;
            }
        }
        
        @media (max-width: 576px) {
            .page-header {
                padding: 120px 0 60px;
            }
            
            .page-header h1 {
                font-size: 1.9rem;
            }
            
            .page-content {
                padding: 60px 0;
            }
            
            .contact-info-card, .department-card {
                padding: 25px 20px;
            }
            
            .footer {
                padding: 60px 0 25px;
            }
            
            .map-container {
                height: 400px;
            }
        }

