

/**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;
}
}




    /**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;
    }
}


/**Custom Style Model**/

#devModal .modal-content{
    font-family:'Jost', sans-serif;
}

#devModal .modal-title{
    font-size:24px;
}

#devModal p{
    font-size:15px;
    line-height:1.7;
}

#devModal .btn-primary{
    background:#0d6efd;
    border:none;
}

#devModal .btn-primary:hover{
    background:#084298;
}


/* Dropdown Menu 
.custom-dropdown{
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border: none;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);

    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all .35s ease;

    display: block;
    margin-top: 0;
    pointer-events: none;
}*/

.contact-link {
    color: inherit;          /* Keeps the same text color */
    text-decoration: none;   /* Removes underline */
    font: inherit;           /* Uses the same font */
}

.contact-link:hover,
.contact-link:focus,
.contact-link:active {
    color: inherit;
    text-decoration: none;
}