/* Premium High-Contrast Back To Top Button */
.progress-wrap {
    position: fixed;
    right: 35px;
    bottom: 35px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgba(10, 60, 173, 0.15), 0 8px 25px rgba(0, 0, 0, 0.15) !important;
    background-color: #ffffff !important; /* Crisp high-contrast white background */
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    -webkit-transition: all 250ms cubic-bezier(0.25, 0.8, 0.25, 1);
    transition: all 250ms cubic-bezier(0.25, 0.8, 0.25, 1);
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-wrap:hover {
    transform: scale(1.1) translateY(-2px) !important;
    box-shadow: inset 0 0 0 2px rgba(0, 229, 255, 0.3), 0 12px 30px rgba(0, 229, 255, 0.25) !important;
}

.progress-wrap::after {
    position: absolute;
    content: '\f176';
    font-family: "Font Awesome 5 Pro";
    text-align: center;
    line-height: 46px;
    font-size: 20px;
    color: #0a3cad !important; /* Bold Royal Blue arrow */
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 200ms ease;
    transition: all 200ms ease;
}

.progress-wrap:hover::after {
    color: #00e5ff !important; /* Turns glowing cyan on hover */
}

.progress-wrap svg path { 
    fill: none; 
}

.progress-wrap svg.progress-circle path {
    stroke: #00e5ff !important; /* High-visibility Cyan scroll progress indicator */
    stroke-width: 4;
    box-sizing: border-box;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}