
/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px; /* Changed from right to left */
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    text-decoration: none;
}

.whatsapp-float img {
    width: 40px;
    height: 40px;
}

/* Hover Effect */
.whatsapp-float:hover {
    background-color: #1ebe57;
}
