body {
    font-family: 'Arial', sans-serif;
}
header .container{
    margin: -20px auto !important;
    padding: 0;
}
header {
    background-color: #f8f9fa;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
nav a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}
nav a:hover {
    color: #007bff;
}

.hero-section {
    background: url('../assets/carwash-hero.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}
.hero-section h1 {
    font-size: 3.5rem;
    font-weight: bold;
}
.hero-section p {
    font-size: 1.5rem;
    margin-top: 20px;
}
.btn-primary {
    background-color: #007bff;
    border: none;
    padding: 10px 30px;
    font-size: 1.2rem;
    margin-top: 20px;
}
.service-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px; /* Optional: rounded corners */
}

.service-card img {
    width: 100%; 
    height: 200px; /* Ensures uniform size */
    object-fit: cover; /* Keeps aspect ratio while covering */
    border-radius: 10px;
    transition: transform 0.4s ease-out; /* Smooth zoom effect */
}

.service-card img:hover {
    transform: scale(1.05);
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay */
    color: white;
    text-align: center;
    padding: 5px;
    transition: 0.3s ease-in-out;
}

.service-card:hover .overlay {
    background: rgba(0, 0, 0, 0.8); /* Darker on hover */
}

.overlay h3 {
    font-size: 18px;
    margin: 0;
}

.overlay p {
    font-size: 14px;
    margin: 5px 0 0;
}

.service-card {
    text-align: center;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    margin: 10px;
    transition: box-shadow 0.3s ease;
}
.service-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
}