body {
    margin: 0;
    padding: 0;
}

.top-section {
    max-width: 85vw;
    margin: 52px auto;
    /* padding: 57px 164px 0 158px; */
}
.navbar-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo-section-nav-items ul {
    display: flex;
    gap: 70px;
    font-family: "Inria Sans", sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0;
}

.logo-section-nav-items ul li {
    list-style: none;
}

.logo-section-nav-items ul li a {
    text-decoration: none;
    color: #000000;
    position: relative;
    transition: 0.2s ease;
}

.logo-section-nav-items ul li a:hover {
    color: #ff3700 !important;
}

.logo-section-nav-items ul li a.active,
.logo-section-nav-items ul li a:hover {
    color: #ff3700;
}

.logo-section-nav-items ul li a.active::after,
.logo-section-nav-items ul li a:hover::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 101px;
    max-width: 100%;
    height: 2px;
    background-image: url("images/underline.svg");
    background-repeat: no-repeat;
    background-size: cover;
}
.chevron {
    height: 22px !important;
}

.main-section {
    margin-top: 117px;
    display: flex;
    justify-content: center;
}
.heading-and-description {
    display: flex;
    flex-direction: column;
    /* width: 994px; */
    gap: 37px;
    align-items: center;
}
.typed-cursor {
    display: inline;
    font-weight: 100;
    color: #ff3700;
    animation: blink3 0.75s step-end 5;
}

@keyframes blink3 {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}
.typed2-cursor,
.typedx-cursor,
.typedz-cursor,
.typedques-cursor,
.typedchat-curs {
    display: inline;
    font-weight: 100;
    color: #ff3700;
    animation: blink5 0.75s step-end 5;
    animation-fill-mode: forwards; /* Keep final frame (visible) before JS hides it */
}

@keyframes blink5 {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

.main-heading {
    font-family: "Noto Serif JP";
    font-style: normal;
    font-weight: 600;
    font-size: 86px;
    line-height: 103px;
    display: flex;
    align-items: flex-end;
    text-align: center;
    color: #000000;
    margin: 0;
    line-height: 120px;
}

.heading-and-description p {
    font-family: Inria Sans;
    font-weight: 700;
    font-size: 32px;
    line-height: 151%;
    letter-spacing: 0%;
    text-align: center;
    margin: 0;
    width: 938px;
    height: 90px;
}
.main-chat-section {
    margin-top: 76px;
    height: 98.33vh;
    background-image: url("images/updated-wave.svg");
    background-repeat: no-repeat;
    width: 100%;
    background-size: cover;
    display: flex;
    justify-content: center;
    padding-bottom: 84px; /* 84px bottom space */
    background-position: center;
}

.chat-container {
    padding: 80px 0 63px 4.96vw;
    box-sizing: border-box;
    max-width: 67.24vw;
    width: 67.24vw;
    height: 99.33vh;
    background: #ffffff;
    border: 8px solid #000000;
    border-radius: 20px;
    align-self: flex-start;
    display: flex;
    flex-direction: column;
    position: relative;
}
.main-container-chat {
    max-width: 85vw;
    margin: 0 auto;
}
.greeting-text {
    display: flex;
    align-items: center;
    justify-content: center;
}
.greeting-text h2 {
    font-family: "Noto Serif JP";
    font-style: normal;
    font-weight: 600;
    font-size: 50px;
    line-height: 60px;
    color: #000000;
    margin: 0;
    max-width: 312px;
}
.ai-chat-section:first-child {
    margin-top: 94px;
}
.ai-chat-section {
    margin-top: 45.38px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.chat-box {
    background-color: #fff1ee;
    padding: 12.48px 24.66px 12.52px 22.69px;
    border-radius: 8.25px;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 50.2vw;
}
.chat-box p {
    font-family: "Inria Sans";
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
    margin: 0;
}
.chat-suggestions-section {
    margin-bottom: 50px;
    margin-right: 5.13vw;
}
.chat-suggestions-section p {
    font-family: "Inria Sans";
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 29px;
    margin: 0;
}
.suggestions-grid {
    margin-top: 28.74px;
    display: flex;
    gap: 19.8px;
}
.chat-suggestion {
    box-sizing: border-box;
    /* max-width: 352.47px; */
    background: #ffffff;
    border: 2px solid #ff3700;
    border-radius: 10px;
    padding: 22px 18.81px 22px 17.82px;
}
.chat-suggestion p {
    font-family: "Inria Sans";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #000000;
    margin: 0 !important;
}
.chat-suggestion {
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.chat-suggestion.visible {
    opacity: 1;
    transform: translateY(0);
}

.chat-user-section {
    margin-right: 5.13vw;
    margin-top: auto;
    display: flex;
    gap: 25px;
    align-items: center;
}

.chat-interface {
    width: 69vw;
    height: 65px;
    box-sizing: border-box;
    background: #ffffff;
    border: 2px solid #343434;
    border-radius: 7px;
    padding: 17px 16px 18px 16px;
    transition: all 0.3s ease;
}

.chat-interface input {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    border: none;
    font-family: "Inter";
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 29px;
    color: #000000;
}

.chat-interface input:focus {
    outline: none;
}

.chat-interface:focus-within {
    border: 2px solid #ff3700;
    box-shadow: 0 0 0 3px rgba(255, 55, 0, 0.15);
}

.chat-interface input::placeholder {
    color: #000000;
}
.desktop-none {
    display: none;
}
.user-chat-section {
    display: none;
}
.ai-avatar img {
    width: 60px;
    height: 60px;
}

.description-heading-mob {
    display: none;
}
.faq-heading-mob {
    display: none;
}
.copywright-mob {
    display: none;
}
.desktop-hide {
    display: none !important;
}
.part-1 {
    display: flex;
    gap: 16.11px;
    align-items: center;
}
.part-1 p,
.part-2 p {
    font-family: "Inria Sans";
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    color: #ffffff;
    margin: 0;
}
.part-2 {
    display: flex;
    gap: 12.74px;
    align-items: center;
}

.upper-con {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2.22px solid #ffffff;
    padding: 21px 10.26px 19px 11px;
}
.upper-con2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* border-bottom: 2.22px solid #ffffff; */
    padding: 21px 10.26px 19px 11px;
}
.upper-con3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* border-bottom: 2.22px solid #ffffff; */
    padding: 21px 10.26px 19px 11px;
}
.lower-con {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 17px 10.26px 17.96px 11px;
}
.lower-con.part-2 {
    margin-left: 4px;
}
.comparision-box {
    overflow: hidden;
    box-sizing: border-box;
    width: 480px;
    background: #ff3700;
    border: 2.22237px solid #f93e0b;
    border-radius: 10px;
    padding: 0 24px;
    position: relative;
    height: 148px;
}
.comparision-box2 {
overflow: hidden;
    box-sizing: border-box;
    width: 480px;
    background: #ff3700;
    border: 2.22237px solid #f93e0b;
    border-radius: 10px;
    padding: 0 24px;
    position: relative;
    height: 80px;
}
.comparision-box3 {
overflow: hidden;
    box-sizing: border-box;
    width: 480px;
    background: #ff3700;
    border: 2.22237px solid #f93e0b;
    border-radius: 10px;
    padding: 0 24px;
    position: relative;
    height: 80px;
}

.comparision-box::before {
    overflow: hidden;
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.2) 50%,
        transparent 100%
    );
    animation: shine 2s infinite;
    z-index: 1;
}

