
.hero-points-div {
    width: 100%;
    .each-points {
        display: flex;
        gap: 10px;
        align-items: center;

        p {
            color: #fff;
            font-size: 18px;
            font-weight: 400;
            margin: 0;

            span{
                font-weight: 600;
            }
        }
    }
}

.trusted-bar {
    border-bottom: 1px solid #e6e6e6;
    background: rgba(183, 183, 183, 0.05);
    padding: 25px 0;

    .trusted-text {
        color: #000;
        font-size: 18px;
        font-weight: 600;
        margin: 0;
    }

    @media (max-width: 991px) {
        .trusted-text {
            text-align: center;
        }
        .trusted-item {
            display: flex !important;
            justify-content: center !important;
        }
    }

    .trusted-slider {
        flex: 1;
    }
}
.trusted-slider .slick-slide {
    padding: 0 15px; /* equal gap */
}

.trusted-slider .slick-list {
    margin: 0 -15px; /* outer balance */
}

.trusted-item {
    height: 100%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.bridge-loan-uses-card {
    gap: 25px;
    flex: 1;
    display: flex;
    padding: 30px 15px;
    flex-grow: 1;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #c2c5fa;
    border-radius: 15px;
    flex-direction: column;
    flex-shrink: 0;
    text-align: center;
    height: 100%;

    .tick-div {
        width: 80px;
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        background: #dde4ff;
    }

    p {
        margin: 0;
        color: #000;
        text-align: center;
        font-size: 20px;
        font-weight: 400;
    }
}

.why-bridge-section {
    background: #fff;

    .why-bridge-right-list {
        list-style: none;
        padding: 0;
        margin: 0;

        li {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            padding: 16px 16px;
            border-radius: 8px;
            margin-bottom: 10px;
            font-size: 18px;
            color: #000;
            font-weight: 400;
            background: #f8fafc;
            border: 1px solid #1c6899;
            border-left-width: 5px;

            .wbl-dot {
                width: 10px;
                height: 10px;
                border-radius: 50%;
                background: #2563eb;
                flex-shrink: 0;
                margin-top: 5px;
            }
        }
    }
}

.cta-section {
    background: #165c93;
    padding: 60px 0;
    color: #fff;

    .cta-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        flex-wrap: wrap;

        @media (max-width: 1300px) {
            text-align: center;
            justify-content: center;
        }
    }

    .cta-left {
        h2 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 8px;
            color: #ffffff;
        }

        p {
            font-size: 18px;
            color: #fff;
            margin: 0;
        }
    }

    .cta-right {
        .cta-btn {
            background: #ffb600;
            border: 1px solid #ffb600;
            color: #000;
            font-weight: 700;
            font-size: 16px;
            padding: 16px 28px;
            border-radius: 8px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.2s ease;

            &:hover {
                background-color: #fff0;
                color: #ffb600;
                border: 1px solid #ffb600;

                svg path {
                    fill: #ffb600;
                }
            }
        }
    }

    .cta-divider {
        margin: 40px 0 30px;
        height: 1px;
        background: #2192d6;
    }

    .cta-or {
        font-size: 32px;
        font-weight: 600;
        margin-bottom: 20px;
        color: #fff;
        text-align: center;
    }

    .phone-number-para {
        color: #fff;
        text-align: center;
        font-size: 3.875rem;
        font-weight: 700;
        margin: 0;

        a {
            color: #fff;
            text-decoration: none;
        }
    }
}

.faq-section {
    background: #f8fafc;
    padding: 80px 0;

    .faq-heading {
        font-size: 30px;
        font-weight: 700;
        color: #0f172a;
    }

    .faq-subheading {
        font-size: 15px;
        color: #64748b;
    }

    .faq-accordion {
        .accordion-item {
            border: none;
            border-bottom: 1px solid #C3C3C3;
            background: transparent;
        }

        .accordion-button {
            background: transparent;
            box-shadow: none;
            padding: 18px 0;
            font-size: 15px;
            font-weight: 500;
            color: #0B2131;
            display: flex;
            align-items: start;
            flex-direction: column;
            gap: 8px;

            .que-div {
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 10px;
                width: 100%;
                color: #000;
                font-size: 20px;
                font-weight: 500;
            }

            &::after {
                display: none;
            }

            .faq-number {
                color: #ffb600;
                font-size: 20px;
                font-weight: 600;
                min-width: 30px;
            }

            .icon {
                margin-left: auto;
                width: 28px;
                height: 28px;
                border: 1px solid #0B2131;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 18px;
            }
        }

        /* PLUS */
        .accordion-button.collapsed .icon::before {
            content: "+";
        }

        /* MINUS */
        .accordion-button:not(.collapsed) .icon::before {
            content: "−";
        }

        .accordion-body {
            font-size: 16px;
            color: #333;
            padding: 10px 0 20px;
        }
    }

    .faq-bottom {
        margin-top: 40px;

        p {
            color: #000;
            text-align: center;
            font-size: 16px;
            font-weight: 400;
        }

        .faq-btn {
            background: #1c6899;
            color: #fff;
            padding: 15px 24px;
            border-radius: 30px;
            text-decoration: none;
            color: #fff;
            font-size: 18px;
            font-weight: 600;
            margin-top: 10px;
            display: block;
            width: fit-content;
            margin-inline: auto;
        }
    }
}

.funderial-text-section {
    .inner-div {
        border-radius: 20px;
        background: #1e59b4;
        padding: 50px;

        @media (max-width: 576px) {
            padding: 35px 15px;
        }

        .seperator{
            background: linear-gradient(90deg, rgba(255, 255, 255, 0.00) 0%, #FFF 50.48%, rgba(255, 255, 255, 0.00) 100%);
        max-width: 300px;
        width: 100%;
        height: 2px;
        margin-inline: auto;
        margin-block: 10px;
        }

        .head {
            color: #fff;
            text-align: center;
            font-size: 36px;
            font-weight: 700;
        }

        .para {
            color: #fff;
            text-align: center;
            font-size: 24px;
            font-style: italic;
            font-weight: 500;
        }
    }
}
#checkEligiblity {
    scroll-margin-top: 100px;
}