/* Loading Animation Styles */
.loading_sec {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.loading_sec::before,
.loading_sec::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 100%;
    background-color: var(--accent-color);
    transition: transform 1s ease-in-out;
}

.loading_sec::before {
    left: 0;
    transform: translateX(0);
}

.loading_sec::after {
    right: 0;
    transform: translateX(0);
}

.loading_sec.hide::before {
    transform: translateX(-100%);
}

.loading_sec.hide::after {
    transform: translateX(100%);
}

.loading_sec-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.loading_sec-content-icon {
    animation: scaleDown 0.5s ease-in-out forwards;
    animation-delay: 2s;
}

.loading_sec-content-icon img {
    width: 150px;
    height: auto;
    border-radius: 13px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

@keyframes scaleDown {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(0);
        opacity: 0;
    }
}
