:root {
    --font60: 60px;
    --font48: 48px;
    --font42: 42px;
    --font40: 40px;
    --font32: 32px;
    --font30: 30px;
    --font26: 26px;
    --font24: 24px;
    --font20: 20px;
    --font18: 18px;
    --font16: 16px;
    --font14: 14px;
}

body {
    font-family: 'Raleway';
    font-weight: 500;
    transition: .35s;
}

strong {
    font-weight: 600;
    color: #a177b4;
}

p {
    margin: 0;
}

span {
    display: inline-block;
}

.no-gutters>.row>div {
    padding: 0;
    margin: 0;
}
.mobile-text-center {
  text-align: center; 
  margin: 0 auto;
}

.mouse {
    position: fixed;
    top: 0;
    left: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #efecf0;
    transition: top .125s ease-out, left .125s ease-out, width .3s ease-in-out, height .3s ease-in-out, opacity .3s ease-in-out, background-color .3s ease-in-out, border .3s ease-in-out;
    transform: translate(-50%, -50%);
    z-index: 1000;
    pointer-events: none;
    background-color: transparent;
    will-change: top, left, width, height, opacity, background-color, border;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    visibility: visible;
}

.mouse.hover {
    width: 50px;
    height: 50px;
    background-color: #a177b4;
    opacity: .3;
}

.mouse.button {
    opacity: 0;
    visibility: hidden;
}

.mouse.big {
    width: 80px;
    height: 80px;
    border: none;
    background-color: rgba(161, 119, 180, 0.6);
}

/* .mouse.red:not(.big):not(.button):not(.hover) {
    border: 2px solid #c32427;
}

.mouse.red.hover {
    background-color: #c32427;
    border: 2px solid #c32427;
}

.mouse.red.button {
    opacity: 0;
    visibility: hidden;
} */

/* .mouse.red-at-footer:not(.big):not(.button):not(.hover) {
    border: 2px solid #c32427;
}

.mouse.red-at-footer.hover {
    background-color: #c32427;
    border: 2px solid #c32427;
}

.mouse.red-at-footer.button {
    opacity: 0;
    visibility: hidden;
} */

/* body.black .mouse.big {
    background-color: rgba(195, 39, 36, 0.6);
} */

.mouse span {
    font-size: var(--font16);
    transition: .3s ease-in-out;
    color: #fff;
    line-height: 80px;
    width: 100%;
    text-align: center;
}

.laptop-cursor {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
    display: none;
    pointer-events: none;
}

.laptop-cursor.show {
    display: block;
}

a.button-look {
    display: block;
    transition: transform .125s ease-out;
}

.fade-up-box .fade-up-item, .svg-fade, .single-advantage-image {
    transition: .4s ease-in-out;
    visibility: hidden;
    opacity: 0;
    transform: translate(0, 30px);
}

.fade-up-box.show>.fade-up-item, .single-advantage-image.show .svg-fade, .single-advantage-image.show {
    visibility: visible;
    opacity: 1;
    transform: translate(0, 0);
}

.svg-fade.delay-0 {
    transition-delay: 0.28s;
}

.svg-fade.delay-1 {
    transition-delay: 0.56s;
}

.svg-fade.delay-2 {
    transition-delay: 0.84s;
}

.svg-fade.delay-3 {
    transition-delay: 1.12s;
}

.svg-fade.delay-4 {
    transition-delay: 1.4s;
}

.svg-stroke-progress {
    stroke-dasharray: 664;
    stroke-dashoffset: 664;
}

.single-advantage-image.show .svg-stroke-progress {
    animation: line-ani 1s linear forwards 0.33s;
}

@keyframes line-ani {
    to {
        stroke-dashoffset: 0;
    }
}

.fade-up-box.no-duration .fade-up-item, .single-advantage-image.no-duration .svg-fade, .single-advantage-image.no-duration {
    transition-duration: 0s;
    transition-delay: 0s!important;
}

.top-nav-sec.fixed-nav .top-nav-wrapper {
    width: 108px;
}

.top-nav-sec.fixed-nav .top-nav {
    width: 72px;
    border-radius: 36px;
    /* box-shadow: 2px 2px 5px #D9D9D9; */
}

body.black .top-nav-sec.fixed-nav .top-nav {
    box-shadow: none;
}

.top-nav-sec.fixed-nav .top-nav .left-icon-area p {
    opacity: 0;
    visibility: hidden;
    transition: .2s ease-in-out;
}

.top-nav-sec.fixed-nav .top-nav .center-btn-area ul li {
    opacity: 0;
    visibility: hidden;
    transition: .2s ease-in-out;
}

.top-nav-sec.fixed-nav .top-nav .right-btn-area .nav-get-started a {
    opacity: 0;
    visibility: hidden;
    transition: .2s ease-in-out;
}

.top-nav-sec.fixed-nav .top-nav .sticky-menu {
    opacity: 1;
    visibility: visible;
    transition: .2s ease-in-out .3s;
}

.top-nav-sec.fixed-nav .top-nav-wrapper.clicked {
    width: 100%;
}

.top-nav-sec.fixed-nav .top-nav-wrapper.clicked .top-nav {
    width: 100%;
    border-radius: 32px;
}

.top-nav-sec.fixed-nav .top-nav-wrapper.clicked .top-nav .left-icon-area p {
    opacity: 1;
    transform: translateX(40px);
    visibility: visible;
    transition: .2s ease-in-out .3s;
}

.top-nav-sec.fixed-nav .top-nav-wrapper.clicked .top-nav .center-btn-area ul li {
    opacity: 1;
    visibility: visible;
    transition: .2s ease-in-out .3s;
    
}

.top-nav-sec.fixed-nav .top-nav-wrapper.clicked .top-nav .right-btn-area .nav-get-started a {
    opacity: 1;
    visibility: visible;
    transition: .2s ease-in-out .3s;
}

