/* Floating WhatsApp Icon */
.wa-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.wa-float:hover {
    transform: scale(1.1);
    background-color: #20ba5a;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.wa-float svg {
    width: 35px;
    height: 35px;
    fill: #fff;
}

@media(max-width:768px) {
    .wa-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        left: 15px;
    }

    .wa-float svg {
        width: 28px;
        height: 28px;
    }
}