.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%;
    }
}

.org-text {
    font-size: 25px;
    font-family: 'poppins-bold';
    color: #FC4F02 !important;
}

.secnario {
    font-size: 25px;
    font-family: 'Poppins-Bold';
    color: #000;
    line-height: normal;
    margin-bottom: 15px;
}

.relative {
    position: relative;
}

.chatbox {
    position: absolute;
    top: 120px;
    left: 130px;
    width: 27%;
    border-radius: 25px;
    z-index: 2;
    text-align: left;

}

.chatbox .chats {
    overflow-y: scroll;
    scrollbar-width: none;
}



.chat-message {
    color: #000;
    padding: 10px;
    border-radius: 15px;
    margin: 15px;
    font-size: 12px !important;
    line-height: normal;
    line-height: 1.4;
    width: 80%;
}

.user {
    background-color: #fff;
    color: #000;
    justify-self: flex-end;
}

.bot {
    background-color: #fff;
}

.pt0 {
    padding-top: 0 !important;
}

.boxhover3 {
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 12px 0px;
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    margin-bottom: 40px;
    padding: 40px;
    border-width: 2px;
    border-style: solid;
    border-color: transparent;
    border-image: initial;
    border-radius: 18px;
    transition: 1s ease-out;
    gap: 15px;
}

.h-220 {
    height: 220px;
    margin-bottom: 0px !important;
}

.h-170 {
    height: 170px;

}

.gap-20 {
    gap: 20px;
}

.pt-20 {
    padding-top: 20px !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.boxhover3 .box-content span {
    font-family: 'poppins-bold';
    font-size: 20px;
}

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

.org-bg {
    background-color: #FC4F02;
    color: #fff;
    border-radius: 20px;
    height: 210px;
}

.org-text-h2 {
    color: #FC4F02 !important;
    font-size: 50px !important;
    font-family: 'poppins-bold';
    margin: 0 !important;
}

.org-text-h2 span {
    font-size: 18px;
    color: #000;
}

.quotes {
    position: absolute;
    top: 20px;
    left: 10px;
}

.p-40 {
    padding: 40px !important;
}

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

.flex-align-center {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.ptb-20 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}

.ptb-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.chatbox3 {
    display: flex;
    flex-direction: column;
}

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

.chatbox3 .chats {
    width: 90%;
    margin: auto;
}

.chatbox3 .user-chat {
    flex-direction: row-reverse;
}

.chatbox3 .user-chat,
.chatbox3 .bot-chat {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    opacity: 1;
    transform: translateY(30px);
    gap: 20px;
    transition: 0.6s;
}

.pb-20 {
    padding-bottom: 20px !important;
}

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

.chatbox3 .user-text {
    width: fit-content;
    max-width: 80%;
    color: #000 !important;
    padding: 15px;
    background: #EFEFF0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
}

.chatbox3 .bot-text {
    color: #908F8F;
    width: fit-content;
    max-width: 80%;
    padding: 15px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
}

.chatbox3 .side-img {
    position: absolute;
    right: 0%;
    bottom: -130px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    border-radius: 50px;
}

.p10 {
    padding: 10px !important;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.boxhover3 .org-bold {
    font-family: 'poppins-bold';
    font-size: 70px;
    color: #FEDCCC;
    margin: 0 !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.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: fit-content !important;
    padding-top: 10px;
}

.bg-1 {
    background: url(https://www.streebo.com/wp-content/themes/streebo/images/atc/Streebo_Webpage_ChatGPT_App_Development_Generic/bg1.png);
    background-size: cover;
    height: 79vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.connectBtn {
    width: auto;
    font-size: 16px;
    color: rgb(255, 255, 255);
    margin-bottom: 20px;
    margin-top: 0px;
    background-color: #FC4F02 !important;
    border-radius: 24px;
    padding: 10px 20px;
}

.Arrowicon {
    margin-left: 6px;
    vertical-align: middle;
    background: rgb(255, 255, 255);
    padding: 10px;
    border-radius: 50%;
}

@media (min-width: 0px) and (max-width: 768px) {
    .chatbox {
        position: relative;
        top: 10px;
        left: 0px;
        width: 98%;
        border-radius: 25px;
        z-index: 2;
        text-align: left;
    }

    .chatbox .chats {
        background-color: #00000018;
        border-radius: 20px;
    }

    .flex,
    .boxhover3 {
        flex-direction: column;
        align-items: flex-start;
    }

    .boxhover3 {
        padding: 20px;
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }

    .h-170 {
        height: auto;
    }

    .last-sec h2 {
        font-size: 25px !important;
    }

    .flex-col-rev {
        flex-direction: column-reverse;
    }
}