/* ===================== Back To Top ===================== */
#backToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none; 
    z-index: 1000;
}
#backToTop img {
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
}
#backToTop img:hover {
    transform: scale(1.1);
}


@media (max-width: 768px) {
    #backToTop {
        bottom: 10px; /* lebih dekat dengan content */
        right: 10px;
        width: 40px;  /* saiz sesuai mobile */
        height: 40px;
    }

    #backToTop img {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        box-shadow: 0 3px 5px rgba(0,0,0,0.2);
    }
}