/* Hero Animation */
.hero {
    background: url('../assets/hero-bg.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 120px 20px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    animation: fadeInUp 2s ease forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    0% {opacity: 0; transform: translateY(50px);}
    100% {opacity: 1; transform: translateY(0);}
}

/* Services Cards */
.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.service-cards .card {
    background: #fff;
    padding: 20px;
    width: 220px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-cards .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.service-cards .card img {
    width: 60px;
    margin-bottom: 15px;
}

/* Map Styling */
.map-container {
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
}

/* Responsive Service Cards */
@media screen and (max-width: 768px) {
    .service-cards {
        flex-direction: column;
        align-items: center;
    }
}