 /* ===== HEADER ===== */
        
  #page-loader{
    position: fixed;
    inset: 0;
    background: transparent; /* semi-transparent */
    
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}



#page-loader.hide{
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-box{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.spinner-ring{
    width: 78px;
    height: 78px;
    border-radius: 50%;
    border: 6px solid rgba(11, 94, 215, 0.12);
    border-top: 6px solid #0b5ed7;
    border-right: 6px solid #ffc107;
    animation: spin 1s linear infinite;
    box-shadow: 0 10px 30px rgba(11, 94, 215, 0.12);
}

.loader-percent{
    font-size: 1.3rem;
    font-weight: 800;
    color: #0b5ed7;
}

.loader-text{
    font-size: 0.95rem;
    color: #6b7280;
}

@keyframes spin{
    to{
        transform: rotate(360deg);
    }
}
        
        .main-header {
            background: #0b5ed7;
            color: #fff;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }

        .main-header .container {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 14px 20px;
            position: relative;
        }

        .main-nav {
            display: flex;
            gap: 14px;
            align-items: center;
            justify-content: center;
            width: 100%;
            max-width: 900px;
            margin: 0 auto;
        }

        .main-nav a {
            color: #fff;
            text-decoration: none;
            padding: 6px 12px;
            border-radius: 6px;
            transition: .3s;
            white-space: nowrap;
        }

        .main-nav a:hover {
            background: rgba(255,255,255,0.2);
        }

        .main-nav a.active {
            background: #ffc107;
            color: #0b5ed7;
            font-weight: 700;
        }

        .cta-btn {
            background: #198754;
            color: #fff !important;
            font-weight: 600;
            padding: 8px 16px;
            border-radius: 8px;
        }

        .cta-btn:hover {
            background: #157347;
        }

        /* ===== MOBILE MENU ===== */
        .hamburger {
            display: none;
            width: 28px;
            height: 22px;
            border: none;
            background: none;
            cursor: pointer;
            position: relative;
            flex-shrink: 0;
        }

        .hamburger span {
            position: absolute;
            right: 0;
            width: 100%;
            height: 3px;
            background: #fff;
            border-radius: 3px;
            transition: .3s;
        }

        .hamburger span:nth-child(1) { top: 0; }
        .hamburger span:nth-child(2) { top: 9px; }
        .hamburger span:nth-child(3) { top: 18px; }

        @media (max-width: 768px) {
            .main-header .container {
                justify-content: flex-start;
                padding: 12px 16px;
            }

            .hamburger {
                display: block;
                z-index: 1001;
            }

            .main-nav {
                position: fixed;
                top: 0;
                left: 0;
                bottom: 0;
                width: 240px;
                max-width: none;
                background: #0b5ed7;
                flex-direction: column;
                align-items: flex-start;
                justify-content: flex-start;
                padding-top: 70px;
                transform: translateX(-100%);
                transition: .3s;
                box-shadow: 4px 0 12px rgba(0,0,0,0.2);
                margin: 0;
            }

            .main-nav.show {
                transform: translateX(0);
            }

            .main-nav a {
                width: 100%;
                padding: 14px 20px;
                border-radius: 0;
            }
        }

        .menu-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,.35);
            z-index: 999;
        }

        .menu-overlay.show {
            display: block;
        }

        /* COOKIE BANNER */
#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #0b5ed7;
    color: #fff;
    padding: 14px 16px;
    text-align: center;
    z-index: 2000;
    box-shadow: 0 -6px 20px rgba(0,0,0,0.15);

    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s ease;
}

#cookie-consent-banner.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
#cookie-consent-banner a {
    color: #ffc107; /* your golden yellow */
    font-weight: 600;
    text-decoration: underline;
    margin: 0 4px;
    transition: 0.3s;
}

#cookie-consent-banner a:hover {
    color: #ffffff;
}

body.cookie-visible {
    padding-bottom: 80px;
}
        .accept-btn {
            background: #28a745;
            color: #fff;
        }

        .decline-btn {
            background: #dc3545;
            color: #fff;
        }

        .header-flag {
            flex-shrink: 0;
            display: flex;
            align-items: center;
            margin-left: 10px;
        }
 