/* General styles for the gallery section */

.vkg-gallery1{
    padding: 50px 0;
}


.gallery-section {
    padding: 50px 0;
    margin: 0;
}

.gallery-img {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: block;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    transition: transform 0.3s ease-in-out;
}

.gallery-img:hover img {
    transform: scale(1.1); /* Zoom effect */
}

/* Overlay styling */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 1;
}



.gallery-img:hover .overlay {
    opacity: 0.8; /* Show overlay on hover */
    transform: scale(1);
}

/* Icon styling */
.plus {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: white;
    opacity: 0;
    z-index: 2;
    transition: opacity 0.3s ease-in-out;
}

.gallery-img:hover .plus {
    opacity: 1; /* Show icon on hover */
}

.gallery-inner {
    position: relative;
}