.tabs-wrapper {
    display: flex;
}

/* =========================
   THEME 1 (Top Tabs)
========================= */

.theme-1 .tabs-wrapper {
    flex-direction: column;
}

.theme-1 .tabs-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.theme-1 .tabs-stage {
    margin-top: 40px;
}

/* =========================
   THEME 2 (Left Tabs)
========================= */

.theme-2 .tabs-wrapper {
    flex-direction: row;
}

.theme-2 .tabs-nav-wrap {
    width: 30%;
}

.theme-2 .tabs-stage {
    width: 70%;
}

/* =========================
   Tabs Nav
========================= */

.tabs-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tabs-nav li {
    margin-bottom: 10px;
}

.tabs-nav a {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.tabs-nav li.active a {
    background: #000;
    color: #fff;
}

/* =========================
   Stage
========================= */

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}

.tab-content.active {
    display: block;
}

.tab-img-section img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.block-subtitle {
    margin: 10px 0 20px;
}

section.what-we-help-tabs .tab-headings-wrap {
    text-align: center;
    margin-bottom: 50px;
}

section.what-we-help-tabs .tabs-wrapper ul.tabs-nav li {
    position: relative;
    margin-bottom: 20px;
}

section.what-we-help-tabs .tabs-wrapper ul.tabs-nav li .tab-img-section{
    background: var(--primary-color);
    width: clamp(90px, 7.9vw, 152px);
    height: clamp(90px, 7.9vw, 152px);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: 20px;
    flex: none;
    margin-top: clamp(-20px, -1.8vw, -35px);
    margin-left: clamp(-35px, -1.6vw, -40px);
    margin-right: 0;
    margin-bottom: 0;
}

section.what-we-help-tabs .tabs-wrapper ul.tabs-nav li .tab-img-section img{
    width: clamp(45px, 4vw, 76px);
    height: clamp(45px, 4vw, 76px);
    object-fit: contain;
    display: block;
    margin-bottom: 10px;
}

section.what-we-help-tabs .tabs-wrapper ul.tabs-nav li a{
    display: flex;
    flex-direction: row;
    align-items: center;
    color: var(--secondary-color);
    gap: 15px;
    background-color: #fff;
    overflow: hidden;
    width: calc(100% - 20px);
    font-size: clamp(18px, 1.5vw, 26px);
    border-radius: 20px;
    padding-bottom: 0;
}

section.what-we-help-tabs .tabs-wrapper ul.tabs-nav li.active a {
    background-color: #fff;
    color: var(--secondary-color);
    width: calc(100% + 30px);
}

section.what-we-help-tabs .tabs-wrapper .tabs-stage {
    background: #fff;
    border-radius: 20px;
    padding: 30px 50px;
}

/* =========================
   Animation
========================= */

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =========================
   Mobile
========================= */

.tabs-dropdown {
    display: none;
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
}

@media (max-width: 992px) {

    .tabs-wrapper {
        flex-direction: column;
    }

    .tabs-nav {
        display: none;
    }

    .mobile-dropdown .tabs-dropdown {
        display: block;
        border-radius: 10px;
    }

    .mobile-slider .tabs-stage {
        display: block;
    }

    .theme-2 .tabs-wrapper {
        flex-direction: column;
    }

    .theme-2 .tabs-nav-wrap {
        width: 100%;
    }

    section.what-we-help-tabs .tabs-wrapper .tabs-stage{
        width: 100%;
    }

}
