.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-family: 'poppins-bold';
    color: #FC4F02 !important;
}

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

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

.relative {
    position: relative;
}

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

/* first-chatbox */
.chatbox {
    width: 300px;
    position: absolute;
    top: 60px;
    left: 180px;
}

.user {
    float: right;
    text-align: left;
    padding: 20px;
    color: #fff;
    margin: 5px 0px 5px 40px;
    background-color: #FC4F02;
    border-radius: 25px 25px 10px 25px;
}

.bot {
    float: left;
    text-align: left;
    padding: 20px;
    color: #000;
    margin: 5px 40px 5px 0px;
    background-color: #F2F2F2;
    border-radius: 25px 25px 25px 10px;
}

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

.bg1 {
    background: url(https://www.streebo.com/wp-content/themes/streebo/images/atc/Streebo_Webpage_Agriculture_Level_1/bg1.png) center center no-repeat;
}

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

.user-chat,
.bot-chat {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
}

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

.bot-chat {
    justify-content: flex-start;
}

.user1 {
    background-color: #FF4F00;
    border-radius: 25px 25px 10px 25px;
    max-width: 200px;
    color: #fff;
    padding: 15px;
}

.bot1 {
    background-color: #FFF0E9;
    border-radius: 25px 25px 25px 10px;
    max-width: 280px;
    color: #000;
    padding: 15px;
}

.number-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.number-content .number {
    font-size: 90px;
    font-weight: bold;
}

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

.sign-content {
    padding: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

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

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

.boxhover {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 12px 0px;
    cursor: pointer;
    padding: 30px;
    border: 2px solid transparent;
    transition: 1s ease-out;
    border-radius: 18px;
    min-height: 190px;
}

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

.box-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    line-height: normal;
}

/* faq-section */
.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) {
    .dislex {
        flex-direction: column;
    }

    .chatbox {
        position: relative;
        top: 10px;
        left: 15%;
    }

    .r-dislex {
        flex-direction: column-reverse;
    }
}