body {
    padding-top: 56px;
}

.logo {
    height: 50px;
}

.hero {
    background: url('../assets/hero-bg.jpg') no-repeat center center/cover;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

/* Service Cards */
.service-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.service-card i {
    font-size: 3rem;
    color: #d4af37;
    /* Gold */
    margin-bottom: 15px;
}

.service-card h4 {
    margin-top: 10px;
}

.service-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

/* Navbar */
.navbar-brand img {
    height: 50px;
}


/* Fleet Cards */
.fleet-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.fleet-card img {
    width: 100%;
    border-radius: 10px;
}

.fleet-card h4 {
    margin-top: 15px;
}

.fleet-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}