/* Smooth Scrolling for the entire page */
html { 
    scroll-behavior: smooth; 
}

/* Hide Scrollbar for Carousel */
.hide-scrollbar::-webkit-scrollbar { 
    display: none; 
}
.hide-scrollbar { 
    -ms-overflow-style: none; 
    scrollbar-width: none; 
}

/* Image Zoom Effect on Hover for Gallery */
.image-zoom-container img {
    transition: transform 0.6s ease-in-out;
}
.image-zoom-container:hover img {
    transform: scale(1.08);
}