/* Preloader Styles */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff; /* Background color of your preloader */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 1000; /* Ensure the preloader is on top of other elements */
}

#logopre {
    max-width: 150px; /* Adjust the max-width as needed */
    height: auto;
    animation: pulse 2s infinite; /* Smooth pulsating animation */
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}
