*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.homePage_new .cs_container {
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 6rem;
  padding-right: 6rem;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  background: none;
  border: none;
}

ul {
  list-style: none;
}

.section-home-banner video {
  opacity: .5;
}

.section-eyebrow {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1225rem;
  text-transform: uppercase;
  color: #ffb487;
  line-height: 1.125rem;
}

.c-orange {
  color: #ffb487;
}

.c-white {
  color: #fff;
}

.c-muted {
  color: #bababa;
}

:root {
  --cta-gradient: linear-gradient(90deg, #fdbe0e, #fba10e 23%, #e94425 45%, #124c92 72%, #2659b1 93%, #fba10e);
  --page-max: 90rem;
  --page-pad: 5rem;
  --section-y: 5rem;
  --text-muted: #bababa;
}

.btn {
  display: inline-flex;
  align-items: center;
  padding: 1rem 1.75rem;
  border: 0.125rem solid transparent;
  border-radius: 6.25rem;
  background:
    linear-gradient(#000, #000) padding-box,
    var(--cta-gradient) border-box;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25rem;
  white-space: nowrap;
  transition: gap 0.25s ease, opacity 0.2s ease, color 0.2s ease;
}

.btn .arrow,
.nav__cta .arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0;
  height: 0.875rem;
  overflow: hidden;
  flex: 0 0 auto;
  opacity: 0;
  transition: width 0.25s ease, opacity 0.2s ease;
}

.btn .arrow img,
.nav__cta .arrow img {
  width: 0.875rem;
  height: 0.875rem;
  max-width: none;
  object-fit: contain;
}

.btn:hover {
  background:
    linear-gradient(#000, #000) padding-box,
    var(--cta-gradient) border-box;
  background-size: 100% 100%, 400% 400%;
  animation: animateBg 4s ease infinite;
  gap: 1rem;
}

.btn:hover .arrow,
.nav__cta:hover .arrow {
  width: 0.875rem;
  opacity: 1;
}

.btn--primary,
.btn--secondary {
  color: #fff;
}

@keyframes animateBg {
  0% {
    background-position: 0 0, 0% 50%;
  }

  50% {
    background-position: 0 0, 100% 50%;
  }

  100% {
    background-position: 0 0, 0% 50%;
  }
}

.pagination {
  display: flex;
  align-items: center;
  gap: 1.8125rem;
}

.pagination__dots {
  display: flex;
  align-items: center;
  gap: 0.6875rem;
}

.pagination__dot {
  display: block;
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background: #ffb487;
  opacity: 0.3;
  transition: opacity 0.3s ease;
}

.pagination__dot--active {
  opacity: 1;
}

.pagination__arrows {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.arrow-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 0.0625rem solid #fff;
  border-radius: 0.3125rem;
  padding: 0;
  flex-shrink: 0;
  transition: background 0.2s;
}

.arrow-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.arrow-icon {
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  border-top: 0.09375rem solid #fff;
  border-right: 0.09375rem solid #fff;
  flex-shrink: 0;
}

.arrow-icon--right {
  transform: rotate(45deg);
  margin-right: 0.125rem;
}

.arrow-icon--left {
  transform: rotate(225deg);
  margin-left: 0.125rem;
}

.case-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
  color: #ffb487;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.case-link:hover {
  opacity: 0.8;
}

.case-link__icon {
  width: 1.5rem;
  height: 1rem;
  object-fit: contain;
}

.nav {
  background: #000;
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 5rem;
  overflow: hidden;
  height: 5.625rem;
  max-width: 90rem;
  margin: 0 auto;
}

.nav__logo-img {
  width: 12.4375rem;
  height: 2.3125rem;
  object-fit: contain;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 1.875rem;
}

.nav__link {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25rem;
  color: #7d7d7d;
  white-space: nowrap;
  transition: color 0.2s;
}

.nav__link:hover {
  color: #fff;
}

.nav__link--ai {
  display: flex;
  align-items: center;
  gap: 0.4375rem;
  color: #fff;
}

.nav__ai-dot {
  width: 0.4375rem;
  height: 0.4375rem;
  border-radius: 50%;
  background: #01c0f7;
  flex-shrink: 0;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.375rem;
  border: 0.125rem solid transparent;
  border-radius: 6.25rem;
  background:
    linear-gradient(#000, #000) padding-box,
    var(--cta-gradient) border-box;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.125rem;
  white-space: nowrap;
  transition: gap 0.25s ease, color 0.2s ease;
}

.nav__cta:hover {
  background:
    linear-gradient(#000, #000) padding-box,
    var(--cta-gradient) border-box;
  background-size: 100% 100%, 400% 400%;
  animation: animateBg 4s ease infinite;
  color: #fff;
  gap: 1rem;
}


.proof-bar {
  padding: 5rem 0;
}

.proof-bar__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2.5rem;
  height: 31.0625rem;
  margin: 0 auto;
}

.proof-bar__header {
  display: flex;
  align-items: flex-end;
  gap: 2rem;
}

.proof-bar__left {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.proof-bar__heading {
  font-size: 2.75rem;
  font-weight: 500;
  letter-spacing: -0.055rem;
  color: #fff;
  line-height: 3.5rem;
  margin-bottom: 0;
}

.proof-bar__desc {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.9375rem;
  color: #bababa;
  text-align: right;
  width: 24.9375rem;
  flex-shrink: 0;
}

.proof-bar__stats {
  display: flex;
  gap: 3.75rem;
  align-items: center;
  height: 11.5625rem;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
  flex: 1;
  justify-content: center;
}

.stat__number {
  font-size: 4.5rem;
  font-weight: 400;
  line-height: 6.375rem;
  letter-spacing: -0.1rem;
  background: linear-gradient(to right, #FFDF92, #FBA10D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.stat__label {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.375rem;
  color: #bababa;
  max-width: 14.0625rem;
}

.trusted-by {
  background: #000;
  padding: 3.5rem 5rem;
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
  align-items: center;
  opacity: 0.5;
  overflow: hidden;
  height: 12.375rem;
}

.trusted-by__label {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02rem;
  text-transform: uppercase;
  line-height: 1.25rem;
  text-align: center;
  white-space: nowrap;
}

.logo-ticker {
  width: 100%;
  overflow: hidden;
}

.logo-ticker__track {
  display: flex;
  animation: ticker-scroll 24s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.logo-ticker__item {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 2.25rem;
  letter-spacing: -0.035rem;
  color: #fff;
  padding: 0 4.375rem;
  flex-shrink: 0;
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ================New Trusted Section================ */

.trusted-title {
  margin: 0;
  font-size: clamp(1.5625rem, 3.2vw, 2.4375rem);
  line-height: 1.25;
}

.logo-marquee {
  position: relative;
  overflow: hidden;
  margin-top: 3.5000rem;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.logo-row {
  --logo-gap: 4.1250rem;
  --logo-shift: 2.0625rem;
  display: flex;
  align-items: center;
  gap: var(--logo-gap);
  width: max-content;
  color: #d7e2e5;
  font-size: 0.7500rem;
  font-weight: 800;
  opacity: 0.86;
  animation: logoMarquee 24s linear infinite;
  will-change: transform;
}


.logo-row span {
  min-width: max-content;
}

@keyframes logoMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - var(--logo-shift)));
  }
}

.services {
  background: #000;
  padding: 6rem 0;
}

.services__inner {
  display: flex;
  gap: 3.25rem;
  align-items: flex-start;
  margin: 0 auto;
  min-height: 35.75rem;
}

.powered_by_card {
  border-radius: .5rem;
  border: 1px solid #333232;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  transition: .25s;
  top: 0;
}

.powered_by_card:hover {
  border-color: #505050;
  top: -0.25rem;
  box-shadow: 0 0.5rem 1rem rgba(255, 255, 255, 0.15);
}

.powered_by_card span {
  font-size: .85rem;
  color: #FFB487;
}

.ser-row__arrow {
  transition: .35s;
  position: relative;
  left: -.25rem;
  max-width: 2.5rem;
}

.cap-row:hover .ser-row__arrow {
  opacity: 1;
  left: 0;
}

.powered_by_card strong {
  font-size: 1.75rem;
  font-weight: 400;
}

.powered_by_card .half_opacity {
  color: #9A9A9A;
  font-size: 1rem;
}

.services__meta {
  width: 30%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: sticky;
  top: 6.875rem;
}

.services__heading {
  font-size: 2.25rem;
  font-weight: 500;
  letter-spacing: -0.045rem;
  color: #fff;
  line-height: 1.2;
  margin: .25rem 0 0;
}

.services__desc {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.4;
  color: #bababa;
}

.w-container:before,
.w-container:after {
  display: none;
}

.services__rows {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cap-row {
  display: flex;
  gap: 2.25rem;
  align-items: flex-start;
  padding: 1.75rem 0;
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.2s;
}

.cap-row:last-child {
  border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.1);
}

.cap-row:hover {
  border-color: rgba(255, 180, 135, 0.35);
}

.cap-row__title {
  display: flex;
  gap: 1.75rem;
  align-items: baseline;
  width: 20rem;
  flex-shrink: 0;
  font-weight: 500;
}

.cap-row__num {
  font-size: 0.875rem;
  color: #ffb487;
  line-height: 1.125rem;
  width: 1.5rem;
  flex-shrink: 0;
}

.cap-row__name {
  font-size: 1.375rem;
  color: #fff;
  line-height: 1.75rem;
  flex: 1;
  font-weight: 400;
}

.cap-row__desc {
  flex: 1;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.5625rem;
  color: #bababa;
}

.case-studies {
  background: #000;
  overflow: hidden;
}
.case-studies p{
  line-height: 1.5;
}
.case-studies__main {
  padding: 3.75rem 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 0 auto;
}

.case-studies__header {
  display: flex;
  align-items: flex-end;
  gap: 2rem;
}

.case-studies__header-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-weight: 500;
  width: 41rem;
  flex-shrink: 0;
}

.case-studies__heading {
  font-size: 2.75rem;
  font-weight: 500;
  letter-spacing: -0.055rem;
  color: #fff;
  line-height: 3.5rem;
}

.case-studies__header-desc {
  flex: 1;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.9375rem;
  color: #bababa;
  text-align: right;
}

.case-studies__body {
  height: 32.3125rem;
  overflow: hidden;
  position: relative;
}

.case-slides-track {
  display: flex;
  height: 100%;
  transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.case-slide {
  flex: 0 0 100%;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2.5rem;
  height: 100%;
}

.cap-row {
  position: relative;
}

.cs_coverLink {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.case-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 49%;
  flex-shrink: 0;
  height: 100%;
}

.case-content__top {
  display: flex;
  flex-direction: column;
  gap: 1.4375rem;
  padding-bottom: 2rem;
  border-bottom: 0.83px solid #FBA10E55;
  flex: 1;
}

.case-tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.case-tag__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #ffb487;
  flex-shrink: 0;
}

.case-tag__text {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.0625rem;
  text-transform: uppercase;
  color: #bababa;
  line-height: 0.9375rem;
}

.case-content__title {
  font-size: 2rem;
  font-weight: 500;
  line-height: 2.625rem;
  color: #fff;
  margin-top: 0;
}

.case-content__desc {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.8125rem;
  color: #bababa;
}

.case-metrics {
  display: flex;
  gap: 2rem;
}

.case-metric {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.case-metric__value {
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 3.1875rem;
  color: #fff;
}

.verticle-line {
  height: auto;
  border-left: 0.83px solid #333232
}

.case-metric__label {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.25;
  color: #bababa;
}

.case-image {
  width: 41.25rem;
  height: 100%;
  flex-shrink: 0;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 1.5625rem 3.125rem -0.75rem rgba(0, 0, 0, 0.25);
  position: relative;
}

.case-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 3.758%, rgba(102, 102, 102, 0));
}

.case-image__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-now {
  background: #000;
  padding: 6rem 0;
  overflow: hidden;
}

.why-now__inner {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
  margin: 0 auto;
}

.why-now__header {
  display: flex;
  gap: 2.25rem;
  align-items: flex-start;
}

.why-now__indicator {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
  width: 7.5625rem;
  flex-shrink: 0;
  padding-top: 0.875rem;
}

.why-now__eyebrow {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
  color: #ffb487;
  line-height: 0.9375rem;
  white-space: nowrap;
}

.why-now__divider {
  display: block;
  width: 2.5rem;
  height: 0.0625rem;
  background: #ffb487;
}

.why-now__copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.why-now__heading {
  font-size: 3.25rem;
  font-weight: 500;
  line-height: 3.75rem;
  letter-spacing: -0.09375rem;
  color: #fff;
  max-width: 56.25rem;
}

.why-now__desc {

  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.75rem;
  color: #bababa;
  max-width: 42rem;
}

.why-now__visual {
  position: relative;
  width: 75rem;
  height: 18.625rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 1.5625rem 1.5625rem rgba(0, 0, 0, 0.25);
  align-self: center;
}

.why-now__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-now__visual-label {
  position: absolute;
  bottom: 1.5rem;
  left: 2.1875rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
  line-height: 0.9375rem;
}

.engine__section {
  background: #000;
  padding: 5rem 0 2.5rem;
  overflow: hidden;
}

.engine__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 0 auto;
}

