/* Floating WhatsApp Button Styling */
.whatsapp-float-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366; /* Official WhatsApp Green */
    color: #FFFFFF;
    border-radius: 50px;
    padding: 12px 24px;
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 9999;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

/* Hover Effect */
.whatsapp-float-btn:hover {
    background-color: #20ba5a;
    transform: scale(1.05);
    color: #FFFFFF;
}

/* SVG Icon alignment */
.whatsapp-float-btn svg {
    fill: white;
    width: 24px;
    height: 24px;
}
