/* 
@font-face {   
	font-family: "TT Firs Neue";   
	src: url("https://your-cdn.com/fonts/TTFirsNeue-Regular.woff2") format("woff2"),        
	url("https://your-cdn.com/fonts/TTFirsNeue-Regular.woff") format("woff");   
	font-weight: 400; font-style: normal; 
} 
body {
  font-family: "TT Firs Neue Trial", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
div,
button {
  font-family: "TT Firs Neue Trial", sans-serif;
}*/

/* slider setting css start */

.owl-dots {
  display: none !important;
}

.owl-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  position: absolute;
  width: calc(100% + 46px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  justify-content: space-between;
}

.owl-nav .disabled,
.owl-theme .owl-nav .disabled {
  opacity: .6 !important;
  cursor:default;
}

.owl-nav .owl-next,
.owl-nav .owl-prev {
  width: 48px;
  height: 48px;
  border-radius: 50% !important;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  position: relative;
  border: 0;
}

.owl-nav .owl-prev {
  background: url(../images/leftArrow.svg), var(--white) !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 48% !important;
}

.owl-nav .owl-next {
  background: url("../images/rightArrow.svg"), var(--white) !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 48% !important;
}

.owl-nav button span {
  display: none;
}
/* slider setting css end */

/* ----  Banner css start here  ---- */

.hb-hero {
  position: relative;
  isolation: isolate;
  width: 100%;
  height: 100vh;
  height: 100svh;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 0 60px 0;
}
@media screen and (min-width: 1920px) {
  .hb-hero {
    height: auto;
    height: auto;
    padding: 150px 0 120px 0;
  }
}
.VideoImageWrap {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* ---------- Background media ---------- */
.hb-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hb-media-img {
  height: auto;
  width: auto;
  max-width: 100px;
  transition: all 0.3s ease;
}
.hb-badge:hover .hb-media-img {
  transform: scale(1.1);
}
.hb-media-img,
.hb-media-video {
  object-fit: cover;
  object-position: center;
  display: block;
}
.hb-media-video {
  width: 100%;
  height: 100%;
}
.hb-media-overlay {
  position: absolute;
  inset: 0;
  background: #0000007d;
}

/* ---------- Content ---------- */
.hb-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: var(--space-60);
}

.hb-heading {
  margin: 0 0 16px;
  font-size: clamp(28px, 4.2vw, 44px);
  font-weight: 500;
  line-height: 130%;
  color: var(--white);
  letter-spacing: -0.02em;
  font-family: "TT Firs Neue Trial", sans-serif;
  opacity: 0;
  animation: hb-fade-up 0.7s ease forwards;
  animation-delay: 0.5s;
}

.hb-heading-line {
  display: block;
  overflow: hidden;
}

.hb-heading-line {
  opacity: 0;
  transform: translateY(100%);
  animation: hb-fade-up-line 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hb-heading-line:nth-child(1) {
  animation-delay: 0.15s;
}
.hb-heading-line:nth-child(2) {
  animation-delay: 0.3s;
}

.hb-subtext {
  margin: 0 0 32px;
  max-width: 680px;
  font-size: 20px;
  line-height: 150%;
  font-weight: 500;
  color: var(--primery-text);
  opacity: 0;
  animation: hb-fade-up 0.7s ease forwards;
  animation-delay: 0.5s;
  font-family: "TT Firs Neue Trial", sans-serif;
}

.hb-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  opacity: 0;
  animation: hb-fade-up 0.7s ease forwards;
  animation-delay: 0.65s;
}

/* ---------- Award / recognition badges ---------- */

.hb-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 34px;
  opacity: 0;
  animation: hb-fade-up 0.7s ease forwards;
  animation-delay: 0.8s;
  padding: 20px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(20.36px);
  border: 0.85px solid rgba(255, 255, 255, 0.15);
  height: 100px;
}

.hb-badges-logo {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: 100%;
}
.hb-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 60px;
  padding: 0 var(--space-16);
  border-right: 1px solid #ffffff33;
}
.hb-badge:last-child {
  border-right: 0px;
}