.engine__left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 41rem;
  flex-shrink: 0;
}

.engine__eyebrow {
  white-space: nowrap;
}

.engine__heading {
  font-size: 2.75rem;
  font-weight: 500;
  letter-spacing: -0.055rem;
  color: #fff;
  line-height: 3.5rem;
}

.engine__desc {

  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.9375rem;
  color: #bababa;
  max-width: 31.5rem;
}

.engine__right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
  flex: 0 0 auto;
  width: 36%;
}

.engine__bullets-dots {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  flex-shrink: 0;
}

.engine__bullets {
  flex: 1;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 2.5rem;
  color: #bababa;
}

.engine__bullets li {
  display: block;
  line-height: 1.4;
  padding: 1.25rem 0;
  border-bottom: 1px solid #1E2939;
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.engine__bullets li::before {
  content: '';
  display: inline-flex;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #FBA10E;
  top: .5rem;
  position: relative;
}

.workflow__section {
  background: #000;
  padding: 2.5rem 0;
  overflow: hidden;
}

.workflow_bg_img {
  padding: 3.5rem 2rem;
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  /* border: 1px solid #333232; */
}

.workflow_bg_img .bg_img {
  position: absolute;
  inset: 0;
  object-fit: cover;
}

.workflow__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
  margin: 0 auto;
  padding: 1.5rem 2.5rem;
  border-radius: 0.75rem;
  overflow: hidden;
}

