/* center line */
strong {
    font-family: 'poppins-bold';
}

.dislex {
    display: flex;
    justify-content: center;
    align-items: center;
}

.chatbox2 .btn2 button {
    padding: 10px 20px;
    background-color: #E0EBFC;
    color: #007bff;
    border-radius: 20px;
    outline: none;
    border: none;
    margin-top: 15px;
    cursor: pointer;
    max-width: max-content
}

.chatbox2 .btn2 {
    display: flex;
    flex-direction: column;
    justify-self: flex-start;
}

.line {
    width: 70px;
    height: 6px;
    background-color: #0866FF;
    margin: 0 50%;
    margin-top: 20px;
    display: block;
    border-radius: 3px;
}

.anim {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.fb-col {
    color: #0866FF;
}

.anim:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 100%;
    background: white;
    animation: animate 2s linear infinite;
}

@keyframes animate {
    0% {
        left: 0;
    }

    50% {
        left: 100%;
    }

    0% {
        left: 0;
    }
}

/* center line css End here */


/* Heading css */



/* first img css */
.fb-header {
    width: 100%;
}

.chatbox1 {
    position: absolute;
    top: 150px;
    left: 190px;
    width: 250px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    z-index: 2;
    text-align: left;
}

.chat-header {
    font-weight: bold;
    font-size: 12px !important;
    line-height: normal;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: gray;
}

.online {
    background-color: green;
}

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

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

.bot {
    background-color: #E2EFFF;
}

.fb-button {
    display: block;
    margin: 10px;
    text-align: center;
    background-color: #1877f2;
    color: white;
    padding: 8px 10px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 12px !important;
    line-height: normal;
    display: flex;
    font-weight: bold;
    align-items: center;
    justify-content: center;
}

.messenger-icon {
    position: absolute;
    top: 350px;
    left: 400px;
    background: url(https://www.streebo.com/wp-content/themes/streebo/images/atc/Streebo_Webpage_Generic_Generative_AI_Chatbot_Insurance_Facebook/fb-logo.png) no-repeat center center;
    background-size: cover;
    width: 110px;
    height: 110px;
    z-index: 3;
}

.red-dot {
    position: absolute;
    top: 18px;
    right: 35px;
    width: 10px;
    height: 10px;
    background-color: red;
    border-radius: 50%;
}


/* Section 3 css */
.accordion-container {
    margin-bottom: 20px;
}

.accordion-item {
    transition: all 0.3s ease;
}

.accordion-header {
    cursor: pointer;
    padding: 15px 0px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.accordion-header .arrow {
    transform: rotate(0deg);
    transition: transform 0.3s ease;
    margin-left: auto;
}

.accordion-item.active .arrow {
    transform: rotate(180deg);
}

.accordion-header .tick {
    color: #007bff;
    font-weight: bold;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    padding: 0 15px;
}

.accordion-item.active .accordion-content {
    max-height: max-content;
    padding: 15px;
    padding-top: 0;
}

.chatbox2 {
    background: #fff;
    border-radius: 15px;
    padding: 10px 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    margin-left: auto;
    position: relative;
}

.box-2-img {
    position: absolute;
    right: 360px;
    top: -30px;
    width: 75px;
}

.chat-header2 {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    font-weight: bold;
    margin: 10px 30px;
}

.chat-message2 {
    display: flex;
    align-items: flex-end;
    margin-bottom: 15px;
}

.chat-message2.user2 {
    justify-content: flex-end;
}

.chat-message2.user2 p {
    background: #0866FF;
    color: white;
    border-radius: 20px;
    font-size: 12px !important;
    line-height: normal;
    padding: 10px 15px;
    max-width: 70%;
    border-bottom-right-radius: 5px;
}

.chat-message2.user2 img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-left: 10px;
}

.chat-message2.bot2 p {
    background: #E0EBFC;
    font-size: 12px !important;
    line-height: normal;
    color: #000000;
    border-radius: 20px;
    padding: 10px 15px;
    max-width: 70%;
    border-bottom-left-radius: 5px;
}

.chat-message2.bot2 img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
}

.chat-message4.user3 p {
    background: #FFF3E2;
    font-size: 12px !important;
    line-height: normal;
    color: #000000;
    border-radius: 15px;
    padding: 15px;
    max-width: 60%;
}

.chat-message4.bot3 p {
    background: #EFEFF0;
    font-size: 12px !important;
    line-height: normal;
    color: #000000;
    border-radius: 15px;
    padding: 15px;
    position: relative;
    max-width: 55%;
}

