/* Preloader Fullscreen */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff; /* Change if needed */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Preloader Video Styling */
#preloader video {
    width: 100%;
    max-width: 200px; /* Adjust as needed */
    height: auto;
    object-fit: contain; /* Prevents distortion */
}