.workflow__inner::before {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  top: -35.22%;
  height: 213.81%;
  background-image: url('assets/capabilities-bg.png');
  background-size: 100% 100%;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

.workflow__header,
.workflow__steps {
  position: relative;
  z-index: 1;
}

.workflow__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.25rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #333232;
}

.workflow__steps {
  display: flex;
  align-items: stretch;
  gap: 0.5rem;
}

.workflow-step {
  flex: 1;
  background: #121212;
  border: 0.0625rem solid rgba(255, 255, 255, 0.15);
  border-radius: 0.75rem;
  padding: 1.3125rem 1.3rem 1.3rem;
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
  gap: 0.5rem;
  min-height: 8.125rem;
  position: relative;
  overflow: hidden;
  transition: .5s;
}

.workflow-step .actice_longArrow {
  position: absolute;
  bottom: 1rem;
  left: auto;
  animation: actice_longArrow 3s linear infinite;
  /* transition: .25S; */
  height: 1.5rem;
  opacity: 0;
  left: 0;
  transform: translateX(-100%);
}

@keyframes actice_longArrow {
  0% {
    left: -10%;
    transform: translateX(-100%);
  }

  100% {
    left: 110%;
    transform: translateX(0);
  }
}

.workflow_active {
  background: rgba(249, 115, 22, 0.12);
  border-color: #ffb487;
}

