.row {
    margin-right: 0px;
    margin-left: 0px;
}

/* Add this at the top of your CSS file */
@media only screen and (max-width: 768px) {

    /* Logo section */
    .logo {
        float: none;
        margin: 0px;
    }

    /* Company name and slogan section */
    .company {
        padding-top: 50px;
    }

    .company p {
        font-size: 17px;
    }

    /* Chatbot button section */
    .chatbot {
        margin-bottom: 50px;
    }

    .chatbot button {
        font-size: 18px;
        padding: 10px;
    }

    /* Video demo section */
    .video {
        margin-bottom: 50px;
    }

    /* FAQ section */
    .accordion {
        width: 90%;
    }

    .panel {
        width: 90%;
    }


    .pricing-table {
        display: block;
    }

    .pricing-table .plan {
        display: block;
        margin-bottom: 20px;
    }


    /* Footer section */
    .footer a {
        font-size: 16px;
    }

    .announcement {
        font-size: 17px;
    }




    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-size: 20px;
    }

    p {
        font-size: 17px;
    }

    .company h1 {
        font-size: 70px !important;
    }

}


.pricing p {
    padding-left: 5%;
    padding-right: 5%;
    text-align: center;
}

.pricing-table {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.plan {
    box-sizing: border-box;
    margin: 1rem;
    padding: 1rem;
    width: calc(100% / 3 - 2rem);
}

@media only screen and (max-width: 768px) {
    .plan {
        width: 100%;
        /* Adjust the plan width for mobile devices */
    }
}



/* Logo section */

.logo {
    margin: 0 20px;
}

.logo a {
    float: left;
    color: #fff;
    font-size: 36px;
    font-weight: bold;
    font-style: italic;
    font-family: 'Raleway', sans-serif;
    text-decoration: none;
}

/* Company name and slogan section */

span.highlight:before {
    content: '';
    animation: animate infinite 8s;
}

@keyframes animate {
    0% {
        content: 'Conversational';
    }

    50% {
        content: 'Digital Human Based';
    }

    100% {
        content: 'ANY DATA ANYWHERE';
    }
}

/* Company name and slogan section */
.company {
    text-align: center;
    padding-top: 50px;
}

.company h1 {
    color: #fff;
    font-weight: bold;
    margin-bottom: 20px;
    font-family: 'Raleway', sans-serif;
}

.company p {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 50px;
}

.btn-cta {
    background-color: #ffa26b;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.btn-cta:hover {
    background-color: #ff6b6b;
}



/* Chatbot button section */
.chatbot {
    text-align: center;
    margin-bottom: 100px;
}

.chatbot button {
    background-color: #32302f;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    padding: 20px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    transition: background-color 0.3s ease;
}

.chatbot button:hover {
    background-color: #ff6b6b;
}

/* Video demo section */
.video {
    text-align: center;
    margin-bottom: 100px;
}



/* FAQ section */
.accordion {
    background-color: #18463f;
    color: white;
    cursor: pointer;
    padding: 18px;
    width: 90%;

    text-align: left;
    outline: none;

    transition: 0.4s;
}

.active,
.accordion:hover {
    background-color: #235050;
}

.panel {
    padding: 0 18px;
    color: white;
    background-color: #2c1313;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    width: 60%;
}




/* Pricing section */
.pricing {
    text-align: center;
    margin-bottom: 100px;
}

.pricing h2 {
    color: #fff;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    font-family: 'Raleway', sans-serif;
}

.pricing-table {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    border-spacing: 10px;
}

.pricing-table .plan {
    background-color: #18463f;
    color: #fff;
    text-align: center;
    margin: 20px;
    display: table-cell;
    vertical-align: top;
    border-top-left-radius: 90px;
    border-bottom-right-radius: 90px;

}

.pricing-table .plan h3 {
    font-size: 36px;
    font-weight: bold;
    margin-top: 0;
    color: #fff;
}

.pricing-table .plan p {
    font-size: 24px;
    color: #fff;
    margin-top: 10px;
    margin-bottom: 10px;
}

.pricing-table .plan ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pricing-table .plan li {
    font-size: 20px;
    margin-bottom: 10px;
}

.pricing-table .plan button {
    background-color: #2d2864;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    transition: background-color 0.3s ease;
}

.pricing-table .plan button:hover {
    background-color: #ff6b6b;
}


/* Footer section */
.footer {
    text-align: center;
    margin-top: 100px;
    padding: 20px;
    background-color: #18463f;
}

.footer a {
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    margin-right: 20px;
    font-family: 'Montserrat', sans-serif;
}

.footer a:hover {
    text-decoration: underline;
}


/* Body */
body {
    background-color: #24004e;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: bold;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    background-color: #343a40;
    background: linear-gradient(to right, #ff5733, #000000, #ffd600);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: text-gradient 2s linear infinite;
    white-space: nowrap;
    overflow: hidden;

    text-align: center;
}

.accordion h2 {
    font-size: 22px;
    font-weight: bold;
}

h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 38px;
    font-weight: bold;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    background-color: #343a40;
    background: linear-gradient(to lef, #ff5733, #000000, #ffd600);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: text-gradient 2s linear infinite;
    white-space: nowrap;
    overflow: hidden;

    text-align: center;
}



.title {
    font-size: 80px;
    font-weight: bold;
    text-align: center;
    margin: 0;
    line-height: 1;
    letter-spacing: -2.5px;
}

.title span {
    background: linear-gradient(to right, #121fcf 0%, #cf1512 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 70px;
    font-weight: bold;
}



:root {
    --body-bg: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    --msger-bg: #fff;
    --border: 2px solid #ddd;
    --left-msg-bg: #ececec;
    --right-msg-bg: #579ffb;
}

*,
*:before,
*:after {
    margin: 0;
    padding: 0;

}


.msger {
    height: 600px;
    /* set a fixed height */
    flex-flow: column wrap;
    justify-content: space-between;

    max-width: 867px;
    margin: 25px 10px;
    border-radius: 10px;


}

.msger-header {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    justify-content: space-between;
    padding-top: 3%;
    padding-bottom: 3%;
    border-bottom: var(--border);
    background: white;
    background-color: #18463f;
    color: white;
    /* set a fixed height */
    top: 0;
}

.msger-chat {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
    height: 500px;
    /* set a fixed height */
    top: 0;

}

.msger-chat::-webkit-scrollbar {
    width: 6px;
}

.msger-chat::-webkit-scrollbar-track {
    background: #ddd;
}

.msger-chat::-webkit-scrollbar-thumb {
    background: #bdbdbd;
}

.msg {
    display: flex;
    align-items: flex-end;
    margin-bottom: 10px;
}

.msg:last-of-type {
    margin: 0;
}

.msg-img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
    background: #ddd;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 50%;
}

.msg-bubble {
    max-width: 450px;
    padding: 15px;
    border-radius: 15px;
    background: #190853;
}

.msg-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.msg-info-name {
    margin-right: 10px;
    font-weight: bold;
}

.msg-info-time {
    font-size: 0.85em;
}

.left-msg .msg-bubble {
    border-bottom-left-radius: 0;
}

.right-msg {
    flex-direction: row-reverse;
}

.right-msg .msg-bubble {
    background: #d8b13b;
    color: #111111;
    border-bottom-right-radius: 0;
}

.right-msg .msg-img {
    margin: 0 0 0 10px;
}

.msger-inputarea {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    display: flex;
    padding: 10px;
    border-top: var(--border);
    background: #eee;
}

.msger-inputarea * {
    padding: 10px;
    border: none;
    border-radius: 3px;
    font-size: 1em;
    height: 50px;
    /* set a fixed height */
    position: sticky;
    top: 0;

}

.msger-input {
    flex: 1;
    background: #ddd;
}

.msger-send-btn {
    margin-left: 10px;
    background: rgb(42, 9, 163);
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.23s;
}

.msger-send-btn:hover {
    background: rgb(0, 180, 50);
}

.msger-chat {
    background-color: #18463f;

}



.navbar-nav li {
    margin: 0 20px;
    font-style: italic;
    font-weight: bold;
}

.navbar-nav li a {
    color: white !important;
    text-decoration: none;
    text-transform: uppercase;
}

.navbar-nav li a:hover {
    border-bottom: 2px solid white;
}

.navbar-dark .navbar-toggler {
    border: 2px solid white;
}



hr {
    height: 1px;
    border: none;
    background: linear-gradient(to right, transparent, #ccc, transparent);
    border-radius: 10px;
    margin: 20px 0;
}


img {
    filter: blur(0.5px) brightness(90%);
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

h4 {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;

}






nav {
    background-color: #18463f;
}

/* .navbar {
    padding-top: 0px;
    padding-bottom: 0px;
} */


p i {
    display: inline-block;
    background-color: #ffffff;
    border-radius: 20px;
    padding: 5px 10px;
    margin-right: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    color: black;
    opacity: 60%;
}



.video-container {
    flex: 1;

}

.msger {
    flex: 1;
    margin-left: 20px;
}



.video-wrapper {
    position: relative;
    display: inline-block;
    width: 30%;
    box-sizing: border-box;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    color: white;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.play-button:hover {
    opacity: 1;
}


#capabilities {
    background-color: #1a463f;
    padding: 20px 0;
}

#capabilities h2 {
    text-align: center;
    font-size: 42px;
    font-weight: bold;

}

#capabilities .container {
    max-width: 70%;
    margin: 0 auto;
}

#capabilities .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

#capabilities .col-md-4 {
    flex-basis: 33.33%;
    text-align: center;
    margin-bottom: 30px;
    padding: 0 15px;
}

#capabilities .icon {
    font-size: 50px;
    color: #0088cc;
    margin-bottom: 30px;
}

