.whatsapp_float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    cursor: pointer;
    background-color: #25d366;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.whatsapp_float img {
    width: 60px;
    height: 60px;
    padding: 10px;
    border-radius: 50%;
    background-color: #25d366;
    transition: transform 0.3s;
}

.whatsapp_float:hover img {
    transform: scale(1.1);
}

.mail_float {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 100;
    cursor: pointer;
    background-color: #6495ED;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.mail_float svg {
    width: 60px;
    height: 60px;
    padding: 10px;
    border-radius: 50%;
    background-color: #6495ED;
    transition: transform 0.3s;
}

.mail_float:hover svg {
    transform: scale(1.1);
}