/* Loading Animation Component */
@import url('https://fonts.googleapis.com/css2?family=Gilroy:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    font-family: 'Gilroy', sans-serif;
}

.loading-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-container {
    position: relative;
    width: 87px;
    height: 87px;
    margin: 0 auto;
}

.loading-logo {
    width: 69px;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    opacity: 1;
    filter: none;
    box-shadow: none;
}

.progress-ring {
    position: relative;
    width: 87px;
    height: 87px;
}

.progress-ring__svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.progress-ring__circle {
    stroke: #2D704E;
    stroke-width: 4;
    fill: none;
    stroke-linecap: round;
    stroke-dasharray: 251.2; /* 2 * π * 40 */
    stroke-dashoffset: 251.2;
    animation: progress 2s linear forwards;
}

.progress-ring__background {
    fill: #D9D9D9;
}

@keyframes progress {
    from {
        stroke-dashoffset: 251.2;
    }
    to {
        stroke-dashoffset: 0;
    }
}