.comparision-box2::before {
    overflow: hidden;
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.2) 50%,
        transparent 100%
    );
    animation: shine 2s infinite;
    z-index: 1;
}
.comparision-box3::before {
    overflow: hidden;
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.2) 50%,
        transparent 100%
    );
    animation: shine 2s infinite;
    z-index: 1;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.chats-section {
  max-height: 71.33vh;
  height: 71.3vh;
  overflow-y: auto;       /* enable vertical scrolling */
  margin-right: 10px;
  scrollbar-width: thin;  /* Firefox */
  scrollbar-color: #C1BBBB transparent; /* Firefox */
}

/* For WebKit browsers (Chrome, Edge, Safari) */
.chats-section::-webkit-scrollbar {
  width: 8px;
}

.chats-section::-webkit-scrollbar-track {
  background: transparent;
}

.chats-section::-webkit-scrollbar-thumb {
  background-color: #C1BBBB;
  border-radius: 4px;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff3700;
    color: white;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    z-index: 1000;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Typing animation styles */
.chat-bubble {
    background-color: #fff1ee;
    padding: 16px 28px;
    border-radius: 20px;
    border-bottom-left-radius: 2px;
    display: inline-block;
    margin-bottom: 10px;
}

.typing {
    align-items: center;
    display: flex;
    height: 17px;
}

.typing .dot {
    animation: mercuryTypingAnimation 1.8s infinite ease-in-out;
    background-color: #ff3700;
    border-radius: 50%;
    height: 7px;
    margin-right: 4px;
    vertical-align: middle;
    width: 7px;
    display: inline-block;
}

.typing .dot:nth-child(1) {
    animation-delay: 200ms;
}

.typing .dot:nth-child(2) {
    animation-delay: 300ms;
}

.typing .dot:nth-child(3) {
    animation-delay: 400ms;
}

.typing .dot:last-child {
    margin-right: 0;
}

@keyframes mercuryTypingAnimation {
    0% {
        transform: translateY(0px);
        background-color: #ff3700;
    }
    28% {
        transform: translateY(-7px);
        background-color: #ff3700;
    }
    44% {
        transform: translateY(0px);
        background-color: #ff3700;
    }
}
.chat-container > .ai-chat-section {
    margin-bottom: 20px;
    animation: slideInFromLeft 0.3s ease-out;
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.user-chat-section-new {
    animation: slideInFromRight 0.3s ease-out;
}
.user-chat-section-new {
    display: flex;
    align-items: center;
    gap: 19.92px;
    margin-top: 47.65px;
    justify-content: flex-end;
    margin-right: 3.4vw;
}
.user-chat-box {
    max-width: 50.2vw;
    background: #e7e7e7;
    border-radius: 3.87092px;
    padding: 12.48px 22.03px 12.52px 22.56px;

}
.user-chat-box p {
    font-family: "Inria Sans";
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
    color: #000000;
    margin: 0;
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.greeting-text {
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.greeting-text.fade-out {
    opacity: 0;
    transform: translateY(-20px);
}

/* Chat suggestions */
.chat-suggestions-section {
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.chat-suggestions-section.hidden {
    display: none;
    min-height: 0; /* Remove space when completely hidden */
}

.chat-suggestions-section.fade-out {
    opacity: 0;
    transform: translateY(-20px);
}

/* Send animation */
.sending-animation {
    transform: scale(0.8);
    opacity: 0.7;
    transition: all 0.2s ease;
}

/* Hidden class */
.hidden {
    display: none !important;
}
.ai-chat-section.moved-to-top {
    margin-top: 0;
}
.comparision-main.show {
    display: flex;
    justify-content: flex-end;
    margin-right: 120px;
} /* Typewriter animation for AI responses */
.typing-text {
    border-right: 2px solid #fff1ee;
    animation: blink 1s infinite;
}

.typing-text.completed {
    border-right: none;
    animation: none;
}

@keyframes blink {
    0%,
    50% {
        border-color: transparent;
    }
    51%,
    100% {
        border-color: transparent;
    }
}
.user-avatar img {
    width: 60px;
    height: 60px;
}

#features {
    max-width: 85vw;
    padding-top: 229px;
    margin: 0 auto;
}
.feature1 {
    display: flex;
    gap: 182px;
    justify-content: center;
    align-items: center;
}
.description {
    width: 461px;
    display: flex;
    flex-direction: column;
    gap: 42px;
}

.description h2 {
    font-family: "Noto Serif JP";
    font-style: normal;
    font-weight: 700;
    font-size: 50px;
    line-height: 58px;
    display: flex;
    align-items: flex-end;
    color: #000000;
    margin: 0;
}
.decrease-w {
    max-width: 300px !important;
}
.decrease-w2 {
    max-width: 410px !important;
}
.decrease-w3 {
    max-width: 310px !important;
}

.description-text {
    overflow: hidden;
}
.description-text p {
    margin: 0;
    font-family: "Inria Sans";
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 26px;
    color: #000000;
}
.feature-img img {
    width: 657px;
    height: 424px;
    cursor: auto;
}
.feature-img {
    position: relative;
    overflow: hidden;
    display: inline-block;
    cursor: pointer;
}

.feature-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.2) 40%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0.2) 60%,
        transparent 100%
    );
    transform: skewX(-25deg);
    transition: left 0.6s ease;
    z-index: 1;
    pointer-events: none;
}

.feature-img:hover::before {
    left: 100%;
}

.feature-img img {
    display: block;
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}
.reveal-text {
    display: block;
    overflow: hidden;
}

.reveal-line {
    display: block;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-line.animate {
    transform: translateY(0);
    opacity: 1;
    animation: fadeInUp 1.5s ease forwards;
}

/* Staggered animation delays */
.reveal-line:nth-child(1) {
    transition-delay: 0.1s;
}
.reveal-line:nth-child(2) {
    transition-delay: 0.2s;
}
.reveal-line:nth-child(3) {
    transition-delay: 0.3s;
}
.reveal-line:nth-child(4) {
    transition-delay: 0.4s;
}
.reveal-line:nth-child(5) {
    transition-delay: 0.5s;
}
.reveal-line:nth-child(6) {
    transition-delay: 0.6s;
}
.reveal-line:nth-child(7) {
    transition-delay: 0.7s;
}
.reveal-line:nth-child(8) {
    transition-delay: 0.8s;
}

.feature2 {
    margin-top: 181px;
    display: flex;
    align-items: center;
    gap: 146px;
    justify-content: center;
}

.feature3 {
    display: flex;
    margin-top: 180px;
    gap: 179px;
    justify-content: center;
    align-items: center;
}

#faqs {
    max-width: 79.06vw;
    margin: 180px auto;
    margin-bottom: 150.06px;
}
.faq-heading {
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
.faq-heading h2 {
    font-family: "Noto Serif JP";
    font-style: normal;
    font-weight: 700;
    font-size: 56px;
    line-height: 75px;
    color: #000000;
    margin: 0;
    margin-bottom: 19px;
    /* max-width: 333px; */
}
.chats-section.add-overflow {
    overflow: auto;
}
.main-question-section {
    margin-top: 117px;
}
.questions-section {
    display: flex;
    gap: 52px;
    justify-content: center;
    margin-bottom: 34px;
}
.question {
    display: flex;
    align-items: center;
    border-bottom: 2px solid #e7e7e7;
    padding: 0 33.42px 34.49px 33px;
    cursor: pointer;
    width: 100%;
    /* max-width: 30.06vw; */
    justify-content: space-between;
}
.question p {
    font-family: "Inria Sans";
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 26px;
    margin: 0;
    max-width: 543px;
    width: 543px;
}
.question:hover p {
    color: #ff3700;
}

.question:hover svg path {
    fill: #ff3700;
}

#footer {
    max-width: 79.06vw;
    margin: 0 auto;
}
.copywright {
    display: flex;
    flex-direction: column;
    gap: 35.42px;
}
.copywright p {
    font-family: "Inria Sans";
    font-style: normal;
    font-weight: 400;
    font-size: 16.6016px;
    line-height: 20px;
    color: #000000;
    margin: 0;
}

