#scrollToTop {
    top: 83%;
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #f0f0f0;
    cursor: pointer;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out, transform 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
}

#scrollToTop.show {
    opacity: 1;
}

#scrollToTop:hover {
    transform: scale(1.08);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

#scrollToTop svg {
    position: absolute;
    transform: rotate(-90deg);
}

#scrollToTop span {
    position: absolute;
    font-size: 18px;
    font-weight: 400;
    color: #ff6600;
    z-index: 10;
    line-height: 0;
}



@media (min-width: 360px) and (max-width: 768px) {
    #scrollToTop{
top: 79%;
    position: fixed;
    bottom: 25px;
    right:2%;
    width: 25px;
 height: 26px;}
    
 
    #scrollToTop span {

 position: absolute;
 font-size: 16px;}


 

#scrollToTop span {

 position: absolute;
 font-size: 16px;}

#scrollToTop svg {
  width: 117%;
}
}