/* General reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Fixed Position for the buttons */
.fixed-buttons {
    position: fixed;
    bottom: 40px; /* Distance from the bottom */
    width: 100%; /* Full width */
    display: flex;
    justify-content: space-between; /* To space the buttons */
    padding: 0 20px;
    z-index: 9999; /* Ensure it appears above other content */
}

/* WhatsApp Button (Right) */
.whatsapp-btn {
    background-color: #25D366; /* WhatsApp Green */
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out; /* Smooth transition on hover */
}

.whatsapp-btn img {
    width: 40px;
    height: 40px;
}

/* Call Button (Left) */
.call-btn {
    background-color: #34b7f1; /* Call Blue */
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out; /* Smooth transition on hover */
}

.call-btn img {
    width: 40px;
    height: 40px;
}

/* Hover Effects for Buttons */
.whatsapp-btn:hover,
.call-btn:hover {
    transform: translateY(-10px); /* Buttons move up when hovered */
}

/* Add some interactive effects on click */
.whatsapp-btn:active,
.call-btn:active {
    transform: translateY(2px); /* Buttons slightly move down on click */
}
