#scrollToTop {
    position: fixed;
    bottom: 50px;
    right: 50px;
    width: 100px; /* Adjust size as needed */
    height: 100px;
    cursor: pointer;
    z-index: 1000; /* Ensure it appears above other elements */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    transition: transform 0.3s ease-in-out, opacity 0.3s;
}

#scrollToTop:hover {
    transform: scale(1.1); /* Slight zoom on hover */
}

#scrollToTop img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image scales properly */
    border-radius: 50%; /* Makes the image circular */
}
