

/* WhatsApp Button */
.whatsapp-button {
    position: fixed; /* Fixed position to stay in place while scrolling */
    bottom: 20px; /* Distance from the bottom */
    left: 20px; /* Distance from the right */
    background-color: #25d366; /* WhatsApp green color */
    color: black; /* Icon color */
    border: none; /* Remove border */
    border-radius: 50%; /* Make it circular */
    width: 80px; /* Button size */
    height: 80px; /* Button size */
    display: flex;
    z-index: 10;
    align-items: center;
    justify-content: center;
    text-decoration: none; /* Remove underline */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add shadow */
    transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth transitions */
}

/* Hover effect */
.whatsapp-button:hover {
    background-color: #128c7e; /* Darker green on hover */
    transform: scale(1.1); /* Slightly enlarge on hover */
}

/* WhatsApp icon */
.whatsapp-button i {
    font-size: 50px; /* Icon size */

}



.show-info {
    background: #272121;
    color: white;
    border: none;
    padding: 8px;
    font-size: 1em;
}

.show-alert {
    font-size: 1.8em;
}

.fa-whatsapp {
    font-size: 2em;
    color: green;
}

.fa-viber {
    font-size: 2em;
    color: purple;
}
