.section-banner {
    padding: clamp(60px, 10vh, 120px) 0 70px 0;
    background: url('/uploads/collabxp_themes/section-0-banner.png') bottom center no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
}

.section-banner .slider-content {
    text-align: center;
    color: #fff;
    width: 100%;
    max-width: 1440px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

#slider-title {
    transition: opacity 0.5s ease, transform 0.5s ease;
    font-weight: 400;
}

#slider-title.fade-out {
    opacity: 0;
    transform: translateY(-10px);
}

#slider-title.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.section-banner .triple-slider {
    position: relative;
    width: 100%;
    max-width: 1600px;
    aspect-ratio: 16/7;
    perspective: 1200px;
}

.section-banner .slide {
    position: absolute;
    top: 50%;
    transform-style: preserve-3d;
    transition: transform 0.7s ease, opacity 0.7s ease;
    box-sizing: border-box;
}

.section-banner .slide img {
    height: auto;
    border-radius: 5px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
    object-fit: cover;
    background: #fff;
    pointer-events: none;
    user-select: none;
}

.section-banner .slide.center {
    left: 50%;
    transform: translate(-50%, -50%) scale(1.2);
    z-index: 5;
    opacity: 1;
    width: 980px;
}

.section-banner .slide.left {
    left: 25%;
    transform: translate(-50%, -50%) scale(0.85);
    opacity: 0.9;
    z-index: 2;
}

.section-banner .slide.right {
    left: 75%;
    transform: translate(-50%, -50%) scale(0.85);
    opacity: 0.9;
    z-index: 2;
}

.section-banner .slider-nav {
    position: absolute;
    top: 5%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 15%;
    z-index: 10;
}

