/* WhatsApp Button Styling */
.whatsapp-btn {
    position: fixed;
    bottom: 20px; /* Adjust the bottom distance */
    right: 20px; /* Adjust the right distance */
    background-color: #25d366; /* WhatsApp Green */
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999; /* Ensure it stays on top */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

/* Optional: Hover effect */
.whatsapp-btn:hover {
    background-color: #128C7E; /* Darker WhatsApp Green */
}

/* For mobile screens, we ensure the button appears */
@media (max-width: 767px) {
    .whatsapp-btn {
        bottom: 20px;
        right: 10px; /* Adjust if needed */
    }
}

/* For larger screens like tablets or desktops */
@media (min-width: 768px) {
    .whatsapp-btn {
        bottom: 20px;
        right: 20px; /* Adjust for larger screens */
    }
}




