/* Scroll to Top Button */
#myBtnContainer {
    position: fixed;
    bottom: 25px;
    right: 30px;
    width: 70px;
    height: 70px;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#myBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border: none;
    outline: none;
    background-color: #075ebb;
    color: white;
    cursor: pointer;
    border-radius: 50%;
    font-size: 24px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 10;
}

#myBtn i {
    font-size: 20px;
}

#myBtn:hover {
    background-color: #014996;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.progress-ring {
    position: absolute;
    width: 90px;
    height: 90px;
    transform: rotate(-90deg);
    pointer-events: none;
    z-index: 1;
    top: -10px;
    left: -10px;
}

.progress-ring__circle {
    stroke: #014996;
    stroke-dasharray: 100 0;
    stroke-width: 6;
    fill: transparent;
    transition: stroke-dasharray 0.35s;
}