/* styles.css */
body {
    font-family: 'Inter', sans-serif;
    background-color: #020617; /* bg-brand-darker */
    color: #f8fafc; /* text-slate-50 */
}

/* Custom scrollbar for webkit */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0f172a; 
}
::-webkit-scrollbar-thumb {
    background: #1e75eb; 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #155eab; 
}

/* Hero background overlay */
.hero-bg {
    background-image: linear-gradient(to right, rgba(2, 6, 23, 0.9), rgba(2, 6, 23, 0.4)), url('truck.avif');
    background-size: cover;
    background-position: center;
}