.linkedin-logo {
    display: flex;
    align-items: baseline;
    gap: 6.64px;
}
.linkedin-logo p {
    font-family: "Inria Sans";
    font-style: normal;
    font-weight: 700;
    font-size: 20.5355px;
    line-height: 27px;
    margin: 0;
}
.linkedin-logo p a {
    text-decoration: none;
    color: #ff3700;
}
.footer-section-details {
    display: flex;
    flex-direction: column;
    gap: 26.94px;
}
.footer-section-details p {
    max-width: 654px;
    font-family: "Inria Sans";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 144.55%;
    color: #000000;
    margin: 0;
}

.footer-logo img {
    width: 203px;
    height: 98px;
}
.main-footer-right-section h2 {
    font-family: "Noto Serif JP";
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 38px;
    color: #ff3700;
    margin: 0;
}
.item-list ul {
    padding: 0;
}
.item-list ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 31px;
}
.item-list ul li a {
    text-decoration: underline;
    font-family: "Inria Sans";
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: #000000;
}
.footer-items {
    display: flex;
    gap: 116px;
}
.main-footer {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin: 0 auto;
    gap: 150px;
}
.main-footer-right-section {
    display: flex;
    flex-direction: column;
    gap: 56px;
}
.main-footer-left-section {
    display: flex;
    flex-direction: column;
    gap: 90.32px;
}
.footer-links {
    display: flex;
    justify-content: space-between;
}
.footer-links p {
    font-family: "Inria Sans";
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 18px;
}
.footer-links p a {
    text-decoration: none;
    color: #000000;
}
.footer-links p a:hover{
    color: #ff3700;
}
.main-right-section {
    display: flex;
    flex-direction: column;
    gap: 90px;
}
.logo-and-underline {
    display: flex;
    flex-direction: column;
    gap: 6.2px;
}
.logo-and-underline img {
    width: 111.78px;
}
.send-icon{
    min-width: 47px;
}
.send-icon svg {
    cursor: pointer;
}
.send-icon svg.disabled {
    cursor: none;
}

.features-tab a span {
    display: flex;
}

.features-tab {
    position: relative;
}

.comparision-main, .comparision-main2, .comparision-main3 {
    position: absolute;
    margin-top: 14px;
    transition: 0.3s;
    height: 0px;
    overflow: hidden;
}

.features-tab:hover .comparision-main {
    height: 160px;
}
.features-tab a {
    display: flex;
    gap: 8px;
}
.solutions-tab:hover .comparision-main2 {
    height: 80px;
}
.solutions-tab a {
    display: flex;
    gap: 5px;
}
.team-tab:hover .comparision-main3 {
    height: 80px;
}
.team-tab a {
    display: flex;
    gap: 8px;
}
/* Bullet point styles for message content */
.message-content ul {
    margin: 0.5rem 0;
    padding-left: 0;
    list-style: none;
}

.message-content li {
    margin: 0.3rem 0;
    padding-left: 1rem;
    position: relative;
}

.message-content li:before {
    content: "•";
    color: #ff6b35;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.mobile-menu-overlay {
    display: none;
}
.mobile-menu {
    display: none;
}
.desktop-none2 {
    display: none;
}

.chat-icon {
    display: none;
}

.full-screen .user-chat-section-new{
    margin-right: 0 !important;
}
@media (max-width: 1024px) {
    .question {
        max-width: 36.06vw !important;
    }
    .desktop-none2 {
        display: block;
    }

    .heading-and-description p {
        width: unset;
    }
    .logo-section-nav-items ul {
        display: none;
    }
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu {
        position: fixed;
        top: 0;
        right: -100%; 
        height: 100vh;
        background: #ff3700;
        z-index: 999;
        transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); /* Changed from left to right */
        display: flex;
        flex-direction: column;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3); /* Changed shadow direction */
    }

    .mobile-menu.active {
        right: 0;
    }

    /* Menu Header */
    .menu-header {
        padding: 31.9px 30.62px 76.81px 22px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .menu-logo img {
        height: 46px;
        width: 96px;
    }

    .close-button {
        cursor: pointer;
        background: none;
        border: none;
        padding: 5px;
        border-radius: 50%;
        transition: background-color 0.2s ease;
    }

    .close-button:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

    .close-button img {
        width: 20px;
        height: 20px;
        filter: brightness(0) invert(1);
    }

    /* Menu Content */
    .menu-content {
        flex: 1;
    }

    .menu-item {
        display: block;
        color: white;
        text-decoration: none;
        padding: 18px 30px;
        font-size: 18px;
        font-weight: 500;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }


    .menu-item::before {
        content: "";
        position: absolute;
        right: -100%; 
        top: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.1),
            transparent
        );
        transition: right 0.5s ease; /* Changed from left to right */
    }

    .menu-item:hover::before {
        right: 100%; /* Changed from left: 100% to right: 100% */
    }

    /* Demo content */
    .main-content {
        padding: 40px 20px;
        text-align: center;
    }

    .demo-text {
        color: #666;
        font-size: 16px;
        margin-bottom: 20px;
    }

    .mobile-menu {
        width: 100%;
    }

    .menu-item {
        font-family: 'Noto Serif JP';
        font-style: normal;
        font-weight: 500;
        font-size: 20px;
        line-height: 26px;
        color: #ffffff;
        padding: 18px 0 16px 22px;
    }

    /* Animation for menu items - Modified to slide from right */
    .mobile-menu.active .menu-item {
        animation: slideInFromRight 0.5s ease forwards; /* Changed animation name */
        opacity: 0;
        transform: translateX(30px); /* Changed from -30px to 30px */
    }

    .mobile-menu.active .menu-item:nth-child(1) {
        animation-delay: 0.1s;
    }
    .mobile-menu.active .menu-item:nth-child(2) {
        animation-delay: 0.15s;
    }
    .mobile-menu.active .menu-item:nth-child(3) {
        animation-delay: 0.2s;
    }
    .mobile-menu.active .menu-item:nth-child(4) {
        animation-delay: 0.25s;
    }
    .mobile-menu.active .menu-item:nth-child(5) {
        animation-delay: 0.3s;
    }
    .mobile-menu.active .menu-item:nth-child(6) {
        animation-delay: 0.35s;
    }

    /* Updated keyframe animation for right slide */
    @keyframes slideInFromRight {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
}

/* .profile-img {
  width: 99.5px;
  height: 100px;
  border: 2px solid #FF3700;
  border-radius: 100%;    
  overflow: hidden;       
  display: flex;
  align-items: center;
  justify-content: center;
} */

