.hero {
    position: relative;
    height: 280px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-heading {
    color: white;
    font-size: 3.5rem;
    text-align: center;
    z-index: 1;
}

.gallery {
    padding: 40px 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.gallery-image {
    width: 350px;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
    margin: 40px 20px;
}

.whatsapp-icon {
    background-color: #fcfbfd; 
    border-radius: 50%; 
    box-shadow: 0 2px 5px rgba(15, 15, 15, 0.3); 
    padding: 18px; 
}

@media (max-width: 768px) {
    .gallery {
        gap: 15px;
    }

    .gallery-image {
        width: 75%;
        height: auto;
    }
}

@media (max-width: 576px) {
    .gallery-image {
        width: 90%;
        height: auto;
    }
}