#preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 1); /* White with transparency */
    backdrop-filter: blur(10px); /* Background blur effect */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Loader Image */
.loader-img {
    width: 100px; /* Adjust size */
    height: auto;
}

/* Hide content initially */
.hidden {
    display: none;
}