.profile-img img {
    /* width: 99.55px; */
    height: 100px;
    object-fit: cover; /* Ensures the image fills the container properly */
    display: block;
}
.name-and-about {
    margin-top: 16px;
}
.name-and-about h2 {
    font-family: "Inria Sans";
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    color: #000000;
    margin: 0;
    margin-bottom: 14px;
}
.name-and-about p {
    font-family: "Inria Sans";
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: 22px;
    color: #000000;
    text-wrap: pretty;
}
.partner1 {
    margin-top: 22.6px;
}
.partner2 {
    margin-top: 30.82px;
}
.chat-box.meet-team {
    flex-direction: column !important;
    align-items: unset !important;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.team-chat .partner1,
.team-chat .partner2 {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.team-chat .partner1 {
    animation-delay: 0.2s;
}

.team-chat .partner2:nth-of-type(2) {
    animation-delay: 0.4s;
}

.team-chat .partner2:nth-of-type(3) {
    animation-delay: 0.6s;
}

.team-chat .partner2:nth-of-type(4) {
    animation-delay: 0.8s;
}
@media (max-width: 900px){
    .suggestions-grid{
        flex-direction: column !important;
    }
    .chat-box{
        max-width: 41.2vw;
    }
    .chats-section{
        height: 80.3vh;
        max-height: 80.3vh;
    }
}

@media (min-width: 700px) and (max-width: 1235px) {
    .reveal-text {
        display: block; /* No flex, avoid layout forcing */
        white-space: normal; /* Allow wrapping */
    }

    .reveal-line {
        display: inline; /* All lines behave like inline text */
        white-space: nowrap; /* Prevent breaking within each line */
    }
    .footer-section-details p {
        width: unset !important;
    }
}
@media (max-width: 1235px) {
    .feature1 {
        flex-direction: column-reverse;
        align-items: unset;
    }
    .feature2 {
        flex-direction: column;
        align-items: unset;
    }
    .feature3 {
        flex-direction: column-reverse;
        align-items: unset;
    }
    .description {
        width: unset;
    }
    .footer-items {
        flex-direction: column;
    }
    .main-footer-right-section {
        flex-direction: column;
    }
    .main-footer {
        flex-direction: column;
        align-items: center;
    }
    .copywright {
        display: none;
    }
    .footer-section-details {
        align-items: center;
        justify-content: center;
    }
    .footer-section-details p {
        text-align: center;
    }
    .footer-items {
        flex-direction: column;
        gap: 24.82px !important;
    }
    .item-list ul {
        gap: 24.82px !important;
        margin: 0;
    }
    .item-list ul li {
        border-bottom: 1px solid rgba(255, 55, 0, 0.22);
        padding-bottom: 25.88px;
        text-align: center;
        width: 85vw;
    }
    
    .main-footer-right-section {
        align-items: center;
        justify-content: center;
        margin-top: 57.88px;
    }
    .copywright-mob {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 60.8px;
    }
    #faqs {
        max-width: 40vw !important;
    }
}

.question p br{
    display: none;
}


@media (max-width: 768px) {
    .mobile-feature-item {
          position: relative;

    display: flex;
    align-items: center;
    padding: 18px 33px 16px 22px;
    justify-content: space-between;
    color: #fff;
    font-size: 14px;
    border-bottom: 2px solid rgba(255, 255, 255, -1px);
}
.mobile-feature-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
  filter: blur(2px);
  pointer-events: none;
}
.comp-img{
    width: 36px !important;
    height: 36.04px !important;
}
.mobile-feature-item img {
    width: 30px;
    height: 28px;
}
.use-img{
    width: 30px !important;
    height: 26.22px !important;
}
.int-img{
    width: 34px !important;
    height: 31px !important;
}
.mobile-features-menu {
    background: linear-gradient(180deg, rgba(255, 150, 122, 0.3) 2.82%, rgba(255, 103, 61, 0.3) 100%);
    backdrop-filter: blur(2.58004px);    
}

    .logo-section-nav-items ul {
        display: none;
    }
    .desktop-none {
        display: flex;
    }
    .top-section {
        margin-top: 18.5px !important;
        margin-bottom: 0 !important;
        padding: 0 20px 0 20px;
    }
    .main-section {
        margin-top: 71.5px;
    }
    .main-heading {
        font-family: "Noto Serif JP";
        font-style: normal;
        font-weight: 600;
        font-size: 46px;
        line-height: 57px;
        text-align: center;
        color: #000000;
    }

    .heading-and-description .main-heading {
        max-width: 306px;
        min-height: 90px;
        text-wrap: wrap;
    }
    .heading-and-description p {
        width: 326px;
        height: 66px;
        font-family: "Inria Sans";
        font-style: normal;
        font-weight: 700;
        font-size: 16px;
        line-height: 140%;
        text-align: center;
        color: #000000;
    }
    .heading-and-description {
        gap: 40px;
    }
    .main-chat-section {
        margin-top: 40px;
        background-image: url("images/updated-wave.svg");
        height: 92vh;
        padding-bottom: 57.39px;
        box-sizing: border-box;
    }
    .chat-container {
        box-sizing: border-box;
        width: 350px;
        height: 80.5vh;
        background: #ffffff;
        border: 5px solid #000000;
        border-radius: 27px;
        padding: 50.92px 40px 0 40px;
        overflow: hidden;
    }

    .greeting-text h2 {
        font-size: 32px !important;
    }
    .ai-chat-section {
        margin: 0;
        margin-top: 40px;
        gap: 10.63px;
        margin-right: 16px;
    }
    #fullscreen-suggestionsSection > .ai-chat-section {
        margin-right: 16px;
    }

    .ai-chat-section:first-child {
        margin-top: 40px;
    }
    .no-mr{
        margin-right: unset !important;
    }
    .ai-avatar img {
        width: 33.68px;
        height: 38px;
    }
    .chat-box {
        padding: 10.61px 13.15px 14.4px 11.46px;
        background: #fff1ee;
        border-radius: 3.73175px;
        display: flex;
        justify-content: center;
        align-items: center;
        max-width: 527.6px;
    }
    .chat-box p {
        font-family: "Barlow";
        font-style: normal;
        font-weight: 500;
        font-size: 12.4392px;
        line-height: 26px;
        margin: 0;
        color: #000000;
    }
    .chat-suggestions-section {
        display: none;
    }

    .user-chat-section-new {
        display: flex;
        align-items: center;
        gap: 12px !important;
        margin-top: 40.11px;
        margin-bottom: 40px;
        justify-content: flex-end;
        margin-right: 16px !important;
    }

    .user-chat-box {
        max-width: 172px;
        background: #e7e7e7;
        border-radius: 3.87092px !important;
        padding: 9px 8px 10px 10px !important;
    }
    .user-chat-box p {
        margin: 0;
        font-family: "Barlow";
        font-style: normal;
        font-weight: 500 !important;
        font-size: 12.9031px !important;
        line-height: 26px !important;
        color: #101010;
    }
    .user-avatar img {
        width: 33px !important;
        height: 33px !important;
    }
    .chat-user-section {
        margin: 0;
        gap: 12px;
        padding-bottom: 33px;
    }
    .main-chat-section {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }
    .main-container-chat {
        margin: 0 auto;
    }
    .chats-section {
        max-width: 480px !important;
        height: 480px !important;
        overflow: scroll;
        /* margin-bottom: 35.02px; */
    }
    .chat-container {
        max-width: 350px;
        width: 100%;
        padding-left: 30px;
        padding-right: 30px;
    }
    .chat-interface {
        box-sizing: border-box;
        width: 230px;
        height: 40px;
        background: #ffffff;
        border: 1.17845px solid #000000;
        border-radius: 2.17053px;
        padding: 0;
        padding-left: 10px;
    }

    .chat-interface input {
        box-sizing: border-box;
        width: 100%;
        height: 100%;
        border: none;
        font-family: "Inter";
        font-style: normal;
        font-weight: 400;
        font-size: 12px !important;
        line-height: 7px;
        color: #000000;
    }

    .chat-interface input::placeholder {
        color: #959595;
    }
    .send-icon svg {
        width: 29px;
        height: 29px;
    }
    .mobile-home-indicator {
        display: flex;
        justify-content: center;
        align-items: center;
        padding-bottom: 21.59px;
    }
    .comparision-box {
        display: none;
    }
    .questions-section {
        flex-direction: column;
        gap: 30.12px !important;
    }
    .question {
        max-width: 100% !important;
    }
    .main-footer {
        flex-direction: column;
    }
    .footer-logo {
        display: flex;
        justify-content: center;
    }
    .footer-section-details p {
        width: 323px !important;
        text-align: center;
    }
    #footer {
        max-width: 100% !important;
        padding: 99px 22px;
        padding-bottom: 20px;
    }
    #faqs {
        margin-top: 100.88px !important;
        max-width: 100% !important;
        margin-bottom: 0 !important;
    }
    .main-footer {
        justify-content: center !important;
        align-items: center !important;
    }

    .main-footer-right-section {
        margin-top: 57.88px !important;
        justify-content: center !important;
        align-items: center !important;
    }
    .footer-items {
        flex-direction: column;
        gap: 24.82px !important;
    }
    .item-list ul {
        gap: 24.82px !important;
        margin: 0;
    }
    .item-list ul li {
        border-bottom: 1px solid rgba(255, 55, 0, 0.22);
        width: 342px !important;
        padding-bottom: 25.88px;
        text-align: center;
    }
    .desktop-hide {
        display: block !important;
    }
    .mobile-hide {
        display: none !important;
    }
    .copywright-mob {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 60.8px;
    }
    .copywright-mob p {
        font-family: "Inria Sans";
        font-style: normal;
        font-weight: 400;
        font-size: 20px !important;
        line-height: 20px;
        color: #000000;
        margin: 0;
    }
    .main-right-section {
        gap: 47.88px !important;
    }
    .main-question-section {
        margin-top: 0 !important;
        padding-left: 20px;
        padding-right: 20px;
    }
    .question p {
        font-family: "Inria Sans";
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        display: flex;
        align-items: flex-end;
        color: #000000;
        width: 252px !important;
    }
    .question {
        padding-bottom: 30.88px !important;
        padding-right: 11px !important;
        padding-left: 10px !important;
        gap: 36px !important;
        box-sizing: border-box;
        max-width: unset !important;
    }
    .faq-heading {
        display: none !important;
    }
    .faq-heading-mob {
        display: block !important;
        margin-left: 30px;
        margin-bottom: 32.12px !important;
    }
    .faq-heading-mob h2 {
        font-family: "Volkhov";
        font-style: normal;
        font-weight: 400;
        font-size: 40px;
        line-height: 52px;
        display: flex;
        align-items: flex-end;
        color: #000000;
        margin: 0;
    }
    #features {
        max-width: 100% !important;
        padding-top: 100px !important;
        padding-left: 20px;
        padding-right: 20px;
    }
    .feature1,
    .feature3 {
        flex-direction: column-reverse;
        justify-content: left !important;
        align-items: unset !important;
        gap: 63px !important;
    }
    .feature2 {
        flex-direction: column;
        justify-content: left !important;
        align-items: unset !important;
        gap: 63px !important;
        margin-top: 62.58px !important;
    }
    .feature3 {
        margin-top: 62.88px !important;
    }
    .feature-img img {
        width: auto;
    }
    .description {
        gap: 24px !important;
        padding-left: 12px !important;
        width: unset !important;
    }

    .description-heading {
        display: block !important;
        max-width: 100%;
        min-width: fit-content;
        width: 100%;
    }
    .description-heading h2 {
        font-family: "Noto Serif JP";
        font-style: normal;
        font-weight: 700 !important;
        font-size: 32px !important;
        line-height: 44px !important;
        display: flex;
        align-items: flex-end;
        color: #000000;
    }
    .description-text p {
        font-family: "Inria Sans";
        font-style: normal;
        font-weight: 400 !important;
        font-size: 16px !important;
        line-height: 22px !important;
        color: #000000;
    }
    .description-heading-mob h2:nth-child(2) {
        margin: 0;
        /* max-width: 180px !important;  */
    }
    .increase-w {
        max-width: 240px !important;
    }

    .decrease-wx {
        max-width: 160px !important;
    }
    .logo-section img {
        width: 97px !important;
        height: 46px !important;
    }
    .icon-container svg {
        width: 33px !important;
        height: 27px !important;
    }
    .chat-bubble {
        background-color: #fff1ee;
        padding: 6px 12px !important;
        border-radius: 20px;
        border-bottom-left-radius: 2px;
        display: inline-block;
        margin-bottom: 10px;
    }
    .decrease-wz {
        max-width: 160px !important;
    }
    .decrease-wx2 {
        max-width: 180px !important;
    }
    .typing .dot {
        animation: mercuryTypingAnimation 1.8s infinite ease-in-out;
        background-color: #ff3700;
        border-radius: 50%;
        height: 5px !important;
        margin-right: 4px;
        vertical-align: middle;
        width: 5px !important;
        display: inline-block;
    }
    .name-and-about h2 {
        font-family: "Inria Sans";
        font-style: normal;
        font-weight: 600;
        font-size: 16px !important;
        line-height: 18px !important;
        color: #000000;
        margin: 0;
        margin-bottom: 14px;
    }
    .name-and-about p {
        font-family: "Inria Sans";
        font-style: normal;
        font-weight: 300;
        font-size: 13px !important;
        line-height: 18px !important;
        color: #000000;
    }
    /* .profile-img {
            width: 79.5px !important;
            height: 80px !important;
            border: 2px solid #FF3700;
            border-radius: 100%;    
            overflow: hidden;       
            display: flex;
            align-items: center;
            justify-content: center;
        } */
    .chat-screen.active .chat-suggestions-section {
        display: block;
        /* padding: 16px; */
        margin-right: 16px;
    }
    .hamburger-icon {
        display: block !important;
    }

    .linkedin-logo p {
        font-size: 21px;
    }
    .mobile-feature-item p{
font-family: 'Noto Serif JP';
font-style: normal;
font-weight: 500;
font-size: 18px !important;
line-height: 24px;
color: #FFFFFF;
margin: 0;

    }
    #main-greeting{
        display: none;
        margin-bottom: 40px;
    }
    .chat-icon {
        position: fixed;
        bottom: 8%;
        right: 19px;
        display: flex;
        align-items: center;
        text-decoration: none;
        z-index: 9999;
    }

    .chat-bubble-float {
        color: #000000;
        border-radius: 20px;
        font-size: 16px;
        font-family: sans-serif;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
        margin-right: 10px;
        white-space: nowrap;
        position: relative;
        padding: 14px;
        /* padding: 10.61px 13.15px 14.4px 11.46px; */
        background: #fff1ee;
        border-radius: 3.73175px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 10px;
    }
    .chat-bubble-float p{
        font-family: "Barlow";
        font-style: normal;
        font-weight: 500;
        margin: 0;
    }

    .chat-icon-image {
        width: 70px;
        height: 70px;
        background-color: #fe4918;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        overflow: hidden;
        filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.3));
        position: relative;
        flex-shrink: 0;
    }

    .chat-icon-image img {
        width: 70%;
        height: 80%;
        margin-top: 18px;
    }

    /* Glare animation */
    .chat-icon-image::before {
        content: "";
        position: absolute;
        top: -50%;
        left: -50%;
        width: 60px;
        height: 120px;
        background: linear-gradient(
            120deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0) 100%
        );
        transform: translateX(-100%) rotate(25deg);
        animation: glareSweep 3s ease-in-out infinite;
        pointer-events: none;
        z-index: 2;
    }

    @keyframes glareSweep {
        0% {
            transform: translateX(-100%) rotate(25deg);
            opacity: 0;
        }
        50% {
            opacity: 1;
        }
        100% {
            transform: translateX(100%) rotate(25deg);
            opacity: 0;
        }
    }
    .question p br{
            display: inline;
    }
    .mobile-send-icon{
        min-width: unset !important;
    }
    .mobile-hide-feature{
        display: none !important;
    }

}


