.steps-image-path {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 1200px;
    width: 100%;
    z-index: 0;
    pointer-events: none;
    height: 461px;
}

/* scroll to top start */
#syncinnsScrollTopBtn {
    position: fixed;
    bottom: 126px;
    right: 34px;
    background-color: rgb(0 30 43);
    color: #0dff00;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0px 6px 27px 0 #0dff00;
    display: none;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, transform 0.3s;
    z-index: 999;
}

#syncinnsScrollTopBtn:hover {
    background-color: rgba(var(--main-color), 1);
    /* Slightly lighter purple on hover */
    transform: translateY(-3px);
}

@media (max-width: 576px) {
    #syncinnsScrollTopBtn {
        width: 40px;
        height: 40px;
        font-size: 18px;
        bottom: 15px;
        right: 15px;
    }
}