/* ===== WRAPPER ===== */
.tabs-widget {
    margin: 60px auto;
    width: 100%;
    max-width: 100%;
}

/* ===== SECTION TITLE ===== */
.tabs-main-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 35px;
    color: #1A1A1A;
}

/* ===== NAVIGATION ===== */
.tabs-nav {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.tab-btn {
    padding: 12px 28px;
    background: #F5F7FA;
    border-radius: 8px;
    border: 1px solid #E2E6EB;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: #344054;
    transition: all .25s;
    line-height: 1;
}

.tab-btn:hover {
    background: #ECEFF3;
}

.tab-btn.active {
    background: #F36D21;
    color: #fff;
    border-color: #F36D21;
    box-shadow: 0 4px 12px rgba(243, 109, 33, 0.25);
}

/* ===== CONTENT BOX ===== */
.tabs-content {
    width: 100%;
}

/* Card-like pane */
.tab-pane {
    display: none;
    background: #FFFFFF;
    padding: 35px 40px;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    animation: fade .25s ease;
}

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

/* Text styling inside the content */
.tab-pane p,
.tab-pane li {
    font-size: 17px;
    line-height: 1.65;
    color: #475467;
}

.tab-pane ul {
    margin-left: 20px;
}

.tab-pane b,
.tab-pane strong {
    color: #1A1A1A;
    font-weight: 700;
}

/* Fade animation */
@keyframes fade {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}