.full {
    width: 100% !important;
}
.full input {
    font-size: 16px !important;
}
.full-height {
    height: 85vh !important;
        /* overflow-y: hidden !important; */
    margin-right: 0 !important;
}
#chatScreen .full-chat p {
    font-size: 16px !important;
}
#chatScreen .user-chat-box p {
    font-size: 16px !important;
}
#chatScreen .user-chat-box {
    max-width: unset !important;
}
#chatScreen .chat-suggestion p {
    font-size: 16px !important;
}
#chatScreen .chats-section {
    max-height: unset !important;
}
.full-screen {
    margin-top: 100px !important;
    margin-right: 16px !important;
}
.full-send{
    min-width: unset !important;
}

.full-sc {
    flex-direction: column !important;
}
.full-view {
    width: unset !important;
}
.full-v {
    padding-bottom: 0;
    margin-right: 16px;
    margin-top: 20px;
}

.chat-screen.active {
    bottom: 0;
}

.chat-header {
    padding: 16px;
    font-weight: bold;
    /* background-color: #FF3700; */
    color: white;
}

.chat-body {
    padding: 16px 0;
    padding-left: 16px;
    overflow-y: auto;
    height: calc(100% - 85px);
    display: flex;
    flex-direction: column;
    gap: 2px;
    /* justify-content: space-between; */
    padding-top: 0 !important;
    padding-bottom: 0;
}

