.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;
    display: flex;
    top: 120px;
    left: 150px;
    width: 30%;
    background: white;
    border-radius: 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    z-index: 2;
    text-align: left;
    flex-direction: column;
}

.chatbox::after {
    content: '';
    background: url(https://www.streebo.com/wp-content/themes/streebo/images/atc/Webpage_Hotel_Concierge_AI_Agent/bot-1.png);
    background-size: cover;
    width: 70px;
    height: 70px;
    z-index: 1;
    position: absolute;
    top: 55%;
    left: 88%;
    filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.2));
}

.chat-message {
    color: #000;
    padding: 10px;
    border-radius: 15px;
    margin: 10px 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;
    align-self: flex-end;
}

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

.chatbox button {
    background-color: #FC4F02;
    width: 80%;
    padding: 10px;
    outline: none;
    margin: auto;
    border: 2px solid transparent;
    border-radius: 10px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chatbox button:hover {
    border: 2px solid #FC4F02;
    color: #FC4F02;
    background: transparent;
}

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

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

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

.user-chat.show,
.bot-chat.show {
    opacity: 1;
    transform: translateY(0);
}

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

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

.user-text {
    padding: 15px;
    background: #fc4f02;
    border-radius: 20px;
    border-bottom-right-radius: 5px;
    color: #fff !important;
    width: fit-content;
    max-width: 60%;
}

.bot-text {
    padding: 15px;
    background: #fff0e9;
    border-radius: 20px;
    border-bottom-left-radius: 5px;
    color: #000;
    width: fit-content;
    max-width: 60%;
}

.pb20 {
    padding: 20px 0 !important;
}

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

.chatbox2 .bot2 {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bot2-btn button {
    padding: 15px 10px;
    background: #fff0e9;
    border: 2px solid #fb4f02;
    border-radius: 30px;
    font-size: 12px;
    cursor: pointer;
    transition: 0.05s ease-out;
}

.bot2-btn button:hover {
    background: #fb4f02;
    color: #fff;
}

.boxhover {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    gap: 30px;
}

.chatbox2 .suite-section {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    padding: 15px 0;
}

.chatbox2 .suite-card {
    background: #fff0e9;
    border: 2px solid #ff6a00;
    border-radius: 20px;
    overflow: hidden;
    width: 110px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.chatbox2 .suite-card:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.chatbox2 .suite-card h3 {
    color: #ff6a00;
    font-size: 10px;
    font-family: 'poppins-bold';
    margin: 0px 0 10px;
}

.chatbox2 .suite-card img {
    margin-top: 5px;
}

.chatbox2 .suite-card button {
    background: #ff6a00;
    color: white;
    border: none;
    border-radius: 15px;
    padding: 10px;
    font-size: 12px;
    cursor: pointer;
    margin-bottom: 5px;
    width: 90%;
    transition: background 0.3s ease;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.chatbox2 .suite-card button:hover {
    background: #e55300;
}

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

.content-box h2 {
    font-size: 60px;
    font-family: 'poppins-bold';
    color: #FC4F02;
    margin: 0 !important;
    padding: 0 !important;
}

.content-box h3 {
    font-size: 24px;
    line-height: normal;
    font-family: 'poppins-bold';
    color: #000;
}

.chatbox3 {
    background: url(https://www.streebo.com/wp-content/themes/streebo/images/atc/Webpage_Hotel_Concierge_AI_Agent/chat-bg2.png) !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

.chatbox3 .user-text {
    background-color: #2CB740;
    border-radius: 15px;
}

.chatbox3 .bot2 {
    display: flex;
    flex-direction: column;
    padding: 10px;
    font-size: 12px;
    border-radius: 15px;
}

.chatbox3 .bot-text {
    background-color: #f2f2f2;
}

.chatbox3 .bot2 span {
    text-align: center;
    border-top: 1px solid #d6d6d6;
    color: #2CB740;
    font-family: 'poppins-bold';
    padding-top: 10px;
    cursor: pointer;
}

.mobile-content .org-text:first-child {
    margin-bottom: 20px;
    margin-top: 50px;
}

.mobile-content .org-text:last-of-type {
    margin-bottom: 20px;
    margin-top: 20px;
}

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

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

.chatbox4 .user-chat,
.chatbox4 .bot-chat {
    padding: 10px;
    width: 70%;
    text-align: left;
    margin-bottom: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.chatbox4 .chat-area {
    padding: 15px 20px;
    height: 620px;
    overflow-y: scroll;
    font-size: 12px;
    background: #fff;
}

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

.chatbox4 .user-chat {
    background-color: #DCF7C5;
    justify-self: flex-end;
    width: fit-content;
    max-width: 70%;
    ;
    display: flex;
}

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

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

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

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

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

.chatbox5 .user-text {
    background-color: #060042;
    color: #fff;
    border-radius: 10px;
}

.chatbox5 .bot-text {
    background: #E7EBF1;
    color: #000;
    border-radius: 10px;
}

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

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

.chatbox6 .user-text {
    border-bottom-right-radius: 0;
}

.chatbox6 .bot-text {
    background-color: #E7EBF1;
}

.chatbox6 .bot4 button {
    font-size: 12px;
    padding: 10px;
    color: #FC4F02;
    background: transparent;
    border: 1px solid #FC4F02;
    border-radius: 5px;
    margin: 5px 0;
    transition: all 0.09s ease-out;
    cursor: pointer;
}

.chatbox6 .bot4 button:hover {
    background-color: #FC4F02;
    color: #fff;
}

.chatbox5 .chats,
.chatbox6 .chats {
    margin: 0;
    height: 480px;
    overflow-y: scroll;
    padding: 10px 20px;
    width: 100%;
}

.chatbox6 .bot-chat {
    border-bottom-left-radius: 0;
    align-items: flex-start;
}

.chatbox6 .bot-text {
    border-bottom-left-radius: 0;
}

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

.boxhover3:hover,
.boxhover4:hover {
    border: 2px solid #fc4f02;
}

.boxhover4 {
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 12px 0px;
    display: flex;
    align-items: flex-start;
    padding: 20px;
    border: 2px solid transparent;
    border-image: initial;
    border-radius: 18px;
    transition: 1s ease-out;
    height: 230px;
    cursor: pointer;
}

.chatbox6 .chats {
    height: 510px;
}

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

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

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

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

.rel {
    position: relative;
}


.heart-eyes::before {
    content: "";
    background-image: url(https://www.streebo.com/wp-content/themes/streebo/images/atc/Webpage_Hotel_Concierge_AI_Agent/heart-eyes.png);
    background-size: cover;
    position: absolute;
    z-index: 1;
    width: 60px;
    height: 60px;
    bottom: 220px;
    right: 40px;
    filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.2));
}

.heart-eyes2::before {
    bottom: 170px;
}

.heart-eyes3::before {
    bottom: 240px;
}

.heart-eyes4::before {
    bottom: 0px;
}

.heart-eyes5::before {
    bottom: 60px;
    right: 80px;
}

.heart-eyes6::before {
    top: 150px;
    right: 80px;
}

.heart-eyes7::before {
    bottom: 280px;
    right: -20px;
}

.w-app::before {
    content: "";
    background-image: url(https://www.streebo.com/wp-content/themes/streebo/images/atc/Webpage_Hotel_Concierge_AI_Agent/w-app-star.png);
    background-size: cover;
    position: absolute;
    z-index: -1;
    width: 70px;
    height: 70px;
    top: 110px;
    right: -35px;
    filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.2));
}

.w-app::after {
    content: "";
    background-image: url(https://www.streebo.com/wp-content/themes/streebo/images/atc/Webpage_Hotel_Concierge_AI_Agent/w-app-star2.png);
    background-size: cover;
    position: absolute;
    z-index: -1;
    width: 60px;
    height: 60px;
    bottom: 140px;
    left: -50px;
    filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.2));
}

.cry-emoji::before {
    content: "";
    background-image: url(https://www.streebo.com/wp-content/themes/streebo/images/atc/Webpage_Hotel_Concierge_AI_Agent/cry-emoji.png);
    background-size: cover;
    position: absolute;
    z-index: 1;
    width: 70px;
    height: 70px;
    bottom: 110px;
    right: -35px;
    filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.2));
}

.heart-eyes8::before {
    bottom: 100px;
    right: -35px;
}

.heart-eyes9::before {
    bottom: 200px;
    right: -35px;
}

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

    .chatbox2 .suite-section {
        flex-wrap: wrap;
    }

    .flex,
    .content-box {
        flex-direction: column;
    }

    .chatbox4,
    .chatbox5,
    .chatbox6 {
        width: 100%;
    }

    .w-app::before,
    .heart-eyes::before,
    .w-app::after,
    .cry-emoji::before,
    .chatbox::after {
        content: none;
        background: none;
    }

    .pt20 {
        padding: 10px;
    }

    .bot-text,
    .user-text {
        max-width: 90%;
    }

    .bot2-btn button {
        margin-bottom: 10px;
    }

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

    .boxhover4 {
        height: auto;
        display: block;
    }

    .boxhover3 {
        display: block;
    }
}