/* Style the eye icon */
.eye-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30px;
    color: white;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.gallery-item-inner:hover .eye-icon {
    opacity: 1;
}

/* Magnific Popup image styling */
.mfp-img {
    max-width: 100%;
    max-height: 100%;
    display: block;
    margin: 0 auto;
}

/* Ensure the popup appears centered */
.mfp-figure {
    text-align: center;
}

/* Make the gallery responsive */
.gallery-item-inner {
    position: relative;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 767px) {
    .gallery-item {
        width: 100%;
        margin-bottom: 10px;
    }
}
