/*======================LOADER START ============================*/
.loader-container {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.8);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: opacity 0.5s ease-out, visibility 0.5s;
        z-index: 1000;
    }
    .loader {
        width: 180px;
        height: 180px;
        border: 5px solid #3498db;
        border-top: 5px solid transparent;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }
    .loader img {
        width: 140px;
        height: 140px;
        position: absolute;
    }
    .slogan {
        margin-top: 15px;
        font-size: 18px;
        color: #333;
        font-weight: bold;
    }
    .hidden {
        opacity: 0;
        visibility: hidden;
    }
/*======================LOADER END ============================*/