/* ============================================================
   CUSTOM BOOTSTRAP ACCORDION — Full Override
   Drop this in your CSS file after Bootstrap's CSS
   ============================================================ */

/* ── Accordion Wrapper ───────────────────────────────────────── */
.accordion {
    --bs-accordion-bg:                  #ffffff;       /* overall background */
    --bs-accordion-border-color:        #dee2e6;       /* border color */
    --bs-accordion-border-radius:       0.5rem;        /* corner rounding */
    --bs-accordion-border-width:        1px;           /* border thickness */
    --bs-accordion-inner-border-radius: 0.4rem;
    gap: 0;                                         /* space between items */
    display: flex;
    flex-direction: column;
}

/* ── Accordion Item ──────────────────────────────────────────── */
.accordion-item {
    background-color:   transparent;
    border:             1px solid white;
    border-radius:      0.5rem !important;
    overflow:           hidden;
    box-shadow:         0 2px 6px rgba(0, 0, 0, 0.06);
    transition:         box-shadow 0.3s ease;
    margin-top:0;
    margin-bottom:0;

}
.accordion-item:hover {
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

/* ── Accordion Header / Button ───────────────────────────────── */
.accordion-header {
    margin: 0;
}
.accordion-button {
    background-color:   #f8f9fa;       /* collapsed background */
    color:              #212529;       /* collapsed text color */
    font-size:          1rem;
    font-weight:        600;
    padding:            .5rem 1.25rem;
    border:             none;
    border-radius:      0.5rem !important;
    box-shadow:         none !important;
    transition:         background-color 0.3s ease, color 0.3s ease;
}

/* Open / Active state */
.accordion-button:not(.collapsed) {
    background-color:   #0b1f3a;       /* open background */
    color:              #ffffff;       /* open text color */
    border-radius:      0.5rem 0.5rem 0 0 !important;
    box-shadow:         none !important;
}

/* ── Arrow / Toggle Icon ─────────────────────────────────────── */

/* Collapsed icon (dark) */
.accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    width:      1.1rem;
    height:     1.1rem;
    transition: transform 0.3s ease;
}

/* Open icon (white) */
.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    transform: rotate(-180deg);
}

/* ── Accordion Body ──────────────────────────────────────────── */
.accordion-body {
    background-color:   transparent;       /* body background */
    color:              #495057;       /* body text color */
    font-size:          0.95rem;
    line-height:        1.7;
    padding:            1.25rem;
    border-top:         1px solid #dee2e6;
}

/* ── Flush Variant (.accordion-flush) ───────────────────────── */
.accordion-flush .accordion-item {
    border-left:    none;
    border-right:   none;
    border-radius:  0 !important;
    box-shadow:     none;
}
.accordion-flush .accordion-button {
    border-radius: 0 !important;
}
.accordion-flush .accordion-button:not(.collapsed) {
    border-radius: 0 !important;
}

/* ── Focus ring (accessibility) ─────────────────────────────── */
.accordion-button:focus {
    outline:    none;
    box-shadow: 0 0 0 3px rgba(11, 31, 58, 0.2);
}

/* ── Animation speed ─────────────────────────────────────────── */
.accordion-collapse {
    transition: height 0.35s ease;
}meta