/* Magnific Popup - Zoom In Animation */
.mfp-zoom-in .mfp-content {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease-in-out;
}
.mfp-zoom-in.mfp-ready .mfp-content {
    opacity: 1;
    transform: scale(1);
}
.mfp-zoom-in.mfp-removing .mfp-content {
    opacity: 0;
    transform: scale(0.8);
}
/* Gallery image hover effects */
.gallery-popup-link img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-popup-link:hover img {
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