.workflow_active .actice_longArrow {
  opacity: 1;
}

.workflow-step__badge {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.workflow-step__num {
  font-size: 0.625rem;
  font-weight: 400;
  color: #ffb487;
  line-height: 0.9375rem;
  margin-bottom: 0.25rem;
}

.workflow-step__diff {
  font-size: .75rem;
  font-weight: 500;
  color: #ffb487;
  letter-spacing: -0.028125rem;
  line-height: 0.84375rem;
  opacity: 0.7;
}

.workflow-step__title {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5rem;
  color: #fff;
  margin: 0;
}

.workflow-step__desc {

  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.21875rem;
  color: #6b7280;
}

.workflow__arrow {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.workflow__arrow img {
  width: 1rem;
  height: 1rem;
}

.advantage__section {
  background: #000;
  padding: 5rem 0 5rem;
  overflow: hidden;
}

.advantage__inner {
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
  max-width: 90rem;
  margin: 0 auto;
}

.advantage__header {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.advantage__heading {
  font-size: 2.75rem;
  font-weight: 500;
  letter-spacing: -0.055rem;
  color: #fff;
  white-space: nowrap;
  line-height: 3.5rem;
  margin: 0;
}

.advantage__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* grid-template-rows: 14.6562rem 14.5938rem; */
  border-top: 0.0625rem solid #1f1f1f;
}

.adv-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 2rem 2.5rem;
  border-right: 0.0625rem solid #1f1f1f;
  border-bottom: 0.0625rem solid #1f1f1f;
  transition: .25s;
}

.adv-item:hover {
  background: #171717;
}

.adv-item:nth-child(3n) {
  border-right: none;
}

.adv-item:nth-child(n+4) {
  border-bottom: none;
}

.adv-item__icon-wrap {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(249, 115, 22, 0.05);
  border: 0.0625rem solid rgba(253, 194, 14, 0.3);
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.adv-item__icon {
  width: 1.25rem;
  height: 1.25rem;
  object-fit: contain;
}

.adv-item__title {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.75rem;
  color: #fff;
}

.adv-item__desc {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4375rem;
  color: #9ca3af;
}

.global_section {
  background: #000;
  padding: 6rem 0;
  overflow: hidden;
}

.global__inner {
  display: flex;
  align-items: flex-start;
  gap: 2.25rem;
  max-width: 80rem;
  margin: 0 auto;
  height: 6.75rem;
}

.global__left {
  display: flex;
  flex-direction: column;
  width: 33.5rem;
  flex-shrink: 0;
  padding-top: 0.875rem;
  gap: 1.1875rem;
}

.global__eyebrow {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
  color: #1f72d6;
  line-height: 0.9375rem;
}

.global__heading {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.09375rem;
  color: #ffb487;
  line-height: 3.75rem;
  white-space: nowrap;
}

.global__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

.global__row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  height: 3rem;
}

.global__row--1 {
  padding-left: 0;
}

.global__row--2 {
  padding-left: 0;
}

.global__country {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.25rem;
  gap: 0.625rem;
  border: 0.0625rem solid #897b7b;
  border-radius: 6.25rem;
  font-size: 1.25rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.75rem;
  white-space: nowrap;
  height: 3rem;
}

.global__country-dot {
  width: 0.5rem;
  height: 0.5rem;
  flex-shrink: 0;
  display: block;
}

.cta_home_section {
  background: #000;
  padding: 2.5rem 0 7.5rem;
}

.cta_home_section .case-metrics {
  width: 100%;
  margin: 2rem 0;
}

.cta__card {
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
  height: 39rem;
  /* border: 1px solid #333232; */
}

.cta__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.5;
}

.cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 5rem 7.5rem;
}

.cta__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 42.5rem;
  text-align: center;
  align-items: center;
}

.cta__eyebrow {
  text-align: center;
}

.cta__heading {
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 3.75rem;
  letter-spacing: -0.09375rem;
  color: #fff;
}

.cta__desc {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.75rem;
  color: #bababa;
  max-width: 43.625rem;
}

.cta__actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
}

.footer {
  background: #000;
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.08);
}

.footer__inner {
  padding: 5.0625rem 2.5rem 0;
  max-width: 90rem;
  margin: 0 auto;
}