.chat-screen {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    transform: scale(0);
    transform-origin: bottom right;
    transition: transform 0.4s ease, opacity 0.4s ease;
    opacity: 0;
    z-index: 9998;
}

.chat-screen.active {
    transform: scale(1);
    opacity: 1;
}

.close-btn {
    float: right;
    font-size: 32px;
    cursor: pointer;
    color: black;
    margin-top: -4px;
}
.chat-header {
    font-family: "Barlow";
    font-style: normal;
    font-weight: 500;
    font-size: 18.1539px;
    line-height: 33px;
    color: white;
}

/* Hide fullscreen chat and floating icon on desktop */
@media (min-width: 769px) {
    /* Hide the floating chat icon on desktop */
    .chat-icon {
        display: none !important;
    }

    .chat-screen {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }

    .chat-screen.active {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
        transform: translateX(100%) !important;
    }
}

@media (min-width: 1024px) {
    .chat-icon,
    .chat-screen,
    .chat-screen.active {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
        z-index: -1 !important;
    }
    
}
@media (min-width: 769px) {
    .chat-screen * {
        pointer-events: none !important;
    }

    /* Hide all fullscreen chat related elements */
    .chat-screen .chat-header,
    .chat-screen .chat-body,
    .chat-screen .close-btn {
        display: none !important;
    }
}

.chat-suggestion:hover {
    background-color: #ff3700;
    transition: 0.05s ease-in-out;
}

.chat-suggestion:hover p {
    color: #fff;
}
.hamburger-icon {
    display: none;
}


.hidden {
    display: none;
}

.chevron-icon {
    display: inline-block;
    margin-left: 8px;
    vertical-align: middle;
}
.item-list ul li a:hover{
    color: #ff3700 !important;
}

@media (max-width: 1599px) {
  p {
    font-size: 16px !important;
  }
  .footer-section-details p{
    max-width: 550px !important;
  }
  .main-footer{
    gap: 0;
  }
}

.heading-and-description p {
  font-size: 32px !important;
}

@media (min-width: 1600px) {
  p {
    font-size: 18px !important;
  }
}

@media (min-width: 1920px) {
  p {
    font-size: 20px !important;
  }
  .main-right-section{
    gap: 130px !important;
  }
}
@media (max-width: 768px){
    
    .heading-and-description p {
    font-size: 16px !important;
    }
}
.mCustomScrollBox{
    height: unset !important;
}
/* .mCustomScrollBox{
    height: 0 !important;
} */
.chats-section .mCSB_container {
  margin-right: 0 !important;
}

.mCS-my-theme.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ background-color: #fff1ee !important; }

/* —————————————————————————————————————
Table container for spacing
————————————————————————————————————— */
.table-container {
  margin: 30px 0 !important; /* Adds space above and below the table */
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
}

/* —————————————————————————————————————
Table as the single rounded box
————————————————————————————————————— */
.chat-response-table,
table.chat-response-table {
  width: 100% !important;
  margin: 0 !important;
  font-family: "Inria Sans", sans-serif !important;
  
  /* Separate mode with no spacing for rounded corners */
  border-collapse: separate !important;
  border-spacing: 0 !important;
  
  /* The outer border */
  border: 2px solid #FF9B81 !important;
  border-radius: 8px !important;
  
  /* Background */
  background-color: #FFF1EE !important;
  
  /* Clip content to rounded corners */
  overflow: hidden !important;
}

/* —————————————————————————————————————
Cell styling and internal borders only
————————————————————————————————————— */
.chat-response-table th,
.chat-response-table td {
  padding: 12px 15px !important;
  line-height: 1.4 !important;
  vertical-align: top !important;
  
  /* Start with no borders */
  border: none !important;
}

/* —————————————————————————————————————
Add only internal borders between cells
————————————————————————————————————— */
/* Right border for all cells except last in row */
.chat-response-table th:not(:last-child),
.chat-response-table td:not(:last-child) {
  border-right: 1px solid #FF9B81 !important;
}

/* Bottom border for all header cells */
.chat-response-table thead th {
  border-bottom: 1px solid #FF9B81 !important;
}

/* Bottom border for all body rows except last */
.chat-response-table tbody tr:not(:last-child) td {
  border-bottom: 1px solid #FF9B81 !important;
}

/* Header styling */
.chat-response-table th {
  background-color: #FFCFC2 !important;
  color: #000 !important;
  font-weight: 600 !important;
  text-align: left !important;
}

/* Alternating row color */
.chat-response-table tr:nth-child(even) td {
  background-color: #FFF1EE  !important;
}
/* —————————————————————————————————————
Responsive tweaks
————————————————————————————————————— */
@media (max-width: 768px) {
  .chat-response-table th,
  .chat-response-table td {
    padding: 8px 10px !important;
  }
  
  /* Reduce spacing on mobile */
  .table-container {
    margin: 20px 0 !important;
  }
}


/* 🔸 ACCORDION STYLES - Add these to your paste.txt CSS file */

