<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Mobile Hamburger Menu Styles - Enhanced Version */

/* Mobile header adjustments */
@media (max-width: 768px) {
    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        height: 70px;
        display: flex;
        align-items: center;
    }
    
    header.scrolled {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }
    
    header.hidden {
        transform: translateY(-100%);
    }
    
    .header-content {
        padding: 15px 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        height: 70px;
    }
    
    .logo img {
        max-height: 40px;
        transition: all 0.3s ease;
    }
    
    /* Push main content down to account for fixed header */
    main {
        padding-top: 80px; /* Increased to provide more space */
    }
    
    /* Pulse animation for logo when menu is open */
    .hamburger-menu.active + .menu-overlay + .logo img {
        animation: logoPulseMenu 1.5s ease-in-out infinite;
    }
    
    @keyframes logoPulseMenu {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.05); }
    }
    
    /* Dark mode adaptations */
    @media (prefers-color-scheme: dark) {
        header {
            background: rgba(31, 31, 31, 0.95);
        }
        
        .hamburger-menu span {
            background: #fff;
        }
    }
}

/* Hamburger icon animations - Enhanced for better visibility */
@media (max-width: 768px) {
    .hamburger-menu {
        width: 40px; /* Increased size */
        height: 30px; /* Increased size */
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;
        z-index: 1002;
        background: transparent;
        border: none;
        padding: 0;
        position: relative;
        margin-left: 15px;
        transition: transform 0.3s ease;
    }
    
    .hamburger-menu:hover {
        transform: scale(1.05);
    }
    
    .hamburger-menu span {
        display: block;
        height: 4px; /* Thicker lines */
        width: 100%;
        background: #5e72e4; /* Brand color for better visibility */
        border-radius: 4px;
        transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }
    
    html.rtl .hamburger-menu {
        margin-left: 0;
        margin-right: 15px;
    }
    
    /* X animation - Smoother and more obvious */
    .hamburger-menu.active span:nth-child(1) {
        transform: translateY(13px) rotate(45deg);
        background: #5e72e4;
        width: 100%;
    }
    
    .hamburger-menu.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-10px);
    }
    
    .hamburger-menu.active span:nth-child(3) {
        transform: translateY(-13px) rotate(-45deg);
        background: #5e72e4;
        width: 100%;
    }
    
    /* Add subtle pulse animation to indicate interactivity */
    .hamburger-menu:not(.active):hover span {
        animation: pulseBar 1s infinite;
    }
    
    .hamburger-menu:not(.active):hover span:nth-child(1) {
        animation-delay: 0s;
    }
    
    .hamburger-menu:not(.active):hover span:nth-child(2) {
        animation-delay: 0.1s;
    }
    
    .hamburger-menu:not(.active):hover span:nth-child(3) {
        animation-delay: 0.2s;
    }
    
    @keyframes pulseBar {
        0%, 100% { transform: scaleX(1); opacity: 1; }
        50% { transform: scaleX(0.95); opacity: 0.8; }
    }
    
    /* Add ripple effect when clicked */
    .hamburger-menu::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: rgba(94, 114, 228, 0.3);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: width 0.3s ease, height 0.3s ease;
        pointer-events: none;
        z-index: -1;
    }
    
    .hamburger-menu:active::after {
        width: 60px;
        height: 60px;
    }
    
    /* Add a glow effect when active */
    .hamburger-menu.active {
        filter: drop-shadow(0 0 8px rgba(94, 114, 228, 0.5));
    }
}

