.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.whatsapp-icon {
    width: 35px;
    height: 35px;
}

/* Optional: Animation */
.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    transition: 0.3s;
}