/* ====================== PRELOADER ====================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;        /* Aap isko change kar sakte hain */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    transition: opacity 0.8s ease;
}

.preloader.hidden {
    opacity: 0;
    pointer-events: none;
}

/* New Loader Style */
.loader {
    display: flex;
    align-items: center;
}

.bar {
    display: inline-block;
    width: 4px;
    height: 22px;
    background-color: rgba(255, 153, 0, 0.6);
    border-radius: 10px;
    animation: scale-up4 1.2s linear infinite;
}

.bar:nth-child(2) {
    height: 38px;
    margin: 0 6px;
    animation-delay: 0.25s;
}

.bar:nth-child(3) {
    animation-delay: 0.5s;
}

@keyframes scale-up4 {
    20% {
        background-color: #ffffff;
        transform: scaleY(1.8);
    }
    40% {
        transform: scaleY(1);
    }
}