/* Preloader Container */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff; /* Background color */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Stay on top */
}

/* Popping Logo */
.preloader-logo {
    width: 80px; /* Adjust size as needed */
    height: auto;
    animation: popInOut 1.1s infinite ease-in-out;
}

/* Pop In & Out Animation */
@keyframes popInOut {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    50% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(0.5);
        opacity: 0;
    }
}

/* Prevent External Hiding */
.preloader,
.preloader-logo {
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
}

