    @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

        :root {
    /* PRIMARY COLORS - Justice & Authority */
    --primary-blue: #B71C1C;           /* Changed to Justice Red */
    --navy-blue: #1A237E;              /* Deep Authority Blue */
    --light-blue: #D32F2F;             /* Light Justice Red */
    
    /* ACCENT COLORS - Professional Palette */
    --accent-gold: #FF8F00;             /* Warm Justice Gold */
    --accent-purple: #4A148C;           /* Deep Authority Purple */
    --accent-teal: #00695C;             /* Professional Teal */
    --accent-green: #2E7D32;            /* Success Green */
    
    /* NEUTRAL COLORS - Professional Graphite */
    --neutral-dark: #263238;            /* Dark Graphite */
    --neutral-medium: #546E7A;          /* Medium Graphite */
    --neutral-light: #FAFAFA;           /* Light Neutral */
    --pure-white: #FFFFFF;              /* Pure White */
    
    /* TEXT COLORS - High Contrast */
    --text-primary: #212121;            /* Dark Graphite Text */
    --text-secondary: #424242;          /* Medium Graphite Text */
    
    /* BORDER & EFFECTS */
    --border-color: #E0E0E0;            /* Light Border */
    --shadow-light: rgba(183, 28, 28, 0.08);    /* Justice Red Shadow */
    --shadow-color: rgba(183, 28, 28, 0.15);    /* Justice Red Shadow Medium */
    
    /* GRADIENT COMBINATIONS - Power & Justice */
    --gradient-blue: linear-gradient(135deg, #B71C1C 0%, #D32F2F 100%);          /* Justice Red Gradient */
    --gradient-gold: linear-gradient(135deg, #FF8F00 0%, #FFB300 100%);          /* Justice Gold Gradient */
    --gradient-purple: linear-gradient(135deg, #4A148C 0%, #6A1B9A 100%);        /* Authority Purple Gradient */
    
    /* ADDITIONAL HR THEME VARIABLES */
    --hr-authority-primary: #1A237E;     /* Deep Authority Blue */
    --hr-authority-light: #303F9F;       /* Light Authority Blue */
    --hr-justice-primary: #B71C1C;       /* Deep Justice Red */
    --hr-justice-light: #D32F2F;         /* Light Justice Red */
    --hr-freedom-accent: #2196F3;        /* Freedom Blue */
    --hr-equality-accent: #FF8F00;       /* Equality Gold */
    
    /* SPECIAL GRADIENT COMBINATIONS */
    --gradient-authority: linear-gradient(135deg, #1A237E 0%, #303F9F 100%);     /* Authority Blue Gradient */
    --gradient-justice: linear-gradient(135deg, #B71C1C 0%, #D32F2F 100%);      /* Justice Red Gradient */
    --gradient-mixed: linear-gradient(135deg, #B71C1C 0%, #1A237E 50%, #FF8F00 100%); /* Full HR Theme */
}


/* ===== DESKTOP HEADER - FIX DROPDOWN ARROW SELECTION HIGHLIGHT ===== */

/* Remove selection/highlight from dropdown arrows */
.nav-item.has-dropdown > .nav-link::after {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
    -webkit-tap-highlight-color: transparent !important;
    outline: none !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* Remove any focus/active states from arrows */
.nav-item.has-dropdown > .nav-link::after:focus,
.nav-item.has-dropdown > .nav-link::after:active,
.nav-item.has-dropdown > .nav-link::after:hover {
    background: transparent !important;
    color: inherit !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Ensure the arrow doesn't get highlighted when parent is clicked */
.nav-item.has-dropdown.open > .nav-link::after {
    background: transparent !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Remove selection from the entire nav-link when it has dropdown */
.nav-item.has-dropdown > .nav-link {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

/* Prevent any pseudo-element from being selectable */
.nav-item.has-dropdown > .nav-link::before,
.nav-item.has-dropdown > .nav-link::after {
    pointer-events: none !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
}

/* Remove selection highlight from all navigation elements */
.nav-link::selection,
.nav-link *::selection,
.nav-link::after::selection,
.nav-link::before::selection {
    background: transparent !important;
    color: inherit !important;
}

/* Ensure no outline appears on click */
.nav-item.has-dropdown > .nav-link:focus,
.nav-item.has-dropdown > .nav-link:active {
    outline: none !important;
}

/* Additional fix for webkit browsers */
.nav-item.has-dropdown > .nav-link {
    -webkit-touch-callout: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

/* Force transparent background on arrow specifically */
.nav-item.has-dropdown > .nav-link::after {
    background-color: transparent !important;
    background-image: none !important;
    background: none !important;
}

/* Remove any border or outline that might cause the highlight */
.nav-item.has-dropdown > .nav-link,
.nav-item.has-dropdown > .nav-link::after,
.nav-item.has-dropdown > .nav-link::before {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Additional desktop-specific fixes */
.dropdown-menu,
.dropdown-item {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

.dropdown-item::selection {
    background: transparent !important;
}


/* Enhanced Top Bar for HR Theme */
.top-bar {
    background: var(--hr-authority-primary) !important;
    background: linear-gradient(135deg, var(--hr-authority-primary) 0%, var(--hr-justice-primary) 100%) !important;
}

/* Enhanced Main Navigation */
.main-navigation {
    background: var(--gradient-justice) !important;
}

/* Enhanced Action Buttons with HR Theme */
.btn-primary {
    background: var(--gradient-authority) !important;
}

.btn-accent {
    background: linear-gradient(135deg, var(--hr-equality-accent) 0%, #FFB300 100%) !important;
}

/* Organization Name with HR Emphasis */
.org-name {
    background: linear-gradient(135deg, var(--hr-justice-primary), var(--hr-authority-primary)) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

/* Enhanced Hover Effects */
.nav-link:hover::after {
    background: var(--hr-equality-accent) !important;
}

.nav-link:hover i {
    color: var(--hr-equality-accent) !important;
}

.dropdown-item:hover i {
    color: var(--hr-equality-accent) !important;
}

/* Justice-themed shadows */
.main-header {
    box-shadow: 0 4px 20px rgba(183, 28, 28, 0.15) !important;
}

.action-btn {
    box-shadow: 0 4px 12px rgba(183, 28, 28, 0.1) !important;
}

.action-btn:hover {
    box-shadow: 0 8px 20px rgba(183, 28, 28, 0.2) !important;
}

        * {
            font-family: 'Poppins', sans-serif ;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background: var(--neutral-light);
            color: var(--text-primary);
            overflow-x: hidden;
        }

        /* ===== TOP BAR ===== */
        .top-bar {
            background: var(--navy-blue);
            color: var(--pure-white);
            padding: 10px 0;
            position: relative;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .top-bar::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--gradient-blue);
        }

        .top-bar-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .contact-info {
            display: flex;
            gap: 30px;
            align-items: center;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .contact-item:hover {
            color: var(--accent-gold);
        }

        .contact-item i {
            color: var(--accent-gold);
            font-size: 16px;
        }

        .header-actions {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .top-search-container {
            position: relative;
        }

        .top-search-input {
            width: 250px;
            padding: 10px 35px 10px 15px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50px;
            font-size: 13px;
            background: rgba(255, 255, 255, 0.1);
            color: var(--pure-white);
            transition: all 0.3s ease;
        }

        .top-search-input:focus {
            outline: none;
            border-color: var(--accent-gold);
            background: rgba(255, 255, 255, 0.15);
            width: 280px;
            box-shadow: 0 0 15px rgba(245, 158, 11, 0.3);
        }

        .top-search-input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }

        .top-search-btn {
            position: absolute;
            right: 8px;
            top: 50%;
            transform: translateY(-50%);
            background: var(--accent-gold);
            border: none;
            color: var(--navy-blue);
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 14px;
            width: 25px;
            height: 25px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .top-search-btn:hover {
            transform: translateY(-50%) scale(1.1);
            background: var(--pure-white);
            color: var(--accent-gold);
            box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
        }

        /* ===== MAIN HEADER ===== */
        .main-header {
            background: var(--pure-white);
            box-shadow: 0 4px 20px var(--shadow-color);
            z-index: 1000;
            position: relative;
        }

        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0;
        }

        .header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 25px;
        }

        /* ===== LOGO SECTION ===== */
        .logo-section {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo-container {
            display: flex;
            align-items: center;
        }

        .logo-image {
            width: 100px;
            height: auto;
            object-fit: contain;
            transition: transform 0.3s ease;
        }
        
        .logo-container:hover .logo-image {
            transform: scale(1.05);
        }

        .organization-info {
            flex: 1;
        }

        .org-name {
            font-family: 'Playfair Display', serif;
            font-size: 34px;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 5px;
            letter-spacing: -0.5px;
            position: relative;
            display: inline-block;
        }
        
        .org-name::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 30%;
            height: 3px;
            background: var(--gradient-gold);
            border-radius: 2px;
        }

        .org-tagline {
            font-size: 14px;
            color: var(--text-secondary);
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 8px;
        }

        .tagline-separator {
            width: 6px;
            height: 6px;
            background: var(--accent-gold);
            border-radius: 50%;
            position: relative;
        }
        
        .tagline-separator::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: rgba(245, 158, 11, 0.3);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.5); opacity: 0; }
            100% { transform: scale(1); opacity: 1; }
        }

        /* ===== MAIN NAVIGATION ===== */
        .main-navigation {
            background: var(--gradient-blue);
            padding: 0;
            position: relative;
            box-shadow: 0 4px 15px rgba(37, 99, 235, 0.25);
        }
        
        .main-navigation::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB4PSIwIiB5PSIwIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSgzMCkiPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsIDI1NSwgMjU1LCAwLjAzKSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==');
            opacity: 0.8;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            align-items: center;
            justify-content: center;
            position: relative;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            color: var(--pure-white);
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            padding: 18px 25px;
            position: relative;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            z-index: 1;
        }

        .nav-link i {
            font-size: 16px;
            opacity: 0.9;
            transition: all 0.3s ease;
        }

        .nav-link::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            z-index: -1;
        }

        .nav-link:hover::before {
            height: 100%;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 3px;
            background: var(--accent-gold);
            transform: translateX(-50%);
            transition: all 0.3s ease;
        }

        .nav-link:hover::after {
            width: 70%;
        }

        .nav-link:hover i {
            color: var(--accent-gold);
            transform: translateY(-3px);
        }

        /* Dropdown Menu */
        /* FIND THIS CSS RULE IN YOUR DESKTOP HEADER AND REPLACE IT */

/* Dropdown Menu Arrow - UPDATED VERSION */
.nav-item.has-dropdown .nav-link::after {
    content: '\f107';  /* Changed from \f078 to \f107 for down arrow */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 8px;  /* Increased from 5px */
    font-size: 14px;   /* Increased from 10px to match text better */
    transition: transform 0.3s ease;
    position: static;  /* Keep it static, not absolute */
    height: auto;
    width: auto;
    background: none;
    opacity: 0.8;      /* Slightly more visible */
    order: 2;          /* This will push it to the right if using flexbox */
}

/* Arrow hover state */
.nav-item.has-dropdown:hover .nav-link::after {
    transform: rotate(180deg);
    color: var(--accent-gold);
    opacity: 1;
}

/* Make sure the nav-link is flexbox to control arrow position */
.nav-item.has-dropdown .nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between; /* This pushes arrow to the right */
}

/* Alternative: If you want arrow immediately after text */
.nav-item.has-dropdown .nav-link {
    display: flex;
    align-items: center;
    /* Remove justify-content: space-between for this version */
}

.nav-item.has-dropdown .nav-link::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 8px;
    font-size: 14px;
    transition: transform 0.3s ease;
    opacity: 0.8;
}

        .nav-item.has-dropdown:hover .nav-link::after {
            transform: rotate(180deg);
            color: var(--accent-gold);
            opacity: 1;
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: var(--pure-white);
            min-width: 220px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
            border-radius: 12px;
            padding: 12px 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(15px);
            transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
            border: none;
            z-index: 1000;
            overflow: hidden;
        }
        
        .dropdown-menu::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--gradient-blue);
        }

        .nav-item:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-item {
            padding: 12px 20px;
            color: var(--text-secondary);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            margin: 2px 5px;
            border-radius: 8px;
        }

        .dropdown-item i {
            color: var(--primary-blue);
            font-size: 16px;
            width: 20px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .dropdown-item:hover {
            color: var(--primary-blue);
            background: rgba(59, 130, 246, 0.08);
            padding-left: 25px;
        }

        .dropdown-item:hover i {
            color: var(--accent-gold);
            transform: scale(1.2);
        }

        /* ===== HEADER ACTIONS ===== */
        .header-actions-main {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .action-buttons {
            display: flex;
            gap: 15px;
        }

        .action-btn {
            padding: 12px 24px;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            z-index: 1;
        }
        
        .action-btn i {
            font-size: 16px;
            transition: all 0.3s ease;
        }
        
        .action-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
            z-index: -1;
            transition: all 0.4s ease;
        }
        
        .action-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
        
        .action-btn:hover i {
            transform: scale(1.2) rotate(-10deg);
        }

        .btn-primary {
            background: var(--gradient-blue);
            color: var(--pure-white);
            border: none;
        }

        .btn-primary:hover {
            background: linear-gradient(135deg, #1E40AF 0%, #3B82F6 100%);
        }

        .btn-secondary {
            background: transparent;
            color: var(--primary-blue);
            border: 2px solid var(--primary-blue);
            padding: 10px 22px;
        }

        .btn-secondary:hover {
            background: rgba(37, 99, 235, 0.05);
            border-color: #1E40AF;
        }

        .btn-accent {
            background: var(--gradient-gold);
            color: var(--neutral-dark);
        }

        .btn-accent:hover {
            background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 100%);
        }
        
        /* Donate button special effect */
        .btn-accent::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 70%);
            opacity: 0;
            transition: all 1s ease;
            transform: scale(0.5);
        }
        
        .btn-accent:hover::after {
            opacity: 1;
            transform: scale(1);
            animation: pulse-ring 1.5s infinite;
        }
        
        @keyframes pulse-ring {
            0% { transform: scale(0.8); opacity: 0.8; }
            100% { transform: scale(1.2); opacity: 0; }
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 1200px) {
            .nav-menu {
                gap: 0;
            }
            
            .top-search-input {
                width: 200px;
            }
            
            .top-search-input:focus {
                width: 250px;
            }
        }

        @media (max-width: 992px) {
            .contact-info {
                gap: 20px;
            }
            
            .nav-menu {
                gap: 0;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .nav-link {
                padding: 12px 15px;
                font-size: 14px;
            }
            
            .org-name {
                font-size: 28px;
            }
            
            .top-search-input {
                width: 180px;
            }
            
            .action-buttons {
                gap: 8px;
            }
            
            .action-btn {
                padding: 8px 15px;
                font-size: 13px;
            }
        }

        @media (max-width: 768px) {
            .top-bar-content {
                flex-direction: column;
                gap: 15px;
            }
            
            .contact-info {
                justify-content: center;
                flex-wrap: wrap;
                gap: 15px;
            }
            
            .header-content {
                flex-wrap: wrap;
                gap: 20px;
                justify-content: center;
            }
            
            .main-navigation {
                padding: 10px 0;
            }
            
            .nav-menu {
                flex-direction: column;
                gap: 5px;
                padding: 0 10px;
            }
            
            .nav-link {
                padding: 8px 15px;
                font-size: 13px;
                width: 100%;
                justify-content: center;
                border-radius: 0;
            }
            
            .dropdown-menu {
                position: relative;
                transform: none;
                opacity: 1;
                visibility: visible;
                box-shadow: none;
                background: rgba(255, 255, 255, 0.95);
                margin-top: 5px;
                border-radius: 0;
                display: none;
                width: 100%;
            }
            
            .nav-item:hover .dropdown-menu {
                display: block;
            }
            
            .action-buttons {
                margin-top: 15px;
            }
        }
        
        .logo-link {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}