.section-banner .slider-nav button {
    color: #fff;
    border: none;
    background: transparent;
    padding: 10px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.section-banner .slider-nav button:hover {
    opacity: 1;
}

.section-banner .slider-nav .slide-count {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    color: #000;
    font-size: 0.9rem;
    opacity: 0.5;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.section-banner .slider-nav .slide-count .slide-total::before {
    content: "";
    display: inline-block;
    width: 2.25rem;
    height: 0.125rem;
    margin: 1rem .5rem 1rem .4rem;
    background-color: rgba(0, 0, 0, .75);
    border-radius: 999px;
    vertical-align: middle;
}


@media (max-width: 1280px) {
    .section-banner .slide img {
        width: 100%;
    }

    .section-banner .slide.center {
        width: 720px;
    }

    .section-banner .slide.left {
        width: 420px;
        left: 20%;
    }

    .section-banner .slide.right {
        width: 420px;
        left: 80%;
    }
}

@media (max-width: 998px) {
    .section-banner {
        padding: 80px 0 0;
    }

    .section-banner .triple-slider {
        aspect-ratio: 16/10;
    }

    .section-banner .slide.center {
        width: 100%;
        transform: translate(-50%, -60%) scale(1);
    }

    .section-banner .slide.left,
    .section-banner .slide.right {
        width: 180px;
        filter: brightness(0.8) blur(1px);
    }
}

/* Css section 1 */

/* section 3 */

.section-2 {
    padding: 60px 0;
    max-width: 1440px;
    margin: 0 auto;
}

.section-2 .tab-module .tabs-nav-container {
    width: 100%;
    max-width: calc(170px * 8 + 10px * 7);
    overflow-x: auto;
    scroll-behavior: smooth;
    white-space: nowrap;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.section-2 .tab-module .tabs-nav-container::-webkit-scrollbar {
    display: none;
}

.section-2 .tab-module .tabs-nav {
    display: inline-flex;
    list-style: none;
    margin: 0;
    padding: 7px 0 0px;
    gap: 10px;
    width: calc(230px * 43 + 10px * 42);
}

.section-2 .tab-module .tab-link {
    width: 230px;
    scroll-snap-align: start;
}

.section-2 .tab-module .tab-button {
    width: 100%;
    padding: 20px 10px;
    font-size: 17px;
    border: none;
    cursor: pointer;
    transition: color 0.3s;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.20);
    background: #FFF;
}

.section-2 .tab-module .tab-button.active {
    color: #fff;
}

.section-2 .tab-module .tab-content {
    display: none;
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.section-2 .tab-module .tab-content.active {
    display: block;
    opacity: 1;
}

.section-2 .tab-module .tab-pane {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 30px;
}

.section-2 .tab-module .bento-big {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    aspect-ratio: 16/6;
    min-height: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.section-2 .tab-module .bento-big .bento-big-img img {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 400px;
    border-radius: 5px;
}

.section-2 .tab-module .bento-big .bento-big-button {
    position: absolute;
    bottom: 15px;
    right: 130px;
    border-radius: 5px;
    background: linear-gradient(to right, #F44435, #F6665A);
    color: white;
    border: none;
    padding: 10px;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 3px 0 0 #99312E,
        0 4px 4px -1px rgba(0, 0, 0, 0.6),
        0 4px 6px 1px rgba(0, 0, 0, 0.3),
        0 1px 2px 1px rgba(0, 0, 0, 0) inset,
        0 18px 32px -2px rgba(255, 255, 255, 0.1) inset;
}

.section-2 .tab-module .bento-sm {
    background: #f3f3f3;
    border-radius: 5px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.section-2 .tab-module .bento-sm h4 {
    display: flex;
    align-items: center;
    padding: 0 0 15px 0;
    color: #fff;
}

.section-2 .tab-module .bento-sm h4 svg {
    stroke-width: 3px;
    width: 30px;
    height: 35px;
    margin-right: 10px;
    fill: #fff;
}

.section-2 .tab-module .bento-sm ul {
    margin: 0;
    list-style: none;
    padding-left: 0;
}

.section-2 .tab-module .bento-sm ul li {
    position: relative;
    padding-left: 25px;
    font-size: 17px;
    color: #fff;
    line-height: 1.6;
}

.section-2 .tab-module .bento-sm ul li::before {
    content: '✔';
    position: absolute;
    left: 0;
    top: 0;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    line-height: 1.6;
}

.section-2 .tab-module .bento-sm button {
    width: 100%;
    background: linear-gradient(to right, #1F65CB, #4A8DF0);
    color: white;
    border: none;
    padding: 10px;
    font-size: 17px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
    margin-top: 15px;
    box-shadow: 0 3px 0 0 #1F65CB,
        0 4px 4px -1px rgba(0, 0, 0, 0.6),
        0 4px 6px 1px rgba(0, 0, 0, 0.3),
        0 1px 2px 1px rgba(0, 0, 0, 0) inset,
        0 18px 32px -2px rgba(255, 255, 255, 0.1) inset;
}

.section-2 .tab-module .bento-sm span {
    display: flex;
    gap: 15px;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    font-style: normal;
    padding-top: 15px;
    font-weight: 600;
    line-height: normal;

    color: #FFF;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.80);
}

.section-2 .tab-module .bento-sm button:hover {
    background: linear-gradient(to right, #4A8DF0, #1F65CB);
}

.section-2 .tab-module .tab-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 15px 0;
    gap: 15px;
}

.section-2 .tab-module .tab-controls .btn {
    display: flex;
    gap: 50px;
    padding: 0;
    margin: 0;
}

.section-2 .tab-module .nav-btn {
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    border: unset;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.section-2 .tab-module .nav-btn svg {
    width: 16px;
    height: 16px;
    fill: #000;
}

.section-2 .tab-module .slide-counter {
    font-size: 17px;
    font-weight: 600;
    color: #111827;
    display: flex;
    align-items: center;
}

.section-2 .tab-module .slide-counter .current-slide-s2,
.section-2 .tab-module .slide-counter .total-slides-s2 {
    color: #111827 !important;
}

.section-2 .tab-module .slide-counter .total-slides-s2::before {
    content: "";
    display: inline-block;
    width: 2.25rem;
    height: 0.125rem;
    margin: 1rem .5rem;
    background-color: rgba(0, 0, 0, .75);
    border-radius: 999px;
    vertical-align: middle;
}


@media screen and (max-width: 1366px) {
    .section-2 {
        padding: 60px 30px;
    }

    .section-2 .title-2 .title {
        font-size: 36px;
        margin: 60px auto 10px;
    }

    .section-2 .title-2 .subtitle {
        font-size: 16px;
        padding: 0 15px;
    }

    .section-2 .tab-module .tabs-nav-container {
        width: 100%;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .section-2 .tab-module .tabs-nav-container::-webkit-scrollbar {
        display: none;
    }

    .section-2 .tab-module .tabs-nav {
        gap: 8px;
        width: calc(((100% - 24px) / 4) * 43 + 8px * 42);
    }

    .section-2 .tab-module .tab-link {
        width: calc((100% - 24px) / 4);
    }

    .section-2 .tab-module .tab-button {
        font-size: 16px;
        padding: 12px 16px;
    }

    .section-2 .tab-module .tab-pane {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-2 .tab-module .bento-big {
        aspect-ratio: 16/9;
    }

    .section-2 .tab-module .bento-big .bento-big-img img {
        width: 320px;
    }

    .section-2 .tab-module .bento-big .bento-big-button {
        right: 20px;
        font-size: 16px;
        padding: 8px 12px;
    }

    .section-2 .tab-module .bento-sm {
        padding: 20px;
    }

    .section-2 .tab-module .bento-sm h2 {
        font-size: 22px;
    }

    .section-2 .tab-module .bento-sm ul li {
        font-size: 15px;
    }
}

@media screen and (max-width: 992px) {
    .section-2 {
        padding: 30px 15px;
    }

    .section-2 .title-2 .title {
        font-size: 28px;
        margin: 40px auto 8px;
        padding: 0 10px;
    }

    .section-2 .title-2 .subtitle {
        font-size: 14px;
        padding: 0 10px;
    }

    .section-2 .tab-module .tabs-nav-container {
        width: 100%;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .section-2 .tab-module .tabs-nav-container::-webkit-scrollbar {
        display: none;
    }

    .section-2 .tab-module .tabs-nav {
        flex-wrap: nowrap;
        gap: 6px;
        padding: 5px;
        width: calc(((100% - 6px) / 2) * 43 + 6px * 42);
    }

    .section-2 .tab-module .tab-link {
        width: calc((100% - 6px) / 2);
    }

    .section-2 .tab-module .tab-button {
        font-size: 14px;
        padding: 8px 12px;
    }

    .section-2 .tab-module .tab-pane {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .section-2 .tab-module .bento-big {
        aspect-ratio: 1/1;
    }

    .section-2 .tab-module .bento-big .bento-big-img img {
        width: 200px;
        bottom: 15px;
        right: 15px;
    }

    .section-2 .tab-module .bento-big .bento-big-button {
        right: 15px;
        bottom: 15px;
        font-size: 14px;
        padding: 6px 10px;
    }

    .section-2 .tab-module .bento-sm {
        padding: 15px;
    }

    .section-2 .tab-module .bento-sm h2 {
        font-size: 20px;
    }

    .section-2 .tab-module .bento-sm ul li {
        font-size: 14px;
    }
}

/* section 6 */
.section-6 {
    width: 100%;
    padding: 60px 0;
    overflow: hidden;
}

.section-6 .section-testimonial {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    min-height: 500px;
}

.section-6 .section-left {
    flex: 1 1 100%;
    max-width: 1440px;
    margin: 0 auto;
    z-index: 1;
}

.section-6 .section-right {
    position: absolute;
    top: 0;
    right: -200px;
    width: 60vw;
    height: 100%;
    min-height: 500px;
    background-size: cover;
    background-position: right;
    border-radius: 5px;
    z-index: 0;
}

.section-6 .title {
    font-family: var(--font-family-Font-1, "Playfair Display");
    font-size: 25px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.section-6 .slider-container {
    overflow: hidden;
    position: relative;
    max-width: 680px;
    background: #fff;
    border-radius: 5px;
}

.section-6 .slider-stage {
    display: flex;
    transition: transform 0.5s ease;
}

.section-6 .slider-item {
    flex: 0 0 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.section-6 .slider-item.active {
    opacity: 1;
    transform: translateY(0);
}

.section-6 .avatar img {
    width: 120px;
    padding-bottom: 20px;
}

.section-6 .testimonial-headline {
    color: #1f2937;
    font-weight: 300;
    margin-bottom: 0.75rem;
    background-color: color-mix(in srgb, gray 16%, transparent);
    display: inline-block;
    padding: 5px 15px;
    border-radius: 5px;
}

.section-6 .testimonial p {
    font-size: 17px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.section-6 .author h6 {
    font-size: 17px;
    font-weight: 600;
    color: #1f2937;
    padding-top: 10px;
}

.section-6 .slider-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 0 0 5px 5px;
    padding: 0;
}

.slider-count {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 17px;
    font-weight: 500;
    color: #4b5563;
}

.slider-count .dash-separator::before {
    content: "";
    display: inline-block;
    width: 2.25rem;
    height: 0.125rem;
    background-color: rgba(0, 0, 0, .75);
    border-radius: 999px;
    vertical-align: middle;
}

.nav-buttons {
    display: flex;
    gap: 30px;
}

.nav-btn {
    border: none;
    width: 40px;
    height: 40px;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}

.nav-btn svg {
    width: 16px;
    height: 16px;
    fill: #000;
}

@media (max-width: 1280px) {
    .section-6 {
        padding: 60px 30px;
    }

    .section-6 .section-right {
        position: relative;
        width: 100%;
        right: 0;
        min-height: 400px;
    }

    .section-6 .slider-container {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .section-6 {
        padding: 30px 15px;
    }

    .section-6 .section-right {
        min-height: 200px;
    }

    .section-6 .section-left {
        max-width: 100%;
    }
}

/* section 7 */
.section-7 {
    padding: 60px 0;
    text-align: center;
}

.section-7__slider {
    width: 100%;
    margin: 0 auto;
}

.section-7__slider .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
}

.section-7__slider img {
    max-height: 100%;
    max-width: 80%;
    object-fit: contain;
}