.collab-tabs-wrapper .tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.collab-tabs-wrapper .tab {
    flex: 1;
    padding: 20px;
    border-radius: 20px;
    cursor: pointer;
    text-align: left;
    transition: 0.3s;
    border: 1px solid #E5E7EB;
    background-color: #fff;
}

.tab-icon {
    border-radius: 5px !important;
    width: 36px;
    height: 36px;
}

.collab-tabs-wrapper .tab.active {
    background-color: #F2F4F7;
    border: 1px solid #E5E7EB;
}

.collab-tabs-wrapper .tab_title {
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    color: #101828;
    letter-spacing: 0;
    text-transform: initial;
    margin: 10px 0 !important;
}

.tab_desc {
    font-size: 14px;
    color: #616161;
    line-height: 24px;
    font-weight: 500;
    margin: 0;
}

/* Content area */
.collab-tabs-wrapper .tab-content {
    display: none;
    padding: 60px;
    background-color: #F2F4F7;
    border: 1px solid #E5E7EB;
    border-radius: 30px;
    gap: 30px;
}

.collab-tabs-wrapper .tab-content.active {
    display: flex;
}

.accordion-box {
    width: 40%;
}

/* Accordion */

.accor-item {
    border-bottom: 1px solid #ddd;
    padding: 0px 0;
}

.accor-title {
    font-family: 'Inter', sans-serif;
    width: 100%;
    background: none;
    border: none;
    outline: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    white-space: wrap;
    font-size: 24px;
    line-height: 30px;
    font-weight: 600 !important;
    color: #111111;
    text-transform: initial;
    width: 100%;
    gap: 10px;
}

.accor-title:focus {
    background-color: unset !important;
    color: #111111 !important;
}

.accor-title:hover {
    background-color: unset !important;
    color: #111111 !important;
}

.accor-title:hover u {
    background-color: unset !important;
}

.accor-title .icon {
    transition: transform 0.3s ease;
    font-weight: bold;
    font-size: 1.2rem;
}

.accor-content {
    /* max-height: 0; */
    overflow: hidden;
    /* transition: max-height 0.4s ease-in-out; */
    padding: 0px;
    display: none;
}

.accor-item.active .accor-content {
    padding: 0px 0px 20px;
}

.accor-content img {
    display: none;
}

.accor-content p {
    margin: 20px 0;
    padding: 0px 0;
    position: relative;
}



/* .accor-item.active .accor-title .icon {
    transform: rotate(180deg);
    content: "";

} */

/* .accor-item .icon svg {
    transition: transform 0.3s ease;
    transform-origin: center;
} */



/* Image section */
.image-box {
    width: 60%;
    position: relative;
}

.image-box img {
    width: 100%;
    object-fit: contain;
    height: auto;
    z-index: 1;
    position: relative;
}

.image-box::before {
    content: '';
    position: absolute;
    width: 16vw;
    height: 19vw;
    top: -78px;
    left: -100px;
    background-image: url("../img/platform-tab-bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 0;
}

/* Tab View CSS */
@media only screen and (max-width: 1024px) {

    .image-box {
        width: 0%;
    }

    .accordion-box {
        width: 100%;
    }

    .accor-content img {
        display: block;
        width: 100%;
        height: auto;
    }

    .accor-item.active .accor-content {
        max-height: fit-content;
    }

    .accor-title {
        font-size: 20px !important;
        line-height: 26px !important;
    }

    .accor-content p {
        margin-bottom: 20px !important;
        padding: 0px 0;
    }

    .collab-tabs-wrapper .tab-content {
        padding: 0px 16px 0px;
        border-radius: 20px;
        gap: 0px;
    }

    .accordion-box .accor-item:last-child {
        border: none !important;
    }

    .image-box::before {
        width: 0px;
    }

    .accor-content {}

    .collab-tabs-wrapper .tab_title {
        font-size: 16px;
        line-height: 26px;
        margin: 12px 0 !important;
    }
}

/* Mobile CSS */
@media only screen and (max-width: 767px) {
    .tab_desc {
        display: none;
    }

    .accordion-box .accor-item:last-child {
        border: none !important;
    }

    .collab-tabs-wrapper .tabs {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }

    .collab-tabs-wrapper .tab {
        flex: unset;
        padding: 8px;
        border-radius: 12px;
        display: flex;
        gap: 10px;
        align-items: center;
    }

    .tab_title {
        margin: 0;
    }

    .accor-content img {
        display: block;
        width: 100%;
        height: auto;
    }

    .image-box {
        width: 0%;
    }

    .accordion-box {
        width: 100%;
    }

    .tab-content {
        padding: 5px 20px 5px;
        gap: 0px;
    }

    .accor-title {
        font-size: 18px;
        line-height: 22px;
    }

    .accor-item.active .accor-content {
        max-height: 500px;
    }

    .image-box::before {
        width: 0px;
    }

    .collab-tabs-wrapper .tab_title {
        font-size: 16px;
        line-height: 26px;
        margin: 0px 0 !important;
    }

    .tab-icon {
        width: 32px;
    }

}