
/* Hide accordion on desktop, show tabs normally */
.tech-stack-accordion-mobile {
    display: none;
}

/* Mobile only — show accordion, hide Bootstrap tabs */
@media (max-width: 767px) {

    /* Hide the tab pills and tab content panels */
    #pills-tab,
    #pills-tabContent {
        display: none !important;
    }

    /* Show the accordion */
    .tech-stack-accordion-mobile {
        display: block;
        margin-top: 16px;
    }

    .acc-item {
        border: 1px solid #e2e2e2;
        border-radius: 10px;
        margin-bottom: 10px;
        overflow: hidden;
        background: #fff;
    }

    .acc-btn {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 14px 18px;
        background: #fff;
        border: none;
        text-align: left;
        transition: background 0.2s;
        color: var(--Theme-Dark-Blue-800, #26244A);
        font-family: Inter;
        font-size: 18px;
        font-style: normal;
        font-weight: 600;
        line-height: 28px;
    }

    .acc-btn.active {
        background: #f4f4f4;
        color: #000;
    }

    .acc-chevron {
        font-size: 11px;
        color: #888;
        transition: transform 0.25s ease;
        flex-shrink: 0;
    }

    .acc-btn.active .acc-chevron {
        transform: rotate(180deg);
    }

    .acc-body {
        display: none;
        padding: 16px;
        border-top: 1px solid #e2e2e2;
        background: #fafafa;
    }

    .acc-body.show {
        display: block;
    }
}