.top-nav-sec {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

.top-nav-wrapper {
    position: absolute;
    height: 90px;
    width: 100%;
    top: 0;
    left: 0;
    padding: 18px 18px 0;
    z-index: 998;
    transition: .5s ease-in-out;
    /* background-color: #f9f0fe; */
}

.top-nav {
    width: 100%;
    height: 100%;
    border-radius: 32px;
    /* box-shadow: 0 15px 35px rgb(51 51 51 / 15%), 0 2px 4px rgb(0 0 0 / 4%); */
    /* box-shadow: 15px 15px 30px #D9D9D9, -15px -15px 30px #FFFFFF; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
    background-color: #100101;
    transition: .5s ease-in-out;
}

.top-nav a {
    text-decoration: none;
    color: #232323;
}

.top-nav .sticky-menu {
    position: absolute;
    top: 0;
    left: 0;
    width: 72px;
    height: 72px;
    border-radius: 36px;
    background-color: transparent;
    text-align: center;
    line-height: 72px;
    font-size: var(--font24);
    opacity: 0;
    visibility: hidden;
    transition: .2s ease-in-out;
    cursor: pointer;
    z-index: 99;
}

.top-nav .left-icon-area {
    flex-basis: 25%;
    width: 25%;
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
}

.top-nav .left-icon-area p {
    padding-left: 25px;
    font-weight: 600;
    font-size: var(--font24);
    color: #232323;
    white-space: nowrap;
    opacity: 1;
    visibility: visible;
    transition: .2s ease-in-out .3s;
}

.top-nav .left-icon-area p span {
    color: #91b2ec;
}

.top-nav .center-btn-area {
    flex-basis: 50%;
    width: 50%;
    background-color: #FFFFFF;
    display: flex;
    justify-content: center;
    height: 100%;
    align-items: center;
}

.top-nav .center-btn-area ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}

.top-nav .center-btn-area ul li {
    display: inline-block;
    font-size: var(--font16);
    font-weight: 600;
    margin: 20px;
    position: relative;
    opacity: 1;
    visibility: visible;
    transition: .2s ease-in-out .3s;
}

.top-nav .center-btn-area ul li::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background-color: #898989;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: -20%;
    transform: translate(-50%, -50%);
    transition: .5s;
}

.top-nav .center-btn-area ul li:hover::before {
    visibility: visible;
    opacity: .5;
}

.top-nav .center-btn-area ul li a {
    text-decoration: none;
    color: #232323;
}

.top-nav .right-btn-area {
    flex-basis: 25%;
    background-color: #FFFFFF;
    width: 25%;
    display: flex;
    justify-content: flex-end;
    height: 100%;
    align-items: center;
}

.top-nav .right-btn-area .side-menu {
    display: none;
}

.top-nav .right-btn-area .side-menu-burger, .top-nav .right-btn-area .nav-get-started {
    padding-right: 25px;
}

.top-nav .right-btn-area .side-menu-burger i {
    font-size: var(--font24);
    color: #232323;
    display: inline-block;
    margin-top: 2px;
    cursor: pointer;
    width: 20px;
    text-align: center;
}

.top-nav .right-btn-area .nav-get-started a {
    text-decoration: none;
    color: #898989;
    background-color: #efe6f4;
    padding: 10px 20px;
    border-radius: 20px;
    line-height: 20px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 1;
    visibility: visible;
    transition: color .5s, background-color .5s, transform .125s ease-out, opacity .2s ease-in-out .3s, visibility .2s ease-in-out .3s;
}

.top-nav .right-btn-area .nav-get-started a:hover {
    color: #fff;
    background-color: #898989
}

.top-nav .mobile-bottom-contact {
    position: absolute;
    width: 100%;
    border-top: .5px solid #1a1a1a26;
    text-align: center;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
}

.top-nav .mobile-bottom-contact .nav-phone-number {
    margin: 40px 0 0;
    font-size: var(--font20);
}

.top-nav .mobile-bottom-contact .nav-phone-number a {
    text-decoration: none;
    color: #898989;
    font-weight: 600;
}

.top-nav .mobile-bottom-contact .nav-social-media {
    font-size: var(--font24);
    margin: 30px 0 40px;
}

.top-nav .mobile-bottom-contact .nav-social-media a {
    color: #898989;
    padding: 0 5px;
}

.landing-section {
  padding-top: 90px;
  width: 100%;
  position: relative;
}

.landing-fade-up-box .landing-fade-up-item {
  transition: .5s ease-in-out;
  visibility: hidden;
  opacity: 0;
  transform: translate(0, 30px);
}

.landing-fade-up-box.show .landing-fade-up-item {
  visibility: visible;
  opacity: 1;
  transform: translate(0, 0);
}

.landing-section #particles-js {
  overflow: hidden;
  pointer-events: none;
}

.landing-section .bubble-container {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
  left: 0;
  overflow: hidden;
}

.landing-section .bubble-wrapper {
    position: relative;
    width: 100%;
    height: 75%;
    background-color: #2D2F35; /* Darker, muted background for a sleek appearance */
    background: linear-gradient(180deg, #74cee9 -49.22%, #2e6fe0a6 21.43%); /* Adjusted gradient for a more cohesive and balanced feel */
  
  
    clip-path: ellipse(92% 54% at 50% 43%);
    color: #fff; /* White text on dark background BACKGROUND COLOUD!!!!*/
  }
  
.landing-section .bubble-wrapper .single-bubble {
  position: absolute;
  
}

.landing-section .bubble-wrapper .single-bubble.first-time {
  transition: transform .5s cubic-bezier(.17, .74, .38, 1) 2.3s;
  
}


.landing-section .bubble-wrapper .bubble-s-20 {
  width: 20px;
  height: 20px;
}

.landing-section .bubble-wrapper .bubble-s-30 {
  width: 30px;
  height: 30px;
}

.landing-section .bubble-wrapper .bubble-s-40 {
  width: 40px;
  height: 40px;
}

.landing-section .landing-left-text {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: auto;
  margin: 100px 0;
  
}

.landing-section .landing-left-text h2 {
  font-size: var(--font60);
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
  color: #232323;
}

.landing-section .landing-left-text h2 span {
  display: inline-block;
}

.landing-section .landing-left-text h2 .platinum-color {
  color: #F1F1F1;
  
}

.landing-section .landing-left-text p {
  font-size: var(--font20);
  font-weight: 500;
  color: #D1D1D6;
  margin-bottom: 30px;
}

.landing-section .landing-left-text p a {
  text-decoration: none;
  color: #787878;
}

.landing-section .landing-left-text .landing-get-started a {
  text-decoration: none;
  color: #FFFFFF;
  background-color: #898989;
  padding: 10px 20px;
  border-radius: 20px;
  line-height: 20px;
  display: inline-block;
  font-size: var(--font14);
}

.landing-section .landing-effect-right {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.landing-section .landing-effect-right .laptop-wrapper {
  width: 80%;
  position: relative;
}

.landing-section img {
  width: 100%;
  height: auto;
  filter: drop-shadow(5px 5px 20px #a5a5a5);
  
}

.landing-section .landing-effect-right .screen-wrapper {
  width: 76.31%;
  top: 6.97%;
  left: 11.89%;
  height: 82.77%;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  cursor: none;
 
}

  

.landing-section .landing-effect-right .laptop-screen {
  width: 100%;
  height: 100%;
  
}


.landing-section .landing-effect-right .laptop-screen>.container {
  height: 100%;
  position: relative;
  
  box-shadow: inset 0px 0px 5px #d5d5d5;
}

.landing-section .landing-effect-right .laptop-screen .selections {
  position: relative;
  transition: .5s ease-in-out;
  left: 0%;
  overflow: hidden;
  height: 100%;
  padding: 10px;
}

.landing-section .landing-effect-right .laptop-screen .selections .selections-title {
  height: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--font30);
  font-weight: 600;
}

.landing-section .landing-effect-right .laptop-screen .selections .single-selection {
  height: 40%;
}

.landing-section .landing-effect-right .laptop-screen .selections .single-selection:nth-child(2) {
  padding: 0px 12.5px 25px 25px;
}

.landing-section .landing-effect-right .laptop-screen .selections .single-selection:nth-child(3) {
  padding: 0px 25px 25px 12.5px;
}

.landing-section .landing-effect-right .laptop-screen .selections .single-selection:nth-child(4) {
  padding: 0px 12.5px 25px 25px;
}

.landing-section .landing-effect-right .laptop-screen .selections .single-selection:nth-child(5) {
  padding: 0px 25px 25px 12.5px;
}

.landing-section .landing-effect-right .laptop-screen .selections .single-selection:nth-child(2) .select-card {
  background-color: #b5d0fe;
  color: #08020b;
}

.landing-section .landing-effect-right .laptop-screen .selections .single-selection:nth-child(3) .select-card {
  background-color: #f5f5f5;
  color: #898989;
}

.landing-section .landing-effect-right .laptop-screen .selections .single-selection:nth-child(4) .select-card {
  background-color: #f5f5f5;
  color: #898989;
}

.landing-section .landing-effect-right .laptop-screen .selections .single-selection:nth-child(5) .select-card {
    background-color: #b5d0fe;
    color: #08020b;
}


.landing-section .landing-effect-right .laptop-screen .selections .single-selection:nth-child(2) .select-card:hover {
  outline: 5px solid;
  outline-offset: -5px;
}

.landing-section .landing-effect-right .laptop-screen .selections .single-selection:nth-child(3) .select-card:hover {
  outline: 5px solid;
  outline-offset: -5px;
}

.landing-section .landing-effect-right .laptop-screen .selections .single-selection:nth-child(4) .select-card:hover {
  outline: 5px solid;
  outline-offset: -5px;
}

.landing-section .landing-effect-right .laptop-screen .selections .single-selection:nth-child(5) .select-card:hover {
  outline: 5px solid;
  outline-offset: -5px;
}

.landing-section .landing-effect-right .laptop-screen .selections .single-selection .select-card {
  width: 100%;
  height: 100%;
  border-radius: 32px;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.landing-section .landing-effect-right .laptop-screen .selections .single-selection .select-card p {
  width: 50%;
  text-align: center;
  font-size: var(--font20);
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translate(0,-50%);
  z-index: 2;
  font-weight: 600;
}

.landing-section .landing-effect-right .laptop-screen .selections .single-selection .select-card img {
  width: 24px;
  height: auto;
  display: block;
  margin-top: 5px;
}

.landing-section .landing-effect-right .laptop-screen .selections .single-selection .select-card i {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: rotate(-15deg) translateY(-50%);
  font-size: 70px;
}

.landing-section .landing-effect-right .laptop-screen .selections .single-selection:nth-child(2) .select-card i {
  color: #fff;
  opacity: .7;
}

.landing-section .landing-effect-right .laptop-screen .selections .single-selection:nth-child(3) .select-card i {
  color: #898989;
  opacity: .3;
}

.landing-section .landing-effect-right .laptop-screen .selections .single-selection:nth-child(4) .select-card i {
  color: #898989;
  opacity: .3;
}

.landing-section .landing-effect-right .laptop-screen .selections .single-selection:nth-child(5) .select-card i {
  color: #fff;
  opacity: .7;
}

.landing-section .landing-effect-right .laptop-screen .select-result {
  position: absolute;
  top: 0;
  left: calc(100% + 15px);
  height: 100%;
  width: 100%;
  transition: .5s ease-in-out;
  padding: 20px 0 20px 20px;
}

.landing-section .landing-effect-right .laptop-screen .select-result .back-button-wrapper {
  height: 10%;
  display: flex;
  align-items: center;
}

.landing-section .landing-effect-right .laptop-screen .select-result .back-button-wrapper .back-button {
  display: flex;
  align-items: center;
  font-size: var(--font20);
}

.landing-section .landing-effect-right .laptop-screen .select-result .back-button-wrapper i {
  display: inline-block;
  margin-right: 10px;
  font-size: var(--font14);
}

.landing-section .landing-effect-right .laptop-screen .select-result .back-button-wrapper span {
  font-weight: 600;
}

.landing-section .landing-effect-right .laptop-screen .select-result .result-wrapper {
  height: 90%;
  overflow-y: auto;
}

.landing-section .landing-effect-right .laptop-screen .select-result .result-wrapper .logo{
  width: 50px;
  height: 50px;
  padding: 5px;
  background-color: #f5f5f5;
  border-radius: 16px;
}

.landing-section .landing-effect-right .laptop-screen .select-result .result-wrapper .logo img{
  width: 40px;
  height: auto;
}

.landing-section .landing-effect-right .laptop-screen .select-result .result-wrapper .laptop-result-text {
  padding-right: 15px;
}

.landing-section .landing-effect-right .laptop-screen .select-result .result-wrapper h2 {
  font-size: var(--font24);
  font-weight: 600;
  color: #232323;
  margin: 10px 0 10px;
}

.landing-section .landing-effect-right .laptop-screen .select-result .result-wrapper p {
  font-size: var(--font14);
  color: #787878;
}

.landing-section .landing-effect-right .laptop-screen .select-result .result-wrapper p:not(:last-child) {
  margin-bottom: 10px;
}

.landing-section .landing-effect-right .laptop-screen .select-result .result-wrapper .laptop-result-form {
  padding-left: 15px;
}

.landing-section .landing-effect-right .laptop-screen .select-result .result-wrapper .laptop-result-form a {
  cursor: none;
  text-decoration: none;
}

.landing-section .landing-effect-right .laptop-screen .select-result .result-wrapper .laptop-result-form .laptop-contact-btn {
  display: flex;
  width: 100%;
  justify-content: flex-start;
  align-items: center;
  padding-top: 5px;
  margin-bottom: 15px;
}

.landing-section .landing-effect-right .laptop-screen .select-result .result-wrapper .laptop-result-form .laptop-contact-btn .single-contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 33.3%;
  flex-basis: 33.3%;
}

.landing-section .landing-effect-right .laptop-screen .select-result .result-wrapper .laptop-result-form .laptop-contact-btn .single-contact .contact-wrapper {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: var(--font24);
  border-radius: 16px;
}

.landing-section .landing-effect-right .laptop-screen .select-result .result-wrapper .laptop-result-form .laptop-contact-btn .single-contact .contact-wrapper:hover {
  border: 5px solid;
  line-height: 40px;
}

.landing-section .landing-effect-right .laptop-screen .select-result .result-wrapper .laptop-result-form .laptop-contact-btn .single-contact.whatsapp .contact-wrapper {
  color: #34a853;
  background-color: #e4f7e9;
}

.landing-section .landing-effect-right .laptop-screen .select-result .result-wrapper .laptop-result-form .laptop-contact-btn .single-contact.email .contact-wrapper {
  color: #fbbc05;
  background-color: #fef5d9;
}

.landing-section .landing-effect-right .laptop-screen .select-result .result-wrapper .laptop-result-form .laptop-contact-btn .single-contact.phone .contact-wrapper {
  color: #4285f4;
  background-color: #e9f1fe;
}

.landing-section .landing-effect-right .laptop-screen .select-result .result-wrapper .laptop-result-form .laptop-contact-btn .single-contact.onefoursixone .contact-wrapper {
  color: #ea4335;
  background-color: #fce8e7;
}

.landing-section .landing-effect-right .laptop-screen .select-result .result-wrapper .laptop-result-form .laptop-contact-btn .single-contact p {
  margin-top: 10px;
  text-align: center;
  font-size: var(--font14);
}

.landing-section .landing-effect-right .person-beside {
  position: absolute;
  height: 90%;
  width: 30%;
  bottom: 0px;
  right: -12%;
  pointer-events: none;
  z-index: 11;
}

.landing-section .landing-effect-right .person-beside .waving-arm, .landing-section .landing-effect-right .person-beside .turning-head {
  transform-origin: center right;
  transform-box: fill-box;
}





/* Chat Interface Styles - Clean Professional Theme */
.chat-interface {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  border: none;
}

.chat-header {
  background: linear-gradient(135deg, #8db4f9, #7aa3f7);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  border-bottom: none;
}

.chat-avatar .avatar-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(141, 180, 249, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.chat-avatar .avatar-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.chat-info {
  margin-left: 12px;
}

.chat-info h4 {
  margin: 0;
  font-size: 16px;
  color: #ffffff;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.chat-info .status {
  font-size: 12px;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}

.chat-messages {
  flex: 1;
  padding: 12px;
  overflow-y: auto;
  background: #f8f9fa;
}

.message {
  margin-bottom: 15px;
  animation: fadeInUp 0.3s ease;
}

.bot-message .message-content {
  background: #ffffff;
  color: #333333;
  padding: 12px 16px;
  border-radius: 18px 18px 18px 4px;
  max-width: 80%;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  border: 1px solid #e9ecef;
}

.user-message .message-content {
  background: linear-gradient(135deg, #8db4f9, #6366f1);
  color: white;
  padding: 12px 16px;
  border-radius: 18px 18px 4px 18px;
  max-width: 60%;
  margin-left: auto;
  box-shadow: 0 2px 8px rgba(141, 180, 249, 0.4);
  width: fit-content;
}

.user-message {
  text-align: right;
}

.message-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
}

.message-time {
  font-size: 11px;
  color: #6c757d;
  margin-top: 4px;
  display: block;
}

.chat-input-area {
  padding: 12px 16px;
  background: #ffffff;
  border-top: 1px solid #e9ecef;
}

.input-wrapper {
  display: flex;
  align-items: center;
  background: #f8f9fa;
  border-radius: 25px;
  padding: 8px 12px;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.input-wrapper:focus-within {
  border-color: #8db4f9;
  box-shadow: 0 0 0 3px rgba(141, 180, 249, 0.1);
  background: #ffffff;
}

.input-wrapper input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  padding: 8px 12px;
  font-size: 14px;
  color: #333333;
}

.input-wrapper input::placeholder {
  color: #6c757d;
}

.send-btn {
  background: linear-gradient(135deg, #8db4f9, #6366f1);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(141, 180, 249, 0.3);
}

.send-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(141, 180, 249, 0.5);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.text-running-way-sec {
    margin-top: 100px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.text-running-way-sec .text-desc {
    margin-bottom: 50px;
}

.text-running-way-sec .text-desc p {
    font-size: var(--font20);
    color: #787878;
    
}

.text-running-way-sec .text-running-way {
    width: 100%;
    height: 70px;
    overflow: hidden;
    white-space: nowrap;
}

.text-running-way-sec .text-running-way .text-row {
    width: fit-content;
    width: -moz-fit-content;
}

.text-running-way-sec .text-running-way .single-services-list {
    display: inline-block;
    position: relative;
    white-space: nowrap;
    font-size: 0;
    
}

.text-running-way-sec .text-running-way .single-services-list .service-name {
    display: inline-block;
    position: relative;
    height: 70px;
    font-size: var(--font60);
    line-height: 70px;
    font-weight: 600;
    overflow: hidden;
    color: #232323;
    
}

.text-running-way-sec .text-running-way .single-services-list .break {
    display: inline-block;
    width: 100px;
    height: 70px;
    position: relative;
}

.text-running-way-sec .text-running-way .single-services-list .break::before {
    content: "";
    width: 80%;
    height: 2px;
    background-color: #232323;
    position: absolute;
    top: 58%;
    left: 50%;
    transform: translate(-50%, -50%);
    
}

.text-running-way-sec .text-running-way-right {
    margin-top: 15px;
    
}

.about-section {
    width: 100%;
    margin: 50px 0 0;
    background-color: #8db4f9; /* Solid light blue color */
    clip-path: ellipse(92% 54% at 50% 55%); /* Inverted ellipse: bulge at the top */
}

.about-section .container {
    padding: 100px 15px 225px 15px;
    background-color: #8db4f9; /* Same blue color as the section */
}



.about-section .row {
    position: relative;
    
}

.about-section .row::after {
    content: "";
    width: 2px;
    
    height: 20vh;
    background-color: #898989;
    border-radius: 1px;
    position: absolute;
    top: calc(110% + 5vh);
    left: 50%;
    transform: translateX(-50%);
}

.about-section img {
    width: 100%; /* Ensures the image is fully responsive */
    max-width: 600px; /* Sets a max width for larger screens */
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 0 10px #c4c4c4);
    margin-bottom: -12%; /* Keeps the margin at the bottom */
}

/* Media query for mobile devices */
@media (max-width: 767px) {
    .about-section img {
        width: 80%; /* Makes the image slightly smaller on mobile devices */
        max-width: none; /* Removes the max width restriction for mobile */
        margin-bottom: -5%; /* Adjusts the margin to suit mobile view */
    }
}


.about-section .what-is {
    width: 100%;
    flex-direction: column;
    display: flex;
    justify-content: center;
}

.about-section .what-is span {
    font-size: 20px; /* Increased font size */
    color: #e8e7e7;
}

.about-section .what-is h3 {
    font-size: 20px; /* Increased font size */
    color: #232323;
    font-weight: 600;
    margin: 10px 0 20px;
}

.about-section .what-is p {
    font-size: 20px; /* Increased font size */
    color: #e8e7e7;
}

.about-section .what-is p:not(:last-child) {
    margin-bottom: 20px;
}


.three-board-section .three-board-desc {
    margin: 100px 0 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.three-board-section .three-board-desc span {
    font-size: var(--font20);
    color: #787878;
}

.three-board-section .three-board-desc h3 {
    font-size: var(--font60);
    color: #232323;
    font-weight: 600;
    margin: 10px 0 20px;
}

.three-board-section .advantages-images-wrapper {
    height: 100%;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.three-board-section .single-advantage-image {
    width: 74%;
    border-radius: 32px;
    background-color: #fff;
    box-shadow: 5px 5px 10px #D9D9D9, -5px -5px 10px #FFFFFF;
}

.three-board-section .advantages-images-wrapper .single-advantage-image .svg-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    /* display: none; */
}

.three-board-section .advantages-images-wrapper .single-advantage-image .svg-wrapper img.main-content {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

.three-board-section .advantages-images-wrapper .single-advantage-image svg.main-content {
    width: 100%;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.three-board-section .advantages-images-wrapper .single-advantage-image svg.percent-left {
    width: 52%;
    height: auto;
    position: absolute;
    top: 8%;
    left: 10%;
    transform: translate(-50%, -50%);
}

.three-board-section .advantages-images-wrapper .single-advantage-image svg.ranking-right {
    width: 52%;
    height: auto;
    position: absolute;
    top: 50%;
    left: 95%;
    transform: translate(-50%, -50%);
}

.three-board-section .advantages-images-wrapper .single-advantage-image svg.left-chat {
    width: 76.9%;
    height: auto;
    position: absolute;
    top: 49%;
    left: 22%;
    transform: translate(-50%, -50%);
}

.three-board-section .advantages-images-wrapper .single-advantage-image svg.right-earth {
    width: 56%;
    height: auto;
    position: absolute;
    top: 12%;
    left: 90%;
    transform: translate(-50%, -50%);
}

.three-board-section .advantages-images-wrapper .single-advantage-image svg.left-info-board {
    width: 56%;
    height: auto;
    position: absolute;
    top: 40%;
    left: 10%;
    transform: translate(-50%, -50%);
}

.three-board-section .advantages-images-wrapper .single-advantage-image svg.right-rating {
    width: 56%;
    height: auto;
    position: absolute;
    top: 38%;
    left: 95%;
    transform: translate(-50%, -50%);
}

.three-board-section .advantages-detail {
    width: 100%;
}

.three-board-section .advantages-detail .single-advantage {
    height: 100vh;
    width: 100%;
    padding: 0 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.three-board-section .advantages-detail .single-advantage>span {
    font-size: var(--font20);
    color: #000000;
}

.three-board-section .advantages-detail .single-advantage>h4 {
    font-size: var(--font48);
    color: #232323;
    font-weight: 600;
    margin: 10px 0 20px;
    text-align: center;
}

.three-board-section .advantages-detail .single-advantage>p {
    font-size: var(--font16);
    color: #787878;
    margin-bottom: 20px;
    text-align: center;
}

.three-board-section .advantages-detail .marketing-cate {
    width: 100%;
    height: auto;
    padding: 0 50px;
}

.three-board-section .advantages-detail .marketing-cate .single-marketing {
    width: 100%;
    height: auto;
    position: relative;
    text-align: center;
    outline: none;
}

.three-board-section .advantages-detail .marketing-cate .single-marketing:before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-size: 120px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: .125;
    color: #A177B4;
}

.three-board-section .advantages-detail .marketing-cate .single-marketing.affiliate:before {
    content: "\f2b5";
}

.three-board-section .advantages-detail .marketing-cate .single-marketing.engagement:before {
    content: "\f0eb";
}

.three-board-section .advantages-detail .marketing-cate .single-marketing.intercept:before {
    content: "\f140";
}

.three-board-section .advantages-detail .marketing-cate .single-marketing.inbound:before {
    content: "\f0a1";
}

.three-board-section .advantages-detail .marketing-cate .single-marketing span {
    font-size: var(--font16);
    font-weight: 600;
    color: #a177b4;
    display: inline-block;
    margin-bottom: 10px;
}

.three-board-section .advantages-detail .marketing-cate .single-marketing p {
    font-size: var(--font16);
    color: #787878;
}

.three-board-section .advantages-detail .marketing-cate .single-marketing p strong {
    font-size: var(--font16);
    color: #a177b4;
    font-weight: 600;
}

.prev-btn-marketing, .next-btn-marketing {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    height: 40px;
    width: 40px;
    border-radius: 50%;
    font-size: 16px;
    line-height: 40px;
    box-shadow: 2px 2px 5px #d5d5d5;
    text-align: center;
    cursor: pointer;
}

.prev-btn-marketing {
    left: 0;
    background-color: #fff;
    color: #232323;
}

.next-btn-marketing {
    right: 0;
    background-color: #a177b4;
    color: #fff;
}

.three-board-section .advantages-detail .visitor-icon-list {
    display: flex;
    margin-top: 20px;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
}

.three-board-section .advantages-detail .visitor-icon-list .single-visitor-icon {
    width: 30%;
    flex-basis: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.three-board-section .advantages-detail .visitor-icon-list .single-visitor-icon>div {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background-color: #f5f5f5;
}

.three-board-section .advantages-detail .visitor-icon-list .single-visitor-icon>div i {
    line-height: 60px;
    font-size: var(--font30);
    color: #232323;
}

.three-board-section .advantages-detail .visitor-icon-list .single-visitor-icon span {
    font-weight: 600;
    font-size: var(--font18);
    padding-top: 10px;
}

.three-board-section .advantages-detail .visitor-icon-list .single-visitor-icon p {
    font-size: var(--font14);
    color: #787878;
}

.three-board-section .advantages-detail .report-list {
    display: flex;
    width: 100%;
}

.three-board-section .advantages-detail .report-list ul {
    margin: 0;
    padding: 0 0 0 26px;
    flex-grow: 2;
}

.features-section .features-title {
    text-align: center;
    margin: 100px 0 0;
}

.features-section .features-title span {
    font-size: var(--font20);
    color: #787878;
}

.features-section .features-title h3 {
    font-size: var(--font60);
    color: #232323;
    font-weight: 600;
    margin: 10px 0 20px;
}

.features-section .features-title p {
    font-size: var(--font16);
    color: #787878;
    width: 70%;
    margin: 0 auto;
}

.features-section .features-title a {
    text-decoration: none;
    color: #FFFFFF;
    background-color: #a177b4;
    padding: 10px 20px;
    border-radius: 20px;
    line-height: 20px;
    display: inline-block;
    margin-top: 20px;
    font-size: var(--font16);
}

.features-section .features-number {
    font-size: var(--font20);
    color: #a177b4;
}

.features-section .features-name {
    font-size: var(--font48);
    color: #232323;
    font-weight: 600;
    position: relative;
}

.features-section .features-desc {
    font-size: var(--font16);
    color: #787878;
    font-weight: 500;
}

.features-section>.container>.row {
    margin-bottom: 150px;
}

.features-section>.container>.row:last-child {
    margin-bottom: 0;
}

.features-section .features-img-box {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.features-section .features-img-box img {
    width: 100%;
    height: auto;
}

.features-section .features-img-box-wrapper {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.features-section .single-features-img-box {
    position: absolute;
    width: 90%;
    height: 100%;
    top: 0;
    left: 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transform: translate(0px, 30px);
    transition: .5s ease-in-out;
}

.features-section .single-features-img-box.show {
    visibility: visible;
    opacity: 1;
    transform: translate(0px, 0px);
}

.features-section .single-features-img-box img {
    width: 100%;
    height: auto;
}

.features-section .single-features-detail {
    justify-content: center;
    display: flex;
    flex-direction: column;
}

.features-section .single-features-detail:nth-child(1) {
    padding-right: 65px;
}

.features-section .single-features-detail:nth-child(2) {
    padding-left: 65px;
}

.features-nms img {
    filter: drop-shadow(15px 15px 30px rgba(213, 213, 213, .5));
}

.features-section .features-name.special-tag::after {
    content: attr(data-content);
    font-size: var(--font14);
    position: relative;
    top: -10px;
    background-color: #a177b4;
    color: #fff;
    padding: 8px 16px;
    border-radius: 32px;
}

.features-section .features-e-commerce {
    text-align: center;
}

.features-section .features-e-commerce .features-desc {
    width: 70%;
    margin: 0 auto;
}

.features-section .features-e-commerce .single-e-commerce {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.features-section .features-e-commerce .features-e-commerce-list {
    margin-top: 50px;
}

.features-section .features-e-commerce .single-e-commerce .img-slot {
    margin-bottom: 30px;
    height: 260px;
    border-radius: 32px;
    /* box-shadow: 15px 15px 30px #D9D9D9, -15px -15px 30px #FFFFFF; */
    overflow: visible;
}

.features-section .features-e-commerce .single-e-commerce .img-slot img {
    height: 100%;
    width: auto;
    object-fit: cover;
}

.features-section .features-e-commerce .single-e-commerce h5 {
    font-weight: 600;
    font-size: var(--font20);
}

.features-section .features-e-commerce .single-e-commerce p {
    font-weight: 500;
    font-size: var(--font16);
    color: #787878;
    margin-bottom: 50px;
}

.features-section .my-accordion-sec .single-accordion {
    width: 100%;
    margin: 20px 0;
    border-radius: 16px;
    background-color: #fff;
    position: relative;
    transition: box-shadow .3s, background-color .3s;
}

body.black .features-section .my-accordion-sec .single-accordion {
    background-color: #000;
}

.features-section .my-accordion-sec .single-accordion .accordion-title {
    padding: 20px 15px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.features-section .my-accordion-sec .single-accordion .accordion-title h2 {
    width: 80%;
    font-size: var(--font20);
    line-height: 30px;
    margin: 0;
    font-weight: 600;
    color: #232323;
    padding-left: 10px;
    text-align: left;
    transition: .3s;
}

body.black .features-section .my-accordion-sec .single-accordion .accordion-title h2 {
    color: #fff;
}

.features-section .my-accordion-sec .single-accordion .accordion-title span {
    width: 10%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.features-section .my-accordion-sec .single-accordion .accordion-title span.symbol i {
    font-size: var(--font20);
}

.features-section .my-accordion-sec .single-accordion.active {
    box-shadow: 5px 5px 10px #D9D9D9, -5px -5px 10px #FFFFFF;
    z-index: 9;
}

body.black .features-section .my-accordion-sec .single-accordion.active {
    box-shadow: 15px 15px 30px #000, -15px -15px 30px #000;
}

.features-section .my-accordion-sec .single-accordion.active .accordion-title span.symbol-down i {
    transform: rotate(180deg);
}

.features-section .my-accordion-sec .single-accordion .accordion-detail {
    color: #787878;
    font-size: var(--font16);
    font-weight: 500;
    display: none;
    padding: 0 15px 25px 25px;
    width: 80%;
    text-align: left;
    margin: 0 auto;
}

.portfolio-section {
    padding-top: 300px;
}

.portfolio-section .left-portfolio-text {
    margin-bottom: 50px;
}

.portfolio-section .left-portfolio-text span {
    transition: .3s;
    font-size: var(--font20);
    color: #787878;
}

.portfolio-section .left-portfolio-text h3 {
    font-size: var(--font60);
    color: #232323;
    font-weight: 600;
    transition: .3s;
    margin: 10px 0 20px;
}

.portfolio-section .left-portfolio-text h3 i {
    font-style: normal;
}

.portfolio-section .left-portfolio-text p {
    font-size: var(--font16);
    color: #787878;
    transition: .3s;
    margin-left: 100px;
}

body.black .left-portfolio-text span {
    color: #919191;
}

body.black .left-portfolio-text h3 {
    color: #fff;
}

body.black .left-portfolio-text h3 i {
    color: #a177b4;
}

body.black .left-portfolio-text p {
    color: #919191;
}

.portfolio-section .left-portfolio-text p:not(:last-child) {
    margin-bottom: 20px;
}

.portfolio-section .circular-text {
    display: flex;
    justify-content: center;
    align-items: center;
}

.portfolio-section .circular-text .circular-wrapper {
    position: relative;
    width: 300px;
    height: 300px;
    max-width: 70vw;
    max-height: 70vw;
    overflow: hidden;
}

.portfolio-section .circular-text .rotate-text {
    width: 100%;
    height: 100%;
    animation: rotate-text 10s linear infinite;
}

@keyframes rotate-text {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.portfolio-section .circular-text .counter {
    width: 50%;
    height: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.portfolio-section .circular-text .counter span {
    font-size: var(--font48);
    font-weight: 600;
    transition: .3s;
    color: #232323;
}

.portfolio-section .circular-text .counter {
    font-size: var(--font16);
    color: #787878;
    transition: .3s;
}

.portfolio-section .circular-text textPath {
    fill: #000;
    transition: .3s;
}

body.black .circular-text .counter span {
    color: #fff;
}

body.black .circular-text .counter {
    color: #fff;
}

body.black .circular-text textPath {
    fill: #fff;
}

.portfolio-section .horizontal-scroll-container {
    width: 100%;
    height: 450vh;
}

.portfolio-section .sticky-wrapper {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
}

.portfolio-section .relative-use {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.portfolio-section .all-portfolio {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
    width: fit-content;
    width: -moz-fit-content;
    height: 80vh;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    /* opacity: 0;
    visibility: hidden;
    transition: opacity .5s; */
}

.portfolio-section .single-portfolio {
    width: 90vw;
    max-width: 700px;
    height: auto;
    margin: 0 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background: #1a1a1a;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    padding: 30px;
    flex-shrink: 0;
}

.portfolio-section .single-portfolio a.big-view {
    display: block;
    width: 100%;
}

.portfolio-section .single-portfolio .portfolio-img {
    width: 100%;
    height: 400px;
    margin-bottom: 40px;
    overflow: hidden;
    border-radius: 20px;
    background-color: #2a2a2a;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.portfolio-section .single-portfolio .portfolio-img img {
    position: relative;
    z-index: 2;
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.portfolio-section .single-portfolio .portfolio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.portfolio-section .single-portfolio .portfolio-img:hover img {
    width: 103%;
    height: 103%;
    /* special for website, my doc no need*/
    margin: 0 0 0 -1.5%;
}

.portfolio-section .single-portfolio .portfolio-text {
    padding: 0;
    overflow: hidden;
    max-width: 100%;
    height: auto;
    text-align: center;
}

.portfolio-section .single-portfolio h6 {
    margin-bottom: 15px;
    color: #ffffff;
    font-size: var(--font32);
    white-space: normal;
    text-overflow: unset;
    font-weight: 700;
    line-height: 1.3;
}

.portfolio-section .single-portfolio p {
    color: #cccccc;
    margin-bottom: 25px;
    white-space: normal;
    text-overflow: unset;
    font-size: var(--font20);
    line-height: 1.5;
    overflow: visible;
}

.portfolio-section .single-portfolio span {
    color: #232323;
    margin-bottom: 16px;
    font-size: var(--font20);
    padding-left: 20px;
    white-space: nowrap;
    text-overflow: ellipsis;
    position: relative;
}

.portfolio-section .single-portfolio span::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background-color: #232323;
    position: absolute;
    left: 0;
    top: 58%;
    transform: translateY(-50%);
}

body.black .single-portfolio h6 {
    color: #fff;
}

body.black .single-portfolio p {
    color: #919191;
}

body.black .single-portfolio span {
    color: #FFFFFF;
}

body.black .single-portfolio span::before {
    background-color: #fff;
}

.portfolio-section .show-all-portfolio {
    width: 260px;
    height: 100%;
    margin: 0 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.portfolio-section .show-all-portfolio .card-area {
    width: 100%;
    height: 312px;
    margin-bottom: 30px;
    overflow: hidden;
    background-color: #FFFFFF;
    margin-bottom: 140px;
    border-radius: 32px;
    display: flex;
    align-content: flex-start;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.portfolio-section .show-all-portfolio .card-area i {
    font-size: var(--font32);
    color: #232323;
}

.portfolio-section .show-all-portfolio .card-area p {
    font-size: var(--font20);
    color: #232323;
    font-weight: 500;
    margin: 15px 0;
}

.portfolio-section .show-all-portfolio .card-area a {
    text-decoration: none;
    color: #FFFFFF;
    background-color: #222;
    padding: 10px 20px;
    border-radius: 20px;
    line-height: 20px;
    display: inline-block;
    font-size: var(--font16);
}

.process-section {
    position: relative;
    width: 100%;
}

.process-section .section-text-start {
    position: absolute;
    top: calc(100% * (50 / 500));
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translate(0, -50%);
    overflow: hidden;
}

.process-section .section-text-start span {
    line-height: 1;
    font-weight: 600;
    display: inline-block;
    font-size: var(--font48);
    /* background: linear-gradient(180deg, #8d4daa 0%, rgba(51, 51, 51, 0) 95%); */
    background: #a177b4;
    background-size: 100% 100%;
    background-position-x: 0;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    white-space: nowrap;
}

.process-section .section-text-start span:nth-child(2) {
    align-self: flex-start;
}

.process-section .process-scroll-area {
    width: 100%;
    height: 500vh;
    position: relative;
}

.process-section .process-sticky {
    position: sticky;
    width: 10%;
    height: 100vh;
    top: 0;
    z-index: 10;
    color: #fff;
    left: 50%;
    transform: translateX(-50%);
}

.process-section .process-moving-relative {
    position: relative;
    width: 100%;
    height: 100%;
}

.process-section .circle {
    width: 375px;
    height: 375px;
    max-width: 75vw;
    max-height: 75vw;
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: #fff;
    border-radius: 50%;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    transition: .3s ease-out;
    box-shadow: 0px 0px 10px #b2b2b2, 0px 0px 17px #b2b2b2;
}

.process-section .circle.small {
    transition: .3s ease-out;
    width: 50px;
    height: 50px;
    transform: translate(-50%, -50%) scale(1);
}

.process-section .circle .circle-content {
    position: relative;
    width: 100%;
    height: 100%;
}

.process-section .circle .circle-content a {
    opacity: 0;
    visibility: hidden;
    display: none;
}

body:not(.black) .process-section .circle {
    opacity: 0;
    visibility: hidden;
}

.process-section .circle.down-btn .circle-content a {
    opacity: 1;
    transition: .2s ease-out;
    visibility: visible;
    display: block;
}

.process-section .circle.down-btn .circle-content .step-by-step-button {
    position: absolute;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: #a177b4;
    border-radius: 50%;
    top: 77.5%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: .2s ease-out;
    font-size: var(--font30);
    cursor: pointer;
}

.process-section .circle p.text {
    font-size: var(--font32);
    text-align: center;
    color: #232323;
    display: block;
    width: 80%;
    margin: 0 auto 30px;
    font-weight: 600;
    text-align: center;
    transition: 0s;
    visibility: visible;
    opacity: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
}

.process-section .circle p.number {
    font-size: var(--font16);
    text-align: center;
    color: #232323;
    display: block;
    width: 80%;
    margin: 0 auto;
    font-weight: 600;
    text-align: center;
    transition: 0s;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.process-section .circle.small p.text {
    visibility: hidden;
    opacity: 0;
}

.process-section .circle.small p.number {
    visibility: visible;
    opacity: 1;
}

.process-section .process-moving-path {
    color: #FFFFFF;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    height: 500vh;
    transition: .8s ease-in-out;
}

.process-section .process-moving-path .process-path-svg-relative {
    position: relative;
    width: 100%;
    height: 400vh;
    margin-top: 50vh;
    margin-bottom: 50vh;
}

.process-section .process-moving-path .process-path-svg-relative:before {
    content: "";
    width: 2px;
    height: 100%;
    position: absolute;
    top: 0;
    left: calc(50% - 1px);
    background: linear-gradient(180deg, rgba(51, 51, 51, 0) 2%, #919191 20%, #919191 80%, rgba(51, 51, 51, 0) 98%);
}

.process-section .process-moving-path .process-path-svg-relative .single-process {
    width: 90%;
    position: absolute;
    left: 5%;
    transform: translateY(-50%);
    color: #fff;
    transition: .4s ease-in-out;
    opacity: 0.3;
    display: flex;
}

.process-section .process-moving-path .process-path-svg-relative .single-process .process-text-wrapper {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.process-section .process-moving-path .process-path-svg-relative .single-process .process-text-wrapper::after {
    position: absolute;
    top: 0%;
    left: 0%;
    font-size: 120px;
    color: #fff;
    width: fit-content;
    height: fit-content;
    width: -moz-fit-content;
    height: -moz-fit-content;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    opacity: .075;
}

.process-section .process-moving-path .process-path-svg-relative .single-process .process-text-wrapper span {
    font-size: var(--font20);
    color: #a177b4;
    font-weight: 600;
}

.process-section .process-moving-path .process-path-svg-relative .single-process .process-text-wrapper h2 {
    font-size: var(--font48);
    color: #fff;
    font-weight: 600;
}

.process-section .process-moving-path .process-path-svg-relative .single-process .process-text-wrapper p {
    font-size: var(--font16);
    color: #fff;
    font-weight: 500;
}

.process-section .process-moving-path .process-path-svg-relative .single-process .process-image {
    min-height: 50vh;
    width: 50%;
}

.process-section .process-moving-path .process-path-svg-relative .single-process .process-image img {
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
}

.process-section .process-moving-path .process-path-svg-relative .single-process .next-step {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #a177b4;
    color: #fff;
    line-height: 42px;
    text-align: center;
    margin: 10px 0 0 0;
    font-size: var(--font14);
    opacity: 0;
    visibility: hidden;
    transition: .3s ease-in-out;
    cursor: pointer;
}

.process-section .process-moving-path .process-path-svg-relative .single-process.current {
    opacity: 1;
}

.process-section .process-moving-path .process-path-svg-relative .single-process.process-1 {
    top: 20%;
}

.process-section .process-moving-path .process-path-svg-relative .single-process.process-2 {
    top: 40%;
    flex-direction: row-reverse;
}

.process-section .process-moving-path .process-path-svg-relative .single-process.process-3 {
    top: 60%;
}

.process-section .process-moving-path .process-path-svg-relative .single-process.process-4 {
    flex-direction: row-reverse;
    top: 80%;
}

.process-section .process-moving-path .process-path-svg-relative .single-process.process-1 .process-text-wrapper {
    padding-right: 8%;
    align-items: flex-end;
    text-align: right;
}

.process-section .process-moving-path .process-path-svg-relative .single-process.process-2 .process-text-wrapper {
    padding-left: 8%;
    align-items: flex-start;
    text-align: left;
}

.process-section .process-moving-path .process-path-svg-relative .single-process.process-3 .process-text-wrapper {
    padding-right: 8%;
    align-items: flex-end;
    text-align: right;
}

.process-section .process-moving-path .process-path-svg-relative .single-process.process-4 .process-text-wrapper {
    padding-left: 8%;
    align-items: flex-start;
    text-align: left;
}

.process-section .process-moving-path .process-path-svg-relative .single-process.process-1 .process-text-wrapper::after {
    content: "\f086";
}

.process-section .process-moving-path .process-path-svg-relative .single-process.process-2 .process-text-wrapper::after {
    content: "\f0ac";
    left: unset;
    right: 0%;
}

.process-section .process-moving-path .process-path-svg-relative .single-process.process-3 .process-text-wrapper::after {
    content: "\f15c";
}

.process-section .process-moving-path .process-path-svg-relative .single-process.process-4 .process-text-wrapper::after {
    content: "\f1c9";
    left: unset;
    right: 0%;
}

.process-section .process-moving-path .process-path-svg-relative .single-process.process-1 .process-image {
    padding-left: 8%;
}

.process-section .process-moving-path .process-path-svg-relative .single-process.process-2 .process-image {
    padding-right: 8%;
}

.process-section .process-moving-path .process-path-svg-relative .single-process.process-3 .process-image {
    padding-left: 8%;
}

.process-section .process-moving-path .process-path-svg-relative .single-process.process-4 .process-image {
    padding-right: 8%;
}

.process-section .process-moving-path .process-path-svg-relative .single-process.process-4 .process-image img {
    width: 85%;
}

.process-section .process-moving-path .process-path-svg-relative .single-process.process-1 .next-step {
    transform: rotate(-45deg) scale(0);
}

.process-section .process-moving-path .process-path-svg-relative .single-process.process-2 .next-step {
    transform: rotate(45deg) scale(0);
}

.process-section .process-moving-path .process-path-svg-relative .single-process.process-3 .next-step {
    transform: rotate(-45deg) scale(0);
}

.process-section .process-moving-path .process-path-svg-relative .single-process.process-4 .next-step {
    transform: rotate(45deg) scale(0);
}

.process-section .process-moving-path .process-path-svg-relative .single-process.process-1.current .next-step {
    transform: rotate(-45deg) scale(1);
    opacity: 1;
    visibility: visible;
}

.process-section .process-moving-path .process-path-svg-relative .single-process.process-2.current .next-step {
    transform: rotate(45deg) scale(1);
    opacity: 1;
    visibility: visible;
}

.process-section .process-moving-path .process-path-svg-relative .single-process.process-3.current .next-step {
    transform: rotate(-45deg) scale(1);
    opacity: 1;
    visibility: visible;
}

.process-section .process-moving-path .process-path-svg-relative .single-process.process-4.current .next-step {
    transform: rotate(45deg) scale(1);
    opacity: 1;
    visibility: visible;
}

.process-section .mobile-step-start, .process-section .mobile-step-end {
    display: none;
}

.contact-section {
    margin-top: 100px;
    padding-top: 150px;
    padding-bottom: 150px;
}

.contact-section h2 {
    padding-left: 50px;
    font-size: var(--font60);
    color: #232323;
    font-weight: 600;
    line-height: 1.4;
}

.contact-section h2 a {
    color: #232323;
    text-decoration: none;
}

body.black .contact-section h2 {
  color: #ffffff;
}

body.black .contact-section h2 a {
  color: #ffffff;
  text-decoration: none;
}

.contact-section h2 a mark {
    padding: 0;
    background-color: transparent;
    color: inherit;
    background-image: linear-gradient(#898989, #898989);
    background-repeat: no-repeat;
    background-size: 20% 38%;
    background-position: 0 100%;
}

.contact-section h2 a:hover mark {
    animation: 1s highlight ease-in-out forwards;
}

@keyframes highlight {
    to {
        background-size: 100% 38%;
    }
}

.contact-section h2 a.contact-w-arrow {
    position: relative;
}

.contact-section h2 a.contact-w-arrow::after {
    content: "";
    position: absolute;
    width: 10%;
    height: 100%;
    top: 0;
    left: 100%;
}

.contact-section h2 a.contact-w-arrow i {
    display: block;
    position: absolute;
    font-size: var(--font40);
    top: 58%;
    left: 110%;
    transform: translateY(-50%);
    transform-origin: center;
    transition-duration: .5s;
}

.contact-section h2 a.contact-w-arrow:hover i {
    transform: translateY(-50%) rotate(-45deg);
}

.footer-section .footer-col {
    padding: 0 25px;
}

.footer-section .copyright-area p {
    color: #787878;
    font-size: var(--font16);
    line-height: 26px;
    padding: 25px 110px 50px 110px;
}
/* Form Styling */
.contact-form {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 12px;
    font-size: 16px;
    border: 1px solid #dddddd;
    border-radius: 5px;
    margin-bottom: 10px;
  }
  
  .contact-form button {
    padding: 12px;
    font-size: 16px;
    background-color: #898989;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  
  /* Typing Indicator Styles - Clean Theme */
.typing-indicator-text {
  color: #6c757d;
  font-style: italic;
  font-size: 14px;
}

.typing-dots {
  display: inline-block;
  margin-left: 4px;
}

.typing-dots .dot {
  opacity: 0.4;
  animation: typingDots 1.4s infinite ease-in-out;
  font-weight: bold;
  font-size: 16px;
}

.typing-dots .dot:nth-child(1) {
  animation-delay: 0s;
}

.typing-dots .dot:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-dots .dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typingDots {
  0%, 60%, 100% {
    opacity: 0.4;
    transform: scale(1);
  }
  30% {
    opacity: 1;
    transform: scale(1.2);
  }
}/* L
aptop Chat Container - Minimal spacing */
.laptop-chat-container {
  height: 105%;
  width: 105%;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  position: relative;
  top: -2.5%;
  left: -2.5%;
  z-index: -1;
}

.laptop-chat-container .chat-interface {
  height: 100%;
  width: 100%;
  margin: 0;
}/* Chat S
uggestions Styles */
.chat-suggestions {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  padding: 12px 16px 8px 16px;
  background: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
}

.suggestion-btn {
  background: rgba(141, 180, 249, 0.1);
  border: 1px solid rgba(141, 180, 249, 0.3);
  border-radius: 20px;
  padding: 6px 10px;
  font-size: 12px;
  color: #8db4f9;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
  text-align: center;
}

.suggestion-btn:hover {
  background: rgba(141, 180, 249, 0.2);
  border-color: rgba(141, 180, 249, 0.5);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(141, 180, 249, 0.2);
}

.suggestion-btn:active {
  transform: translateY(0);
}

/* Hide suggestions after first message */
.chat-suggestions.hidden {
  display: none;
}/* User
 Message Styles - Compact and Right-aligned */
.user-message {
  text-align: right;
  margin-bottom: 15px;
}

.user-message .message-content {
  background: linear-gradient(135deg, #8db4f9, #6366f1);
  color: white;
  padding: 4px 8px;
  border-radius: 14px 14px 4px 14px;
  max-width: 60%;
  width: fit-content;
  height: fit-content;
  margin-left: auto;
  box-shadow: 0 2px 8px rgba(141, 180, 249, 0.3);
  display: inline-block;
}

.user-message .message-content p {
  margin: 0;
  padding: 0;
  font-size: 13px;
  line-height: 1.1;
  word-wrap: break-word;
}

.user-message .message-time {
  font-size: 11px;
  color: #6c757d;
  margin-top: 4px;
  display: block;
  text-align: right;
}
/* Mobile Chat Interface Styles for Phone Wrapper */
.phone-screen-wrapper {
  position: absolute;
  top: 12%;
  left: 12%;
  right: 12%;
  bottom: 18%;
  z-index: 2;
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: transparent;
}

.mobile-chat-interface {
  height: 100%;
  display: flex;
  flex-direction: column;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mobile-chat-header {
  background: linear-gradient(135deg, #8db4f9, #7aa3f7);
  padding: 4px 6px;
  color: white;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  border-radius: 12px 12px 0 0;
}

.mobile-chat-avatar {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.mobile-avatar-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
}

.mobile-chat-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mobile-chat-info h4 {
  margin: 0;
  font-size: 8px;
  font-weight: 600;
}

.mobile-status {
  font-size: 6px;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 2px;
}

.mobile-chat-messages {
  flex: 1;
  padding: 6px;
  overflow-y: auto;
  background: #f8fafc;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-chat-messages::-webkit-scrollbar {
  width: 2px;
}

.mobile-chat-messages::-webkit-scrollbar-track {
  background: transparent;
}

.mobile-chat-messages::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 1px;
}

.mobile-message {
  display: flex;
  flex-direction: column;
  max-width: 85%;
  animation: mobileMessageSlideIn 0.3s ease-out;
}

@keyframes mobileMessageSlideIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-user-message {
  align-self: flex-end;
}

.mobile-bot-message {
  align-self: flex-start;
}

.mobile-message-content {
  padding: 4px 6px;
  border-radius: 8px;
  position: relative;
  word-wrap: break-word;
  line-height: 1.3;
}

.mobile-user-message .mobile-message-content {
  background: linear-gradient(135deg, #8db4f9, #7aa3f7);
  color: white;
  border-bottom-right-radius: 3px;
}

.mobile-bot-message .mobile-message-content {
  background: white;
  color: #1f2937;
  border: 1px solid #e5e7eb;
  border-bottom-left-radius: 3px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.mobile-message-content p {
  margin: 0;
  font-size: 7px;
  line-height: 1.4;
}

.mobile-message-time {
  font-size: 5px;
  opacity: 0.6;
  margin-top: 2px;
  align-self: flex-end;
}

.mobile-user-message .mobile-message-time {
  color: rgba(255, 255, 255, 0.8);
}

.mobile-bot-message .mobile-message-time {
  color: #6b7280;
  align-self: flex-start;
}

.mobile-chat-suggestions {
  padding: 4px 6px;
  background: #f8fafc;
  border-top: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex-shrink: 0;
}

.mobile-chat-suggestions.hidden {
  display: none;
}

.mobile-suggestion-btn {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 3px 5px;
  font-size: 6px;
  color: #374151;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 3px;
}

.mobile-suggestion-btn:hover {
  background: #f3f4f6;
  border-color: #d1d5db;
  transform: translateY(-1px);
}

.mobile-chat-input-area {
  padding: 6px;
  background: white;
  border-top: 1px solid #e5e7eb;
  flex-shrink: 0;
}

.mobile-input-wrapper {
  display: flex;
  align-items: center;
  gap: 4px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 2px;
  transition: border-color 0.2s ease;
}

.mobile-input-wrapper:focus-within {
  border-color: #8db4f9;
  box-shadow: 0 0 0 2px rgba(141, 180, 249, 0.1);
}

.mobile-input-wrapper input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  padding: 4px 6px;
  font-size: 6px;
  color: #1f2937;
}

.mobile-input-wrapper input::placeholder {
  color: #9ca3af;
}

.mobile-send-btn {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #8db4f9, #7aa3f7);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.mobile-send-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 2px 6px rgba(141, 180, 249, 0.3);
}

.mobile-send-btn svg {
  width: 8px;
  height: 8px;
}

/* Mobile typing indicator */
.mobile-chat-interface .typing-indicator-text {
  font-size: 6px;
  color: #6b7280;
}

.mobile-chat-interface .typing-dots {
  display: inline-flex;
  gap: 1px;
  margin-left: 2px;
}

.mobile-chat-interface .typing-dots .dot {
  width: 2px;
  height: 2px;
  background: #6b7280;
  border-radius: 50%;
  animation: mobileTypingDot 1.4s infinite ease-in-out;
}

.mobile-chat-interface .typing-dots .dot:nth-child(1) { animation-delay: -0.32s; }
.mobile-chat-interface .typing-dots .dot:nth-child(2) { animation-delay: -0.16s; }
.mobile-chat-interface .typing-dots .dot:nth-child(3) { animation-delay: 0s; }

@keyframes mobileTypingDot {
  0%, 80%, 100% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}/
* Premium Mobile Chat Interface - Exact Laptop Replica */

/* Phone screen positioning - inside phone boundaries */
.phone-screen-wrapper {
  position: absolute;
  top: 12%;
  left: 12%;
  right: 12%;
  bottom: 18%;
  z-index: 1;
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
  background: transparent;
}

/* Mobile chat interface - exact laptop replica */
.mobile-chat-interface {
  height: 100%;
  display: flex;
  flex-direction: column;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Header - scaled for phone */
.mobile-chat-header {
  background: linear-gradient(135deg, #8db4f9, #7aa3f7);
  padding: 6px 8px;
  color: white;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  border-radius: 15px 15px 0 0;
}

.mobile-chat-avatar {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.mobile-avatar-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
}

.mobile-chat-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mobile-chat-info h4 {
  margin: 0;
  font-size: 8px;
  font-weight: 600;
  color: white;
}

.mobile-status {
  font-size: 6px;
  opacity: 0.9;
  color: rgba(255, 255, 255, 0.8);
}

/* Messages area - scaled for phone */
.mobile-chat-messages {
  flex: 1;
  padding: 4px;
  overflow-y: auto;
  background: #f8fafc;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.mobile-chat-messages::-webkit-scrollbar {
  width: 4px;
}

.mobile-chat-messages::-webkit-scrollbar-track {
  background: transparent;
}

.mobile-chat-messages::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 2px;
}

.mobile-message {
  display: flex;
  flex-direction: column;
  max-width: 85%;
  animation: messageSlideIn 0.3s ease-out;
}

.mobile-user-message {
  align-self: flex-end;
}

.mobile-bot-message {
  align-self: flex-start;
}

.mobile-message-content {
  padding: 12px 16px;
  border-radius: 18px;
  position: relative;
  word-wrap: break-word;
  line-height: 1.4;
}

.mobile-user-message .mobile-message-content {
  background: linear-gradient(135deg, #8db4f9, #7aa3f7);
  color: white;
  border-bottom-right-radius: 6px;
}

.mobile-bot-message .mobile-message-content {
  background: white;
  color: #1f2937;
  border: 1px solid #e5e7eb;
  border-bottom-left-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mobile-message-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.mobile-message-time {
  font-size: 11px;
  opacity: 0.6;
  margin-top: 4px;
  align-self: flex-end;
}

.mobile-user-message .mobile-message-time {
  color: rgba(255, 255, 255, 0.8);
}

.mobile-bot-message .mobile-message-time {
  color: #6b7280;
  align-self: flex-start;
}

/* Suggestions - exact laptop style */
.mobile-chat-suggestions {
  padding: 12px;
  background: #f8fafc;
  border-top: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
}

.mobile-chat-suggestions.hidden {
  display: none;
}

.mobile-suggestion-btn {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 12px 16px;
  font-size: 14px;
  color: #374151;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.mobile-suggestion-btn:hover {
  background: #f3f4f6;
  border-color: #d1d5db;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Input area - exact laptop style */
.mobile-chat-input-area {
  padding: 16px;
  background: white;
  border-top: 1px solid #e5e7eb;
  flex-shrink: 0;
  border-radius: 0 0 20px 20px;
}

.mobile-input-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 4px;
  transition: all 0.2s ease;
}

.mobile-input-wrapper:focus-within {
  border-color: #8db4f9;
  box-shadow: 0 0 0 3px rgba(141, 180, 249, 0.1);
}

.mobile-input-wrapper input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  padding: 12px 16px;
  font-size: 14px;
  color: #1f2937;
}

.mobile-input-wrapper input::placeholder {
  color: #9ca3af;
}

.mobile-send-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #8db4f9, #7aa3f7);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(141, 180, 249, 0.3);
}

.mobile-send-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(141, 180, 249, 0.4);
}

.mobile-send-btn svg {
  width: 18px;
  height: 18px;
}

/* Typing indicator - exact laptop style */
.mobile-chat-interface .typing-indicator-text {
  font-size: 13px;
  color: #6b7280;
}

.mobile-chat-interface .typing-dots {
  display: inline-flex;
  gap: 2px;
  margin-left: 4px;
}

.mobile-chat-interface .typing-dots .dot {
  width: 4px;
  height: 4px;
  background: #6b7280;
  border-radius: 50%;
  animation: typingDot 1.4s infinite ease-in-out;
}

.mobile-chat-interface .typing-dots .dot:nth-child(1) { animation-delay: -0.32s; }
.mobile-chat-interface .typing-dots .dot:nth-child(2) { animation-delay: -0.16s; }
.mobile-chat-interface .typing-dots .dot:nth-child(3) { animation-delay: 0s; }

@keyframes typingDot {
  0%, 80%, 100% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}