
        :root {
            --primary: #2C5F2D;
            --secondary: #97BC62;
            --accent: #FF6B35;
            --light: #F7F9FB;
            --dark: #2C3E50;
            --text: #333333;
            --text-light: #6c757d;
            --white: #ffffff;
            --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Merriweather', serif;
            font-weight: 700;
            color: var(--dark);
        }

        a {
            text-decoration: none;
            color: var(--primary);
            transition: var(--transition);
        }

        a:hover {
            color: var(--accent);
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 500;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: var(--shadow);
        }

        .btn-primary {
            background-color: var(--primary);
            border-color: var(--primary);
            color: var(--white);
        }

        .btn-primary:hover {
            background-color: var(--secondary);
            border-color: var(--secondary);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        }

        .btn-accent {
            background-color: var(--accent);
            border-color: var(--accent);
            color: var(--white);
        }

        .btn-accent:hover {
            background-color: var(--primary);
            border-color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        }

        /* Navbar */
        .navbar {
            padding: 15px 0;
            background-color: var(--white);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }

        .navbar-brand img {
            height: 50px;
            width: auto;
        }

        .nav-link {
            color: var(--dark);
            font-weight: 500;
            margin: 0 10px;
            position: relative;
        }

        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--primary);
            transition: var(--transition);
        }

        .nav-link:hover:after {
            width: 100%;
        }

        .nav-link.active {
            color: var(--primary);
        }

        .navbar-scrolled {
            padding: 10px 0;
        }

        /* Hero Slider */
        .hero-slider {
            position: relative;
            height: 100vh;
            overflow: hidden;
        }

        .slider-container {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease, transform 10s linear;
            transform: scale(1.1);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slide.active {
            opacity: 1;
            transform: scale(1);
            z-index: 2;
        }

        .slide.prev {
            transform: translateX(-10%) scale(0.9);
            opacity: 0.5;
            z-index: 1;
        }

        .slide.next {
            transform: translateX(10%) scale(0.9);
            opacity: 0.5;
            z-index: 1;
        }

        .slide-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.7);
        }

        .slide-content {
            position: relative;
            z-index: 3;
            color: var(--white);
            text-align: center;
            max-width: 800px;
            padding: 2rem;
            opacity: 0;
            transform: translateY(50px);
            transition: var(--transition);
        }

        .slide.active .slide-content {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.5s;
        }

        .slide-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
            color:white
        }

        .slide-subtitle {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            font-weight: 300;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
        }

        .slider-controls {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            display: flex;
            gap: 15px;
        }

        .slider-dot {
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: var(--transition);
        }

        .slider-dot.active {
            background: var(--white);
            transform: scale(1.3);
        }

        .slider-arrows {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 2rem;
            z-index: 10;
            transform: translateY(-50%);
        }

        .arrow {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.5rem;
            cursor: pointer;
            transition: var(--transition);
        }

        .arrow:hover {
            background: var(--accent);
            transform: scale(1.1);
        }

        .slide-number {
            position: absolute;
            top: 30px;
            right: 30px;
            z-index: 10;
            color: var(--white);
            font-size: 1.2rem;
            font-weight: 600;
            background: rgba(0, 0, 0, 0.3);
            padding: 5px 15px;
            border-radius: 20px;
        }

        .progress-bar {
            position: absolute;
            top: 0;
            left: 0;
            height: 5px;
            background: var(--accent);
            width: 0%;
            z-index: 10;
            transition: width 5s linear;
        }

        .slide.active .progress-bar {
            width: 100%;
        }

        /* Section Styles */
        .section {
            padding: 80px 0;
        }

        .section-title {
            position: relative;
            margin-bottom: 50px;
            text-align: center;
        }

        .section-title:after {
            content: '';
            display: block;
            width: 80px;
            height: 3px;
            background: var(--gradient);
            margin: 15px auto;
        }

        /* About Section */
        .about-section {
            background-color: var(--light);
        }

        .vision-mission-box {
            background: var(--white);
            padding: 30px;
            border-radius: 10px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            height: 100%;
        }

        .vision-mission-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .vision-mission-box i {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
        }

        /* Programs Section */
        .program-card {
            background: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            height: 100%;
        }

        .program-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .program-img {
            height: 200px;
            background-size: cover;
            background-position: center;
        }

        .program-content {
            padding: 25px;
        }

        .program-content h3 {
            color: var(--primary);
            margin-bottom: 15px;
        }

 /* Team Section */
        .team-section {
            background-color: var(--light);
        }

        /* .team-card {
            background: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            margin-bottom: 30px;
        } */

        .team-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .team-img {
            height: 250px;
            background-color: #f0f0f0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .team-img i {
            font-size: 5rem;
            color: var(--primary);
        }

        .team-info {
            padding: 20px;
        }

        .team-info h4 {
            margin-bottom: 5px;
            color: var(--primary);
        }

        .team-info .position {
            color: var(--accent);
            font-weight: 600;
            margin-bottom: 10px;
        }

        /* Impact Section */
        .counter-box {
            text-align: center;
            padding: 30px 20px;
            background: var(--white);
            border-radius: 10px;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .counter-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .counter {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 10px;
        }

        /* CTA Section */
        .cta-section {
            background: var(--gradient);
            color: var(--white);
            text-align: center;
            padding: 80px 0;
        }

        .cta-section h2 {
            color: var(--white);
            margin-bottom: 20px;
        }

        /* Footer */
        footer {
            background-color: var(--primary);
            color: var(--white);
            padding: 70px 0 20px;
        }

        footer h5 {
            color: var(--white);
            margin-bottom: 25px;
            position: relative;
        }

        footer h5:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -10px;
            width: 40px;
            height: 2px;
            background: var(--accent);
        }

        footer a {
            color: rgba(255, 255, 255, 0.7);
            transition: var(--transition);
        }

        footer a:hover {
            color: var(--white);
            padding-left: 5px;
        }

        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            line-height: 40px;
            text-align: center;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            margin-right: 10px;
            transition: var(--transition);
        }

        .social-icons a:hover {
            background: var(--accent);
            transform: translateY(-3px);
        }

        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            margin-top: 40px;
            text-align: center;
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--accent);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            opacity: 0;
            visibility: hidden;
            z-index: 999;
        }

        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .fade-in {
            animation: fadeIn 1s ease forwards;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .hero h1, .slide-title {
                font-size: 2.8rem;
            }
            
            .section {
                padding: 60px 0;
            }
        }

        @media (max-width: 768px) {
            .hero h1, .slide-title {
                font-size: 2.3rem;
            }
            
            .hero p, .slide-subtitle {
                font-size: 1rem;
            }
            
            .counter {
                font-size: 2.5rem;
            }
            
            .slide-subtitle {
                font-size: 1.1rem;
            }
            
            .btn {
                padding: 12px 25px;
            }
            
            .arrow {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }
        }
 /* Hero Section */
        .about-hero {
            background: var(--gradient);
            padding: 150px 0 100px;
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .about-hero:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCIgdmlld0JveD0iMCAwIDYwIDYwIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxnIGZpbGw9IiNmZmYiIGZpbGwtb3BhY2l0eT0iMC4wNSI+PHBhdGggZD0iTTM2IDM0aDI0djI0SDM2VjM0ek0wIDM0aDI0djI0SDBWMzR6TTM2IDBoMjR2MjRIMzZWMHpNMCAwaDI0djI0SDBWMHoiLz48L2c+PC9nPjwvc3ZnPg==');
            opacity: 0.1;
        }

        .about-hero-content {
            position: relative;
            z-index: 1;
        }

        .about-hero h1 {
            font-size: 3.5rem;
            color: var(--white);
            margin-bottom: 20px;
        }

        /* Section Styles */
        .section {
            padding: 80px 0;
        }

        .section-title {
            position: relative;
            margin-bottom: 50px;
            text-align: center;
        }

        .section-title:after {
            content: '';
            display: block;
            width: 80px;
            height: 3px;
            background: var(--gradient);
            margin: 15px auto;
        }

        /* About Content */
        .about-content {
            background-color: var(--light);
        }

        .vision-mission-box {
            background: var(--white);
            padding: 30px;
            border-radius: 10px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            height: 100%;
        }

        .vision-mission-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .vision-mission-box i {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
        }



         /* Objectives Section */
        .objectives-section {
            background: var(--white);
        }

        .objective-item {
            padding: 20px;
            border-left: 4px solid var(--primary);
            background: var(--light);
            margin-bottom: 20px;
            border-radius: 0 8px 8px 0;
        }

        .objective-item h4 {
            color: var(--primary);
            margin-bottom: 10px;
        }

        /* Aim Section */
        .aim-section {
            background: var(--gradient);
            color: var(--white);
        }

        .aim-section h2, .aim-section h3, .aim-section h4 {
            color: var(--white);
        }

        .aim-box {
            background: rgba(255, 255, 255, 0.1);
            padding: 30px;
            border-radius: 10px;
            backdrop-filter: blur(10px);
            height: 100%;
            transition: var(--transition);
        }

        .aim-box:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-5px);
        }

        .aim-box i {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

 /*contact form css  */
 
 a.nav-link.active {
    border-bottom: 2px solid;
}


