         .bg-darkblue { background-color: #1E3A8A; }
        .text-darkblue { color: #1E3A8A; }
        .bg-apple-green { background-color: #A3E635; }
        .text-apple-green { color: #A3E635; }
        .border-apple-green { border-color: #A3E635; }
        
        .nav-active { 
            color: #A3E635 !important;
            border-bottom: 2px solid #A3E635;
            background-color: rgba(163, 230, 53, 0.1);
        }
        
        .nav-link {
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-link:hover {
            color: #A3E635 !important;
        }
        
        /* Page Loader Overlay - Only on first load */
        .page-loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #1E3A8A 0%, #0F2350 100%);
            z-index: 9999;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
        }
        
        .page-loader.hide {
            opacity: 0;
            visibility: hidden;
        }
        
        .loader-content {
            text-align: center;
            animation: fadeInUp 0.6s ease-out;
        }
        
        .loader-logo {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: pulse 1.5s ease-in-out infinite;
        }
        
        .loader-logo img {
            width: 50px;
            height: 50px;
        }
        
        .loader-spinner {
            width: 50px;
            height: 50px;
            border: 3px solid rgba(163, 230, 53, 0.3);
            border-top-color: #A3E635;
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
            margin: 20px auto;
        }
        
        .loader-text {
            color: white;
            font-size: 18px;
            font-weight: 500;
            letter-spacing: 2px;
            margin-top: 20px;
        }
        
        .loader-dots {
            display: inline-flex;
            gap: 4px;
        }
        
        .loader-dots span {
            width: 6px;
            height: 6px;
            background-color: #A3E635;
            border-radius: 50%;
            animation: bounce 1.4s ease-in-out infinite;
        }
        
        .loader-dots span:nth-child(1) { animation-delay: 0s; }
        .loader-dots span:nth-child(2) { animation-delay: 0.2s; }
        .loader-dots span:nth-child(3) { animation-delay: 0.4s; }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.1); opacity: 0.8; }
        }
        
        @keyframes bounce {
            0%, 60%, 100% { transform: translateY(0); }
            30% { transform: translateY(-10px); }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Content Loader - Shows inside the view panel without hiding content */
        .content-loader {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 255, 255, 0.95);
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            border-radius: 12px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .content-loader.show {
            opacity: 1;
            visibility: visible;
        }
        
        .content-loader-spinner {
            width: 40px;
            height: 40px;
            border: 3px solid rgba(163, 230, 53, 0.3);
            border-top-color: #A3E635;
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
            margin-bottom: 15px;
        }
        
        .content-loader-text {
            color: #1E3A8A;
            font-size: 14px;
            font-weight: 500;
        }
        
        /* View panel relative positioning for loader */
        #view-panel {
            position: relative;
            min-height: 400px;
        }
        
        .fade-in {
            animation: fadeIn 0.3s ease-in;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .partner-card {
            transition: all 0.3s ease;
        }
        
        .partner-card:hover {
            transform: translateY(-5px);
            filter: grayscale(0%);
        }
        
        .social-icon {
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        .social-icon:hover {
            background-color: #A3E635;
            transform: translateY(-3px);
        }
        
        .social-icon:hover svg {
            fill: #1E3A8A;
        }
        
        /* Mobile menu animation */
        .mobile-menu-enter {
            max-height: 0;
            opacity: 0;
            overflow: hidden;
            transition: all 0.3s ease-out;
        }
        
        .mobile-menu-enter-active {
            max-height: 400px;
            opacity: 1;
        }
        
        .mobile-menu-leave {
            max-height: 400px;
            opacity: 1;
        }
        
        .mobile-menu-leave-active {
            max-height: 0;
            opacity: 0;
            overflow: hidden;
            transition: all 0.3s ease-in;
        }
        
        /* Hamburger menu animation */
        .hamburger {
            cursor: pointer;
            width: 24px;
            height: 24px;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .hamburger span {
            width: 100%;
            height: 2px;
            background-color: white;
            transition: all 0.3s ease;
            border-radius: 2px;
        }
        
        .hamburger.open span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        
        .hamburger.open span:nth-child(2) {
            opacity: 0;
        }
        
        .hamburger.open span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }
        
        /* Disable clicks while loading */
        .loading-active {
            pointer-events: none;
            opacity: 0.7;
        }

        /* Image Modal Styles */
#imageModal {
    z-index: 9999;
}

#imageModal .modal-open {
    overflow: hidden;
}