/* Mobile Menu Panel Styles - Enhanced */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        z-index: 1001;
        display: flex;
        flex-direction: column;
        padding: 80px 20px 100px;
        transform: translateY(-100%);
        transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1); /* Smoother easing */
        overflow-y: auto;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }
    
    /* RTL support */
    html.rtl .nav-menu {
        left: auto;
        right: 0;
    }
    
    /* Menu items styling - Enhanced */
    .nav-menu ul {
        list-style: none;
        padding: 0;
        margin: 0 0 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .nav-menu ul li {
        width: 100%;
        opacity: 0;
        transform: translateY(-20px);
        transition: opacity 0.3s ease, transform 0.4s ease;
        margin-bottom: 12px; /* Increased spacing */
    }
    
    /* Staggered animation for menu items */
    .nav-menu ul li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu ul li:nth-child(2) { transition-delay: 0.15s; }
    .nav-menu ul li:nth-child(3) { transition-delay: 0.2s; }
    .nav-menu ul li:nth-child(4) { transition-delay: 0.25s; }
    .nav-menu ul li:nth-child(5) { transition-delay: 0.3s; }
    .nav-menu ul li:nth-child(6) { transition-delay: 0.35s; }
    .nav-menu ul li:nth-child(7) { transition-delay: 0.4s; }
    .nav-menu ul li:nth-child(8) { transition-delay: 0.45s; }
    .nav-menu ul li:nth-child(9) { transition-delay: 0.5s; }
    
    .nav-menu.active ul li {
        opacity: 1;
        transform: translateY(0);
    }
    
    .nav-menu ul li a {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 16px;
        font-size: 20px; /* Larger font */
        font-weight: 500;
        color: #333;
        text-decoration: none;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        border-radius: 16px; /* Rounder corners */
        background-color: rgba(255, 255, 255, 0.5);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        border: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .nav-menu ul li a:hover,
    .nav-menu ul li a.active {
        background: rgba(94, 114, 228, 0.1);
        color: #5e72e4;
        transform: translateY(-3px); /* More pronounced lift */
        box-shadow: 0 5px 15px rgba(94, 114, 228, 0.15);
        border-color: rgba(94, 114, 228, 0.2);
    }
    
    .nav-menu ul li a:active {
        transform: translateY(-1px);
        box-shadow: 0 2px 8px rgba(94, 114, 228, 0.1);
    }
    
    /* Indicator line for active link */
    .nav-menu ul li a::after {
        content: '';
        position: absolute;
        bottom: 8px;
        left: 50%;
        width: 0;
        height: 4px; /* Thicker line */
        background: linear-gradient(90deg, #4776E6, #8E54E9);
        border-radius: 4px;
        transform: translateX(-50%);
        transition: width 0.3s ease;
    }
    
    .nav-menu ul li a.active::after {
        width: 50px; /* Longer underline */
    }
    
    /* Icon styling - Enhanced */
    .nav-item-icon {
        margin-right: 15px; /* More spacing */
        font-size: 24px; /* Larger icons */
        opacity: 0.8;
        transition: all 0.3s ease;
        color: #5e72e4; /* Brand color */
    }
    
    .nav-menu ul li a:hover .nav-item-icon,
    .nav-menu ul li a.active .nav-item-icon {
        opacity: 1;
        transform: scale(1.2) rotate(5deg); /* Add slight rotation for playfulness */
    }
    
    /* RTL support */
    html.rtl .nav-item-icon {
        margin-right: 0;
        margin-left: 15px;
    }
    
    /* Language switcher in menu - Enhanced */
    .nav-menu .mobile-language {
        margin-top: auto;
        display: flex;
        justify-content: center;
        width: 100%;
        padding: 20px 0;
        position: sticky;
        bottom: 0;
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        z-index: 2;
        box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
        border-top: 1px solid rgba(0, 0, 0, 0.03);
    }
    
    .mobile-language button {
        min-width: 70px; /* Wider buttons */
        height: 45px; /* Taller buttons */
        font-size: 16px; /* Larger font */
        font-weight: 600; /* Bolder font */
        transition: all 0.3s ease;
        border-radius: 10px; /* Rounder corners */
        margin: 0 8px;
        border: 2px solid rgba(94, 114, 228, 0.2);
    }
    
    .mobile-language button.active {
        background: #5e72e4;
        color: white;
        border-color: #5e72e4;
        box-shadow: 0 5px 15px rgba(94, 114, 228, 0.2);
    }
    
    .mobile-language button:not(.active):hover {
        background: rgba(94, 114, 228, 0.1);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(94, 114, 228, 0.1);
    }
    
    /* Menu overlay backdrop - Enhanced */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6); /* Darker for better contrast */
        backdrop-filter: blur(8px); /* More blur */
        -webkit-backdrop-filter: blur(8px);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    
    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Section dividers in menu - Enhanced */
    .nav-menu ul::before {
        content: 'Main Navigation';
        display: block;
        width: 100%;
        padding: 0 0 15px;
        font-size: 14px;
        font-weight: 700;
        color: #5e72e4;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        border-bottom: 2px solid rgba(94, 114, 228, 0.1);
        margin-bottom: 20px;
        text-align: center;
    }
    
    .nav-menu ul li:nth-child(5) {
        margin-bottom: 40px; /* Increased spacing */
    }
    
    .nav-menu ul li:nth-child(6)::before {
        content: 'Legal &amp; Support';
        display: block;
        width: 100%;
        padding: 5px 0 15px;
        font-size: 14px;
        font-weight: 700;
        color: #5e72e4;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        margin-bottom: 20px;
        border-bottom: 2px solid rgba(94, 114, 228, 0.1);
        text-align: center;
    }
    
    /* Dark mode adaptations */
    @media (prefers-color-scheme: dark) {
        .nav-menu {
            background: rgba(31, 31, 31, 0.98);
        }
        
        .nav-menu ul li a {
            color: #fff;
            background-color: rgba(50, 50, 50, 0.4);
            border-color: rgba(255, 255, 255, 0.1);
        }
        
        .nav-menu ul li a:hover,
        .nav-menu ul li a.active {
            background: rgba(94, 114, 228, 0.2);
            border-color: rgba(94, 114, 228, 0.3);
        }
        
        .nav-menu ul::before,
        .nav-menu ul li:nth-child(6)::before {
            color: #8E54E9;
            border-color: rgba(94, 114, 228, 0.2);
        }
        
        .nav-menu .mobile-language {
            background: rgba(31, 31, 31, 0.8);
            border-color: rgba(255, 255, 255, 0.05);
        }
        
        .mobile-language button:not(.active) {
            color: #fff;
            border-color: rgba(255, 255, 255, 0.2);
        }
    }
}

/* Hide the normal bottom navigation when hamburger menu is active */
@media (max-width: 768px) {
    body.menu-open .mobile-nav-bottom {
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        transform: translateY(100%);
    }
}

/* Interactive animations for menu items */
@media (max-width: 768px) {
    /* Entrance animation for menu panel */
    @keyframes slideDown {
        from { transform: translateY(-100%); }
        to { transform: translateY(0); }
    }
    
    /* Hovering animation for items */
    @keyframes menuItemHover {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
    }
    
    /* Language switcher animations */
    .mobile-language button.active {
        animation: activeButtonPulse 2s infinite;
    }
    
    @keyframes activeButtonPulse {
        0%, 100% { transform: scale(1); box-shadow: 0 5px 15px rgba(94, 114, 228, 0.2); }
        50% { transform: scale(1.05); box-shadow: 0 8px 20px rgba(94, 114, 228, 0.3); }
    }
    
    /* Add special effects for active menu item */
    .nav-menu ul li a.active .nav-item-icon {
        animation: activeIconPulse 2s infinite alternate;
    }
    
    @keyframes activeIconPulse {
        0% { transform: scale(1) rotate(0deg); opacity: 0.8; }
        100% { transform: scale(1.4) rotate(10deg); opacity: 1; }
    }
    
    /* Add bubble indicators for active menu */
    .hamburger-menu::before {
        content: '';
        position: absolute;
        top: -5px;
        right: -5px;
        width: 12px;
        height: 12px;
        background: #5e72e4;
        border-radius: 50%;
        transform: scale(0);
        transition: transform 0.3s ease;
        box-shadow: 0 0 10px rgba(94, 114, 228, 0.5);
    }
    
    .hamburger-menu.active::before {
        transform: scale(1);
    }
} </pre></body></html>