.whatsapp-button-container {
    margin-top: 15px;
    text-align: center;
    cursor:pointer;

}
.whatsapp-button-container a:hover {
    color: #fff;
    cursor:pointer;

}
.whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    background-color: #25D366;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.whatsapp-button:hover {
    background-color: #20b858;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.whatsapp-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.whatsapp-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    background: url('wa.svg') no-repeat center;
    background-size: contain;
    margin-right: 10px;
}

/* Ripple effect on click */
.whatsapp-button::before {
    content: '';
    position: absolute;
    cursor:pointer;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.whatsapp-button:active::before {
    width: 200px;
    height: 200px;
}