/* Scroll To Top Button */
#scrollTopBtn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: #0d6efd;
    color: #fff;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

#scrollTopBtn:hover {
    background: #0b5ed7;
    transform: translateY(-3px);
}

#scrollTopBtn.show {
    display: flex;
}

@media (max-width: 576px) {
    #scrollTopBtn {
        width: 40px;
        height: 40px;
        right: 15px;
        bottom: 15px;
        font-size: 18px;
    }
}