/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 80px; /* Increased from 30px to 80px to move it higher */
    right: 20px;  /* Slightly adjusted right position */
    width: 45px;  /* Slightly smaller width */
    height: 45px; /* Slightly smaller height */
    border-radius: 50%;
    background-color: #52505B;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.scroll-to-top.visible {
    opacity: 0.9;
    visibility: visible;
}

.scroll-to-top:hover {
    opacity: 1;
    transform: translateY(-5px);
    background-color: #8B7E74;
}

.scroll-to-top i {
    font-size: 20px; /* Slightly smaller icon */
    transition: all 0.3s ease;
}

.scroll-to-top:hover i {
    transform: translateY(-3px);
}

/* Call Button */
.call-button {
    position: fixed;
    bottom: 550px; /* Positioned above the scroll-to-top button */
    right: 20px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #25D366; /* WhatsApp green color */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.call-button.visible {
    opacity: 0.9;
    visibility: visible;
}

.call-button:hover {
    opacity: 1;
    transform: translateY(-5px);
    background-color: #128C7E; /* Darker green on hover */
}

.call-button i {
    font-size: 20px;
    transition: all 0.3s ease;
}

.call-button:hover i {
    transform: translateY(-3px);
}
