.animated-line-container {
    margin: 10px auto;
    width: 60px;
    height: 6px;
    background-color: #ffffff;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}


.animated-line-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #FC4F02;
    border-radius: 2px;
    animation: pulse-line 2s infinite ease-in-out;
}

@keyframes pulse-line {
    0% {
        left: -100%;
        width: 100%;
    }

    50% {
        left: 0;
        width: 100%;
    }

    100% {
        left: 100%;
        width: 100%;
    }
}

.star-text {
    display: flex;
    margin-top: 20px;
}

.star-text li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.boxhover {
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 12px 0px;
    display: flex;
    padding: 20px;
    border: 2px solid transparent;
    border-radius: 18px;
    transition: all 0.5s ease-out;
    align-items: flex-start;
    flex-direction: row;
    cursor: pointer;
    height: 170px;
}

.chat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.chat-box h3 {
    color: #FC4F02;
    font-family: 'poppins-bold';
    margin-bottom: 25px;
}

strong {
    font-family: 'poppins-bold';
}

.boxhover:hover {
    border: 2px solid #FC4F02;
}

.chatbox {
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    width: 80%;
}

.user-chat,
.bot-chat {
    padding: 10px;
    width: 70%;
    text-align: left;
    margin-bottom: 20px;
    border-radius: 10px;
}

.chat-area {
    padding: 15px 20px;
    height: 520px;
    overflow-y: scroll;
    font-size: 12px;
}

.user-chat:first-child {
    gap: 0;
}

.user-chat {
    background-color: #DCF7C5;
    justify-self: flex-end;
    width: fit-content;
    display: flex;
    gap: 10px;
}

.bot-chat {
    background-color: #F2F2F2;
}

.chat-area .user-chat .nrmltxt,
.chat-area .bot-chat .nrmltxt {
    font-size: 14px !important;
    line-height: normal;
}

.user-chat .time,
.bot-chat .time {
    text-align: right;
}

.boxhover1 {
    height: 210px;
}

.ul-star {
    margin: 15px 0;
}

.ul-star li {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    align-items: center;
}

.flex {
    display: flex;
    align-items: center;
}

.boxhover4 {
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 12px 0px;
    display: flex;
    padding: 30px;
    border-radius: 18px;
    align-items: flex-start;
    flex-direction: column;
    cursor: pointer;
    height: 190px;
    gap: 20px;
    color: #000;
    transition: background-color 0.1s ease, color 0.1s ease, transform 0.1s ease;
}

.boxhover4 h3.head3 {
    font-size: 30px;
    font-family: 'poppins-bold';
    color: #FC4F02;
}

.boxhover4 h6.head6 {
    color: #FC4F02;
    font-family: 'poppins-bold';
}

.boxhover4:hover {
    background-color: #FC4F02;
}

.boxhover4:hover h3.head3,
.boxhover4:hover h6.head6,
.boxhover4:hover p {
    color: #fff !important;
}

.boxhover5 {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
}

.boxhover5:last-child {
    margin-bottom: 0;
}

.pricing h5 {
    font-family: 'poppins-bold';
    font-size: 18px;
    margin-bottom: 10px;
}

.pricing ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.pricing ul li img {
    margin-top: 5px;
}


.main-container {
    color: #000000;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 50px;
}

.faq-container {
    width: 100%;
    border-radius: 12px;
}

.faq-item {
    border-bottom: 1px solid #C8D3DE;
    padding: 25px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-question h5 {
    font-family: 'poppins-bold';
    font-size: 20px;
}

.faq-question .arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item .faq-question .arrow {
    transform: rotate(180deg);
}

.faq-item.active .faq-question .arrow {
    transform: rotate(0deg);
}


.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}


.faq-item.active .faq-answer {
    max-height: 250px !important;
    padding-top: 10px;
}

.pb {
    padding-bottom: 20px;
}

.connectBtn {
    border-radius: 24px;
    background-color: #FC4F02 !important;
    width: auto;
    padding: 10px 20px;
    font-size: 18px;
    color: #fff;
    margin-top: 0 !important;
}

.hvr-icon-wobble-horizontal {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.Arrowicon {
    background: #fff;
    padding: 10px;
    border-radius: 50%;
    margin-left: 6px;
    vertical-align: middle;
}

@media (min-width: 0px) and (max-width: 768px) {
    .chatbox {
        width: 100%;
    }

    .boxhover1,
    .boxhover,
    .boxhover4 {
        height: auto;
        display: block;
    }

    .flex {
        flex-direction: column;
    }

    .flex2 {
        flex-direction: column-reverse;
    }

    .star-text {
        flex-direction: column;
        gap: 20px;
    }
}