.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 90px; /* Original 40px + 50px move to the left = 90px */
    background-color: #25d366;
    color: #FFF;
    padding: 10px 20px; /* Adds space around the text and icon */
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px; /* Space between the icon and the text */
    font-size: 16px;
    font-weight: bold;
    font-family: Arial, sans-serif;
    box-shadow: 2px 4px 10px rgba(0,0,0,0.3);
    z-index: 9999;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float i {
    font-size: 24px; /* Makes the icon slightly larger than the text */
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: #FFF;
    transform: translateY(-5px); /* Adds a slight lift effect on hover */
    text-decoration: none;
}

/* Optional: Hide the text on very small mobile screens to save space */
@media screen and (max-width: 480px) {
    .whatsapp-float span {
        display: none;
    }
    .whatsapp-float {
        padding: 15px;
        right: 90px;
    }
}