.whatsapp {
    background: #41C452;
}

.whatsapp .fa-whatsapp {
    font-size: 20px;
}

/* Yellow Background */
.yellow-bg-new {
    background: #938201;
    border-radius: 10px;
}

/* Red Background */
.red-bg {
    background: #ff4b2b;
    border-radius: 10px;
}

/* Sky Blue Background */
.sky-bg {
    background: #5b86e5;
    border-radius: 10px;
}

/* Dark Background */
.dark-bg {
    background: #414345;
    border-radius: 10px;
}

.our-service {
    padding-top: 70px;
}

.category__item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}


.accordion-button {
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    background-color: #f8f9fa;
    color: #4e73df;
}

.accordion-item {
    /* border-radius: 10px; */
    overflow: hidden;
}

.accordion-button:focus {
    box-shadow: none;
    border: 1px solid #4e73df;
}


.main-menu ul li a.active {
    color: #4e73df;
    font-weight: 600;
}


.footer__social ul {
    padding: 0;
    margin: 0;
}

.footer__social ul li {
    list-style: none;
}

.footer__social ul li a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 50%;
    color: #4e73df;
    transition: 0.3s;
}

.footer__social ul li a:hover {
    background: #4e73df;
    color: #fff;
}

/*  */
/* Call Button */
.call-float {
    position: fixed;
    right: 25px;
    bottom: 160px;
    /* Above WhatsApp */
    height: 46px;
    width: 46px;
    background: #007bff;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: 0.3s ease;
    animation: callPulse 2s infinite;
}

.call-float:hover {
    transform: scale(1.1);
    background: #0056b3;
    color: #fff;
}

/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    right: 25px;
    bottom: 90px;
    height: 46px;
    width: 46px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #1ebe5d;
    color: #fff;
}

/* Animations */
@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes callPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.6);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(0, 123, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
    }
}



/* Mobile Bottom CTA Bar */
.mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    background: #ffffff;
    box-shadow: 0 -3px 15px rgba(0, 0, 0, 0.1);
    z-index: 9999;
}

.mobile-cta a {
    flex: 1;
    text-align: center;
    padding: 12px 5px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.mobile-cta i {
    font-size: 18px;
    margin-bottom: 4px;
}

/* Individual Colors */
.cta-call {
    background: #007bff;
}

.cta-whatsapp {
    background: #25D366;
}

.cta-expert {
    background: #4e73df;
}

/* Hover */
.mobile-cta a:hover {
    opacity: 0.9;
}


/* Hide desktop floating buttons on mobile */
@media (max-width: 991px) {

    .call-float,
    .whatsapp-float {
        display: none !important;
    }
}


.mobile-cta {
    bottom: -100px;
    opacity: 0;
    transition: all 0.4s ease;
}

.mobile-cta.show {
    bottom: 0;
    opacity: 1;
}


.progress-wrap {
    z-index: 10000;
    /* Higher than mobile CTA */
}

@media (max-width: 991px) {
    .progress-wrap {
        bottom: 80px;
        /* Above mobile CTA */
    }
}

.progress-wrap {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
}

.logo img,
.footer__logo img {
    width: 222px;
    height: auto;
}