.ul-nodots li::before{
    display:none !important;
}
.radious10{
    border-radius: 10px !important;
}

.client-logo {
        mix-blend-mode: screen;
            /* or try 'multiply' if screen is too bright */
    filter: grayscale(100%) opacity(0.7);
    transition: filter 0.3s ease;
}

.client-logo:hover {
    filter: grayscale(0%) opacity(1);
}
.ul-clients{
    background: white !important;
}
.ul-services .swiper-slide {
    height: auto !important;
}
.ul-services .swiper-slide .ul-service {
    height: 100% !important;
}
.ul-service-img{
    position:absolute;
    bottom:0px;
}
.ul-service-descr{
    min-height: 300px;
}

.highlight {
    background: linear-gradient(120deg, rgb(0 229 149 / 43%) 0%, rgb(16 133 242 / 41%) 100%);
    padding: 0 2px;
    border-radius: 2px;
    box-decoration-break: clone;
    background-blend-mode: multiply;
    display: inline;
}
.ul-about-content-tab.class-80{

    min-height: 724px;
}
.ul-service-details-txt ul li {
    margin-bottom: 0px;
}
.ul-service-details-txt ul li p {
    margin-bottom: 0px;
}
@media screen and (max-width: 767px) {
.ul-about-content-tab.class-80 {

        min-height: auto;
    }
}


.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    left: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    transition: all 0.3s ease;
    cursor: pointer;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 2px 2px 10px #999;
}

.whatsapp-btn {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #333;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: #333;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Pulse animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-float {
    animation: pulse 2s infinite;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        left: 15px;
        font-size: 24px;
    }

    .whatsapp-tooltip {
        right: 60px;
        font-size: 12px;
        padding: 6px 10px;
    }
}