/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Nov 25 2025 | 05:35:47 */
/* Force caption visible in normal state */
.im_fic .image-caption-overlay {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Zoom-in image on hover */
.im_fic .image-wrap img {
    transition: transform 0.6s ease;
    transform-origin: center center;
}

.im_fic:hover .image-wrap img {
    transform: scale(1.12);
}

/* NORMAL overlay = white */
.im_fic .image-caption-overlay:before {
    background: rgba(255,255,255,0.22) !important;
    transition: background 0.4s ease;
}

/* HOVER overlay = orange */
.im_fic:hover .image-caption-overlay:before {
    background: rgba(252,110,3,0.45) !important;
}

/* NORMAL text color = white */
.im_fic .image-caption,
.im_fic .image-caption * {
    color: #ffffff !important;
    opacity: 1 !important;
    transition: color 0.4s ease;
}

/* HOVER text color = orange */
.im_fic:hover .image-caption,
.im_fic:hover .image-caption * {
    color: #fc6e03 !important;
}
