    /* Reset and base styles */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    body {
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        min-height: 200vh; /* Make page scrollable */
    }
    


    /* ===== TOP NAVIGATION BAR ===== */
    #top-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1001;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 8px 0;
    }
    
    #top-nav.hidden {
        transform: translateY(-100%);
        opacity: 0;
    }
    
    .top-nav-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 40px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    /* Social Links Section */
    .social-section {
        display: flex;
        align-items: center;
    }
    
    .social-item {
        position: relative;
        padding: 0 16px;
        height: 36px;
        display: flex;
        align-items: center;
        transition: all 0.3s ease;
    }
    
    /* Vertical separator lines between social items */
    .social-item:not(:last-child)::after {
        content: '';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
        height: 16px;
        background: rgba(255, 255, 255, 0.3);
        transition: all 0.3s ease;
    }
    
    .social-link {
        display: flex;
        align-items: center;
        text-decoration: none;
        color: white;
        position: relative;
        transition: all 0.3s ease;
    }
    
    .social-icon {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        transition: all 0.3s ease;
    }
    
    /* Social platform specific colors */
    .facebook .social-icon { background: rgba(59, 89, 152, 0.8); }
    .twitter .social-icon { background: rgba(29, 161, 242, 0.8); }
    .instagram .social-icon { background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D); }
    .youtube .social-icon { background: rgba(255, 0, 0, 0.8); }
    
    .social-name {
        position: absolute;
        left: 35px;
        top: 50%;
        transform: translateY(-50%);
        opacity: 0;
        visibility: hidden;
        white-space: nowrap;
        font-size: 13px;
        font-weight: 500;
        padding: 0 10px;
        transition: all 0.3s ease;
        color: white;
    }
    
    /* Hover effects for social */
    .social-item:hover {
        padding-right: 90px;
    }
    
    .social-item:hover::after {
        opacity: 0;
    }
    
    .social-item:hover .social-icon {
        transform: scale(1.1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }
    
    .social-item:hover .social-name {
        opacity: 1;
        visibility: visible;
        left: 40px;
    }
    
    .social-item:hover .facebook .social-icon { background: #3b5998; }
    .social-item:hover .twitter .social-icon { background: #1DA1F2; }
    .social-item:hover .youtube .social-icon { background: #FF0000; }
    
    /* Contact Info Section */
    .contact-section {
        display: flex;
        align-items: center;
        gap: 25px;
    }
    
    .contact-item {
        display: flex;
        align-items: center;
        gap: 8px;
        color: white;
        text-decoration: none;
        font-size: 13px;
        transition: all 0.3s ease;
        position: relative;
    }
    
    .contact-icon {
        width: 26px;
        height: 26px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        transition: all 0.3s ease;
    }
    
    .contact-item:hover .contact-icon {
        background: rgba(255, 255, 255, 0.2);
        transform: scale(1.1);
    }
    
    /* Vertical separator between contact items */
    .contact-item:not(:last-child)::after {
        content: '';
        position: absolute;
        right: -12px;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
        height: 16px;
        background: rgba(255, 255, 255, 0.3);
    }
    
    /* ===== MAIN NAVIGATION BAR ===== */
    #main-nav {
        position: fixed;
        top: 52px; /* Height of top nav */
        left: 0;
        width: 100%;
        z-index: 1000;
        background: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(30px) saturate(200%);
        -webkit-backdrop-filter: blur(30px) saturate(200%);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 15px 0;
    }
    
    #main-nav.scrolled-up {
        top: 0;
        background: rgba(0, 0, 0, 0.95);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    }
    
    .main-nav-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 40px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    /* Logo Section - Bigger */
    .logo-section {
        display: flex;
        align-items: center;
    }
    
    .logo {
        height: 60px; /* Bigger logo */
        width: auto;
        transition: all 0.3s ease;
    }
    
    .logo:hover {
        transform: scale(1.05);
    }
    
    /* Main Menu - Bigger */
    .main-menu {
        display: flex;
        align-items: center;
        list-style: none;
        gap: 0;
    }
    
    .menu-item {
        position: relative;
        padding: 0 22px; /* More spacing */
        height: 45px; /* Taller menu items */
        display: flex;
        align-items: center;
        transition: all 0.3s ease;
    }
    
    /* Vertical separator lines between menu items */
    .menu-item:not(:last-child)::after {
        content: '';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
        height: 20px;
        background: rgba(255, 255, 255, 0.2);
        transition: all 0.3s ease;
    }
    
    .menu-link {
        text-decoration: none;
        color: white; /* White text on black */
        font-size: 16px; /* Slightly bigger */
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s ease;
        position: relative;
    }
    
    .menu-link i {
        font-size: 12px;
        transition: transform 0.3s ease;
    }
    
    /* Hover effects for menu - Gold accent */
    .menu-item:hover .menu-link {
        color: #FFD700; /* Gold color on hover */
    }
    
    .menu-item:hover .menu-link i {
        transform: rotate(180deg);
        color: #FFD700;
    }
    
    .menu-item:hover::after {
        background: rgba(255, 215, 0, 0.5); /* Gold separator on hover */
    }
    
    /* Dropdown Menu - Black with gold accent */
    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        min-width: 240px; /* Wider */
        border-radius: 8px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s ease;
        z-index: 1000;
        border: 1px solid rgba(255, 255, 255, 0.1);
        overflow: hidden;
    }
    
    .menu-item:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .dropdown-item {
        display: block;
        padding: 15px 25px; /* More padding */
        color: white;
        text-decoration: none;
        font-size: 15px; /* Slightly bigger */
        font-weight: 400;
        transition: all 0.2s ease;
        border-left: 3px solid transparent;
    }
    
    .dropdown-item:hover {
        background: rgba(255, 215, 0, 0.1);
        color: #FFD700;
        border-left-color: #FFD700;
        padding-left: 30px;
    }
    
    /* Right Actions */
    .nav-actions {
        display: flex;
        align-items: center;
        gap: 20px;
    }
    
    .search-btn {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 16px;
    }
    
    .search-btn:hover {
        background: #FFD700;
        color: black;
        transform: rotate(15deg);
    }
    
    .donate-btn {
        padding: 12px 28px;
        background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
        color: black;
        border: none;
        border-radius: 30px;
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    }
    
    .donate-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
    }
    
    /* Mobile Menu Toggle (hidden by default) */
    .mobile-toggle {
        display: none;
        background: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        color: white;
        font-size: 24px;
        cursor: pointer;
        padding: 10px 15px;
        border-radius: 5px;
        transition: all 0.3s ease;
    }
    
    .mobile-toggle:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: #FFD700;
    }
    
    /* ===== RESPONSIVE DESIGN ===== */
    @media (max-width: 1200px) {
        .top-nav-container,
        .main-nav-container {
            padding: 0 30px;
        }
        
        .menu-item {
            padding: 0 18px;
        }
    }
    
    @media (max-width: 1024px) {
        .contact-text {
            display: none;
        }
        
        .contact-item::after {
            display: none;
        }
        
        .menu-item {
            padding: 0 15px;
        }
        
        .menu-link span {
            font-size: 15px;
        }
        
        .logo {
            height: 50px;
        }
    }
    
    /* Mobile styles */
    @media (max-width: 768px) {
        #top-nav {
            display: none !important;
        }
        
        #main-nav {
            top: 0 !important;
            padding: 10px 0;
            background: rgba(0, 0, 0, 0.95);
        }
        
        .main-nav-container {
            padding: 0 20px;
        }
        
        .main-menu,
        .nav-actions {
            display: none !important;
        }
        
        .mobile-toggle {
            display: block;
        }
        
        .logo {
            height: 45px;
        }
        

    }
    
    /* Mobile Menu */
    .mobile-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        padding: 20px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .mobile-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .mobile-menu-item {
        padding: 18px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .mobile-menu-item:last-child {
        border-bottom: none;
    }
    
    .mobile-menu-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: white;
        text-decoration: none;
        font-size: 17px;
        font-weight: 500;
        transition: color 0.3s ease;
    }
    
    .mobile-menu-link:hover {
        color: #FFD700;
    }
    
    .mobile-menu-link i {
        transition: transform 0.3s ease;
    }
    
    .mobile-menu-link.active i {
        transform: rotate(180deg);
    }
    
    .mobile-dropdown {
        padding-left: 20px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }
    
    .mobile-dropdown.active {
        max-height: 500px;
        margin-top: 10px;
    }
    
    .mobile-dropdown-item {
        display: block;
        padding: 12px 0;
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        font-size: 15px;
        transition: all 0.3s ease;
        border-left: 2px solid transparent;
        padding-left: 10px;
    }
    
    .mobile-dropdown-item:hover {
        color: #FFD700;
        border-left-color: #FFD700;
        padding-left: 15px;
    }
    
    .mobile-menu-actions {
        margin-top: 30px;
        display: flex;
        gap: 15px;
        flex-direction: column;
    }
    
    .mobile-search-btn {
        width: 100%;
        padding: 15px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 8px;
        color: white;
        font-size: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        cursor: pointer;
    }
    
    .mobile-donate-btn {
        width: 100%;
        padding: 15px;
        background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
        border: none;
        border-radius: 8px;
        color: black;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
    }
    
   