<style>
 body {
            font-family: 'Inter', sans-serif;
        }
.floating-btn{
    position: fixed;
    right: 25px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    color: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,.2);
    transition: .3s;
    animation: pulse 2s infinite;
}

.floating-btn:hover{
    transform: scale(1.1);
}

/* Consultation Button */
.consult-btn{
    bottom: 105px;
    background: #2563eb;
}

/* WhatsApp Button */
.whatsapp-btn{
    bottom: 25px;
    background: #25D366;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0,0,0,.25);
    }
    70% {
        box-shadow: 0 0 0 18px rgba(0,0,0,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0,0,0,0);
    }
}

/* Tooltip */
.tooltip{
    position:absolute;
    right:75px;
    background:#111827;
    color:#fff;
    padding:8px 12px;
    border-radius:8px;
    font-size:13px;
    white-space:nowrap;
    opacity:0;
    visibility:hidden;
    transition:.3s;
}

.floating-btn:hover .tooltip{
    opacity:1;
    visibility:visible;
}
</style>