/* Accordion Container */
.accordion-container {
    margin: 15px 0;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.accordion-minimal {
    display: flex;
    flex-direction: column;
    gap: 0px;
    width: 100%;
}

.accordion-minimal .accordion-item {
    border: none;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    width: 100%;
    margin-bottom: 2px;
}

.accordion-minimal .accordion-item:last-child {
    margin-bottom: 0;
}

.accordion-minimal .accordion-header {
    background: transparent !important;
    color: #000 !important;
    padding: 15px 40px !important;
    cursor: pointer !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    border: none !important;
    user-select: none;
    width: 100%;
    box-sizing: border-box;
}

/* Hover effect - keep the orange underline */
.accordion-minimal .accordion-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 40px;
    right: 40px;
    width: auto;
    height: 2px;
    background: #ff3700 !important;
    transition: all 0.3s ease;
    z-index: 1;
    transform: scaleX(0);
    transform-origin: left;
}

.accordion-minimal .accordion-header:hover {
    color: #ff3700 !important;
    background: rgba(255, 55, 0, 0.02) !important;
}

.accordion-minimal .accordion-header:hover::after {
    transform: scaleX(1) !important;
}

.accordion-minimal .accordion-header.active {
    color: #ff3700 !important;
    background: rgba(255, 55, 0, 0.05) !important;
}

.accordion-minimal .accordion-header.active::after {
    transform: scaleX(1) !important;
}

.accordion-minimal .accordion-content {
    background: #FFF1EE !important;
    padding: 0 !important;
    max-height: 0 !important;
    overflow: hidden !important;
    transition: max-height 0.4s ease, padding 0.4s ease, border 0.4s ease !important;
    width: 100%;
    box-sizing: border-box;
    border: none !important;
    box-shadow: none !important;
}

/* 🔸 NEW: Add thin orange border when accordion is expanded */
.accordion-minimal .accordion-content.active {
    max-height: 1000px !important;
    padding: 0 !important;
    border: 1px solid #FF9B81 !important;
    border-radius: 4px !important;
    margin-top: 5px !important;
}

.accordion-minimal .accordion-content-inner {
    padding: 20px 40px !important;
    width: 100%;
    box-sizing: border-box;
}

.accordion-minimal .accordion-arrow {
    color: #ff3700 !important;
    transition: all 0.3s ease !important;
    font-weight: bold !important;
    margin-left: -15px !important;
}

.accordion-minimal .accordion-arrow.active {
    transform: rotate(180deg) !important;
}

/* Accordion Header Section */
.accordion-header-section {
    margin-bottom: 15px;
}

.accordion-header-section h3 {
    font-family:  "Inria Sans", sans-serif;
    font-weight: 700;
    line-height: 32px;
    color: #000000;
    margin: 0;
}

/* Content sections inside accordion */
.content-section {
    font-family: "Inria Sans", sans-serif;
    color: #000000;
}

.content-section h4 {
    font-weight: 600;
    margin: 0 0 15px 0;
    color: #000000;
}

.content-section h5 {
    font-weight: 600;
    margin: 25px 0 15px 0;
    color: #000000;
}

.content-section p {
    line-height: 1.6;
    margin: 0 0 15px 0;
    color: #000000;
}

.content-section ul {
    margin: 0 0 15px 0;
    padding-left: 20px;
}

.content-section li {
    margin: 5px 0;
    color: #000000;
}

/* Implementation list styling */
.implementation-list ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.implementation-list li {
    margin-bottom: 12px !important;
    padding: 12px 16px !important;
    background: #fff1ee !important;
    border-radius: 6px !important;
    display: flex !important;
    align-items: center !important;
}

.implementation-list li > span:first-child {
    margin-right: 12px !important;
}

.implementation-list li > div {
    flex: 1;
}

.implementation-list li > div > div:first-child {
    font-weight: 600 !important;
    color: #000 !important;
}

.implementation-list li > div > div:last-child {
    color: #000 !important;
}

/* Process list styling */
.process-list ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.process-list li {
    margin-bottom: 12px !important;
    padding: 12px 16px !important;
    background: #fff1ee !important;
    border-radius: 6px !important;
    display: flex !important;
    align-items: center !important;
}

.process-list li > span:first-child {
    margin-right: 12px !important;
}

.process-list li > div {
    flex: 1;
}

.process-list li > div > div:first-child {
    font-weight: 600 !important;
    color: #000 !important;
}

.process-list li > div > div:last-child {
    color: #000 !important;
}

/* Risk features styling */
.risk-features {
    margin: 20px 0;
}

.risk-features h5 {
    font-weight: 600;
    margin: 20px 0 10px 0;
    color: #000000;
}

/* Gradient risk visualization */
.risk-visualization {
    background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 50%, #6bcf7f 100%);
    height: 60px;
    border-radius: 8px;
    margin: 15px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

/* Compliance section */
.compliance-section {
    margin: 20px 0;
}

.compliance-section h5 {
    font-weight: 600;
    margin: 20px 0 10px 0;
    color: #000000;
}

/* Fraud detection section */
.fraud-detection {
    margin: 20px 0;
}

.fraud-detection h4 {
    font-weight: 600;
    margin: 20px 0 15px 0;
    color: #000000;
}

.fraud-score-chart {
    text-align: center;
    margin: 20px 0;
}

.fraud-score-distribution {
    width: 100%;
    border: 2px solid #FF9B81;
    border-radius: 8px;
    overflow: hidden;
    background-color: #FFF1EE;
}

.fraud-score-header {
    background-color: #FFCFC2;
    padding: 12px 15px;
    font-weight: 600;
    color: #000;
    border-bottom: 1px solid #FF9B81;
}

.fraud-score-content {
    display: flex;
    justify-content: space-around;
    padding: 20px;
}

.fraud-score-item {
    text-align: center;
    background-color: #FFF1EE;
    padding: 15px 20px;
    border-radius: 8px;
    flex: 1;
    margin: 0 5px;
}

.fraud-score-label {
    font-weight: 600;
    margin: 5px 0;
}

.fraud-score-value {
    font-weight: 600;
}

.fraud-score-value.low-risk {
    color: #28a745;
}

.fraud-score-value.medium-risk {
    color: #ffc107;
}

.fraud-score-value.high-risk {
    color: #dc3545;
}

/* Detection features list */
.detection-features {
    margin: 30px 0;
    background-color: #FFF1EE;
    padding: 10px;
    border-radius: 8px;
}

.detection-features ul {
    margin: 0;
    padding-left: 20px;
    color: #000;
}

.detection-features li {
    margin: 8px 0;
}

/* Ensure chat box contains accordions properly */
.chat-box .accordion-container {
    width: 100%;
    max-width: 100%;
    margin: 10px 0;
}

/* Remove any potential shadows or borders from non-active elements */
.accordion-container,
.accordion-minimal,
.accordion-minimal .accordion-item,
.accordion-minimal .accordion-header,
.accordion-minimal .accordion-content-inner {
    box-shadow: none !important;
    border: none !important;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .accordion-minimal .accordion-header {
        padding: 12px 20px !important;
    }
    
    .accordion-minimal .accordion-header::after {
        left: 20px;
        right: 20px;
    }
    
    .accordion-minimal .accordion-content-inner {
        padding: 15px 20px !important;
    }
    
    .accordion-minimal .accordion-content.active {
        border: 1px solid #FF9B81 !important;
        margin-top: 3px !important;
    }
    
    .fraud-score-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .fraud-score-item {
        margin: 5px 0;
    }
}

/* Clean Checklist Styles - Fixed alignment and font sizes */
.checklist-container {
    margin: 20px 0;
    padding: 20px;
    background: #fff1ee;
    border-radius: 12px;
    width: 100%;
    box-sizing: border-box;
    text-align: left; /* Ensure left alignment */
}

.checklist-section {
    margin-bottom: 20px;
    text-align: left; /* Ensure left alignment */
}

.checklist-section:last-child {
    margin-bottom: 0;
}

.checklist-section-title {
    font-weight: 600; 
    color: #000000;
    margin-bottom: 8px;
    font-family: "Inria Sans";
    text-align: left; /* Ensure left alignment */
}

.checklist-items {
    margin-left: 0;
    padding-left: 0;
    text-align: left; /* Ensure left alignment */
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 6px;
    padding: 2px 0;
    transition: all 0.3s ease;
    text-align: left; /* Ensure left alignment */
}

.checklist-item:hover {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    padding: 2px 8px;
}

.checklist-indicator {
    width: 6px; /* Increased from 4px */
    height: 6px; /* Increased from 4px */
    border-radius: 50%;
    background: #000000;
    margin-right: 8px;
    margin-top: 8px;
    flex-shrink: 0;
}

.checklist-text {
    color: #000000;
    line-height: 1.4;
    font-family: "Inria Sans";
    margin: 0;
    text-align: left; /* Ensure left alignment */
}

.checklist-footer {
    margin-top: 15px;
    font-style: italic;
    color: #000000;
    text-align: left; /* Ensure left alignment */
}

/* Mobile responsive */
@media (max-width: 768px) {
    .checklist-container {
        padding: 15px;
    }
    
    
    .checklist-indicator {
        width: 5px;
        height: 5px;
        margin-top: 7px;
    }
}

/* Mobile Visual Response Styles */
.mobile-mockup-container {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 20px 0; /* Increased margin */
    padding: 0; /* Removed padding */
    text-align: left;
}

.mobile-visual-container {
    margin: 15px 0;
    padding: 15px;
    background: #fff1ee;
    border-radius: 12px;
    width: 100%;
    box-sizing: border-box;
    text-align: left;
}

.mobile-bullet-points {
    margin-top: 15px; /* Added top margin */
}
.mobile-mockup-svg {
    max-width: 300px;
    width: 100%;
    height: auto;
}

.mobile-bullet-points {
    margin-top: 20px;
}

.mobile-bullet-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;
    padding: 4px 0;
    line-height: 1.4;
    color: #000000;
    font-family: "Inria Sans", sans-serif;
}

