/* =========================
   FAQ Section
========================= */

.faq-section {
    background: #ffffff;
}

.faq-title {
    font-size: 42px;
    font-weight: 800;
}


/* Accordion base */

.wlth-accordion .accordion-item {

    border: 1px solid #000;

    margin-bottom: 12px;

    border-radius: 0;

    overflow: hidden;
}


/* Button */

.wlth-accordion .accordion-button {

    background: #ffffff;

    font-size: 14px;

    font-weight: 600;

    padding: 14px 18px;

    box-shadow: none;
}


/* Active */

.wlth-accordion .accordion-button:not(.collapsed) {

    background: #000;

    color: #fff;
}


/* Body */

.wlth-accordion .accordion-body {

    background: #000;

    color: #ccc;

    font-size: 14px;
}


/* Remove Bootstrap arrow */


.wlth-accordion .accordion-button::after {
    filter: invert(1);
}

/* =========================
   COMMON UTILITIES
========================= */

.fw-800 {
    font-weight: 800;
}

.text-14 {
    font-size: 14px;
}

.text-gray {
    color: #aaa;
}

.text-justify {
    text-align: justify;
}

/* =========================
   COMMON COMPONENTS
========================= */

/* Common Card Base */
.wlth-card {
    background: #fff;
    color: #000;
    height: 100%;
    border-radius: 12px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
    padding: 24px;
    transition: 0.3s;
}

.wlth-card:hover {
    transform: translateY(-5px);
}

/* Common Icon Circle */
.wlth-icon-circle {
    width: 40px;
    height: 40px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.wlth-icon-circle img {
    width: 18px;
    object-fit: contain;
}

/* dark container with rounded corners (Hero & Section bg) */
.wlth-dark-container {
    border-radius: 28px;
    padding: 60px 40px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Standard Section Title */
/* Default for mobile, will scale up */
.wlth-section-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
}

@media (min-width: 992px) {
    .wlth-section-title {
        font-size: 42px;
    }
}

/* Modal Trigger Buttons */
.btn-blue-pill {
    background-color: #000;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    transition: 0.3s;
    display: inline-block;
    text-decoration: none;
}

.btn-blue-pill:hover {
    background-color: #fff;
    color: #000;
    border-color: #000;
    transform: translateY(-3px);
}

.btn-gfs {
    cursor: pointer;
    border: none;
}

.shape-container-bg-image {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

/* FAQ GIF Wrapper */
.faq-gif-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: #f3f3f3;
}

.faq-gif {
    width: 100%;
    object-fit: cover;
}