/* Preloader styles */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background: #fff; /* White background */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Loader image */
#preloader .loader {
    width: 100px;
    height: 100px;
    background: url('../images/pageloader.gif') no-repeat center center;
    background-size: contain;
}

/* Hide the main content initially */
body.loading {
    visibility: hidden;
}

body.loading #preloader {
    visibility: visible;
}

/* Show the main content once loaded */
body.loaded {
    visibility: visible;
}

body.loaded #preloader {
    display: none;
}
