header.header img {
    width: 80%;
}
.pb-1.flex.justify-start.items-center.gap-3 {
    width: 20%;
}
section.bg-repeat.stp-30.hero_bg_gradient.overflow-hidden {
    padding-top: 140px;
}

img.object-fit.max-sm\:max-h-\[300px\] {
    margin-top: 80px;
}


section.bg-softBg1.stp-30.sbp-30.overflow-hidden img {
    width: 50%;
    height: 50%;
}

@media (max-width: 575.98px) {
.pb-1.flex.justify-start.items-center.gap-3 {
    width: 100%;
}

}


@media (min-width: 576px) and (max-width: 767.98px) {
.pb-1.flex.justify-start.items-center.gap-3 {
    width: 100%;
}

}


@media (min-width: 768px) and (max-width: 991.98px) {
.pb-1.flex.justify-start.items-center.gap-3 {
    width: 100%;
}

}


.whatsapp-float{
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 34px;
    line-height: 60px;
    box-shadow: 0 4px 15px rgba(0,0,0,.3);
    z-index: 9999;
    text-decoration: none;
    animation: whatsappPulse 2s infinite, whatsappBounce 2s infinite;
}

.whatsapp-float:hover{
    animation-play-state: paused;
    transform: scale(1.15);
    color: #fff;
}

/* Ring Effect */
.whatsapp-float::before{
    content: '';
    position: absolute;
    inset: -8px;
    border: 2px solid #25D366;
    border-radius: 50%;
    animation: ring 2s infinite;
}

/* Pulse */
@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37,211,102,0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37,211,102,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37,211,102,0);
    }
}

/* Bounce */
@keyframes whatsappBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

/* Ring Animation */
@keyframes ring {
    0%{
        transform: scale(1);
        opacity: 1;
    }
    100%{
        transform: scale(1.6);
        opacity: 0;
    }
}
.wa-tooltip{
    position: fixed;
    right: 70px;
    bottom: 36px;
    background: #25D366;
    color: #fff;
    padding: 8px 14px;
    border-radius: 20px 0px 0px 20px;
    font-size: 13px;
    font-weight: 600;
    z-index: 9998;
    animation: tooltipBlink 2s infinite;
}

@keyframes tooltipBlink{
    0%,100%{opacity:1;}
    50%{opacity:.5;}
}