
        :root {
            --primary: #008751; /* Nigerian Green */
            --secondary: #FFFFFF; /* White */
            --accent: #E6BE8A; /* Gold */
            --dark: #1A472A;
            --light: #F5F5F5;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: #333;
            line-height: 1.6;
        }
        
        h1, h2, h3, h4 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
        }
        
        /* Navbar */
        .navbar-brand {
            font-family: 'Montserrat', sans-serif;
            font-weight: 900;
            font-size: 1.8rem;
            color: var(--primary) !important;
        }
        
        .navbar-brand span {
            color: var(--accent);
        }
        
        .nav-link {
            color: #333 !important;
            font-weight: 500;
            margin: 0 8px;
            transition: color 0.3s;
        }
        
        .nav-link:hover {
            color: var(--primary) !important;
        }
        
        .donate-btn {
            background: var(--primary);
            color: white !important;
            padding: 8px 20px !important;
            border-radius: 30px;
            font-weight: 600;
        }
        
        .donate-btn:hover {
            background: var(--dark);
            color: white;
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(rgba(0, 135, 81, 0.85), rgba(0, 135, 81, 0.9)), 
                        url('https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
            color: white;
            padding: 120px 0;
            text-align: center;
        }
        
        .hero-title {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 5px rgba(0,0,0,0.3);
        }
        
        .hero-subtitle {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
        }
        
        .hero-btn {
            background: var(--accent);
            color: #333;
            border: none;
            padding: 12px 35px;
            font-weight: 600;
            border-radius: 30px;
            font-size: 1.1rem;
            transition: all 0.3s;
        }
        
        .hero-btn:hover {
            background: white;
            color:green;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }

        /* Program Button */
        #Pbtn:hover{
            color:green;
        }
        
        /* Section Titles */
        .section-title {
            color: var(--primary);
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 40px;
            text-align: center;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--accent);
        }
        
        /* About Section */
        .about-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        /* Programs */
        .program-card {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: transform 0.3s;
            height: 100%;
            border: none;
        }
        
        .program-card:hover {
            transform: translateY(-10px);
        }
        
        .program-img {
            height: 200px;
            object-fit: cover;
        }
        
        .program-icon {
            width: 70px;
            height: 70px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
            position: absolute;
            top: -35px;
            left: 20px;
        }
        
        /* Donation Counter */
        .counter-section {
            background: linear-gradient(rgba(26, 71, 42, 0.9), rgba(26, 71, 42, 0.95)), 
                        url('https://images.unsplash.com/photo-1517048676732-d65bc937f952?auto=format&fit=crop&w=1600&q=80') center/cover;
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        
        .counter {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--accent);
        }
        
        /* Gallery */
        .gallery-img {
            height: 250px;
            object-fit: cover;
            border-radius: 10px;
            transition: transform 0.3s;
        }
        
        .gallery-img:hover {
            transform: scale(1.03);
        }
        
        /* Team */
        .team-card {
            text-align: center;
            padding: 20px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }
        
        .team-card:hover {
            transform: translateY(-10px);
        }
        
        .team-img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid var(--primary);
            margin: 0 auto 20px;
        }
        
        /* Contact */
        .contact-info {
            background: var(--light);
            padding: 30px;
            border-radius: 15px;
            height: 100%;
        }
        
        .contact-icon {
            color: var(--primary);
            font-size: 1.5rem;
            margin-right: 15px;
        }
        
        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 60px 0 20px;
        }
        
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--accent);
        }
        
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            color: white;
            margin-right: 10px;
            transition: all 0.3s;
        }
        
        .social-icons a:hover {
            background: var(--primary);
            transform: translateY(-5px);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .counter {
                font-size: 2.5rem;
            }
        }
    