.hb-badge::after,
.hb-badge::before {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 30px;
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
}
.hb-badge::after {
  left: var(--space-16);
  background-image: url(../images/leftLeaves.svg);
}
.hb-badge::before {
  right: var(--space-16);
  background-image: url(../images/rightLeaves.svg);
}

.hb-badges .owl-item:last-child .hb-badge {
  border: 0px;
}

.hb-badge-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  opacity: 0.9;
}

.hb-badge-text {
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* ---------- Entrance keyframes ---------- */
@keyframes hb-fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hb-fade-up-line {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ----  Banner css end here  ---- */

/* ----  case Studies css start here  ---- */

.cs-scroll-spacer {
  position: relative;
  height: 300vh;
}

.cs-section {
  position: sticky;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  padding: 60px 0px;
  background: url("../images/New-Home/case-studies-bg.webp");
  overflow: hidden;
  background-position: center;
  background-size: cover;
}

.cs-container {
  position: relative;
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
}

/* ---------- Header ---------- */
.cs-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.cs-title {
  margin: 0;
  font-weight: 500;
  color: var(--white);
}

/* ---------- Slider ---------- */
.cs-slider-viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.cs-slider-track {
  display: flex;
  will-change: transform;
  gap: 20px;
  transition: transform 0.1s linear;
}

.cs-slide {
  flex: 0 0 80%;
  width: 80%;
  display: flex;
  align-items: stretch;
  box-sizing: border-box;
  background: var(--black);
  border-radius: 20px;
  overflow: hidden;
  max-height: 560px;
}

.cs-slide:hover .cs-stats,
.cs-slide--active .cs-stats,
.cs-slide--active .cs-tag,
.cs-slide:hover .cs-tag {
  background: var(--case-hover);
}

.cs-slide-media {
  flex: 0 0 40%;
  /* height: calc(100vh - 270px); */
  overflow: hidden;
}

.cs-card-footer {
  display: flex;
  gap: 32px;
  flex-direction: column;
  width: 100%;
  align-items: flex-start;
}

.cs-slide-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.cs-card-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

/* main black content card */
.cs-card {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 32px;
  background: var(--pure-dark-bg);
  border-radius: 0px 20px 20px 0px;
  justify-content: space-between;
}

/* ---------- Text entrance animation ---------- */
/* Each animated element starts hidden/offset. When JS marks a slide as
   the active one (.cs-slide--active), its text staggers in one after
   another. Slides that are not active fade their text down slightly,
   so re-entering the same slide always re-plays the animation cleanly. */
.cs-slide-media,
.cs-tag,
.cs-heading,
.cs-stats,
.cs-cta-btn {
  opacity: 1;
  transform: translateY(0px);
  transition:
    opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.cs-slide-media {
  transform: scale(1.04);
}

.cs-slide--active .cs-slide-media {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0s;
}
.cs-slide--active .cs-tag {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.08s;
}
.cs-slide--active .cs-heading {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.16s;
}
.cs-slide--active .cs-stats {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.26s;
}
.cs-slide--active .cs-cta-btn {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.34s;
}

.cs-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--light-dark-shade);
  color: var(--white);
  font-size: var(--fs-16);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.cs-heading {
  margin: 0;
  font-size: var(--fs-32);
  line-height: 140%;
  font-weight: 400;
  color: var(--white);
  letter-spacing: -0.01em;
  /* display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis; */
}

.cs-stats {
  display: flex;
  align-items: stretch;
  gap: 0;
  width: 100%;
  background: var(--light-dark-shade);
  border-radius: 16px;
}

.cs-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 20px;
  border-right: 1px solid #ffffff1a;
  width: 50%;
}

.cs-stat:last-child {
  border-right: none;
}

.cs-stat-number {
  font-size: var(--fs-32);
  line-height: 120%;
  font-weight: 500;
  color: var(--white);
}

.cs-stat-label {
  font-size: var(--fs-18);
  color: var(--primery-text);
  line-height: 24px;
}

.cs-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--cs-accent);
  color: var(--cs-text-light);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.cs-cta-btn:hover {
  background: var(--cs-accent-hover);
  color: var(--cs-text-light);
  transform: translateY(-1px);
}

