/* Gallery 1 Styles */
.gallery1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
    gap: 15px; /* space between images */
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery1-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.5s ease;
}

.gallery1-item img {
    width: 100%;       
    height: 200px;     
    object-fit: cover; 
    border-radius: 10px;
    display: block;
    transition: transform 0.5s ease;
}

.gallery1-item:hover img {
    transform: scale(1.2);
}

.gallery1-item span {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.6);
    color: #fff;
    text-align: center;
    padding: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery1-item:hover span {
    opacity: 1;
}
