/**WhatsApp floation CSS AND JS**/
  
.whatsapp-float{
    position:fixed;
    right:20px;
    bottom:90px;
    z-index:9999;
    display:flex;
    align-items:center;
    gap:10px;
    padding:14px 18px;
    background:linear-gradient(135deg,#25D366,#128C7E);
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:700;
    font-size:15px;
    box-shadow:0 8px 25px rgba(0,0,0,.25);
    transition:all .3s ease;
    animation:waPulse 2s infinite;
}

.whatsapp-float:hover{
    transform:translateY(-3px) scale(1.03);
    color:#fff;
    box-shadow:0 12px 30px rgba(0,0,0,.35);
}

.wa-icon{
    width:36px;
    height:36px;
    border-radius:50%;
    background:#fff;
    color:#25D366;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    font-weight:bold;
}

.wa-text{
    white-space:nowrap;
}

@keyframes waPulse{
    0%{box-shadow:0 0 0 0 rgba(37,211,102,.6);}
    70%{box-shadow:0 0 0 18px rgba(37,211,102,0);}
    100%{box-shadow:0 0 0 0 rgba(37,211,102,0);}
}

@media(max-width:768px){
    .whatsapp-float{
        right:15px;
        bottom:90px;
        padding:12px 14px;
        border-radius:100px;
    }

    .wa-text{
        display:none;
    }

    .wa-icon{
        width:42px;
        height:42px;
        font-size:20px;
    }
}





/* Popup */

.popup-overlay{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.6);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.popup{
    width:90%;
    max-width:420px;
    background:#fff;
    border-radius:15px;
    padding:30px;
    text-align:center;
    animation:popup .3s ease;
    box-shadow:0 10px 30px rgba(0,0,0,.3);
}

.popup .icon{
    font-size:60px;
}

.popup h2{
    margin:15px 0;
    color:#ff9800;
}

.popup p{
    color:#555;
    line-height:1.7;
}

.popup button{
    margin-top:20px;
    padding:12px 25px;
    border:none;
    background:#ff9800;
    color:#fff;
    font-size:16px;
    border-radius:8px;
    cursor:pointer;
}

.popup button:hover{
    background:#e68a00;
}

@keyframes popup{
from{
transform:scale(.8);
opacity:0;
}
to{
transform:scale(1);
opacity:1;
}
}