.cs-cta-btn .cs-icon-arrow {
  width: 15px;
  height: 15px;
}

/* ---------- Footer: progress + counter ---------- */
.cs-footer {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 40px;
  gap: 40px;
}

.cs-progress-track {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  position: relative;
  border-radius: 7px;
}

.cs-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 33.33%;
  background: #ffffff;
  transition: width 0.35s ease;
  border-radius: 7px;
}

.cs-counter {
  font-size: var(--fs-18);
  font-weight: 500;
  color: var(--white);
  background: transparent;
  white-space: nowrap;
}

.cs-counter-label {
  font-weight: 400;
  color: var(--white);
  margin-left: 4px;
}

#csCurrentSlide {
  display: inline-block;
}

#csCurrentSlide.cs-counter-pop {
  animation: cs-counter-pop 0.35s ease;
}

@keyframes cs-counter-pop {
  0% {
    transform: translateY(30%);
    opacity: 0.3;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ----  case Studies css end here  ---- */

/* ----  why q3 css start here  ---- */

.whyQ3_section {
  padding: var(--space-60) 0 var(--space-60) 0;
  background: var(--light-dark-bg);
}

.whyQ3_head {
  text-align: center;
}
.whyQ3_head .wwd-subtitle {
  max-width: 100%;
}
.whyQ3_head h2 span {
  display: block;
}

.whyQ3_section-content {
  max-width: 80%;
  margin: 0px auto;
  display: flex;
  flex-direction: column;
}
.whyQ3_section-content .whyQ3_section-card {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--grey-border);
}
.whyQ3_section-content .whyQ3_section-card:last-child {
  border-bottom: 0px solid var(--grey-border);
  padding-bottom: 0;
}

.whyQ3_section-card-img {
  overflow: hidden;
  transition: 0.5s ease-in-out;
  border-radius: 10px;
  min-width: 148px;
  width: 100%;
  max-width: 171px;
}
.whyQ3_section-card-img img {
  transition: 0.5s ease-in-out;
  min-width: 130px;
}
.whyQ3_section-card-img:hover img {
  transition: 0.5s ease-in-out;
  transform: scale(1.05);
}

.whyQ3_section-content .whyQ3_section-card .whyQ3_section-card-content {
  width: calc(100% - 460px);
}
.whyQ3_section-card .whyQ3_section-card-numbers {
  text-align: right;
  width: 250px;
}
.whyQ3_section-card-content h4 {
  font-size: 28px;
  color: var(--theme-white-text, #fff);
  margin-bottom: 12px;
}
.whyQ3_section-card-content p {
  font-size: var(--fs-18);
  color: var(--grey-light-text);
  margin-bottom: 0px;
}
.whyQ3_section-card-numbers .card-count {
  font-size: 52px;
  color: var(--theme-white-text, #fff);
  font-weight: 500;
  line-height: 100%;
}
.whyQ3_section-card-numbers p {
  color: var(--grey-light-text);
  font-size: var(--fs-18);
  margin-top: 12px !important;
  font-weight: 400;
}

.whyQ3_section .whyQ3_decor {
  display: none;
}

.whyQ3_section .whyQ3_card {
  padding: 26px 28px 30px;
  min-height: 100%;
  background: var(--color-light-grey-bg);
  border: var(--color-light-grey-bg);
}

.whyQ3_section p {
  margin: 0px;
}
.whyQ3_section .section_title {
  color: var(--theme-white-text, #fff);
}

.whyQ3_section .whyQ3_metricValue {
  background: linear-gradient(92.27deg, #9fc2ed -0.19%, #004eff 52.24%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; /* Standard property */
  background-clip: text;
  color: transparent;
  margin-bottom: 8px;
}

.whyQ3_section .whyQ3_metricBox {
  border: 0px;
  border-radius: 0px;
  background: transparent;
  border-top: 1px solid var(--herder-border);
  padding: 16px 0px 0px;
}

.whyQ3_section .whyQ3_cardTitle {
  color: var(--color-font);
}
.whyQ3_section .whyQ3_cardCopy,
.whyQ3_section .whyQ3_metricCopy {
  color: var(--color-text-primary);
}

/* ----  why q3 css end here  ---- */

/* ----  cta section css start here  ---- */

.ctaSection_section.new-ctaSection_section {
  padding: 60px 0px;
  background: var(--light-dark-bg);
}
.ctaSection_section.new-ctaSection_section .ctaSection_bg {
  position: static;
  height: 320px;
}
.ctaSection_section.new-ctaSection_section
  .ctaSection_content
  .ctaSection_title {
  font-size: var(--fs-40);
}
.ctaSection_section.new-ctaSection_section
  .ctaSection_content
  .ctaSection_text {
  font-size: var(--fs-18);
}
.ctaSection_section.new-ctaSection_section
  .ctaSection_content
  .primary_btn
  .btn-text {
  font-size: 16px;
}

.ctaSection_section.new-ctaSection_section .ctaSection_card-wrappr {
  width: 60%;
}

.ctaSection_section.new-ctaSection_section .ctaSection_card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  padding: 0px 32px;
}
.ctaSection_section.new-ctaSection_section .ctaSection_content {
  text-align: left;
}
.ctaSection_section.new-ctaSection_section
  .ctaSection_card
  .ctaSection_actions {
  justify-self: flex-start;
}

/* ----  cta section css end here  ---- */

/* ----  animation css start here  ---- */

[data-sr] {
  opacity: 0;
  transition-property: opacity, transform;
  transition-duration: var(--sr-duration, 0.8s);
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--sr-delay, 0s);
  will-change: opacity, transform;
}

/* ---------- Variants (default starting position before reveal) ---------- */
[data-sr="fade-up"],
[data-sr=""] {
  transform: translateY(var(--sr-distance, 40px));
}

[data-sr="fade-down"] {
  transform: translateY(calc(var(--sr-distance, 40px) * -1));
}

[data-sr="fade-in"] {
  transform: none;
}

[data-sr="slide-left"] {
  transform: translateX(var(--sr-distance, 60px));
}

[data-sr="slide-right"] {
  transform: translateX(calc(var(--sr-distance, 60px) * -1));
}

[data-sr="zoom-in"] {
  transform: scale(0.92);
}

[data-sr].sr-visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

/* ----  animation css end here  ---- */

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1399px) {
  .hb-hero {
    padding: 70px 0 60px 0;
  }
  .hb-heading {
    font-size: var(--fs-32);
  }
  .hb-badges .hb-badge img {
    width: auto;
  }
  .hb-subtext {
    font-size: var(--fs-16);
  }
  .hb-content {
    width: 660px;
  }

  .wwd-item-head {
    padding: 18px 16px;
    gap: 15px;
  }
  .wwd-item-title {
    font-size: var(--fs-24);
  }
  .wwd-item-icon {
    width: 32px;
    height: 32px;
  }
  .wwd-item-icon img {
    width: 100%;
  }

  .wwd-panel-content {
    gap: 20px;
  }
  .wwd-panel-desc {
    font-size: var(--fs-16);
  }
  .wwd-panel-content-wrappr {
    gap: var(--space-8);
  }
  .wwd-services-col {
    gap: var(--space-4);
  }
  .wwd-services-col li {
    font-size: var(--fs-16) !important;
  }
  .cs-card {
    padding: var(--space-24);
  }
  .cs-card-header {
    gap: var(--space-12);
  }
  .cs-heading {
    font-size: var(--fs-28);
  }
  .cs-stat-number {
    font-size: var(--fs-28);
  }
  .cs-stat-label {
    font-size: var(--fs-16);
    line-height: 22px;
  }
  .cs-section {
    padding: 40px 0px;
  }

  .sliderbtn {
    height: 40px;
    width: 40px;
  }

  .whyQ3_section-card-numbers .card-count {
    font-size: 42px;
    line-height: normal;
  }
  .whyQ3_section-card-numbers .card-count {
    font-size: var(--fs-32);
  }
  .whyQ3_section-card-content p,
  .whyQ3_section-card-numbers p {
    font-size: 16px;
  }
  .whyQ3_section-content .whyQ3_section-card {
    padding: 24px 0;
  }
}

@media (max-width: 1280px) {
  .hb-hero {
    padding: 100px 0 60px 0;
    height: auto;
    min-height: auto;
  }
  .hb-content {
    gap: var(--space-40);
  }
  .cs-heading {
    font-size: var(--fs-24);
  }
}
@media (max-width: 1200px) {
  .cs-scroll-spacer {
    height: auto !important;
  }
  .cs-section{min-height: fit-content;}
  .hb-badges {
    overflow-x: auto !important;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    touch-action: pan-x;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
    padding: 15px 0;
    height: auto;
    border-radius: 10px;
  }

  .hb-badge {
    height: 45px;
    min-width: 155px;
    scroll-snap-align: start;
    padding: 0 10px;
  }

  .hb-badge::after,
  .hb-badge::before {
    width: 25px;
    background-size: cover;
  }

  .hb-badge::after {
    left: 12px;
  }

  .hb-badge::before {
    right: 12px;
  }
  .hb-heading {
    font-size: var(--fs-24);
    margin: 0 0 12px 0;
  }

  .hb-subtext {
    font-size: var(--fs-16);
    margin-bottom: var(--space-16);
  }

  .cs-stat-number {
    font-size: var(--fs-24);
  }
  .cs-title {
    font-size: var(--fs-32);
  }

  .blog-section .blogsInsight_section {
    padding: var(--space-40) 0 var(--space-40);
  }
  .ctaSection_section.new-ctaSection_section .ctaSection_bg {
    height: 320px;
  }
  .testimonial-section .testimonial-carousel .client-testimonial-wrappr {
    align-items: stretch;
  }

  #wrap canvas {
    width: 500px;
    height: 500px;
    margin-left: -20px;
  }
  .ctaSection_section.new-ctaSection_section
    .ctaSection_content
    .ctaSection_title {
    font-size: var(--fs-32);
  }

  .whyQ3_section-content {
    max-width: 100%;
  }
  .whyQ3_section-card-content h4 {
    font-size: var(--fs-20);
    margin-bottom: 8px;
  }
}

@media (max-width: 992px) {
  .owl-next,
  .owl-prev {
    width: 32px !important;
    height: 32px !important;
  }
  .owl-nav {
    width: calc(100% + 20px);
  }
  .cs-slide {
    flex: 0 0 100%;
    width: 100%;
  }
  .whyQ3_section {
    padding: var(--space-40) 0;
  }
  .whyQ3_section .whyQ3_metricBox {
    margin-top: 20px;
  }
  .cs-section {
    padding: 32px 0px;
  }
  .cs-slide-media {
    flex: 0 0 40%;
    /* height: calc(100vh - 270px); */
  }
  .cs-heading {
    font-size: var(--fs-20);
    line-height: 140%;
  }

  .whyQ3_section-card-numbers .card-count {
    font-size: var(--fs-28);
  }
}

@media (max-width: 768px) {
  .whyQ3_head {
    margin-bottom: 0;
  }
  .cs-slide {
    flex-direction: column-reverse;
    flex: 0 0 100%;
    width: 100%;
    max-height: max-content;
  }

  .cs-slide-media {
    flex: 0 0 auto;
    width: 100%;
    /* height: 340px; */
    aspect-ratio: 1.8;
    border-radius: 0px 0px 20px 20px;
  }
  .ctaSection_section.new-ctaSection_section
    .ctaSection_content
    .ctaSection_text {
    font-size: var(--fs-16);
  }
  .ctaSection_section.new-ctaSection_section
    .ctaSection_content
    .ctaSection_title {
    font-size: var(--fs-24);
  }

  .ct-card {
    flex-direction: column;
    padding: 18px;
    gap: 20px;
  }
  .ct-media {
    min-height: 220px;
  }
  .ct-title {
    font-size: 22px;
  }

  .hb-media-img {
    object-position: right;
  }
  .hb-content {
    max-width: 100%;
  }
  .hb-cta-row {
    justify-content: center;
  }
  .hb-content {
    text-align: center;
  }

  .hb-hero {
    justify-content: flex-end;
    padding: 150px 0 40px 0;
  }
  .hb-content {
    gap: var(--space-40);
  }
  .hb-content {
    margin: auto;
  }
  .hb-heading,
  .hb-subtext {
    display: flex;
    max-width: 100%;
  }
  .wwd-subtitle {
    max-width: 100%;
  }
  .wwd-services-col {
    grid-template-columns: 1fr;
  }
  .testimonial-section .testimonial-carousel .client-testimonial-wrappr {
    padding: 24px 24px 80px;
    flex-direction: column-reverse;
    gap: var(--space-24);
    border-radius: 20px;
  }

  .ctaSection_section.new-ctaSection_section .ctaSection_card {
    flex-direction: column;
    padding: 20px 20px 0px;
  }
  .ctaSection_section.new-ctaSection_section .ctaSection_card-wrappr {
    width: 100%;
  }
  .ctaSection_section.new-ctaSection_section .ctaSection_content {
    text-align: center;
  }
  .ctaSection_section.new-ctaSection_section
    .ctaSection_card
    .ctaSection_actions {
    justify-self: center;
  }
  .ctaSection_section.new-ctaSection_section .ctaSection_bg {
    height: 100%;
    margin-top: 20px;
  }
  #wrap canvas {
    width: 100%;
    height: 100%;
    margin-left: 0px;
  }

  .cs-section {
    position: static;
    min-height: auto;
  }

  /* No more scroll runway needed since slides don't advance via page scroll */
  .cs-scroll-spacer {
    height: auto !important;
  }

  /* Snappier, swipe-appropriate easing instead of the 0.1s linear used
     for the scroll-jack (which was tied 1:1 to scroll position) */
  .cs-slider-track {
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    gap: 20px;
  }

  /* Let vertical page scroll pass through, but let JS take over
     horizontal touch movement for the swipe gesture */
  .cs-slider-viewport {
    touch-action: pan-y;
  }

  /* Tighter fan on tablets: smaller cards, less overlap so all 6 still
     fit without wrapping. */

  .whyQ3_section-content .whyQ3_section-card {
    flex-direction: column;
    gap: 16px;
  }
  .whyQ3_section-card-img,
  .whyQ3_section-card-img img {
    width: 100%;
    max-width: 100%;
  }
  .whyQ3_section-content .whyQ3_section-card .whyQ3_section-card-content {
    width: 100%;
  }
  .whyQ3_section-card .whyQ3_section-card-numbers {
    width: 100%;
    text-align: left;
    margin-top: 0px;
  }

  .wwd-panel-media {
    padding: 0px;
    margin: 0px 16px 16px;
  }
  .wwd-panel-media::after {
    top: 30px;
    left: 55px;
    height: calc(100% - 10px);
  }
  .cs-card-footer {
    gap: 24px;
  }
  .cs-card {
    padding: 24px 16px;
    gap: 24px;
  }
  .cs-heading {
    -webkit-line-clamp: 10;
  }
  .case_studies_mob {
    display: flex;
    flex-direction: column-reverse;
    gap: 24px;
  }
  .cs-footer{
    margin-top: 0px;
  }
  .cs-header{margin-bottom: 24px;}
}

@media (max-width: 576px) {
  .whyQ3_section-card-img {
    aspect-ratio: 1.8;
  }
  .hb-badges {
    width: 100%;
  }

  .cs-header {
    margin-bottom: 0;
  }
  .cs-footer {
    margin: 24px 0 0 0;
  }
  .cs-tag {
    font-size: var(--fs-12);
    font-weight: 400;
  }
  .hb-content {
    max-width: 100%;
  }

  .ct-section {
    padding: 32px 14px;
  }
  .ct-footer-row {
    flex-wrap: wrap;
    gap: 14px;
  }

  .cs-title {
    font-size: 24px;
  }
  .cs-stats {
    flex-wrap: wrap;
    gap: 0px;
  }
  .cs-stat {
    border-right: none;
    margin-right: 0;
    width: 100%;
    padding: 8px 16px;
  }

  .cs-slide-media {
    aspect-ratio: 1;
    height: 280px;
  }
  .cs-slide-img {
    object-fit: cover;
  }
  .cs-heading {
    font-size: var(--fs-18);
  }
}
