/* One-time zoom towards the right */
.zphero-slide .zpslider-img {
   animation: zoomRight 8s ease-in-out forwards; 
    transform-origin: center right; /* Zoom direction */
}

@keyframes zoomRight {
    0% {
        transform: scale(1) translateX(0);
    }
    100% {
        transform: scale(1.15) translateX(-20px); /* Zoom-in + slight pan */
    }
}
/* Smooth subtle zoom on hover */
.zpimage:hover {
    transform: scale(1.05);
    transition: transform 0.6s ease-out;
}

.zpimage {
    transition: transform 0.6s ease-out;
}




/* Tablets (keep one line) */
@media (max-width: 991px) and (min-width: 600px) {
    .designing-title {
        font-size: 32px;
    }
}

/* Mobile (shrink further to avoid wrapping) */
@media (max-width: 599px) {
    .designing-title {
        font-size: 24px;
    }
}