.chat-message4 {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.chat-message4.user3 {
    justify-content: flex-end;
}

.chat-message4.user3 img {
    margin-left: 10px;
}

.chat-message4.bot3 img {
    margin-right: 10px;
}

.chat-message4.bot3 p img,
.chat-message4.user3 p img {
    position: absolute;
    right: -20px;
    bottom: -25px;
    box-shadow: 0px 0px 10px #999;
    border-radius: 50%;
}

.chatbox2 .b-bot {
    position: absolute;
    top: -45px;
    left: -30px;
}

/* Section 3 css end here */

/* Section 6 */
.bg {
    background: url(https://www.streebo.com/wp-content/themes/streebo/images/atc/Streebo_Webpage_Generic_Generative_AI_Chatbot_Banking_Facebook/bg.png) no-repeat;
    background-size: cover;
}

.chat-bg {
    background: url(https://www.streebo.com/wp-content/themes/streebo/images/atc/Streebo_Webpage_Generic_Generative_AI_Chatbot_Insurance_Facebook/chat-bg.png) no-repeat center center;
    background-size: contain;
}

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

.chatbox3 {
    background: none;
    box-shadow: none;
}

.chat-message3 {
    margin-bottom: 20px;
}

.pl20 {
    padding: 10px 20px;
}

.chatbox4 {
    padding: 0;
    font-size: 12px !important;
    line-height: normal;
    margin: auto !important;
}

.chat-message3.bot3 {
    display: flex;
    align-items: flex-start;
    margin: 20px 0;
}

.chat-message3.bot3 img {
    width: 32px;
    height: 32px;
    margin-right: 12px;
    margin-top: 4px;
}

.msg-box {
    background: #E2EFFF;
    padding: 16px;
    border-radius: 15px;
    width: 70%;
}

.msg-box p {
    margin: 0 0 10px 0;
}

.msg-box ul {
    padding-left: 20px;
    margin: 0;
}

.msg-box ul li {
    margin-bottom: 5px;
    line-height: normal;
    list-style: disc;
}

.pt {
    padding: 20px 0;
}

.plan-box {
    background: white;
    padding: 10px 14px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.plan-text small {
    font-weight: normal;
    font-size: 13px;
}

.bot4 p {
    background-color: transparent !important;
    max-width: none !important;
}

.chat-area {
    height: auto;
}

.mobile-screen {
    display: flex !important;
    position: relative;
    flex-direction: column;
}

.mobile-section h4 {
    font-size: 25px !important;
    color: #0866FF;
    text-align: center;
    font-family: 'poppins-bold';
    line-height: normal;
}

.mobile-content h4 {
    text-align: left;
    font-size: 25px !important;
    padding: 30px 0;
    color: #0866FF !important;
    line-height: normal;
}

/* Email Screen CSS */
.user-msg {
    max-width: 600px;
    margin: 10px 0;
    border-bottom: 1px solid #5f5f5f;
}

.user-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-info img {
    width: 40px;
    height: 40px;
}

.email {
    font-weight: bold;
}

.message {
    margin-top: 6px;
    margin-left: 45px;
}

.tick-header {
    display: flex;
    align-items: flex-start;
    padding: 15px 0;
    gap: 15px;
}

.tick-header1 {
    display: flex;
    margin: 10px 0px;
}

/* BoxHover css */
.boxhover {
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 12px 0px;
    display: flex;
    align-items: flex-start;
    height: 240px !important;
    padding: 25px;
    border: 2px solid transparent;
    border-image: initial;
    border-radius: 18px;
    transition: 1s ease-out;
    cursor: pointer;
}

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

.box3 {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
}

.box-main {
    display: flex;
    flex-direction: row;
}


.lead-conversion {
    position: relative;
    padding: 15px 20px;
    margin: auto;
}

.number-bg {
    position: absolute;
    top: 20px;
    left: 0;
    font-size: 72px;
    font-weight: bold;
    color: #E0E0E0;
    z-index: 0;
}

.content {
    position: relative;
    z-index: 1;
    padding-left: 30px;
}

.content h2 {
    font-size: 22px;
    margin-bottom: 10px;
    margin-top: 0 !important;
}

.content p {
    margin-bottom: 20px;
    line-height: normal;
}

.benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.benefits .icon {
    margin-right: 10px;
}

.boxhover2 {
    height: 190px !important;
}

.box4 {
    display: flex;
    align-items: flex-start;
}


.pricing-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.pricing-content h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.pricing-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-content li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.5;
}

.line-text {
    display: inline;
    font-size: 15px;
    line-height: 1.5;
}

.line-text strong {
    font-weight: 700;
}

.mobile-content li {
    padding-left: 20px;
    font-size: 18px !important;
}

.mobile-content li::before {
    content: "•";
    position: absolute;
    left: 0px;
    color: #0866FF;
    font-size: 30px;
    line-height: 0.7;
}

.line2 {
    margin: 0 8%;
}

.connectBtn {
    border-radius: 24px;
    background-color: #0866FF !important;
    width: auto;
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
}

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



/* Mobile Responsive */

@media (min-width: 0px) and (max-width: 768px) {
    .chatbox2 .b-bot {
        top: -25px;
        left: -5px;
        width: 15%;
    }

    .dislex {
        flex-direction: column;
    }

    .messenger-icon,
    .box-2-img {
        display: none;
    }

    .chatbox1 {
        position: relative;
        width: 75%;
        padding-bottom: 10px;
        left: 10%;
        top: 0;
    }

    .line2 {
        margin: 0 12%;
    }

    .boxhover,
    .boxhover2 {
        display: block;
        height: auto;
    }

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

    .items1 {
        order: 2
    }

    .specer {
        height: 0 !important;
    }

    .items2 {
        order: 1;
    }

    .img-res {
        height: 100% !important;
    }
}