/**
 * assets/css/whatsapp.css
 * WhatsApp floating button ke liye professional styling
 */

.whatsapp-float {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 90px; /* Bottom nav se upar rakhne ke liye */
    right: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
    color: #FFF;
}

@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Mobile screen par position thodi adjust karne ke liye */
@media screen and (max-width: 767px) {
    .whatsapp-float {
        width: 45px;
        height: 45px;
        bottom: 100px; /* Mobile nav ke upar padding */
        right: 15px;
    }
}