/* Preloader styles */
#preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Image loader */
.loader-img {
    width: 100px; /* Adjust size as needed */
    height: auto;
    animation: zoomInOut 1.5s ease-in-out infinite;
}

/* Zoom in and out animation */
@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}