.footer__top {
  display: grid;
  grid-template-columns: 29.5rem 1fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 3.75rem;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer__logo {
  width: 12.4375rem;
  height: 2.3125rem;
  object-fit: contain;
}

.footer__tagline {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.4375rem;
  color: #bababa;
  max-width: 20rem;
}

.footer__social {
  display: flex;
  gap: 0.875rem;
  align-items: center;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  color: #bababa;
  transition: color 0.2s;
}

.footer__social-link:hover {
  color: #fff;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer__col-heading {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.075rem;
  text-transform: uppercase;
  color: #bababa;
  line-height: 1rem;
}

.footer__col-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__col-link {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.25rem;
  color: #e1e1e1;
  transition: color 0.2s;
}

.footer__col-link:hover {
  color: #fff;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.08);
  padding: 2.0625rem 0 1.5rem;
}

.footer__copyright {
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.03125rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  line-height: 0.9375rem;
}

.footer__badges {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.footer__badge {
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.03125rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  line-height: 0.9375rem;
}


.proof-bar__inner,
.trusted-by,
.services,
.case-studies__main,
.why-now,
.engine,
.workflow,
.advantage,
.industries,
.global,
.cta {
  min-width: 0;
}

.proof-bar__inner,
.trusted-by,
.case-studies__body,
.why-now__visual,
.engine__inner,
.workflow__inner,
.advantage__grid,
.industries__cols,
.global__inner,
.cta__card {
  height: auto;
}



.trusted-by {
  min-height: 12.375rem;
}

.case-studies__body {
  min-height: 32.3125rem;
}

.why-now__visual {
  aspect-ratio: 1200 / 298;
  max-width: 75rem;
  min-height: 14rem;
}

.cta__card {
  min-height: 31rem;
}

.proof-bar__heading,
.case-studies__heading,
.why-now__heading,
.engine__heading,
.advantage__heading,
.industries__heading,
.global__heading,
.cta__heading {
  overflow-wrap: anywhere;
}

.case-content,
.engine__left,
.engine__right,
.industries__header-left,
.global__left,
.cta__content,
.footer__brand,
.footer__col {
  min-width: 0;
}

.case-tabs__list,
.global__row,
.footer__badges {
  min-width: 0;
}

.btn {
  justify-content: center;
  text-align: center;
}

.case-studies__heading {
  margin: 0;
}

.engine_section {
  padding: 5rem 0 0;
}

.ser_inner_header_box {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* ============Common Style================== */
.cs_secHead {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.cs_secTitle {
  font-size: 2.75rem;
  line-height: 1.2;
  font-weight: 400;
  margin: 0;
}

.cs_preHeading {
  font-size: .875rem;
  color: #FFB487;
  line-height: 1.2;
  letter-spacing: 0.125rem;
  font-weight: 400;
  text-transform: uppercase;
}

.cs_muted {
  color: #7D797A;
}

.cs_headLeft {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cs_headRight {
  flex: 0 0 auto;
  max-width: 25%;
}

.cs_secDes {
  font-size: 1rem;
  line-height: 1.5;
  color: #bababa;
}

.cs_headRight .cs_secDes {
  color: #99A1AF;
  text-align: right;
  line-height: 1.5;
}

.service-case-study-wrapper {
  margin-top: 2rem;
}

/* ===================== Industries Showcase (screenshot recreation) ===================== */
.industries-showcase {
  background: #000;
  padding: 5rem 0 6.5rem;
  overflow: hidden;
  position: relative;
}


.industries-showcase__inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding-left: 6rem;
  padding-right: 6rem;
  position: relative;
  z-index: 1;
}

.industries-showcase__content {
  display: flex;
  gap: 3rem;
  flex-direction: column;
}

.industries-showcase__left {
  display: flex;
  gap: 2rem;
  align-items: flex-end;
  justify-content: space-between;
}

.industries-showcase__left_head {
  display: flex;
  gap: 1.5rem;
  flex-direction: column;
}

.industries-showcase__heading {
  font-size: 3rem;
  font-weight: 500;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}

.cta__bg_industries {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.25;
  pointer-events: none;
  /* filter: blur(2px); */

}

.industries-showcase__sub {
  color: #bababa;
  font-size: 1.125rem;
  margin: 0;
  flex: 0 0 auto;
  width: 25%;
  text-align: right;
  line-height: 1.5;
}

.industries-showcase__cards {
  margin: 0 -0.75rem;

}

.industries-showcase__cards .slick-list {
  padding: 1rem 0;
}

.industries-showcase__cards .slick-list {
  margin: 0 -0.75rem;
}

.industries-showcase__cards .slick-slide {
  margin: 0 0.75rem;
}

.industries-showcase .slick-track {
  display: flex;
}

.industries-showcase__cards .showcase-card {
  background: #0D0D0D;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 1.25rem;
  padding: 1.75rem;
  min-height: 14.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
  height: auto;
  position: relative;
}

.slick-arrow {
  position: absolute;
  transform: translateY(-50%);
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  right: 0;
  top: calc(100% + 2rem);
  font-size: 0 !important;
}

.slick-next:before,
.slick-prev:before {
  display: none;
  content: '';
}

.slick-prev::after,
.slick-next::after {
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;  
  right: -0.1rem;
  position: relative;
}

/* Next Arrow ( > ) */
.slick-next::after {
  transform: rotate(45deg);
  left: -0.1rem;
}

/* Prev Arrow ( < ) */
.slick-prev::after {
  transform: rotate(-135deg);
}

.slick-prev:hover,
.slick-next:hover {
  background: rgba(255, 255, 255, 0.1);
}

.slick-arrow.slick-prev {
  left: auto;
  right: 3.25rem;
}

.showcase-card:hover {
  transform: translateY(-0.25rem);
  border-color: rgba(255, 180, 135, 0.28);
}

.comman-blog-section .slick-arrow {
  top: 50%;
  transform: translateY(-50%);
}

.showcase-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 180, 135, 0.06);
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 180, 135, 0.08);
}

.showcase-card__icon img {
  width: 1.5rem;
  height: 1.5rem;
}

.showcase-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}

