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

.fw-bold {
    font-family: 'poppins-bold';
}

.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: 24%;
    background: white;
    border-radius: 25px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    z-index: 2;
    text-align: left;
}

.flex-justify-center {
    display: flex;
    justify-content: center;
}

.chatbox1 {
    width: 70%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    position: relative;
}

.chatbox1::before {
    content: '';
    position: absolute;
    top: 44%;
    left: -5%;
    width: 30px;
    height: 30px;
    background: url(https://www.streebo.com/wp-content/themes/streebo/images/atc/Streebo_Webpage_Entertainment_Event_booking_Level_2/bot.png);
    background-size: cover;
}

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

.chatbox::after {
    content: '';
    background: url(https://www.streebo.com/wp-content/themes/streebo/images/atc/Streebo_Webpage_Entertainment_Event_booking_Level_2/user1.png);
    background-size: cover;
    width: 30px;
    height: 30px;
    z-index: 1;
    position: absolute;
    top: 29%;
    right: -7%;
    filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.2));
}

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

.user {
    background-color: #FC4F02;
    color: #fff;
    justify-self: flex-end;
    border-bottom-right-radius: 5px;
}

.bot {
    background-color: #F2F2F2;
    border-bottom-left-radius: 5px;
}

.chatbox .button button {
    padding: 10px;
    color: #fff;
    border-radius: 10px;
    background-color: #FC4F02;
    text-align: center;
    width: 90%;
    margin: auto;
    border: none;
}

.chatbox .button {
    margin-bottom: 20px;
    text-align: center;
}

.box-content {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.chatbox3 {
    display: flex;
    flex-direction: column;
    background: url(https://www.streebo.com/wp-content/themes/streebo/images/atc/Streebo_Webpage_Sales_Chatbot/chat-bg.png) center center / contain no-repeat !important;
    background-position: center center !important;
}

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

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

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

.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: rgb(255, 255, 255) !important;
    padding: 15px;
    background: #FC4F02;
    border-radius: 20px 20px 5px;
}

.chatbox3 .bot-text {
    color: rgb(0, 0, 0);
    width: fit-content;
    max-width: 80%;
    padding: 15px;
    background: #FFF0E9;
    border-radius: 20px 20px 20px 5px;
}

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

.bg-none {
    background: none !important;
}

.bg-none .user-text {
    background: #FFF3E2;
    color: #000 !important;
}

.bg-none .bot-text {
    background: #EFEFF0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px !important;
}

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

.flex-align-start {
    display: flex;
    align-items: flex-start;
    gap: 15px;

}

.flex-align-start img {
    margin-top: 5px;
}

.mb-20 {
    margin-bottom: 20px;
}

.heading {
    display: flex;
    flex-direction: column;

}

.heading h2:first-child {
    font-size: 30px;
    color: #FC4F02;
    font-family: 'poppins-bold';
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.heading h2:last-child {
    font-size: 24px;
    font-family: 'poppins-bold';
    margin-top: 0 !important;
}

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

.pt-0 {
    padding-top: 0;
}

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

.org-dot {
    padding-left: 15px;
}

.org-dot li {
    padding-bottom: 20px;
    padding-left: 10px;
}

.org-dot li::marker {
    content: "●";
    color: #FC4F02;
    font-size: 15px;
}

.pb-0 {
    padding-bottom: 0px;
}

.block33 .box {
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 20px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.block33 .box:hover {
    transform: scale(1.050);
}

.pb-10 {
    padding-bottom: 10px;
}

.mobile-screen {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

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

.chatbox6 .chats {
    height: 500px;

    width: 100%;
    margin: 0px;
    padding: 10px 20px;
}

.mt-20 {
    margin-top: 20px;
}

.chatbox6 .user-chat,
.chatbox6 .bot-chat {
    display: flex;
    margin-bottom: 20px;
    flex-direction: row;
    align-items: flex-end;
    gap: 20px;
}

.mt-20 {
    margin-top: 20px;
}

.chatbox6 .user-chat {
    justify-content: flex-end;
}

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

.chatbox6 .bot-text,
.chatbox6 .user-text {
    border-radius: 10px;
}

.chatbox6 .user-text {
    width: fit-content;
    max-width: 60%;
    color: rgb(255, 255, 255) !important;
    padding: 10px;
    background: #FC4F02;

}

.chatbox6 .bot-text {
    width: fit-content;
    max-width: 60%;
    color: rgb#000 !important;
    padding: 10px;
    background: #E7EBF1;

}

.mt-20 {
    margin-top: 20px;
}

.ptb-20 {
    padding: 20px 0px;
}

.h-700 {
    height: 700px;
}

.email-wrapper {
    display: flex;
    flex-direction: column;
    height: 700px;
    gap: 20px;
}

.email-card {
    background: #F3F3F3;
    border-radius: 22px;
    padding: 15px 20px;
    width: 370px;
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    text-align: left;
}

.gmail-icon {
    position: absolute;
    top: -20px;
    left: -20px;
}

.email-content .date {
    color: #555;
    font-size: 14px;
}

.user-info {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin: 6px 0 0px 0;
}

.user-info .user-img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
}

.name {
    font-weight: 600;
}

.email-card p {
    margin-top: 6px;
    line-height: 1.5;
    font-size: 14px;
}

/* Buttons */
.btn-row {
    margin-top: 16px;
    display: flex;
    gap: 12px;
}

.btn-light {
    background: #ffffff;
    border: none;
    padding: 10px 22px;
    border-radius: 14px;
    cursor: pointer;
    font-size: 14px;
    transition: 0.2s;
}

.btn-light:hover {
    background: #e3e3e3;
}

.email-content-2 {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.ml-auto {
    margin-left: auto;
}

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

.new-world .box-content {
    margin: 10px 0;
    align-items: flex-start;
}

.chatbox6 .h-540 {
    height: 540px;
}

.chat-box-s .user-chat,
.chat-box-s .bot-chat {
    max-width: 100%;
}

.mb-0 {
    margin-bottom: 0px;
}

.h-260 {
    height: 180px;
}

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

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

.boxhover3:hover {
    border-width: 2px;
    border-style: solid;
    border-color: rgb(252, 79, 2);
    border-image: initial;
}

.boxhover3 .box-content {

    display: flex;
    align-items: flex-start;

    margin-bottom: 30px;
    flex-direction: column;
}

.boxhover3 .flex-row {
    flex-direction: row;
}

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

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

.pricing-h5 {
    font-family: poppins-bold;
    font-size: 24px;

    margin-bottom: 20px;
}

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

.chatbox1 .chats .user {
    width: fit-content;
}

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

@media (min-width: 0px) and (max-width: 768px) {
    .chatbox {
        position: relative;
        top: 0;
        left: 10px;
        width: 94%;
    }



    .h-700,
    .chatbox6 .chats,
    .email-wrapper,
    .h-260 {
        height: auto;
    }

    .chatbox::after {
        display: none;
    }

    .email-card {
        width: 90%;
    }

    .chatbox6 {
        width: 100%;
    }

    .flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

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