/* =====================================================
   PRELOADER (PREMIUM)
   ===================================================== */
.drpraveen-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    z-index: 99999; /* Ensure it's above everything */
    background-color: #1C1C1E; /* Charcoal matching theme */
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all; /* Block interactions */
    overflow: hidden;
    will-change: opacity;
}

.drpraveen-preloader__video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Fill the screen gracefully on landscape */
    opacity: 0; /* Managed by GSAP */
    transform: scale(0.95); /* Managed by GSAP */
    will-change: transform, opacity;
}



/* Prevent scrolling while loading */
body.preloader-active {
    overflow: hidden !important;
    height: 100vh;
    height: 100dvh;
}
