/* Custom CSS for Car Doctor */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://picsum.photos/1920/1080?car') no-repeat center center/cover;
    height: 70vh;
    color: white;
    display: flex;
    align-items: center;
}

.service-card img, .product-card img {
    height: 200px;
    object-fit: cover;
}

.gallery-img {
    height: 250px;
    object-fit: cover;
    width: 100%;
    border-radius: 8px;
    transition: transform 0.3s;
}

.gallery-img:hover {
    transform: scale(1.05);
}