/* ==========================
   AAKHYAAN FAQ SECTION START
========================== */

.akh-faq-section{
    padding:50px 0;
    position:relative;
    background:
    linear-gradient(
        rgba(56, 57, 56, 0.78),
        rgba(58, 58, 58, 0.78)
    ),
    url("/img/faq.jpg");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    overflow:hidden;
}

.akh-faq-container{
    width:90%;
    max-width:1300px;
    margin:auto;
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:80px;
}

.akh-faq-left,
.akh-faq-right{
    flex:1;
}

/* FAQ ITEMS */

.akh-faq-item{
    margin-top:25px;
    margin-bottom:20px;
}

.akh-faq-question{
    background:#fff;
    border-radius:8px;
    padding:16px 22px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:15px;
    cursor:pointer;
    font-weight:600;
    font-size:18px;
    transition:0.4s ease;
}

.akh-faq-question i{
    color:#1187c9;
    transition:0.4s ease;
}

.akh-faq-item.akh-active .akh-faq-question{
    background:#1187c9;
    color:#fff;
}

.akh-faq-item.akh-active .akh-faq-question i{
    color:#fff;
    transform:rotate(180deg);
}

.akh-faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height 0.5s ease;
}

.akh-faq-item.akh-active .akh-faq-answer{
    max-height:400px;
}

.akh-faq-answer p{
    color:#fff;
    line-height:1.9;
    padding:20px 10px;
}

/* RIGHT CONTENT */

.akh-faq-tag{
    color:#1187c9;
    font-size:18px;
    font-weight:700;
    letter-spacing:2px;
    display:inline-block;
}

.akh-faq-heading{
    color:#fff;
    font-size:55px;
    font-weight:800;
    line-height:1.1;
    margin:20px 0;
}

.akh-faq-text{
    color:#fff;
    line-height:1.9;
    margin-bottom:40px;
    font-size:17px;
}

/* CONTACT */

.akh-contact-wrapper{
    display:flex;
    gap:40px;
    flex-wrap:wrap;
}

.akh-contact-box{
    display:flex;
    align-items:center;
    gap:18px;
}

.akh-icon-box{
    width:50px;
    height:50px;
    min-width:50px;
    border-radius:50%;
    background:#1187c9;
    display:flex;
    justify-content:center;
    align-items:center;
}

.akh-icon-box i{
    color:#fff;
    font-size:24px;
}

.akh-contact-box h4{
    color:#fff;
    font-size:25px;
    margin-bottom:5px;
}

.akh-contact-box p{
    color:#fff;
    word-break:break-word;
}

/* ANIMATION */

.akh-reveal-left,
.akh-reveal-bottom,
.akh-reveal-top{
    opacity:0;
}

.akh-reveal-left.akh-show{
    animation:akhLeftMove 1s forwards;
}

.akh-reveal-bottom.akh-show{
    animation:akhBottomMove 1s forwards;
}

.akh-reveal-top.akh-show{
    animation:akhTopMove 1s forwards;
}

@keyframes akhLeftMove{
    from{
        opacity:0;
        transform:translateX(-100px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes akhBottomMove{
    from{
        opacity:0;
        transform:translateY(100px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes akhTopMove{
    from{
        opacity:0;
        transform:translateY(-80px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* TABLET */

@media(max-width:992px){
    .akh-faq-container{
        flex-direction:column-reverse;
        gap:30px;
    }

    .akh-faq-heading{
        font-size:45px;
    }
}

/* MOBILE */

@media(max-width:768px){
    .akh-faq-section{
        padding:70px 0;
    }

    .akh-faq-container{
        width:92%;
    }

    .akh-faq-heading{
        font-size:36px;
    }

    .akh-faq-question{
        font-size:16px;
        padding:16px;
    }

    .akh-faq-text{
        font-size:15px;
    }
}

@media(max-width:576px){
    .akh-faq-section{
        padding:60px 0;
    }

    .akh-faq-heading{
        font-size:30px;
    }

    .akh-faq-question{
        font-size:15px;
        align-items:flex-start;
    }

    .akh-contact-wrapper{
        flex-direction:column;
        gap:25px;
    }

    .akh-icon-box{
        width:55px;
        height:55px;
        min-width:55px;
    }

    .akh-contact-box h4{
        font-size:22px;
    }

    .akh-contact-box p{
        font-size:14px;
    }
}

/* ==========================
   AAKHYAAN FAQ SECTION END
========================== */