
    .finance-highlight {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 5px;
    background: linear-gradient(90deg, #d72126, #2b337c, #000000);
    background-size: 200% auto;

    color: #fff;
    font-weight: 600;

    animation: gradientMove 2s linear infinite,
               blinkHighlight 1.5s ease-in-out infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes blinkHighlight {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.55;
    }
}

/* Floating Contact Buttons */
.floating-contact {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
    animation: phoneRing 1.8s ease-in-out infinite;
    transition: all 0.3s ease;
}
.floating-btn::before,
.floating-btn::after {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid #2b337c;
    opacity: 0;
    pointer-events: none;
}
.floating-btn::before {
    animation: pulseRing 1.8s ease-out infinite;
}

/* Second ring with delay */
.floating-btn::after {
    animation: pulseRing 1.8s ease-out infinite;
    animation-delay: 0.6s;
}
.floating-btn:hover {
    transform: scale(1.12);
    color: #fff;
}

/* Phone */
.phone-btn {
    background: #2b337c;
}

/* WhatsApp */
.whatsapp-btn {
    background: #25D366;
}
@keyframes phoneRing {

    0%,
    40%,
    100% {
        transform: rotate(0deg) scale(1);
    }

    3% {
        transform: rotate(15deg) scale(1.04);
    }

    6% {
        transform: rotate(-15deg) scale(1.04);
    }

    9% {
        transform: rotate(12deg) scale(1.04);
    }

    12% {
        transform: rotate(-12deg) scale(1.04);
    }

    15% {
        transform: rotate(7deg) scale(1.02);
    }

    18% {
        transform: rotate(-7deg) scale(1.02);
    }

    21% {
        transform: rotate(0deg) scale(1);
    }
}


/* Expanding Circle Wave */
@keyframes pulseRing {

    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }

    70% {
        transform: scale(1.7);
        opacity: 0;
    }

    100% {
        transform: scale(1.7);
        opacity: 0;
    }
}
/* Ring / Vibrate Animation */
@keyframes ringVibrate {

    0% {
        transform: rotate(0deg);
    }

    5% {
        transform: rotate(12deg);
    }

    10% {
        transform: rotate(-12deg);
    }

    15% {
        transform: rotate(10deg);
    }

    20% {
        transform: rotate(-10deg);
    }

    25% {
        transform: rotate(6deg);
    }

    30% {
        transform: rotate(-6deg);
    }

    35% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(0deg);
    }
}
@media (min-width: 800px) {
 .all-desk-none{
     display:none !important;
}
@media (max-width: 767px) {

    .floating-contact {
        right: 15px;
        bottom: 15px;
        gap: 10px;
    }

    .floating-btn {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

}