.mobile-bullet-text {
    margin: 0;
    color: #000000;
    line-height: 1.4;
    font-family: "Inria Sans", sans-serif;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .mobile-mockup-container {
        padding: 15px;
    }
    
    .mobile-mockup-svg {
        max-width: 250px;
    }
    
}

/* Tabbed Response Styles - All styling in CSS */
.tabbed-container {
    margin: 20px 0;
    padding: 20px;
    background: #fff1ee;
    border-radius: 12px;
    width: 100%;
    box-sizing: border-box;
    text-align: left;
    box-shadow: none !important;
}

.departments-table {
    width: 100% !important;
    border-collapse: collapse !important;
    margin-top: 15px !important;
    /* border-top: 1px solid #FF9B81 !important; */
    border-bottom: 1px solid #FF9B81 !important;
    border-left: none !important;
    border-right: none !important;
    border-radius: 0 !important;
    overflow: hidden !important;
    box-shadow: none !important;
}

.department-header {
    background-color: #FFCFC2 !important;
    color: #000000 !important;
    font-weight: 600 !important;
    padding: 12px 15px !important;
    text-align: left !important;
    border-top: none !important;
    /* border-bottom: 1px solid #FF9B81 !important; */
    border-left: none !important;
    border-right: none !important;
    box-shadow: none !important;
}

.department-cell {
    padding: 15px !important;
    line-height: 1.4 !important;
    color: #000000 !important;
    border-bottom: 1px solid #FF9B81 !important;
    border-left: none !important;
    border-right: none !important;
    border-top: none !important;
    vertical-align: middle !important;
    box-shadow: none !important;
    background-color: #fff1ee !important;
}

.department-row {
    transition: background-color 0.2s ease;
}

.department-row:nth-child(even) .department-cell {
    background-color: #fff1ee !important;
}

.department-row:hover .department-cell {
    background-color: #fff1ee!important;
}

/* Last row gets thicker bottom border */
.department-row.last-row .department-cell {
    border-bottom: 1px solid #FF9B81 !important;
}

.department-icon {
    margin-right: 8px !important;
    vertical-align: middle !important;
}

.department-name {
    font-weight: 600 !important;
    color: #000000 !important;
    display: inline-block !important;
    vertical-align: middle !important;
}

.focus-area {
    color: #ff3700 !important;
    font-weight: 500 !important;
}

.key-metrics {
    color: #000 !important;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .department-header,
    .department-cell {
        padding: 10px !important;
    }
}
/* Security Format Styles */
.security-format-container {
    margin: 20px 0;
    padding: 25px;
    background: #fff1ee ;
    border-radius: 12px;
    width: 100%;
    box-sizing: border-box;
}

.security-section {
    margin-bottom: 25px;
}

.security-section:last-child {
    margin-bottom: 0;
}

.security-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.security-icon {
    line-height: 1;
}

.security-title {
    font-family: "Inria Sans", sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #000;
}

.security-content {
    margin-left: 34px;
    font-family: "Inria Sans", sans-serif;
    color: #333;
    line-height: 1.5;
}

.security-content p {
    margin: 0;
}

.security-items {
    margin-left: 34px;
    font-family: "Inria Sans", sans-serif;
}

.security-item {
    margin-bottom: 8px;
    color: #333;
    line-height: 1.5;
}

.security-item:last-child {
    margin-bottom: 0;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .security-format-container {
        padding: 20px;
    }
    
    .security-section {
        margin-bottom: 20px;
    }
    
    .security-content,
    .security-items {
        margin-left: 30px;
        font-size: 14px;
    }
}

/* Competitive Edge Styles */
.competitive-edge-container {
    margin: 20px 0;
    padding: 25px;
    background: #fff1ee;
    border-radius: 12px;
    width: 100%;
    box-sizing: border-box;
    font-family: "Inria Sans", sans-serif;
}

.competitive-edge-title {
    font-family: "Inria Sans", sans-serif;
    font-weight: 600;
    color: #000;
    margin: 0 0 25px 0;
}

.competitive-section {
    margin-bottom: 25px;
}

.competitive-section:last-child {
    margin-bottom: 0;
}

.competitive-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.competitive-icon {
    font-size: 24px;
    line-height: 1;
}

.competitive-subtitle {
    font-family: "Inria Sans", sans-serif;
    font-weight: 600;
    color: #000;
}

.competitive-content {
    margin-left: 34px;
    font-family: "Inria Sans", sans-serif;
    color: #333;
    line-height: 1.6;
}

.competitive-content strong {
    font-weight: 600;
    color: #000;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .competitive-edge-container {
        padding: 20px;
    }
    
    .competitive-edge-title {
        margin-bottom: 20px;
    }
    
    .competitive-section {
        margin-bottom: 20px;
    }
    
    .competitive-content {
        margin-left: 30px;
        font-size: 14px;
    }
}

/* Platform Capabilities Specific Styles */
.checklist-container h3 {
    font-family: "Inria Sans", sans-serif;
    font-weight: 600;
    margin: 0 0 20px 0;
    color: #000;
}

.checklist-text strong {
    font-weight: 600;
    color: #000;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .checklist-container h3 {
        font-size: 20px;
    }
}
