:root {
    --primary: #2563eb;
    --secondary: #1e40af;
    --accent: #f59e0b;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    scroll-behavior: smooth;
}
.nav-gradient{
    background: #0f172a

}
.hero-gradient {
    background: linear-gradient(135deg, #ffe9aa 65%, #FFB300 100%);
}

.booking-card {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.booking-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.15);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    color: var(--accent);
}

.animate-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.mobile-menu {
    transition: all 0.3s ease;
}

.fleets-slider {
    scroll-snap-type: x mandatory;
}

.fleet-card {
    scroll-snap-align: start;
}

.driver-card:hover .driver-image {
    transform: scale(1.05);
}
