.our-service-banner {
    background-image: url("../images/home/bg4.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Optional gradient overlay */
.our-service-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: #000000A6;
}

/* Make content appear above background */
.our-service-banner .banner-content {
    position: relative;
    z-index: 2;
}

.our-service-banner .banner-title {
    margin: unset;
    max-width: 152px;
}

.our-service-banner .banner-heading,
.our-service-banner .banner-subheading,
.our-service-banner .banner-buttons {
    max-width: unset;
    margin: unset;
}

.banner-heading .h1-text {
    text-transform: capitalize;
}

/* tabbed-testimonial-content */
.tabbed-testimonial-content .nav-link {
    font-family: var(--secondary-font);
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: -0.12px;
    color: var(--color-grey-6) !important;
    border: none;
    border-bottom: 1px solid var(--color-grey-6);
    text-decoration: none;
    padding: 10px 20px;
}

.tabbed-testimonial-content .nav-link.active {
    font-weight: 600;
    color: var(--color-primary) !important;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--color-primary);
}

.tabbed-testimonial-content .nav-tabs {
    border: none;
}

.nav-link:focus-visible {
    box-shadow: none;
}

.tabbed-testimonial-content .tab-content {
    padding-top: 24px;
    padding-right: 24px;
    max-height: 70vh;
    overflow-y: scroll;
}

.tabbed-testimonial-content .tab-content::-webkit-scrollbar {
    width: 3px;
}

.tabbed-testimonial-content .tab-content::-webkit-scrollbar-track {
    background: var(--color-blue-4);
}

.tabbed-testimonial-content .tab-content::-webkit-scrollbar-thumb {
    background: var(--color-primary);
}

.testimonial-card {
    padding: 16px;
    box-shadow: 0px 4px 16px 0px #00000005;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
    position: relative;
}

.testimonial-card::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    min-width: 180px;
    min-height: 180px;

    background-image: url('../images/testimonial/comma.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

.testimonial-profile-img {
    max-width: 62px;
    max-height: 62px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 2px 0px 0px 0px #FF0000;
}





.break-line {
    display: none;
}


@media (max-width:991px) {
    .our-service-banner .banner-title {
        margin: 0 auto;
    }

    .our-service-banner .banner-content {
        gap: 16px;
    }

    .our-service-banner .banner-heading,
    .our-service-banner .banner-subheading,
    .our-service-banner .banner-buttons {
        text-align: center;
        margin: 0 auto;
    }

    .banner-heading .h1-text {
        text-transform: unset;
    }

    .break-line {
        display: block;
    }

    .tabbed-testimonial-content .nav-link {
        padding: 0 10px 10px 10px;
    }

    .tabbed-testimonial-content .nav-link {
        font-size: 14px;
        line-height: 28px;
        letter-spacing: -0.12px;
    }

    .tabbed-testimonial-content .tab-content {
        padding-right: 0;
        scrollbar-width: none;
        max-height: 100%;
    }

    .tabbed-testimonial-content .tab-content::-webkit-scrollbar {
        display: none;
    }

    .testimonial-profile-img {
        max-width: 48px;
        max-height: 48px;
    }

    .testimonial-card .fs-small {
        font-size: 14px;
    }

    .tabbed-testimonial-content nav {
        position: sticky;
        top: 67px;
        z-index: 50;
        background: #fff;
    }

    .tabbed-testimonial-content .nav-tabs {
        width: 100%;
        display: flex;
        justify-content: space-between;
        border-bottom: 1px solid var(--color-grey-6);
    }

    .testimonial-text {
        position: relative;
        max-width: 100%;
    }

    .testimonial-content {
        display: -webkit-box;
        -webkit-line-clamp: 5;
        -webkit-box-orient: vertical;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .testimonial-content.expanded {
        -webkit-line-clamp: unset;
        overflow: visible;
    }

    .read-more-btn {
        font-family: var(--secondary-font);
        font-weight: 600;
        font-size: 14px;
        line-height: 1.4;
        letter-spacing: 0;
        border-radius: 4px;
        align-items: center;
        border: none;
        background: transparent;
        color: var(--color-primary);
        max-width: 100px;
    }

    .read-more-btn img {
        transition: transform 0.3s ease-in-out;
    }

    .testimonial-card::before {
        min-width: 166px;
        min-height: 166px;
    }
}