/**
 * RevolHealth - Scroll Progress Bar
 */

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, #F2436E 0%, #7317A5 50%, #F2436E 100%);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
    width: 0%;
    z-index: 99999;
    transition: width 0.1s ease-out;
    border-radius: 0 2px 2px 0;
    box-shadow: 0 0 10px rgba(242, 67, 110, 0.5), 0 0 20px rgba(115, 23, 165, 0.3);
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}