/* Normalize.css */
@import url('https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css');

/* Animate.css */
@import url('https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css');

/* Slick Carousel */
@import url('https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.8.1/slick.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.8.1/slick-theme.min.css');

/* AOS (Animation On Scroll) */
@import url('https://unpkg.com/aos@2.3.4/dist/aos.css');

/* Font Awesome 6 */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');

@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Darker+Grotesque:wght@300;400;500;600;700;800;900&display=swap');

:root{
  --Hanken:'Hanken Grotesk', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --Grotesque:'Darker Grotesque', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}


/* ====== RESET ====== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.cursor-trail {
      position: fixed;
      top: 0;
      left: 0;
      width: 30px;
      height: 30px;
      border: 2px solid #308FFF;
      border-radius: 50%;
      pointer-events: none;
      z-index: 9999;
      transform: translate(-50%, -50%);
      transition: all 0.08s ease-out;
    }

    .dot {
      position: fixed;
      width: 10px;
      height: 10px;
      background-color: #FF2990;
      border-radius: 50%;
      pointer-events: none;
      z-index: 10000;
      transform: translate(-50%, -50%);
    }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  scroll-margin-top:100px;
  scroll-padding-top:100px;
}

body {
  font-family: var(--Hanken);
  line-height: 1.5;
  font-size: 16px;
  background-color: #000;
  color: #fff;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  cursor: auto;
  
}

/* ====== SCROLLBAR CUSTOMIZATION ====== */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #fff;
  box-shadow: inset 0 0 5px grey;
}
::-webkit-scrollbar-thumb {
  background: #0F003A;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: #308FFF;
}

/* ====== TYPOGRAPHY ====== */
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  font-weight: 400;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

a:hover,
a:focus {
  text-decoration: none;
  outline: none;
}

/* ====== BUTTONS & FORMS ====== */
button,
input,
textarea,
select {
  font-family: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}button {
  transition: all 0.3s ease;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

/* ====== IMAGES & LISTS ====== */
img {
  max-width: 100%;
  display: block;
  height: auto;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ====== UTILITY CLASSES ====== */
.no-pad {
  padding: 0 !important;
}

.text-center {
  text-align: center;
}

.d-flex {
  display: flex;
}

.align-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

/* ====== ACCESSIBILITY ====== */
:focus-visible {
  outline: none;
  outline-offset: 0px;
}


.MainMenu {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 46px;
}

header {
    padding: 37px 0;
}

header .text {
    display: flex;
    justify-content: flex-end;
}

.MainMenu a {
    text-transform: capitalize;
    line-height: 24px;
    transition: 0.3s;
    position: relative;
    color: #fff;
}

.MainMenu a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -5px;
    width: 0;
    height: 1px;
    background: white;
    transform: translateX(-50%);
    transition: 0.3s;
}

.MainMenu a:hover::after {
    transition: 0.3s;
    width: 60%;
}

.MainMenu a:hover {
    transition: .3s;
    color: #fff;
}

.t-btn {
    padding: 10px 36px;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    max-width: fit-content;
    gap: 8px;
    color: #fff;
    font-size: 16px;
    line-height: 24px;
    text-transform: capitalize;
    display: flex;
    border: 1px solid #fff;
    border-radius: 200px;
    transition: 0.3s;
    position:relative;
    overflow: hidden;
}

.t-btn::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.2), transparent); transition: left 0.5s; }
.t-btn:hover::before { left: 100%; }

header .t-btn {
    background: transparent;
}

