 
        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        :root {
            --primary: #2c5aa0;
            --secondary: #ff9933;
            --accent: #4caf50;
            --light: #f5f9ff;
            --dark: #333;
            --text: #444;
        }
        
        body {
            color: var(--text);
            line-height: 1.6;
            background-color: #fff;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        /* Header Styles */
        header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo-text {
            display: flex;
            flex-direction: column;
            margin-left: 10px;
        }
        
        .logo-text h1 {
            font-size: 24px;
            color: var(--primary);
            line-height: 1.2;
        }
        
        .logo-text span {
            font-size: 14px;
            color: var(--secondary);
            font-weight: bold;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 25px;
        }
        
        nav ul li a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            transition: color 0.3s;
        }
        
        nav ul li a:hover {
            color: var(--primary);
        }
        
         /* --- Dropdown Menu Styling --- */

nav ul li.has-submenu {
    position: relative;
}

nav ul li.has-submenu > a::after {
    content: " ▼";
    font-size: 0.6em;
}

nav ul li .submenu {
    display: none;
    position: absolute;
    top: 110%;
    left: 0;
    background-color: white;
    min-width: 220px;
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    z-index: 999;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    padding: 10px 0;
}

nav ul li:hover > .submenu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

nav ul li .submenu li {
    border-bottom: 1px solid #f0f0f0;
}

nav ul li .submenu li:last-child {
    border-bottom: none;
}

nav ul li .submenu li a {
    padding: 12px 20px;
    display: block;
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: background 0.3s, color 0.3s;
}

nav ul li .submenu li a:hover {
    background-color: var(--light);
    color: var(--primary);
}

/* Ensure submenu does not break layout on small screens */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin: 10px 0;
    }

    nav ul li .submenu {
        position: static;
        opacity: 1;
        transform: none;
        box-shadow: none;
        background-color: transparent;
        padding: 0;
    }

    nav ul li .submenu li a {
        padding: 8px 15px;
    }
}

/* ===== HEADER BASE ===== */
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo scaling */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text h1 {
    font-size: 20px;
}

.logo-text span {
    font-size: 12px;
}

/* ===== NAVBAR ===== */
nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

/* Hamburger button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
}

/* ===== TOP BAR ===== */
.top-bar-container {
    display: flex;
    justify-content: space-between;
}

/* ===== MOBILE VIEW ===== */
@media (max-width: 768px) {

    /* Hide social icons on mobile */
    .social-icons {
        display: none;
    }

 

    /* Show hamburger */
    .menu-toggle {
        display: block;
    }

    /* Hide menu initially */
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        display: none;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    nav ul {
        flex-direction: column;
        gap: 0;
    }

    nav ul li {
        border-bottom: 1px solid #eee;
    }

    nav ul li a {
        padding: 12px 15px;
        display: block;
    }

    /* Show menu when active */
    nav.active {
        display: block;
    }

    /* Disable hover dropdowns on mobile */
    .has-submenu:hover .submenu {
        display: none;
    }

    /* Submenu styling */
    .submenu {
        position: static;
        display: none;
        background: #f9f9f9;
    }

    .has-submenu.active .submenu {
        display: block;
    }
}

        .donate-btn {
            background-color: var(--secondary);
            color: white;
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        
        .donate-btn:hover {
            background-color: #e68a00;
        }
        
        /* Hero Slider */
        .hero-slider {
            position: relative;
            height: 70vh;
            overflow: hidden;
        }
        
        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }
        
        .slide.active {
            opacity: 1;
        }
        
        .slide-content {
            background-color: rgba(255, 255, 255, 0.85);
            padding: 40px;
            border-radius: 10px;
            max-width: 700px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .slide-content h2 {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        .slide-content p {
            font-size: 1.2rem;
            margin-bottom: 25px;
            color: var(--text);
        }
        
        .cta-btn {
            display: inline-block;
            background-color: var(--accent);
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1rem;
            transition: background-color 0.3s;
        }
        
        .cta-btn:hover {
            background-color: #3d8b40;
        }
        
        .slider-nav {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            background-color: rgba(255,255,255,0.5);
            border-radius: 50%;
            margin: 0 5px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .slider-dot.active {
            background-color: white;
        }
        
        /* Section Styles */
        section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 2.2rem;
            color: var(--primary);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--secondary);
        }
        
        .section-title p {
            max-width: 700px;
            margin: 0 auto;
            color: var(--text);
        }
        
        /* About Section */
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text h3 {
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .about-text p {
            margin-bottom: 20px;
        }
        
        .about-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        /* Services Section */
        .services {
            background-color: var(--light);
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
        }
        
        .service-icon {
            height: 80px;
            background-color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .service-icon i {
            font-size: 2.5rem;
            color: white;
        }
        
        .service-content {
            padding: 25px;
        }
        
        .service-content h3 {
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        /* Programs Section */
        .programs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .program-card {
            background-color: var(--light);
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            transition: background-color 0.3s;
        }
        
        .program-card:hover {
            background-color: #e6f0ff;
        }
        
        .program-card i {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .program-card h3 {
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        /* Donate Section */
        .donate {
            background: linear-gradient(rgba(44, 90, 160, 0.9), rgba(44, 90, 160, 0.9)), url('https://images.unsplash.com/photo-1577896851231-70ef18881754?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
        }
        
        .donate h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .donate p {
            max-width: 700px;
            margin: 0 auto 30px;
            font-size: 1.1rem;
        }
        
        .donate-btns {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .donate-btns .cta-btn {
            background-color: var(--secondary);
        }
        
        .donate-btns .cta-btn:hover {
            background-color: #e68a00;
        }
        
        .donate-btns .cta-btn.secondary {
            background-color: transparent;
            border: 2px solid white;
        }
        
        .donate-btns .cta-btn.secondary:hover {
            background-color: white;
            color: var(--primary);
        }
        
        /* Footer */
        footer {
            background-color: var(--dark);
            color: white;
            padding: 60px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: var(--secondary);
        }
        
        .footer-column p, .footer-column a {
            color: #ccc;
            margin-bottom: 10px;
            display: block;
            text-decoration: none;
        }
        
        .footer-column a:hover {
            color: white;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }
        
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            transition: background-color 0.3s;
        }
        
        .social-links a:hover {
            background-color: var(--secondary);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: #aaa;
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                padding: 15px 0;
            }
            
            .logo {
                margin-bottom: 15px;
            }
            
            nav ul {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            nav ul li {
                margin: 5px 10px;
            }
            
            .hero-slider {
                height: 60vh;
            }
            
            .slide-content {
                padding: 25px;
                margin: 0 15px;
            }
            
            .slide-content h2 {
                font-size: 1.8rem;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            section {
                padding: 60px 0;
            }
        }
        
        @media (max-width: 480px) {
            .hero-slider {
                height: 50vh;
            }
            
            .slide-content h2 {
                font-size: 1.5rem;
            }
            
            .slide-content p {
                font-size: 1rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .services-grid, .programs-grid {
                grid-template-columns: 1fr;
            }
        }
        /* Top Bar */
.top-bar {
    background-color: var(--primary);
    color: white;
    font-size: 0.9rem;
    padding: 8px 0;
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.contact-info span {
    margin-right: 20px;
    display: inline-block;
}

.contact-info i {
    margin-right: 6px;
    color: var(--secondary);
}

.social-icons a {
    color: white;
    margin-left: 15px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--secondary);
}
@media (max-width: 768px) {
    .top-bar-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .contact-info span {
        margin-right: 10px;
        font-size: 0.85rem;
    }

    .social-icons {
        align-self: flex-end;
    }
}
 