body {
    font-family: 'Poppins', sans-serif;
    scroll-padding-top: 70px;
}

/* --- Hero Section --- */
.hero-section {
    height: 100vh;
    /* NEW IMAGE */
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://i.ibb.co/ycbm0r4S/homepage.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Navbar Styling --- */
.navbar {
    transition: background-color 0.4s ease-in-out;
}
.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}
.navbar.scrolled {
    background-color: rgba(33, 37, 41, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* --- Car Card Styling --- */
.car-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.car-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.car-card .card-img-top {
    height: 180px; 
    object-fit: cover;
}
.car-card .card-body {
    padding: 1rem; 
}
.car-card .card-title {
    font-weight: 600;
    font-size: 1.1rem;
}
.car-card ul {
    align-items: flex-start;
}
.car-card ul li {
    flex: 1;
    padding: 0 0.25rem;
}
.car-card ul li i {
    margin-bottom: 0.25rem;
}


/* --- "Show More" Feature Styling --- */
#car-fleet-list .col-lg-3:nth-child(n+9) {
    display: none !important;
}
#car-fleet-list.show-all .col-lg-3:nth-child(n+9) {
    display: flex !important;
}


/* --- General Section Styling --- */
section {
    padding: 80px 0;
}
h2 {
    font-weight: 700;
    color: #333;
}