
.call-fixed{
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000; 
}
.call-button{
    display: inline-block;
    background-color: #25D366;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    
}
.call-button img {
    width: 40px;
    height: 40px;
}

.call-button:hover {
    transform: scale(1.1);
}

.whatsapp-fixed{
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-button {
    display: inline-block;
    background-color: #25D366;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
   
}

.whatsapp-button img {
    width: 40px;
    height: 40px;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}