/* WhatsApp Buttons Container */
.whatsapp-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* WhatsApp Button Styling */
.whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background-color: #25d366; /* WhatsApp green color */
    color: white;
    border-radius: 50px;
    padding: 10px 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.whatsapp-button:hover {
    background-color: #128c7e; /* Darker green on hover */
    transform: scale(1.05);
}

.whatsapp-button img {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

.whatsapp-button span {
    font-size: 16px;
    font-weight: bold;
}

/* Specific Styles for Chat and Call Buttons */
.whatsapp-button.chat {
    background-color: #25d366; /* Green for chat */
}

.whatsapp-button.call {
    background-color: #075e54; /* Darker green for call */
}

/* Responsive Design */
@media (max-width: 768px) {
    .whatsapp-buttons {
        bottom: 10px;
        right: 10px;
    }

    .whatsapp-button {
        padding: 8px 16px;
    }

    .whatsapp-button img {
        width: 20px;
        height: 20px;
    }

    .whatsapp-button span {
        font-size: 14px;
    }
}