.showcase-card__desc {
  color: #bababa;
  font-size: 0.95rem;
  line-height: 1.6;
}


@media (max-width: 1100px) {
  .industries-showcase__cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .industries-showcase__content {
    gap: 2rem;
  }
}

/* Flash Effect for Text */
.flash_text,
.cs_preHeading {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.cs_preHeading {
  align-self: flex-start;
}

.flash_text::after,
.cs_preHeading::after {
  content: "";
  position: absolute;
  top: -20%;
  left: -120%;
  width: 50%;
  height: 140%;
  background: linear-gradient(transparent,
      rgba(255, 255, 255, 0.35),
      transparent);
  transform: skewX(-25deg);
  animation: flashSweep 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes flashSweep {
  0% {
    left: -120%;
    background: linear-gradient(transparent,
        rgba(255, 255, 255, 0.05),
        transparent);
  }

  30% {
    left: 0%;
    width: 20%;
    background: linear-gradient(transparent,
        rgba(255, 255, 255, 0.5),
        transparent);
  }

  40% {
    left: 120%;
  }

  100% {
    left: 120%;
  }
}


.home-hero-section-heading{
  text-transform: capitalize;
}
.mb_4{
  margin-bottom: 1.5rem;
}
/* ============Responsive============= */
@media all and (min-width:1200px) {

  html {
    font-size: 1vw;
    scroll-behavior: smooth;
  }

  .stat {
    padding-top: 1.25rem;
    border-top: 1px solid #FBA10E55;
  }

  .trusted-section .sec_title {
    font-size: 1rem;
    line-height: 1.2;
    color: #7D797A;
    font-weight: 400;
    margin: 0;
  }

  .trusted-section {
    padding: 3.25rem 0;
    background-color: #050506;
    text-align: center;
    border-top: 0.83px solid #1A1A1A;
    border-bottom: 0.83px solid #1A1A1A;
  }

  .services__inner {
    gap: 6rem;
  }

  .ser_inner_header_box {
    padding-right: 3rem;
  }

  .version_3 .case-tabs {
    position: relative;
    margin-top: 1.75rem;
  }

  .version_3 .case-tabs__controls {
    margin-left: auto;
    position: absolute;
    right: 0;
    top: -4rem;
  }

  .case-image {
    position: relative;
    border: 1px solid #333232;
  }

  .slider__Img_count {
    font-size: 9rem;
    position: absolute;
    bottom: .25rem;
    left: 1.5rem;
    opacity: .3;
    color: #fff;
    line-height: 1;
    /* text-shadow: 0 .25rem 1rem rgba(0,0,0,.5); */
  }

  .case-image__img {
    width: 100%;
    object-fit: cover;
    height: auto;
    aspect-ratio: 16 / 11.5;
  }

  .case-content__top {
    padding-right: 10%;

  }

  .advantage__grid .adv-item {
    position: relative;
  }

  .advantage__grid .adv-item:before,
  .advantage__grid .adv-item:after {
    content: '';
    position: absolute;
    width: 1px;
    height: 1rem;
    left: calc(100% - 0px);
    top: calc(100% - .5rem);
    z-index: 1;
    background: #6f6f6f;
  }

  .advantage__grid {
    border-top: 0 none;
  }

  .advantage__grid .adv-item:after {
    transform: rotate(90deg);
  }

  .advantage__grid .adv-item:not(:nth-child(-n+2))::before,
  .advantage__grid .adv-item:not(:nth-child(-n+2))::after {
    display: none;
  }

  .ser-row__arrow {
    opacity: 0;
  }

  .workflow-step {
    padding-bottom: 3rem;
  }

  .banner__btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .banner__btns .home-hero-button-link {
    min-width: 22rem;
  }
  .career-text{
    width: 80%;
  }
 
}

@media (max-width: 1199px) {
  :root {
    --page-pad: 5rem;
  }

  .homePage_new .cs_container {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .trusted-section .sec_title {
    text-align: center;
    text-transform: capitalize;
  }

  .logo-row img {
    max-height: 2.5rem;
  }

  .actice_longArrow {
    display: none !important;
  }

  .banner-left-card .home-hero-button,
  .kagen-btn {
    margin: .5rem;
  }

  .industries-showcase__cards .slick-list {
    margin: 0;
  }

  .slick-arrow {
    right: 1rem;
  }

  .slick-arrow.slick-prev {
    right: 4.25rem;
  }

  .comman-blog-section .slick-arrow {
    transform: translate(-50%, -50%);
  }
}

@media (max-width: 991px) {
  :root {
    --page-pad: 4rem;
  }



  :root {
    --page-pad: 3rem;
    --section-y: 4rem;
  }

  .proof-bar__inner,
  .services,
  .why-now,
  .engine,
  .advantage,
  .global {
    padding-block: var(--section-y);
  }

  .proof-bar__stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services__inner,
  .engine__inner {
    align-items: stretch;
  }

  .services__meta,
  .engine__left {
    width: min(100%, 38rem);
  }

  .engine__heading {
    white-space: normal;
  }

  .advantage__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  .adv-item:nth-child(3n) {
    border-right: 0.0625rem solid #1f1f1f;
  }

  .adv-item:nth-child(2n) {
    border-right: none;
  }

  .adv-item:nth-child(n+4) {
    border-bottom: 0.0625rem solid #1f1f1f;
  }

  .adv-item:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .global__inner {
    align-items: stretch;
  }

  .banner-left-card .home-hero-button,
  .kagen-btn {
    margin: .5rem;
  }
}

@media (max-width: 991px) {
  :root {
    --page-pad: 4rem;
  }



  :root {
    --page-pad: 3rem;
    --section-y: 4rem;
  }

  .proof-bar__inner,
  .services,
  .why-now,
  .engine,
  .advantage,
  .global {
    padding-block: var(--section-y);
  }

  .proof-bar__stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services__inner,
  .engine__inner {
    align-items: stretch;
  }

  .services__meta,
  .engine__left {
    width: min(100%, 38rem);
  }

  .engine__heading {
    white-space: normal;
  }

  .advantage__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  .adv-item:nth-child(3n) {
    border-right: 0.0625rem solid #1f1f1f;
  }

  .adv-item:nth-child(2n) {
    border-right: none;
  }

  .adv-item:nth-child(n+4) {
    border-bottom: 0.0625rem solid #1f1f1f;
  }

  .adv-item:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .global__inner {
    align-items: stretch;
  }

  .global__right {
    align-items: flex-start;
  }

  .global__row {
    flex-wrap: wrap;
    height: auto;
  }

  .arrow-btn {
    width: 3rem;
    height: 3rem;
  }

  .proof-bar__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .proof-bar__stats {
    height: auto;
  }

  .trusted-by {
    padding: 5rem 0;
    opacity: 1;
  }

  .trusted-by__label {
    font-size: 2.75rem;
    color: white;
    line-height: 1.2;
    opacity: 1;
    margin-bottom: 2rem;
  }

  .services__desc {
    font-size: 1.25rem;
    line-height: 1.2;
  }

  .cap-row__desc {
    font-size: 14px;
    line-height: 1.4;
  }

  .cap-row__num {
    font-size: 12px;
  }

  .cap-row__name {
    font-size: 15px;
    line-height: 1.25;
  }

  .services__meta {
    width: 100%;
    position: static;
  }

  .services__inner {
    flex-direction: column;
  }

  .case-studies__header-desc,
  .case-tag__text {
    font-size: 12px;
  }

  .case-content__desc,
  .proof-bar__desc,
  .stat__label {
    font-size: 1.25rem;
    line-height: 1.4;
    font-weight: normal;
    text-align: left;
  }

  .stat__label {
    max-width: 80%;
  }


  .section-eyebrow {
    font-size: 12px;

  }

  .proof-bar__header {
    gap: 1rem;
  }

  .proof-bar__heading {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-top: 0;
  }

  .proof-bar__left {
    gap: 1rem;
  }

  .proof-bar__stats {
    gap: 2.5rem;
  }

  .stat__number {
    font-size: 3.5rem;
    line-height: 1.2;
  }

  .trusted-by__label {
    padding: 0 2rem;
    white-space: normal;
    line-height: 1.25;
    display: block;
    font-size: 1.5rem;
    line-height: 1.35;
  }

  .services__meta {
    gap: .5rem;
  }

  .case-studies__header {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .case-studies__header-desc {
    width: 100%;
    font-size: 1.25rem;
    line-height: 1.4;
    text-align: left;
  }

  .case-content {
    max-width: 50%;
    width: 100%;
  }

  .case-content__top {
    gap: .5rem;
    padding-bottom: 0;
  }

  .case-content__title {
    font-size: 1.75rem;
    line-height: 1.2;
  }

  .case-metric__value {
    font-size: 2rem;
  }

  .case-tabs__list {
    display: none;
  }

  .case-tabs {
    justify-content: flex-end;
  }

  .why-now__header {
    flex-direction: column;
    gap: 1rem;
  }

  .why-now__visual {
    max-width: 100%;
  }

  .why-now__heading {
    font-size: 2.5rem;
    line-height: 1.2;
    margin: 0;
  }

  .engine__inner {
    flex-direction: column;
  }

  .engine__left {
    gap: 1rem;

  }

  .engine__heading {
    margin: 0;
  }

  .workflow-step {
    flex: 0 0 auto;
    width: 28%;
  }

  .workflow__steps {
    flex-wrap: wrap;
    row-gap: 1.5rem;
  }

  .workflow__section,
  .workflow__inner {
    padding-bottom: 0;
  }

  .advantage__header {
    gap: 1rem;
  }

  .advantage__heading,
  .global__heading {
    font-size: 2.5rem;
    margin: 0;
  }

  .adv-item__title {
    margin: 0;
  }

  .global__inner,
  .global__left,
  .why-now__copy {
    flex-direction: column;
    gap: 1rem;
  }

  .global_section {
    padding: 3rem 0;
  }

  .cta_home_section {
    padding-bottom: 5rem;
  }

  .case-content__top {
    padding-bottom: 1rem;
  }

  .cs_secTitle {
    font-size: 2rem;
  }

  .cs_headRight {
    width: 32%;
  }

  .cs_headRight br {
    display: none;
  }

  .proof-bar {
    padding: 2rem 0;
  }

  .trusted-section {
    padding-bottom: 3rem;
  }

  .logo-row img {
    max-height: 2rem;
  }

  .services__meta {
    gap: 1.5rem;
  }

  .case-slide {
    flex-direction: column;
  }

  .case-content {
    order: 1;
    flex: 0 0 auto;
    width: 100%;
    max-width: none;
  }

  .slider__Img_count {
    display: none;
  }

  .engine__right {
    width: 100%;
  }

  .pagination__arrows {
    justify-content: flex-end;
  }

  .slick-prev::after,
  .slick-next::after {
    width: 10px;
    height: 10px;
  }

  .industries-showcase__cards .showcase-card {
    padding: 1.75rem 1rem 1rem;
  }

  .case-image {
    width: 100%;
  }
}

@media (max-width: 767px) {


  .homePage_new .cs_container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .cap-row {
    gap: 1rem;
  }

  .cap-row__title {
    gap: .5rem;
    flex: 0 0 auto;
    width: 35%;
  }

  .case-studies__main {
    padding-top: 1.5rem;
    padding-bottom: 0.5rem;
  }

  .case-slide {
    flex-direction: column;
  }

  .case-content {
    width: 100%;
    max-width: none;
    order: 1;
  }

  .engine__bullets-dots {
    display: none;
  }

  .case-image {
    max-width: none;
    width: 100%;
    height: 25rem;
  }

  .engine__bullets {
    list-style: bullet;
    padding-left: 0;
  }

  .engine__bullets li {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
  }

  .engine__bullets li::before {
    content: '';
    display: inline-block;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: white;
    top: .9rem;
    position: relative;
  }

  .workflow-step {
    width: 47%;
  }

  .workflow_bg_img {
    padding: 3rem 1.5rem;
  }

  .advantage__heading,
  .global__heading {
    white-space: normal;
    line-height: 1.2;
  }

  .global__left {
    width: auto;
    max-width: 100%;
  }

  .cs_secHead {
    gap: 1.5rem;
    flex-direction: column;
  }

  .cs_headRight,
  .cs_headLeft {
    gap: 1rem;
    width: 100%;
  }

  .cs_headRight,
  .cs_headRight .cs_secDes {
    text-align: left;
    width: 100%;
    max-width: none;
  }

  .trusted-section .sec_title {
    font-size: 2rem;
    font-weight: 400;
  }

  .adv-item {
    padding: 2rem 1rem;
  }

  .slick-prev::after,
  .slick-next::after {
    width: 8px;
    height: 8px;
  }

  .industries-showcase__inner {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .industries-showcase__content {
    flex-direction: column-reverse;
    gap: 1.5rem;
  }

  .industries-showcase__left {
    width: 100%;
  }

  .industries-showcase__cards {
    grid-template-columns: 1fr;
  }

  .industries-showcase__heading {
    font-size: 2.25rem;
  }

  .showcase-card__desc {
    font-size: 1rem;
  }

  .industries-showcase__content {
    display: flex;
    flex-direction: column;
  }

  .cta__heading {
    font-size: 2rem;
    line-height: 1.2;
  }

  .cap-row {
    flex-wrap: wrap;
  }

  .cap-row__title {
    width: 100%;
  }

  .cap-row__desc {
    max-width: calc(100% - 3rem);
  }

  body .banner-slider-content-left {
    width: 100%;
  }

  .kagen-btn:hover {
    background-color: unset;
  }

  .cap-row__desc {
    max-width: calc(100% - 3rem);
  }

  .workflow-step__num {
    font-size: 11px;
  }
  .workflow-step__title{
    font-size: 17px;
  }

  .workflow-step__desc {
    font-size: 14px;
  }

  .workflow__steps {
    justify-content: space-between;
  }

  .workflow__arrow {
    display: none;
  }

  .workflow__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}



/* ===================== end industries showcase ===================== */

.kagen-btn {
  background-color: #000;
  padding: 1.375rem 2rem;
  border-radius: 6rem;
  border: 1px solid #FBA10E55;
  margin-left: 1rem;
  font-size: var(--size-20);
  display: inline-flex
}


.cta__heading {
  font-size: 2rem;
  line-height: 1.2;
  margin-top: 0;
}

/* .cap-row {
  flex-wrap: wrap;
}

.cap-row__title {
  width: 100%;
} */

section.comman-blog-section .slick-arrow {
  top: auto;
}

.banner-slider-content-left {
  width: 60%;
}

.banner-slider-content-wrapper {
  justify-content: space-between;
}