/*==========================================================
                FAQ SECTION HEADER
==========================================================*/

.faq-section .section-header{

    position: relative;

    z-index: 2;

    max-width: 750px;

    margin: 0 auto 70px;

    text-align: center;

}

.faq-section .section-tag{

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 10px 24px;

    border-radius: 50px;

    background: rgba(29,78,216,.08);

    color: #1D4ED8;

    font-size: .9rem;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

    margin-bottom: 20px;

}

.faq-section .section-title{

    font-size: clamp(2.4rem,5vw,3.8rem);

    font-weight: 800;

    line-height: 1.2;

    color: #0B132B;

    margin-bottom: 20px;

}

.faq-section .section-title span{

    background: linear-gradient(
        90deg,
        #1D4ED8,
        #00C2FF
    );

    /* Standard */
    background-clip: text;
    color: transparent;

    /* Chrome, Edge, Safari */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

.faq-section .section-description{

    max-width: 650px;

    margin: 0 auto;

    color: #64748B;

    font-size: 1.05rem;

    line-height: 1.9;

}
/*==========================================================
                        FAQ
==========================================================*/

.faq-section{

    position:relative;

    padding:120px 0;

    background:#F8FAFC;

    overflow:hidden;

}

.faq-section::before{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    top:-180px;

    right:-180px;

    border-radius:50%;

    background:rgba(0,194,255,.05);

    filter:blur(90px);

}

.faq-section::after{

    content:"";

    position:absolute;

    width:400px;

    height:400px;

    bottom:-180px;

    left:-180px;

    border-radius:50%;

    background:rgba(29,78,216,.05);

    filter:blur(90px);

}

.faq-container{

    position:relative;

    z-index:2;

    max-width:900px;

    margin:70px auto 0;

}

.faq-item{

    background:#ffffff;

    border:1px solid #E2E8F0;

    border-radius:18px;

    margin-bottom:20px;

    overflow:hidden;

    transition:.35s;

    box-shadow:0 10px 25px rgba(15,23,42,.05);

}

.faq-item:hover{

    border-color:#38BDF8;

    transform:translateY(-3px);

}

.faq-question{

    width:100%;

    background:none;

    border:none;

    outline:none;

    padding:25px 30px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    cursor:pointer;

    font-size:1.1rem;

    font-weight:600;

    color:#0B132B;

    text-align:left;

}

.faq-question i{

    width:40px;

    height:40px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#EAF4FF;

    color:#1D4ED8;

    transition:.35s;

    flex-shrink:0;

}

.faq-item.active .faq-question i{

    transform:rotate(45deg);

    background:#1D4ED8;

    color:#ffffff;

}

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:max-height .4s ease;

}

.faq-answer p{

    padding:0 30px 25px;

    color:#64748B;

    line-height:1.8;

}

.faq-item.active{

    border-color:#1D4ED8;

}

@media(max-width:768px){

    .faq-section{

        padding:80px 0;

    }

    .faq-question{

        padding:20px;

        font-size:1rem;

    }

    .faq-answer p{

        padding:0 20px 20px;

    }

        .faq-section .section-header{

        margin-bottom: 50px;

    }

    .faq-section .section-title{

        font-size: 2rem;

    }

    .faq-section .section-description{

        font-size: .95rem;

    }

}