 @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
        body { font-family: 'Poppins', sans-serif; }
        .slide { display: none; }
        .slide.active { display: block; }
        .bgcolor{
            background-color: #031229;
        }
        /* Mobile Menu Overlay - Full Screen with z-index pop */
        #mobileMenuOverlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            z-index: 9999;
            overflow-y: auto;
            animation: fadeInOverlay 0.3s ease;
        }
        #mobileMenuOverlay.open {
            display: block;
        }
        @keyframes fadeInOverlay {
            from { opacity: 0; transform: scale(0.95); }
            to { opacity: 1; transform: scale(1); }
        }
        #mobileMenuOverlay .menu-content {
            background: linear-gradient(145deg, #0b2b5c, #1a3f7a);
            max-width: 400px;
            margin: 20px auto;
            padding: 30px 25px;
            border-radius: 24px;
            box-shadow: 0 25px 60px rgba(0,0,0,0.5);
            border: 1px solid rgba(255,255,255,0.1);
            animation: slideUp 0.35s ease;
        }
        @keyframes slideUp {
            from { transform: translateY(30px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }
        #mobileMenuOverlay .close-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            color: white;
            font-size: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
            z-index: 10;
        }
        #mobileMenuOverlay .close-btn:hover {
            background: rgba(255,255,255,0.2);
            transform: rotate(90deg);
        }
        #mobileMenuOverlay .menu-item {
            display: block;
            padding: 14px 18px;
            border-radius: 14px;
            color: #e2e8f0;
            font-weight: 500;
            font-size: 15px;
            transition: all 0.2s;
            border-bottom: 1px solid rgba(255,255,255,0.05);
            text-decoration: none;
            position: relative;
        }
        #mobileMenuOverlay .menu-item:hover {
            background: rgba(255,255,255,0.08);
            transform: translateX(6px);
            color: #ffffff;
        }
        #mobileMenuOverlay .menu-item i {
            width: 28px;
            text-align: center;
            margin-right: 14px;
            color: #facc15;
        }
        #mobileMenuOverlay .menu-item.active {
            background: rgba(255,255,255,0.12);
            color: #ffffff;
            border-left: 3px solid #facc15;
        }
        #mobileMenuOverlay .menu-header {
            text-align: center;
            padding-bottom: 20px;
            margin-bottom: 16px;
            border-bottom: 1px solid rgba(255,255,255,0.08);
        }
        #mobileMenuOverlay .menu-header h2 {
            font-size: 22px;
            font-weight: 700;
            color: #facc15;
        }
        #mobileMenuOverlay .menu-header p {
            font-size: 12px;
            color: #94a3b8;
            margin-top: 4px;
        }
        #mobileMenuOverlay .menu-footer {
            margin-top: 20px;
            padding-top: 16px;
            border-top: 1px solid rgba(255,255,255,0.08);
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #94a3b8;
            font-size: 12px;
        }
        #mobileMenuOverlay .menu-footer .lang-btn {
            background: rgba(255,255,255,0.08);
            padding: 6px 18px;
            border-radius: 30px;
            color: white;
            font-weight: 500;
            border: 1px solid rgba(255,255,255,0.1);
            cursor: pointer;
            transition: 0.3s;
        }
        #mobileMenuOverlay .menu-footer .lang-btn:hover {
            background: rgba(255,255,255,0.15);
        }
        
        /* Mobile Bottom Nav */
        .bottom-nav {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 999;
            background: white;
            border-top: 1px solid #e5e7eb;
            box-shadow: 0 -4px 12px rgba(0,0,0,0.08);
            display: none;
            padding: 6px 0 env(safe-area-inset-bottom, 6px) 0;
        }
        .bottom-nav .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            color: #6b7280;
            padding: 4px 0;
            transition: color 0.2s;
            text-decoration: none;
            min-height: 44px;
            min-width: 44px;
            flex: 1;
        }
        .bottom-nav .nav-item i {
            font-size: 18px;
            margin-bottom: 2px;
        }
        .bottom-nav .nav-item.active {
            color: #1e3a8a;
            font-weight: 600;
        }
        .bottom-nav .nav-item.active i {
            color: #1e3a8a;
        }
        .bottom-nav .nav-item .badge {
            position: relative;
        }
        .bottom-nav .nav-item .badge::after {
            content: '';
            position: absolute;
            top: -2px;
            right: -6px;
            width: 8px;
            height: 8px;
            background: #dc2626;
            border-radius: 50%;
            border: 2px solid white;
        }
        @media (max-width: 640px) {
            .bottom-nav { display: flex; }
            body { padding-bottom: 70px; }
            .touch-target { min-height: 44px; min-width: 44px; }
        }
        .brand-icon {
        width: 48px;
        height: 50px;
        border-radius: 50%;
        background: rgba(255,255,255,0.15);
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        border: 2px solid rgba(255,255,255,0.25);
        flex-shrink: 0;
        }
        .brand-icon img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .sliderimg img{
    width:100%;
    height:100%;
    object-fit:cover;
    position:absolute;
    inset:0;
    z-index:-1;
}

.slide{
    position:relative;
    min-height:350px;
}