#capabilities h3 {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 20px;
    color: white;
}

#capabilities p {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 30px;
}


/* Styling for the announcement */
.announcement {
    background-color: #c83292;
    color: white;
    font-weight: bold;
    text-align: center;
    font-size: x-large;
    font-style: italic;
}



.video p {
    padding-left: 5%;
    padding-right: 5%;
    text-align: left;
}

.video video {
    border-radius: 1.25rem;
    box-shadow: inset 0px 0px 36px 36px rgba(0, 0, 0, 0.75), 0 0 20px rgb(36 137 121);
    transform: perspective(780px) rotateX(30deg);
}

.video video {

    width: 50%;
    height: auto;
}


@media only screen and (max-width: 425px) {

    .title span {
        font-size: 30px;
    }

    .company h1 {
        font-size: 30px !important;
    }

    .msger {
        margin-left: 0px;
    }

    .msg-img {
        width: 30px;
        height: 30px;
    }

    .company p {
        font-size: 15px;
    }

    .msger-chat {
        font-size: 10px;
    }

    .msg-bubble {
        max-width: 180px;
    }

    .announcement {
        font-size: 14px;
    }

    .accordion h2 {
        font-size: 17px;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-size: 17px;
    }

    p {
        font-size: 14px;
    }

    #capabilities h2 {
        font-size: 17px;
    }

    #capabilities h3 {
        font-size: 12px;
    }

    #capabilities p {
        font-size: 14px;
    }

    .pricing h2 {
        font-size: 17px;
    }

    .pricing-table .plan h3 {
        font-size: 17px;
    }

    .pricing-table .plan p {
        font-size: 14px;
    }

    .pricing-table .plan li {
        font-size: 14px;
    }

    .pricing-table .plan button {
        font-size: 14px;
    }

    .btn-cta {
        font-size: 14px;
    }

    .video video {

        width: 80%;
        height: auto;
    }

}