/* Styling for the circular scroll-to-top button */
.scroll-to-top {
    display: initial;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #0036C5;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-size: 24px;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    z-index: 999;
}

.scroll-to-top i {
    transform: rotate(-90deg);
}

.scroll-to-top:hover {
    background-color: #001f6e; /* Darker shade of blue on hover */
}
