body {
    overflow: hidden;
    margin: 0;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ffffff;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0s ease;
}

#preloader img {
    width: 100px;
    height: auto;
    margin-bottom: 20px;
}

#status {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #2F2B5E;
    border-radius: 50%;
    animation: spin 1s linear 5; 
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Fade out effect */
body.loaded #preloader {
    opacity: 0;
    visibility: hidden;
}

/* Optional: dropdown hover fix */

