body.preloader-active {
    overflow: hidden;
}


.preloader {
  overflow: hidden !important;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #fff; /* Set background color as needed */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
}

.logo-container {
    position: relative;
}

.loading-circle {
    position: absolute;
    border-radius: 50%;
    border-top: 8px solid #1544d0;
    border-right: 16px solid #008f00;
    border-bottom: 16px solid #c30000;
    width: 100px;
    height: 100px;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.3); /* Shadow inside the circle */
    animation: spin 1s linear infinite;
}

.logo-container img {

    width: 50px;
    animation: breathe 3s ease-in-out infinite;

}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes breathe {
    0%, 100% {
        transform: scale(1.1);
    }
    50% {
        transform: scale(1.3);
    }
}