.navbar-brand img {
    width: 250px;
}

/*  */
.footer-info-box-content p a {
    color: #fff;
}

.footer-logo img {
    width: 250px;
}

.about-working-hour h3,
.about-service-list h3,
.footer-contact h3 {
    color: #fff !important;
}

/*  */
.service-body ul {
    padding-left: 0;
    list-style: none;
}

.service-body ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 6px;
    font-size: 15px;
}

.service-body ul li::before {
    font-family: "Font Awesome 6 Free";
    content: "\f00c";
    /* fa-check */
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: #153c33;
    font-size: 16px;
    /* line-height: 1; */
}

/*  */

/* DEFAULT (Desktop): show arrow after 1st & 2nd item in each row */
.therapy-process .col-lg-4 .therapy-process-item .icon-box {
    position: relative;
}

.therapy-process .col-lg-4:nth-child(3n+1) .therapy-process-item .icon-box::after,
.therapy-process .col-lg-4:nth-child(3n+2) .therapy-process-item .icon-box::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -250px;
    width: 140px;
    height: 24px;
    background: url('../images/icon-right-up-arrow.svg') no-repeat center center;
    background-size: 100% auto;
    transform: translateY(-50%);
    z-index: 2;
}

/* LAST ITEM in each row — hide arrow */
.therapy-process .col-lg-4:nth-child(3n) .therapy-process-item .icon-box::after {
    display: none;
}

/* Tablet (max 991px) — keep 2 items per row */
@media (max-width: 991px) {
    .therapy-process .col-md-6 .therapy-process-item .icon-box::after {
        right: -70px;
        width: 120px;
    }

    /* Hide arrow on every 2nd item in each row */
    .therapy-process .col-md-6:nth-child(2n) .therapy-process-item .icon-box::after {
        display: none;
    }
}

/* Mobile (max 767px) — hide all arrows */
@media (max-width: 767px) {
    .therapy-process .therapy-process-item .icon-box::after {
        display: none !important;
    }
}

/*  */

.page-pricing {
    padding: 40px 0 10px;
}

/*  */

.text-justify {
    text-align: justify;
}

/*  */
.service-item:hover .service-body ul li {
    color: var(--white-color);
}

.service-item .icon-box svg {
    position: relative;
    z-index: 2;
    /* Keeps SVG above the white hover background */
}

.contact-info-content p a {
    color: #153c33;
}

/*  */
.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background-color: #25D366;
    color: #fff;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.15s ease;
}

.whatsapp-float.show {
    opacity: 1;
    transform: translateY(0);
}

.whatsapp-float:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

@media(max-width:520px) {
    .whatsapp-float {
        width: 54px;
        height: 54px;
        font-size: 24px;
    }
}