header .t-btn:hover {
    background: linear-gradient(45deg, #18b2eacc, #5B3DFDcc);
}

.t-btn:hover {
    color:#fff;
}

header#myHeader {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

.heroBanner {
    padding: 200px 0 60px;
}

.heroBanner .text {
    text-align: center;
}

.twoBox {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.text h1 {
    font-size: 120px;
    font-family: var(--Grotesque);
    font-weight: 400;
    line-height: 80px;
    text-transform: capitalize;
}

.heroBanner .text p {font-size: 25px;line-height: 35px;margin: 40px 0 50px;}

.heroBanner .text .twoBox {
    margin-bottom: 46px;
}

.heroBanner .text img {
    width: 100%;
    max-width: 100%;
    height: min-content;
    transition: 0.3s;
    animation: bouncetext 2s 
ease infinite alternate;
}
@keyframes bouncetext {
  
0% {
    transform: translateY(0px);
}
100% {
  
  transform: translateY(-20px);
}
}

.logoMainSliderBox {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    backdrop-filter: blur(15px);
    position: relative;
    padding: 37px 45px;
}

.logoMainSliderBox::after {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 16px;
    position: absolute;
    background: linear-gradient(45deg, #00A1FF, #FFFFFF);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    inset: 0;
    padding: 1px;
}

.logoMainSliderBox .twoBox {
    justify-content: unset;
    gap: 75px;
}

.homeSec01 {
    padding: 200px 0;
}

.text h3 {
    font-size: 22px;
    font-weight: 500;
    line-height: 35px;
}

.blueText {
    color: transparent;
    background: linear-gradient(
319deg, #18B2EA, #5B3DFD);
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
}

.text h2 {
    font-size: 60px;
    font-family: var(--Grotesque);
    line-height: 46.2px;
    letter-spacing: 1px;
    font-weight: 400;
}

.section02Cards {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 34px;
    margin-top: 60px;
}

.section02Cards .CardBox {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 130px;
    padding: 35px 28px 45px;
    transition:0.3s;
}

.text h4 {
    font-size: 30px;
    font-family: 'Darker Grotesque';
    font-weight: 700;
    line-height: 34px;
    margin-bottom: 20px;
}

.section02Cards .CardBox .text p {
    line-height: 26px;
    font-weight: 300;
}

.section02Cards .CardBox::after {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 16px;
    position: absolute;
    background: linear-gradient(45deg, #00A1FF, #FFFFFF);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    inset: 0;
    padding: 1px;
    opacity:0.5;
    transition:0.3s;
}

.section02Cards .CardBox:hover{
    background:rgba(255, 255, 255, 0.1);
    transition:0.3s;
    backdrop-filter:blur(15px);
    &::after{
        opacity:0.6;
        transition:0.3s;
    }
}

.homeSec01 .text h2 {
    text-align: center;
}

.heroBanner .text .twoBox .t-btn:first-child {
    background: black;
    border-color: black;
}

.firstVectior {
    position: relative;
}

.firstVectior img.vectorImage {
    position: absolute;
    top: 0;
    width: 100%;
    height: fit-content;
    left: 0;
    filter: url(#wavy);
}

.SecondVector {
    position: relative;
}

.SecondVector img.vectorImage {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    filter: url(#wavy);
    height: min-content;
    z-index: 0;
    transform:translateY(-50%);
}


.homeSec02 .text p {
    font-size: 20px;
    line-height: 35px;
    margin-top: 50px;
    max-width: 90%;
}

.TestimnonialSliderSingle {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.homeSec03 {
    padding: 200px 0;
}

.TestimnonialSliderSingle img {
    height: 128px;
    width: 128px;
    border-radius: 100%;
    margin-bottom: 40px;
}

.TestimnonialSliderSingle p {
    font-size: 60px;
    font-weight: 600;
    font-style: italic;
    text-transform: capitalize;
    max-width: 1000px;
}

.TestimnonialSliderSingle span {
    display: flex;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    font-size: 30px;
    font-weight: 500;
    line-height: 110px;
}

.homeSec04 h2 {
    text-align: center;
    margin-bottom: 89px;
}

.pricingCardMain {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-evenly;
    gap: 34px;
    align-content: stretch;
}

.pricingCardBox {
    width: 100%;
    padding: 27px 27px 49px;
    border-radius: 16px;
    backdrop-filter: blur(15px);
    position: relative;
    height: -webkit-fill-available;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pricingCardBox::after {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 16px;
    position: absolute;
    background: linear-gradient(45deg, #00A1FF, #FFFFFF);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    inset: 0;
    padding: 1px;
    transition:0.3s;
    opacity: 0.5;
}

.pricingCardBox .twoBox {
    justify-content: space-between;
}

.pricingCardBox span.plan {
    font-size: 24px;
    line-height: 34px;
    letter-spacing: 1px;
    font-family: 'Darker Grotesque';
    font-weight: 700;
}

.pricingCardBox span.tag {
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #fff;
    padding: 0 13px;
    font-size: 20px;
    line-height: 34px;
    font-weight: 500;
    font-family: 'Darker Grotesque';
}

.pricingCardBox h6 {font-size: 22px;font-family: 'Darker Grotesque';font-weight: 500;letter-spacing: 1px;}

.pricingCardBox h6 span {font-size: 42px;
    font-weight: 700;
    font-family: 'Darker Grotesque';
    line-height: 42px;
    letter-spacing: 1px;}

.pricingCardBox p {
    font-size: 16px;
    line-height: 26px;
    font-weight: 300;
}

.pricingCardBox .t-btn {
    width: 100%;
    max-width: 100%;
    background: rgba(255, 255, 255, 0.1);
}

.pricingCardBox  span.dividerText {
    display: block;
    width: 100%;
    text-align: center;
    position: relative;
}

.pricingCardBox span.dividerText::after, .pricingCardBox span.dividerText::before {
    content: "";
    position: absolute;
    width: 35%;
    height: 1px;
    background: #fff;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.pricingCardBox span.dividerText::after {
    left: auto;
    right: 0;
}

.pricingCardBox ul li {
    font-size: 14px;
    line-height: 28px;
    font-weight: 300;
}

.pricingCardBox ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: inside;
    list-style-image: url(../images/bulltertick.png);
}

.pricingCardMain .pricingCardBox:nth-child(2) {
    background: rgba(255, 255, 255, 0.1);
}

.pricingCardMain .pricingCardBox:nth-child(2) .t-btn {
    background: black;
    border-color: black;
}

.homeSec04 {
    padding-bottom: 200px;
}

.homeSec05 .text {
    padding: 73px 185px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
    border-radius: 20px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.homeSec05 .text h6 {
    font-size: 30px;
    font-family: 'Hanken Grotesk';
    line-height: 50px;
    font-weight: 300;
}

.homeSec05 .text h2 {
    font-size: 70px;
    line-height: 70px;
    font-weight: 300;
    font-family: 'Hanken Grotesk';
}

.homeSec05 .text .t-btn {
    margin-top: 60px;
    background: #fff;
    color: #18B2EA;
}

.homeSec05 .text .t-btn path {
    stroke: #18B2EA;
    transform: scale(1.07);
}

.homeSec05 .text .t-btn::before {
    background: linear-gradient(120deg, transparent, rgb(0 126 255 / 44%), transparent);
}

footer {
    padding: 30px 0;
}

footer .socialIcons {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 14px;
}

footer .socialIcons a {
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    font-size: 20px;
    border: 1px solid #fff;
    transition: 0.3s;
}

footer .socialIcons a:hover {
    transition: 0.3s;
    color: #fff;
    background: linear-gradient(45deg, #2265DD, #23C1F9);
    border-color: #23C1F9;
}

.slick-active .TestimnonialSliderSingle p, .slick-active .TestimnonialSliderSingle span{
 -webkit-animation: testim-content-in 1s ease-in-out forwards;    
    -moz-animation: testim-content-in 1s ease-in-out forwards;    
    -ms-animation: testim-content-in 1s ease-in-out forwards;    
    -o-animation: testim-content-in 1s ease-in-out forwards;    
    animation: testim-content-in 1s ease-in-out forwards;    
}
.slick-active .TestimnonialSliderSingle img{
-webkit-animation: testim-show 1s ease-in-out forwards;            
    -moz-animation: testim-show 1s ease-in-out forwards;            
    -ms-animation: testim-show 1s ease-in-out forwards;            
    -o-animation: testim-show 1s ease-in-out forwards;            
    animation: testim-show 1s ease-in-out forwards;   
}

@-webkit-keyframes testim-scale {
    0% {
        -webkit-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        -webkit-box-shadow: 0px 0px 10px 5px #eee;        
        box-shadow: 0px 0px 10px 5px #eee;        
    }

    70% {
        -webkit-box-shadow: 0px 0px 10px 5px #ea830e;        
        box-shadow: 0px 0px 10px 5px #ea830e;        
    }

    100% {
        -webkit-box-shadow: 0px 0px 0px 0px #ea830e;        
        box-shadow: 0px 0px 0px 0px #ea830e;        
    }
}

@-moz-keyframes testim-scale {
    0% {
        -moz-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        -moz-box-shadow: 0px 0px 10px 5px #eee;        
        box-shadow: 0px 0px 10px 5px #eee;        
    }

    70% {
        -moz-box-shadow: 0px 0px 10px 5px #ea830e;        
        box-shadow: 0px 0px 10px 5px #ea830e;        
    }

    100% {
        -moz-box-shadow: 0px 0px 0px 0px #ea830e;        
        box-shadow: 0px 0px 0px 0px #ea830e;        
    }
}

@-ms-keyframes testim-scale {
    0% {
        -ms-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        -ms-box-shadow: 0px 0px 10px 5px #eee;        
        box-shadow: 0px 0px 10px 5px #eee;        
    }

    70% {
        -ms-box-shadow: 0px 0px 10px 5px #ea830e;        
        box-shadow: 0px 0px 10px 5px #ea830e;        
    }

    100% {
        -ms-box-shadow: 0px 0px 0px 0px #ea830e;        
        box-shadow: 0px 0px 0px 0px #ea830e;        
    }
}

@-o-keyframes testim-scale {
    0% {
        -o-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        -o-box-shadow: 0px 0px 10px 5px #eee;        
        box-shadow: 0px 0px 10px 5px #eee;        
    }

    70% {
        -o-box-shadow: 0px 0px 10px 5px #ea830e;        
        box-shadow: 0px 0px 10px 5px #ea830e;        
    }

    100% {
        -o-box-shadow: 0px 0px 0px 0px #ea830e;        
        box-shadow: 0px 0px 0px 0px #ea830e;        
    }
}

@keyframes testim-scale {
    0% {
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        box-shadow: 0px 0px 10px 5px #eee;        
    }

    70% {
        box-shadow: 0px 0px 10px 5px #ea830e;        
    }

    100% {
        box-shadow: 0px 0px 0px 0px #ea830e;        
    }
}

@-webkit-keyframes testim-content-in {
    from {
        opacity: 0;
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }
    
    to {
        opacity: 1;
        -webkit-transform: translateY(0);        
        transform: translateY(0);        
    }
}

@-moz-keyframes testim-content-in {
    from {
        opacity: 0;
        -moz-transform: translateY(100%);
        transform: translateY(100%);
    }
    
    to {
        opacity: 1;
        -moz-transform: translateY(0);        
        transform: translateY(0);        
    }
}

@-ms-keyframes testim-content-in {
    from {
        opacity: 0;
        -ms-transform: translateY(100%);
        transform: translateY(100%);
    }
    
    to {
        opacity: 1;
        -ms-transform: translateY(0);        
        transform: translateY(0);        
    }
}

@-o-keyframes testim-content-in {
    from {
        opacity: 0;
        -o-transform: translateY(100%);
        transform: translateY(100%);
    }
    
    to {
        opacity: 1;
        -o-transform: translateY(0);        
        transform: translateY(0);        
    }
}

@keyframes testim-content-in {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    
    to {
        opacity: 1;
        transform: translateY(0);        
    }
}

@-webkit-keyframes testim-content-out {
    from {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    
    to {
        opacity: 0;
        -webkit-transform: translateY(-100%);        
        transform: translateY(-100%);        
    }
}

@-moz-keyframes testim-content-out {
    from {
        opacity: 1;
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
    
    to {
        opacity: 0;
        -moz-transform: translateY(-100%);        
        transform: translateY(-100%);        
    }
}

@-ms-keyframes testim-content-out {
    from {
        opacity: 1;
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
    
    to {
        opacity: 0;
        -ms-transform: translateY(-100%);        
        transform: translateY(-100%);        
    }
}

@-o-keyframes testim-content-out {
    from {
        opacity: 1;
        -o-transform: translateY(0);
        transform: translateY(0);
    }
    
    to {
        opacity: 0;
        transform: translateY(-100%);        
        transform: translateY(-100%);        
    }
}

@keyframes testim-content-out {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    
    to {
        opacity: 0;
        transform: translateY(-100%);        
    }
}

@-webkit-keyframes testim-show {
    from {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    
    to {
        opacity: 1;
        -webkit-transform: scale(1);       
        transform: scale(1);       
    }
}

@-moz-keyframes testim-show {
    from {
        opacity: 0;
        -moz-transform: scale(0);
        transform: scale(0);
    }
    
    to {
        opacity: 1;
        -moz-transform: scale(1);       
        transform: scale(1);       
    }
}

@-ms-keyframes testim-show {
    from {
        opacity: 0;
        -ms-transform: scale(0);
        transform: scale(0);
    }
    
    to {
        opacity: 1;
        -ms-transform: scale(1);       
        transform: scale(1);       
    }
}

@-o-keyframes testim-show {
    from {
        opacity: 0;
        -o-transform: scale(0);
        transform: scale(0);
    }
    
    to {
        opacity: 1;
        -o-transform: scale(1);       
        transform: scale(1);       
    }
}

@keyframes testim-show {
    from {
        opacity: 0;
        transform: scale(0);
    }
    
    to {
        opacity: 1;
        transform: scale(1);       
    }
}

@-webkit-keyframes testim-hide {
    from {
        opacity: 1;
        -webkit-transform: scale(1);       
        transform: scale(1);       
    }
    
    to {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }
}

@-moz-keyframes testim-hide {
    from {
        opacity: 1;
        -moz-transform: scale(1);       
        transform: scale(1);       
    }
    
    to {
        opacity: 0;
        -moz-transform: scale(0);
        transform: scale(0);
    }
}

@-ms-keyframes testim-hide {
    from {
        opacity: 1;
        -ms-transform: scale(1);       
        transform: scale(1);       
    }
    
    to {
        opacity: 0;
        -ms-transform: scale(0);
        transform: scale(0);
    }
}

@-o-keyframes testim-hide {
    from {
        opacity: 1;
        -o-transform: scale(1);       
        transform: scale(1);       
    }
    
    to {
        opacity: 0;
        -o-transform: scale(0);
        transform: scale(0);
    }
}

@keyframes testim-hide {
    from {
        opacity: 1;
        transform: scale(1);       
    }
    
    to {
        opacity: 0;
        transform: scale(0);
    }
}


img#scrollImage {
    position: absolute;
    top: 45%;
    right: -30px;
    left: auto;
}

.homeSec02 .col-lg-6 {
    position: unset;
}

section.homeSec02 {
    position: relative;
    height: 500px;
}


.chatScreen {
    padding: 200px 0 122px;
}

.suggestionListMain {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 20px;
    text-align: center;
    margin-bottom: 102px;
}

.suggestionBox {
    width: 100%;
    text-align: center;
}

.suggestionCard {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    backdrop-filter: blur(15px);
    position: relative;
    padding: 17px 10px;
    margin-bottom: 20px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.suggestionCard::after, .chatInoutBox::after {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 16px;
    position: absolute;
    background: linear-gradient(45deg, #00A1FF, #FFFFFF);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    inset: 0;
    padding: 1px;
    opacity:0.6;
}

.suggestionBox h3 {
    font-family: 'Darker Grotesque';
    font-size: 30px;
    font-weight: 700;
    line-height: 34px;
    letter-spacing: 0.5px;
    margin-bottom: 28px;
    margin-top: 24px;
}

.suggestionCard p {
    width: 100%;
    color: #fff;
    font-size: 22px;
    font-weight: 500;
    font-family: 'Hanken Grotesk';
    line-height: 29px;
}

.chatInoutBox {
    display: flex;
    flex-direction: row;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 23px 20px;
    border-radius: 10px;
    backdrop-filter: blur(15px);
    position: relative;
}

.chatInoutBox input[type="text"], #typed {
    width: 100%;
    color: #fff;
    font-size: 22px;
    font-weight: 500;
    line-height: 29px;
    font-family: 'Hanken Grotesk';
}

.chatInoutBox input[type="text"]::placeholder {
    color: #fff;
}

.chatInoutBox button {
    display: flex;
    align-items: center;
    justify-content: center;
}

.suggestionBox img {
    margin: auto;
    display: block;
        height: 51px;
    width: 51px;
    object-fit: contain;
}

/* Cursor blink animation */
    @keyframes blink {
      0% { opacity: 1; }
      50% { opacity: 0.5; }
      100% { opacity: 1; }
    }

    .cursor {
      display: inline-block;
      width: 2px;
      background-color: #fff;
      margin-left: 2px;
      animation: blink 0.7s infinite;
      vertical-align: middle;
      height: 30px;
        z-index: 11;
    }

     /* Hide label when input is focused or has value */
    input:focus + label,
    input:not(:placeholder-shown) + label {
      opacity: 0;
      transform: translateY(-10px);
    }

     label {
    position: absolute;
    left: 23px;
    top: 50%;
    color: #fff;
    pointer-events: none;
    font-size: 18px;
    transition: 0.2s ease all;
    display: flex;
    align-items: center;
    transform: translateY(-50%);
    margin: 0;
}

 .mobile-menu-container {
          position: fixed;
          top: 0;
          right: 0;
          left: 0;
          width: 100%;
          height: 70px;
          z-index: 99999;
          background: #00000069;
          display: none;
        backdrop-filter: blur(15px);
        }
    
        .mobile-menu-body-lock {
          overflow: hidden;
          position: fixed;
          width: 100%;
          height: 100%;
        }
        
        .mobile-menu-header {
          position: fixed;
          top: 0;
          right: 0;
          padding: 20px;
          z-index: 1000;
        }
        
        .mobile-menu-btn {
          display: block;
          width: 30px;
          height: 30px;
          position: relative;
          z-index: 1001;
          cursor: pointer;
          background: none;
          border: none;
          padding: 0;
        }
        
        .mobile-menu-btn-line {
          display: block;
          width: 100%;
          height: 2px;
          position: absolute;
          top: 50%;
          background-color: white;
          transform: translateY(-50%);
          transition: opacity 0.3s 0.3s;
        }
        
        .mobile-menu-btn::before,
        .mobile-menu-btn::after {
          content: '';
          display: block;
          width: 100%;
          height: 2px;
          position: absolute;
          background-color: white;
          transition: transform 0.3s, top 0.3s 0.3s, bottom 0.3s 0.3s;
        }
        
        .mobile-menu-btn::before {
          top: 6px;
        }
        
        .mobile-menu-btn::after {
          bottom: 6px;
        }
        
        .mobile-menu-active .mobile-menu-btn-line {
          opacity: 0;
          transition: opacity 0.3s;
        }
        
        .mobile-menu-active .mobile-menu-btn::before {
          top: 50%;
          transform: rotate(45deg);
          background-color: #ffffff;
        }
        
        .mobile-menu-active .mobile-menu-btn::after {
          bottom: 50%;
          transform: rotate(-45deg);
          background-color: #ffffff;
        }
        
        .mobile-menu-active .mobile-menu-btn::before,
        .mobile-menu-active .mobile-menu-btn::after {
          transition: top 0.3s, bottom 0.3s, transform 0.3s 0.3s;
        }
        
        .mobile-menu-nav {
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100vh;
          background-color: #000000;
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: center;
          list-style: none;
          z-index: 999;
          transform: translateX(-100%);
          transition: transform 0.3s ease;
              backdrop-filter: blur(15px);
        }
        
        .mobile-menu-active .mobile-menu-nav {
          transform: translateX(0);
        }
        
        .mobile-menu-item {
          opacity: 0;
          margin-bottom: 20px;
          transform: translateX(-20px);
          transition: all 0.3s;
          user-select: none;
          -webkit-user-select: none;
        }
        
        .mobile-menu-active .mobile-menu-item {
          opacity: 1;
          transform: translateX(0);
        }
        
        .mobile-menu-item:nth-child(1) { transition-delay: 0.1s; }
        .mobile-menu-item:nth-child(2) { transition-delay: 0.2s; }
        .mobile-menu-item:nth-child(3) { transition-delay: 0.3s; }
        .mobile-menu-item:nth-child(4) { transition-delay: 0.4s; }
        .mobile-menu-item:nth-child(5) { transition-delay: 0.5s; }
        
        .mobile-menu-active .mobile-menu-item:nth-child(1) { transition-delay: 0.1s; }
        .mobile-menu-active .mobile-menu-item:nth-child(2) { transition-delay: 0.2s; }
        .mobile-menu-active .mobile-menu-item:nth-child(3) { transition-delay: 0.3s; }
        .mobile-menu-active .mobile-menu-item:nth-child(4) { transition-delay: 0.4s; }
        .mobile-menu-active .mobile-menu-item:nth-child(5) { transition-delay: 0.5s; }
        
        .mobile-menu-link {
          font-size: 24px;
          text-decoration: none;
          color: #ffffff;
          position: relative;
          padding: 5px 0;
          user-select: none;
          -webkit-user-select: none;
        }
        
        .mobile-menu-link::before {
          content: '';
          display: block;
          height: 2px;
          width: 0;
          position: absolute;
          left: -30px;
          top: 50%;
          background-color: #ffffff;
          transform: translateY(-50%);
          transition: width 0.3s;
        }
        
        .mobile-menu-link:hover::before {
          width: 15px;
        }
        
        .mobile-menu-logo {
          position: fixed;
          top: 20px;
          left: 20px;
          z-index: 1001;
          color: white;
          font-weight: bold;
          font-size: 24px;
          user-select: none;
          -webkit-user-select: none;
        }
        
        .mobile-menu-overlay {
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: rgba(0,0,0,0.7);
          z-index: 998;
          opacity: 0;
          visibility: hidden;
          transition: opacity 0.3s, visibility 0.3s;
        }
        
        .mobile-menu-active .mobile-menu-overlay {
          opacity: 1;
          visibility: visible;
        }
        
        .mobileImage{
            display:none;
        }

@media only screen and (max-width: 1400px) {
    .text h1 {
    font-size: 100px;
}

.section02Cards .CardBox {
    gap: 60px;
}

img#scrollImage {
    max-width: 50%;
}

.chatScreen {
    padding-top: 100px;
}

.suggestionCard p {
    font-size: 20px;
}

.suggestionListMain {
    margin-bottom: 50px;
}

.homeSec05 .text {
    padding: 73px 100px;
}
}

@media only screen and (max-width: 1199px) {
    .homeSec01 {
    padding: 100px 0;
}

.chatScreen {padding-top: 50px;}
}

@media only screen and (max-width: 991px) {
    
    .mobileImage{
        display:block;    
    }
    
    .desktopImage{
        display:none;
    }
    
    header#myHeader {
    display: none;
}

 .mobile-menu-container {
          display: unset;
        }

.cursor-trail, .dot {
    display: none !important;
    }
    .text h1 {
    font-size: 70px;
    line-height: 50px;
}

.heroBanner {
    padding-top: 150px;
}

.heroBanner .text p {
    font-size: 20px;
    margin: 20px 0;
}

.text h3 {
    text-align: center;
}

.logoMainSliderBox .text h3 {
    margin-bottom: 20px;
}

.section02Cards .CardBox {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.section02Cards {
    flex-direction: column;
}

.text h2 {
    text-align: center;
}

.homeSec02 .text p {
    text-align: center;
    max-width: 100%;
    margin-top: 30px;
}

img#scrollImage {
    top: unset !important;
    max-width: 100%;
    right: unset !important;
    position: relative !important;
    transform: translate(0px, 0px) !important;
    margin-top: 20px;
}

section.homeSec02 {
    height: fit-content !important;
}

.suggestionCard p {
    font-size: 15px;
    line-height: unset;
}

.homeSec05 .text h2 {
    font-size: 50px;
    line-height: unset;
}

footer .imgBox {
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer .socialIcons {
    display: flex;
    justify-content: center;
}

ul.MainMenu {
    margin: 40px 0;
}

}
@media only screen and (max-width: 767px) {
    .text h1 {
    font-size: 60px;
}

.text h1 b.typewriter-text {
    height: 62px !important;
    display: block;
    width: 100%;
}

.heroBanner .text p {
    font-size: 17px;
}

.logoMainSliderBox {
    padding: 50px 60px;
}

.logoMainSliderBox .text h3 {
    transform: scale(1.1);
}

.homeSec01 .text h2 {
    font-size: 40px;
    line-height: normal;
}

.section02Cards {
    margin-top: 30px;
}

.text h2 {
    font-size: 40px;
    line-height: 40px;
}

.chatInoutBox {
    padding: 15px 20px;
}

.chatInoutBox input[type="text"], #typed {
    font-size: 16px;
}

span.cursor {
    height: 20px;
}

.homeSec05 .text h2 {
    font-size: 40px;
    line-height: 50px;
}

.homeSec05 .text h6 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 10px;
}

.MainMenu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: center;
    gap: 0;
    row-gap: 20px;
}

.chatScreen {
    padding-bottom: 80px;
}

.suggestionCard p {
    font-size: 12px;
    line-height: 13px;
}

.suggestionCard {
    height: 110px;
    padding: 5px;
    margin-bottom: 10px;
}

.suggestionListMain {
    gap: 10px;
    width: 100%;
    max-width: 100%;
    overflow: overlay;
}

.suggestionBox h3 {
    font-size: 16px;
    margin: 10px 0 10px;
}

.heroBanner .text img{
    height:fit-content !important;
}
.LogoSliderSingle img {
    margin: auto;
}
.mobile-menu-btn{
    outline:none !important;
}

.heroBanner .text img.mobileImage {
    /*animation: none !important;*/
    height:auto !important;
    max-height:600px !important;
    object-fit:contain;
    -webkit-object-fit: contain;
    min-height:600px !important;
    display: block;
}
}
