       
        
        :root {
            --dark-blue: #0E0E25;
            --medium-blue: #4B4DAE;
            --gold: #CC921D;
            --light-gold: #FFD166;
        }
        
        header {
            background: linear-gradient(135deg, var(--dark-blue) 0%, var(--medium-blue) 100%);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        header.scrolled {
            background: rgba(14, 14, 37, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Add smooth transition for background */
        header {
            transition: background 0.5s ease, backdrop-filter 0.5s ease;
        }

        .fixify-btn-primary {
            background-color: var(--gold);
            color: white;
            transition: all 0.3s ease;
        }
        
        .fixify-btn-primary:hover {
            background-color: #b8821a;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(204, 146, 29, 0.2);
        }
        
        .fixify-btn-secondary {
            background-color: white;
            color: var(--dark-blue);
            border: 2px solid var(--gold);
            transition: all 0.3s ease;
        }
        
        .fixify-btn-secondary:hover {
            background-color: rgba(204, 146, 29, 0.05);
            transform: translateY(-2px);
        }
        
        .gradient-bg {
            background: linear-gradient(135deg, var(--dark-blue) 0%, var(--medium-blue) 100%);
        }
        
        .step-card {
            transition: all 0.3s ease;
            border: 1px solid #e5e7eb;
        }
        
        .step-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(14, 14, 37, 0.1);
            border-color: var(--medium-blue);
        }
        
        .swiper-pagination-bullet-active {
            background-color: var(--gold) !important;
        }
        
        .logo-text {
            background: linear-gradient(90deg, var(--dark-blue) 0%, var(--medium-blue) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .app-mockup {
            position: relative;
            width: 300px;
            height: 580px;
            background: white;
            border-radius: 40px;
            box-shadow: 0 20px 60px rgba(14, 14, 37, 0.15);
            border: 12px solid #1a1a2e;
            overflow: hidden;
        }
        
        .app-mockup::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 25px;
            background: #1a1a2e;
            border-bottom-left-radius: 15px;
            border-bottom-right-radius: 15px;
            z-index: 10;
        }
        
        .app-screen {
            width: 100%;
            height: 100%;
            padding: 40px 20px 20px;
            background: linear-gradient(160deg, #f8fafc 0%, #e2e8f0 100%);
            overflow: hidden;
        }
        
        .stats-number {
            font-size: 3.5rem;
            font-weight: 800;
            background: linear-gradient(90deg, var(--medium-blue) 0%, var(--gold) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

                /* Cookie Consent Bar Styles */
        .cookie-consent-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(135deg, #0E0E25 0%, #1a1a35 100%);
            color: white;
            padding: 20px;
            z-index: 9999;
            box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.2);
            border-top: 3px solid #4B4DAE;
            transform: translateY(100%);
            transition: transform 0.5s ease-in-out;
        }

        .cookie-consent-bar.active {
            transform: translateY(0);
        }

        .cookie-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 30px;
            flex-wrap: wrap;
        }

        .cookie-text {
            flex: 1;
            min-width: 300px;
        }

        .cookie-text h4 {
            color: #CC921D;
            font-weight: 600;
            margin-bottom: 8px;
            font-size: 18px;
        }

        .cookie-text p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 14px;
            line-height: 1.6;
            margin: 0;
        }

        .cookie-text a {
            color: #CC921D;
            text-decoration: underline;
        }

        .cookie-text a:hover {
            color: #ffd166;
        }

        .cookie-buttons {
            display: flex;
            gap: 15px;
            flex-shrink: 0;
        }

        .cookie-btn {
            padding: 10px 25px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            min-width: 120px;
            text-align: center;
        }

        .cookie-btn.accept {
            background: linear-gradient(135deg, #CC921D 0%, #FFD166 100%);
            color: #0E0E25;
        }

        .cookie-btn.accept:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(204, 146, 29, 0.3);
        }

        .cookie-btn.reject {
            background: transparent;
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .cookie-btn.reject:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.5);
        }

        .cookie-btn.settings {
            background: rgba(75, 77, 174, 0.2);
            color: white;
            border: 2px solid #4B4DAE;
        }

        .cookie-btn.settings:hover {
            background: rgba(75, 77, 174, 0.4);
        }

        /* Cookie Settings Modal */
        .cookie-settings-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(14, 14, 37, 0.9);
            z-index: 10000;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(5px);
        }

        .cookie-settings-modal.active {
            display: flex;
        }

        .settings-content {
            background: white;
            width: 90%;
            max-width: 600px;
            max-height: 80vh;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            animation: modalFadeIn 0.3s ease;
        }

        @keyframes modalFadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .settings-header {
            background: linear-gradient(135deg, #0E0E25 0%, #4B4DAE 100%);
            color: white;
            padding: 20px;
        }

        .settings-header h3 {
            color: white;
            margin: 0;
            font-size: 24px;
        }

        .settings-body {
            padding: 25px;
            overflow-y: auto;
            max-height: 50vh;
        }

        .cookie-option {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            border-bottom: 1px solid #eee;
        }

        .cookie-option:last-child {
            border-bottom: none;
        }

        .option-info h4 {
            color: #0E0E25;
            margin-bottom: 5px;
            font-size: 16px;
        }

        .option-info p {
            color: #666;
            font-size: 14px;
            margin: 0;
        }

        /* Toggle Switch */
        .switch {
            position: relative;
            display: inline-block;
            width: 54px;
            height: 28px;
        }

        .switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }

        .slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #ccc;
            transition: .4s;
            border-radius: 34px;
        }

        .slider:before {
            position: absolute;
            content: "";
            height: 20px;
            width: 20px;
            left: 4px;
            bottom: 4px;
            background-color: white;
            transition: .4s;
            border-radius: 50%;
        }

        input:checked + .slider {
            background: linear-gradient(135deg, #CC921D 0%, #FFD166 100%);
        }

        input:checked + .slider:before {
            transform: translateX(26px);
        }

        .input {
            width: 100%;
            padding: 14px 16px;
            border-radius: 10px;
            border: 1px solid #e5e7eb;
            font-size: 14px;
        }
        .input:focus {
            outline: none;
            border-color: #4B4DAE;
            box-shadow: 0 0 0 2px rgba(75,77,174,0.15);
        }

        .settings-footer {
            padding: 20px;
            background: #f8f9fa;
            border-top: 1px solid #eee;
            display: flex;
            justify-content: flex-end;
            gap: 15px;
        }

        /* Responsive Design */
        /* ===============================
           MOBILE MENU FIX
        ================================ */
        #mobileMenu {
            transition: opacity 0.3s ease, transform 0.3s ease;
        }

        #mobileMenu.hidden {
            opacity: 0;
            transform: translateY(-10px);
        }
        #mobileMenu.active {
            opacity: 1;
            pointer-events: auto;
        }

        @media (max-width: 768px) {
            .cookie-content {
                flex-direction: column;
                text-align: center;
                gap: 20px;
            }
            
            .cookie-buttons {
                width: 100%;
                justify-content: center;
                flex-wrap: wrap;
            }
            
            .cookie-btn {
                flex: 1;
                min-width: 140px;
            }
            
            .cookie-text {
                min-width: 100%;
            }
        }

        /* ===============================
           RESPONSIVE HEADER FIX
        ================================ */
        @media (max-width: 1024px) {
            header nav {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .cookie-buttons {
                flex-direction: column;
            }
            
            .cookie-btn {
                width: 100%;
            }
        }

/* ===================================== */
/* RTL Margin Helpers - For Arabic Support */
/* ===================================== */
/* Convert margin-right to margin-inline-start in RTL */
[dir="rtl"] .mr-1,
[dir="rtl"] .mr-2,
[dir="rtl"] .mr-3,
[dir="rtl"] .mr-4,
[dir="rtl"] .mr-5,
[dir="rtl"] .mr-6,
[dir="rtl"] .mr-8,
[dir="rtl"] .mr-10,
[dir="rtl"] .mr-12 {
    margin-right: 0 !important;
}

/* In RTL: margin-right should become margin-inline-end (left side in RTL) */
[dir="rtl"] .mr-1 { margin-inline-end: 0.25rem !important; }
[dir="rtl"] .mr-2 { margin-inline-end: 0.5rem !important; }
[dir="rtl"] .mr-3 { margin-inline-end: 0.75rem !important; }
[dir="rtl"] .mr-4 { margin-inline-end: 1rem !important; }
[dir="rtl"] .mr-5 { margin-inline-end: 1.25rem !important; }
[dir="rtl"] .mr-6 { margin-inline-end: 1.5rem !important; }
[dir="rtl"] .mr-8 { margin-inline-end: 2rem !important; }
[dir="rtl"] .mr-10 { margin-inline-end: 2.5rem !important; }
[dir="rtl"] .mr-12 { margin-inline-end: 3rem !important; }

/* Convert margin-left to margin-inline-end in RTL */
[dir="rtl"] .ml-1,
[dir="rtl"] .ml-2,
[dir="rtl"] .ml-3,
[dir="rtl"] .ml-4,
[dir="rtl"] .ml-5,
[dir="rtl"] .ml-6 {
    margin-left: 0 !important;
}

/* In RTL: margin-left should become margin-inline-start (right side in RTL) */
[dir="rtl"] .ml-1 { margin-inline-start: 0.25rem !important; }
[dir="rtl"] .ml-2 { margin-inline-start: 0.5rem !important; }
[dir="rtl"] .ml-3 { margin-inline-start: 0.75rem !important; }
[dir="rtl"] .ml-4 { margin-inline-start: 1rem !important; }
[dir="rtl"] .ml-5 { margin-inline-start: 1.25rem !important; }
[dir="rtl"] .ml-6 { margin-inline-start: 1.5rem !important; }

/* Handle space-x in RTL (convert horizontal spacing) */
[dir="rtl"] .space-x-1 > * + * { margin-left: 0 !important; margin-inline-start: 0.25rem !important; }
[dir="rtl"] .space-x-2 > * + * { margin-left: 0 !important; margin-inline-start: 0.5rem !important; }
[dir="rtl"] .space-x-3 > * + * { margin-left: 0 !important; margin-inline-start: 0.75rem !important; }
[dir="rtl"] .space-x-4 > * + * { margin-left: 0 !important; margin-inline-start: 1rem !important; }
[dir="rtl"] .space-x-5 > * + * { margin-left: 0 !important; margin-inline-start: 1.25rem !important; }
[dir="rtl"] .space-x-6 > * + * { margin-left: 0 !important; margin-inline-start: 1.5rem !important; }