/* Smooth Zoom for Portfolio Images */
.group:hover img {
    transform: scale(1.1);
    transition: transform 0.5s ease-in-out;
}

/* Ensure the image transition is smooth when mouse leaves */
.group img {
    transition: transform 0.5s ease-in-out;
}