    :root {
           --primary-color: #010d1aff;
            --secondary-color: #000000;
            --accent-color: #081828ff;
            --light-color: #ecf0f1;
            --dark-color: #081828ff;
        }
        
        body {
            font-family: 'Cairo', sans-serif;
            padding-top: 80px;
        }
        
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1533473359331-0135ef1b58bf?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            height: 80vh;
            color: white;
            display: flex;
            align-items: center;
            text-align: center;
        }
        
        .navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background-color: white !important;
    padding: 10px 0;
}

.navbar-brand {
    font-weight: bold;
    color: var(--primary-color) !important;
    font-size: 1.5rem;
}

.nav-link {
    color: var(--dark-color) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: all 0.3s;
    position: relative;
}

.nav-link:hover {
    color: var(--secondary-color) !important;
}

.navbar-nav .dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 10px;
}

.navbar-nav .dropdown-item {
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s;
}

.navbar-nav .dropdown-item:hover {
    background-color: var(--light-color);
    color: var(--secondary-color);
}

.navbar-nav .dropdown-divider {
    margin: 5px 0;
}

.badge {
    font-size: 0.6rem;
    padding: 4px 6px;
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

@media (max-width: 991px) {
    .navbar-nav .dropdown-menu {
        margin-top: 10px;
        border-radius: 0 0 10px 10px;
    }
    
    .navbar-nav .btn {
        margin: 5px 0;
        width: 100%;
    }
}
        
        .btn-primary {
            background-color: var(--secondary-color);
            border: none;
            padding: 10px 25px;
            transition: all 0.3s;
        }
        
        .btn-primary:hover {
            background-color: #000000;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .section-title {
            position: relative;
            margin-bottom: 40px;
            font-weight: 700;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--secondary-color);
        }
        
        .car-card {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s;
            margin-bottom: 30px;
        }
        
        .car-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .car-img {
            height: 200px;
            object-fit: cover;
        }
        
        .stats-box {
            text-align: center;
            padding: 30px 20px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            margin-bottom: 30px;
            transition: all 0.3s;
        }
        
        .stats-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }
        
        .stats-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--secondary-color);
        }
        
        .brand-logo {
            height: 60px;
            margin: 15px;
            filter: grayscale(100%);
            transition: all 0.3s;
            opacity: 0.7;
        }
        
        .brand-logo:hover {
            filter: grayscale(0%);
            opacity: 1;
            transform: scale(1.1);
        }
        
        .feature-box {
            text-align: center;
            padding: 30px 20px;
            border-radius: 10px;
            transition: all 0.3s;
            margin-bottom: 30px;
        }
        
        .feature-box:hover {
            background-color: var(--light-color);
            transform: translateY(-5px);
        }
        
        .feature-icon {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 20px;
        }
        
        .animated {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s, transform 0.5s;
        }
        
        .animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        footer {
            background-color:#010d1aff;
            color: white;
            padding: 50px 0 20px;
        }
        
        .social-icon {
            font-size: 1.5rem;
            margin: 0 10px;
            color: white;
            transition: all 0.3s;
        }
        
        .social-icon:hover {
            color: var(--secondary-color);
            transform: translateY(-5px);
        }
        
        .fixed-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--primary-color);
            color: white;
            padding: 10px 0;
            text-align: center;
            z-index: 1000;
            animation: bannerSlide 1s ease-out;
        }
        
        @keyframes bannerSlide {
            from { transform: translateY(100px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }
        
        .banner-close {
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            cursor: pointer;
            color: white;
        }
        
        .floating-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: var(--secondary-color);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(231, 76, 60, 0); }
            100% { box-shadow: 0 0 0 0 rgba(231, 76, 60, 0); }
        }
        
        .search-section {
            background-color: var(--light-color);
            padding: 50px 0;
        }
        
        .carousel-item {
            height: 400px;
        }
        
        .carousel-item img {
            object-fit: cover;
            height: 100%;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .hero-section {
                height: 60vh;
            }
            
            .stats-number {
                font-size: 2rem;
            }
            
            .carousel-item {
                height: 300px;
            }
        }