#page-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#page-loader img {
    width: 180px;
    max-width: 70%;
    height: auto;
    margin-bottom: 25px;
}

.loading-text {
    font-size: 16px;
    color: #000269;
    font-weight: 500;
    letter-spacing: 1px;
}

#page-loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
