/* Floating Icons Styles */

.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
    margin-bottom: 60px;
    margin-right: 15px;
}

.floating-button {
    width: 38px;
    height: 38px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.floating-button:hover {
    transform: scale(1.1);
}

.call-button {
    background-color: #34b7f1; 
}

.top-button {
    background-color: #ec912b; 
    display: none;
}