/* Body reset */
body {
    margin: 0;
}

/* Hide main content until loader is gone */
#content-div {
    display: none;
}

/* Full Page Loader */
.page-loader {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, #ffffff, #f0f4ff, #e6e9ff);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    pointer-events: auto; /* block scrolling while visible */
}

/* Logo */
.prameya-logo {
    height: 100px;
    width: auto;
    margin-bottom: 20px;
}

/* Loader Bar */
.loader {
    display: block;
    width: 153px;
    height: 7px;
    border-radius: 40px;
    background-color: rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.loader::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    border-radius: 30px;
    background: linear-gradient(0deg, #ac0c0f, #250303);
    animation: moving 1s ease-in-out infinite;
}

/* Loader bar animation (infinite loop) */
@keyframes moving {
    50% { width: 100%; }
    100% { width: 0; right: 0; left: unset; }
}

/* Fade out loader */
.fade-out {
    animation: hideLoader 0.5s forwards;
}

@keyframes hideLoader {
    0%   { opacity: 1; pointer-events: auto; }
    100% { opacity: 0; pointer-events: none; display: none; }
}
