@font-face {
  font-family: "Gilroy";
  src:
    url("/font/Gilroy-Medium.woff2") format("woff2"),
    url("/font/Gilroy-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy";
  src:
    url("/font/Gilroy-Bold.woff2") format("woff2"),
    url("/font/Gilroy-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Gilroy";
  font-weight: 500;
  color: #fff;
  overflow-x: hidden;
}

/* ══════════════════════════════
       SLIDER WRAPPER
    ══════════════════════════════ */
.slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 500px;
  overflow: hidden;
}

/* ══════════════════════════════
       SLIDES
    ══════════════════════════════ */
.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  /* left content padding | right space reserved for counter panel */
  padding: clamp(2rem, 5vw, 5rem) clamp(1.5rem, 5vw, 6rem);
  padding-right: calc(
    clamp(1.5rem, 5vw, 6rem) + 160px
  ); /* leave room for right panel */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
  z-index: 1;
}
.slide.active {
  opacity: 1;
  pointer-events: all;
  z-index: 2;
}

/* ✅ Background image — replace src per slide in HTML */
.slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.slide-overlay {
  position: absolute;
  inset: 0;

  z-index: 1;
}

/* ══════════════════════════════
       SLIDE TEXT CONTENT (left)
    ══════════════════════════════ */
.slide-content {
  position: relative;
  z-index: 2;
  width: 100%;
  transform: translateY(20px);
  opacity: 0;
  transition:
    transform 0.7s ease 0.15s,
    opacity 0.7s ease 0.15s;
}
.slide.active .slide-content {
  transform: translateY(0);
  opacity: 1;
}

.breadcrumb {
  font-size: clamp(0.65rem, 1.2vw, 0.75rem);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #a0b8cc;
  margin-bottom: 0.85rem;
}

.hero-rule {
  width: 1000px;
  height: 1px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.25), transparent);
  margin-bottom: 1.5rem;
  position: relative;
}

h1 {
  font-family: "Gilroy";
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1.1rem;
  position: relative;
  font-size: 70px !important;
  line-height: 70px;
}

@media (max-width: 680px) {
  h1 {
    font-size: 60px !important;
     line-height: 60px;
  }
  .subtitle {
  font-size: 1.5rem;
  
}
}

@media (max-width: 560px) {
  h1 {
    font-size: 45px !important;
     line-height: 50px;
  }
  .subtitle {
  font-size: 1rem;
  
}
}

.subtitle {
  font-size: 1.3rem;
  line-height: 1.75;
  color: #b0c8d8;
  max-width: 420px;
  margin-bottom: 2rem;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: transparent;
  color: #fff;
  font-family: "Gilroy";
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.btn-cta:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

/* ══════════════════════════════
       RIGHT CONTROL PANEL
       counter → progress → arrows
       all stacked, vertically centred
    ══════════════════════════════ */
.slider-controls {
  position: absolute;
  right: clamp(1.5rem, 4vw, 5rem);
  top: 70%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

/* Counter */
.slide-counter {
  display: flex;
  align-items: baseline;
  gap: 0.1rem;
  line-height: 1;
}
.counter-main {
  font-family: "Gilroy";
  font-size: clamp(3rem, 5.5vw, 4.8rem);
  font-weight: 700;
  line-height: 1;
}
.counter-total {
  font-size: clamp(0.9rem, 1.5vw, 1.2rem);
  font-weight: 500;
  color: #a0b8cc;
}

/* Progress bar */
.progress-bar {
  width: 100px;
  height: 2px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: #38bfff;
  width: 0%;
}

/* Arrow buttons */
.slider-nav {
  display: flex;
  gap: 0.5rem;
}
.nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    border-color 0.2s;
  flex-shrink: 0;
}
.nav-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.6);
}

/* ══════════════════════════════
       PARTNER LOGOS (bottom strip)
    ══════════════════════════════ */
.partners {
  position: absolute;
  bottom: 0;
  left: 70px !important;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: clamp(0.4rem, 1vw, 0.75rem);
  padding: clamp(0.8rem, 1.5vw, 1.1rem) clamp(1.5rem, 5vw, 6rem);
  flex-wrap: wrap;
}

.partner-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem clamp(0.6rem, 1.2vw, 1.1rem);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  transition:
    background 0.2s,
    transform 0.2s;
}

/* ✅ Replace each logo src in HTML below */
.partner-card img {
  height: clamp(20px, 2.5vw, 28px);
  width: auto;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1); /* remove if logos are already white */
}

/* ══════════════════════════════
       RESPONSIVE BREAKPOINTS
    ══════════════════════════════ */

/* Tablet */
@media (max-width: 900px) {
  .slide {
    padding-right: clamp(1.5rem, 5vw, 3rem);
    padding-bottom: clamp(5rem, 10vw, 8rem);
    align-items: flex-end;
  }

  /* Move controls to bottom-right above partners */
  .slider-controls {
    top: auto;
    bottom: clamp(4.5rem, 9vw, 7rem);
    right: clamp(1.5rem, 4vw, 3rem);
    transform: none;
    flex-direction: row; /* counter | progress | arrows in a row */
    align-items: center;
    gap: 1rem;
  }
  .progress-bar {
    width: 70px;
  }
}

/* Mobile */
@media (max-width: 540px) {
  .slide {
    padding: clamp(1.5rem, 5vw, 2.5rem);
    padding-bottom: clamp(7rem, 14vw, 10rem);
    align-items: flex-start;
    padding-top: clamp(3rem, 8vw, 5rem);
  }

  .slider-controls {
    bottom: clamp(4rem, 8vw, 6rem);
    right: clamp(1rem, 3vw, 1.5rem);
    gap: 0.6rem;
  }

  .counter-main {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  .progress-bar {
    width: 50px;
  }
  .nav-btn {
    width: 30px;
    height: 30px;
    font-size: 0.85rem;
  }

  .partners {
    padding: clamp(0.7rem, 2vw, 1rem) clamp(1rem, 3vw, 1.5rem);
    gap: 0.4rem;
  }
  .partner-card img {
    height: 18px;
  }

  h1 {
    font-size: clamp(1.7rem, 6.5vw, 2.2rem);
  }
  .subtitle {
    font-size: 0.85rem;
  }
}
/* ══════════════════════════════
       SECTION WRAPPER
    ══════════════════════════════ */
.section2 {
  width: 100%;
  padding: clamp(3rem, 6vw, 6rem) clamp(1.5rem, 6vw, 6rem);
  background: #fff;
}

/* ══════════════════════════════
       TOP ROW — image left | text right
    ══════════════════════════════ */
.top-row {
  display: flex;
  align-items: flex-start;
  gap: clamp(2rem, 5vw, 5rem);
}

/* ── Left: image ── */
.image-col {
  flex: 0 0 auto;
  width: clamp(260px, 40%, 420px);
}

.image-col img {
  width: 100%;
  height: clamp(320px, 45vw, 520px);
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 20px;
}

/* ── Right: text ── */
.text-col {
  flex: 1;
  padding-top: 0.25rem;
}

.overline {
  font-size: clamp(0.7rem, 1.1vw, 0.78rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #777;
  margin-bottom: 0.9rem;
  text-transform: none;
}

.section-title {
  font-family: "Gilroy";
  font-size: 40px;
  font-weight: 700;
  line-height: 1.18;
  color: #0d1b2e;
  margin-bottom: 1.4rem;
}

.section-body {
  font-size: 18px;
  line-height: 1.8;
  color: #4a5568;
  max-width: 520px;
}

/* ══════════════════════════════
       BOTTOM HIGHLIGHT TEXT
    ══════════════════════════════ */
.highlight-row {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
  border-top: 1px solid #e8ecf0;
}

.highlight-text {
  font-family: "Gilroy";
  font-size: clamp(1.1rem, 2.2vw, 1.55rem);

  line-height: 1.55;
  color: #0d1b2e;
  max-width: 680px;
}

/* Strong part — dark black */
.highlight-text strong {
  font-weight: 700;
  color: #0d1b2e;
}

/* Muted part — light grey */
.highlight-text .muted {
  font-weight: 500;
  color: #aab4be;
}

/* ══════════════════════════════
       RESPONSIVE
    ══════════════════════════════ */

/* Tablet: stack image above text */
@media (max-width: 768px) {
  .top-row {
    flex-direction: column;
  }

  .image-col {
    width: 100%;
  }

  .image-col img {
    height: clamp(240px, 50vw, 380px);
    object-position: center 20%;
  }

  .section-body {
    max-width: 100%;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .section2 {
    padding: 2.5rem 1.25rem;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .highlight-text {
    font-size: 1.05rem;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* ══════════════════════════════════════
       SECTION
    ══════════════════════════════════════ */
.s3-section {
  position: relative;
  width: 100%;
  padding: clamp(2rem, 5vw, 5rem) 0 clamp(3rem, 5vw, 5rem);
  background: #fff;
  overflow: hidden;
}

/* Watermark */
.s3-watermark {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  font-family: "Gilroy-ExtraBold", sans-serif;
  font-size: clamp(72px, 15vw, 207px);
  font-weight: 700;
  line-height: 1;
  color: rgba(0, 0, 0, 0.055);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  padding-left: clamp(1rem, 3vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.s3-watermark span {
  display: block;
  line-height: 0.92;
}

/* ══════════════════════════════════════
       ARROW NAV
    ══════════════════════════════════════ */
.s3-nav {
  display: none;
  justify-content: flex-end;
  gap: 0.6rem;
  padding: 0 clamp(1rem, 5vw, 5rem) 0.75rem;
  position: relative;
  z-index: 3;
}
.s3-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 0, 0, 0.2);
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.s3-nav-btn:hover {
  border-color: #111;
  background: #f5f5f5;
}
.s3-nav-btn svg {
  width: 16px;
  height: 16px;
  stroke: #111;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ══════════════════════════════════════
       CARDS AREA
    ══════════════════════════════════════ */
.s3-cards-area {
  position: relative;
  z-index: 2;
  padding: 0 clamp(1rem, 5vw, 5rem);
  margin-top: clamp(2rem, 8vw, 8rem);
}
.s3-viewport {
  overflow: hidden;
  width: 100%;
}
.s3-track {
  display: flex;
  gap: clamp(0.6rem, 1.5vw, 1.2rem);
  /* NO transition here — JS handles it with/without animation */
  will-change: transform;
}
.s3-track.animating {
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ══════════════════════════════════════
       CARD
    ══════════════════════════════════════ */
.s3-card {
  flex: 0 0 calc((100% - clamp(0.6rem, 1.5vw, 1.2rem) * 2) / 3);
  min-width: 0;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3 / 3.6;
  cursor: pointer;
}

.s3-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.45s ease;
}
.s3-card:hover .s3-card-img {
  transform: scale(1.04);
}

.s3-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.08) 0%,
    rgba(0, 0, 0, 0.18) 40%,
    rgba(0, 0, 0, 0.72) 100%
  );
  z-index: 1;
  transition: background 0.4s ease;
}
.s3-card:hover .s3-card-overlay {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.3) 45%,
    rgba(0, 0, 0, 0.88) 100%
  );
}

/* ── Card body: full height flex column ── */
.s3-card-body {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* content sits at bottom by default */
  padding: clamp(0.75rem, 2vw, 1.4rem);
  overflow: hidden;
}

/* ── TOP block: icon + tag + title — slides UP on hover ── */
.s3-card-top {
  transform: translateY(0);
  transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}
.s3-card:hover .s3-card-top {
  transform: translateY(-0.65rem);
}

.s3-card-icon {
  width: clamp(24px, 3vw, 36px);
  height: clamp(24px, 3vw, 36px);
  margin-bottom: 0.4rem;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.s3-card-tag {
  font-size: clamp(0.55rem, 0.9vw, 0.68rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.25rem;
  display: block;
}

.s3-card-title {
  font-family: "Gilroy", sans-serif;
  font-size: clamp(0.9rem, 1.8vw, 1.4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin: 0;
}

/* ── BOTTOM block: description — fades + slides up on hover ── */
.s3-card-bottom {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition:
    max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.38s ease,
    transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}
.s3-card:hover .s3-card-bottom {
  max-height: 120px;
  opacity: 1;
  transform: translateY(0);
}

.s3-card-desc {
  font-size: clamp(0.68rem, 1vw, 0.82rem);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.55;
  margin: 0.55rem 0 0.55rem 0;
}

.s3-card-pills {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
}
.s3-card-pill {
  font-size: clamp(0.55rem, 0.8vw, 0.65rem);
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  padding: 3px 10px;
  background: rgba(255, 255, 255, 0.1);
  white-space: nowrap;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.s3-card-pill:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.8);
}

/* ══════════════════════════════════════
       DOTS
    ══════════════════════════════════════ */
.s3-dots {
  display: none;
  justify-content: center;
  gap: 6px;
  margin-top: 1.1rem;
}
.s3-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.18);
  border: none;
  padding: 0;
  cursor: pointer;
  transition:
    background 0.25s,
    transform 0.25s;
}
.s3-dot.active {
  background: #111;
  transform: scale(1.3);
}

.s3-swipe-hint {
  display: none;
  text-align: center;
  font-size: 0.65rem;
  color: rgba(0, 0, 0, 0.32);
  margin-top: 0.45rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ══════════════════════════════════════
       TOUCH DEVICES — always show bottom
    ══════════════════════════════════════ */
@media (hover: none) {
  .s3-card-bottom {
    max-height: 120px;
    opacity: 1;
    transform: translateY(0);
  }
  .s3-card-top {
    transform: translateY(-0.65rem);
  }
  .s3-card-overlay {
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.1) 0%,
      rgba(0, 0, 0, 0.3) 45%,
      rgba(0, 0, 0, 0.88) 100%
    );
  }
}

/* ══════════════════════════════════════
       TABLET ≤ 1024px — 2 cards + arrows
    ══════════════════════════════════════ */
@media (max-width: 1024px) {
  .s3-card {
    flex: 0 0 calc((100% - clamp(0.6rem, 1.5vw, 1rem)) / 2);
  }
  .s3-nav {
    display: flex;
  }
}

/* ══════════════════════════════════════
       MOBILE ≤ 640px — 1 card + dots + swipe
    ══════════════════════════════════════ */
@media (max-width: 640px) {
  .s3-cards-area {
    padding: 0 clamp(0.75rem, 4vw, 1.25rem);
    margin-top: clamp(1.5rem, 6vw, 3rem);
  }
  .s3-card {
    flex: 0 0 100%;
    aspect-ratio: 4 / 4.2;
    border-radius: 12px;
  }
  .s3-nav {
    display: none;
  }
  .s3-dots {
    display: flex;
  }
  .s3-swipe-hint {
    display: block;
  }
  .s3-card-body {
    padding: 1rem;
  }
  .s3-card-icon {
    width: 26px;
    height: 26px;
  }
  .s3-card-tag {
    font-size: 0.58rem;
  }
  .s3-card-title {
    font-size: 1.1rem;
  }
  .s3-card-desc {
    font-size: 0.78rem;
  }
  .s3-card-pill {
    font-size: 0.6rem;
    padding: 3px 9px;
  }
}

@media (max-width: 400px) {
  .s3-card {
    aspect-ratio: 3 / 3.8;
  }
  .s3-card-title {
    font-size: 1rem;
  }
}

/* SECTION */
.ai-sec4 {
  background-image: url("/images/Ai-tools-bg-img.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 20px;
  color: #fff;
}

/* CONTAINER */
.ai-sec4-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

/* LEFT */
.ai-sec4-content {
  flex: 1;
}

.ai-sec4-tag {
  font-size: 14px;
  color: #8bbbd9;
  margin-bottom: 10px;
}

.ai-sec4-title {
  font-size: 36px;
  line-height: 1.3;
  font-family: "Gilroy-Medium";
  font-weight: 600;
}

/* GRADIENT TEXT */
.ai-sec4-gradient {
  background: linear-gradient(to right, #13c5b8, #2a44b0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* DESCRIPTION */
.ai-sec4-desc {
  margin-top: 15px;
  font-size: 14px;
  color: #cbd5e1;
  max-width: 500px;
}

/* GRID */
.ai-sec4-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(5, 60px);
  gap: 15px;
}

.ai-sec4-tool {
  width: 60px;
  height: 60px;

  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  transition: 0.3s;
}

.ai-sec4-tool:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
}

.ai-sec4-tool img {
  width: 72px;
}

/* IMAGE */
.ai-sec4-image {
  flex: 1;
}

.ai-sec4-image img {
  width: 100%;
  height: 570px;
  position: relative;
  border-radius: 20px;
  max-width: 100%;
  overflow: hidden;
  object-fit: cover;
}

/* ================= RESPONSIVE ================= */

/* TABLET */
@media (max-width: 992px) {
  .ai-sec4-container {
    flex-direction: column;
    text-align: center;
  }

  .ai-sec4-desc {
    margin: auto;
  }

  .ai-sec4-grid {
    justify-content: center;
    grid-template-columns: repeat(5, 55px);
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .ai-sec4-title {
    font-size: 26px;
  }

  .ai-sec4-grid {
    grid-template-columns: repeat(4, 55px);
  }

  .ai-sec4-tool {
    width: 55px;
    height: 55px;
  }
}

/* ── Reset (scoped) ── */

/* ══════════════════════════════
     SECTION WRAPPER
  ══════════════════════════════ */
.cs-section {
  position: relative;
  width: 100%;
  min-height: 560px;
  background: #ffffff;
  overflow: hidden;
  padding: clamp(3rem, 6vw, 5.5rem) clamp(1.5rem, 6vw, 6rem)
    clamp(2rem, 4vw, 3.5rem);
  font-family: "Gilroy", "Segoe UI", sans-serif;
}

/* ══════════════════════════════
     WATERMARK BACKGROUND TEXT
  ══════════════════════════════ */
.cs-watermark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.cs-wm-line {
  display: block;
  font-size: clamp(4rem, 11vw, 9rem);
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1.5px #d8dde3;
  line-height: 1.05;
  white-space: nowrap;
  letter-spacing: -0.02em;
  padding-left: clamp(1rem, 4vw, 4rem);
}

/* ══════════════════════════════
     INNER LAYOUT
  ══════════════════════════════ */
.cs-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  min-height: 420px;
}

/* ── LEFT column ── */
.cs-left {
  flex: 0 0 auto;
  width: clamp(240px, 38%, 360px);
  padding-top: 1rem;
}

.cs-tag {
  font-size: clamp(0.68rem, 1vw, 0.76rem);
  font-weight: 500;
  color: #888;
  letter-spacing: 0.03em;
  margin-bottom: 0.85rem;
}

.cs-heading {
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  line-height: 1.35;
  margin-bottom: 1.8rem;
  font-weight: 400;
}

.cs-heading-bold {
  font-weight: 700;
  color: #0d1b2e;
}

.cs-heading-muted {
  font-weight: 400;
  color: #8a9bb0;
}

/* ── CTA Button ── */
.cs-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 1.2rem;
  border: 1.5px solid #0d1b2e;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  color: #0d1b2e;
  background: transparent;
  transition:
    background 0.22s ease,
    color 0.22s ease;
  cursor: pointer;
  font-family: inherit;
}

.cs-btn:hover {
  background: #0d1b2e;
  color: #fff;
}

.cs-btn--white {
  border-color: #fff;
  color: #fff;
}

.cs-btn--white:hover {
  background: #fff;
  color: #0d1b2e;
}

.cs-btn-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

/* ── RIGHT column ── */
.cs-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

/* ── Card ── */
.cs-card {
  position: relative;
  width: clamp(300px, 50%, 520px);
  height: clamp(320px, 45vw, 440px);
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}

.cs-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.cs-card:hover .cs-card-img {
  transform: scale(1.04);
}

.cs-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(5, 15, 35, 0.88) 0%,
    rgba(5, 15, 35, 0.35) 55%,
    transparent 100%
  );
}

.cs-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: clamp(1.2rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.cs-card-tag {
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.04em;
}

.cs-card-text {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.5;
}

/* ══════════════════════════════
     FOOTER — counter + nav
  ══════════════════════════════ */
.cs-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.cs-counter {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.cs-counter-main {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #0055cc;
  line-height: 1;
}

.cs-counter-sep,
.cs-counter-total {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  font-weight: 500;
  color: #8a9bb0;
}

.cs-nav {
  display: flex;
  gap: 0.5rem;
}

.cs-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid #c5cdd6;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #0d1b2e;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

.cs-nav-btn:hover {
  background: #0d1b2e;
  border-color: #0d1b2e;
  color: #fff;
}

/* ══════════════════════════════
     RESPONSIVE
  ══════════════════════════════ */
@media (max-width: 900px) {
  .cs-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }

  .cs-left {
    width: 100%;
  }

  .cs-right {
    width: 100%;
    justify-content: flex-start;
  }

  .cs-card {
    width: 100%;
    height: clamp(260px, 55vw, 380px);
  }

  .cs-footer {
    justify-content: space-between;
  }
}

@media (max-width: 480px) {
  .cs-section {
    padding: 2.5rem 1.25rem 2rem;
  }

  .cs-wm-line {
    font-size: 3.2rem;
  }

  .cs-heading {
    font-size: 1.2rem;
  }

  .cs-card {
    height: 280px;
  }
}

/* ── Slide transition ── */
.cs-slide-enter {
  animation: csSlideIn 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes csSlideIn {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.tcz-cs2__section {
  position: relative;
  background: #ffffff;
  padding: 0 0 40px;
  padding-top: 20px;
  overflow: clip;
  box-sizing: border-box;
  min-height: 520px;
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
  margin-right: calc(-50vw + 50%) !important;
}

.tcz-cs2__wm-top,
.tcz-cs2__wm-behind {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  pointer-events: none;
  user-select: none;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.tcz-cs2__wm-top {
  z-index: 3;
}
.tcz-cs2__wm-behind {
  z-index: 0;
}

.tcz-cs2__wm-top span,
.tcz-cs2__wm-behind span {
  display: block;
  font-weight: 900;
  white-space: nowrap;
  line-height: 0.85;
  text-transform: uppercase;
  /* Updated letter spacing */
  letter-spacing: 2px;
}

.tcz-cs2__wm-top span:nth-child(1) {
  color: #e5e6ea;
}
.tcz-cs2__wm-behind span:nth-child(1),
.tcz-cs2__wm-behind span:nth-child(2) {
  color: #f2f3f4;
}
.tcz-cs2__wm-behind span:nth-child(3) {
  color: #fafafb;
}

.tcz-cs2__container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: stretch;
  width: 100%;
  margin: 0 auto;
  min-height: 380px;
}

.tcz-cs2__left {
  flex: 0 0 42%;
  max-width: 42%;
  display: flex;
  align-items: flex-end;
  padding: 0 40px 10px 60px;
}

.tcz-cs2__text-meta {
  font-size: 12px;
  color: #bec0c7;
  margin-bottom: 10px;
}
.tcz-cs2__text-title {
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 700;
  color: #111827;
  line-height: 1.35;
  margin: 0 0 20px;
}
.tcz-cs2__text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  border: 1.5px solid #d1d5db;
  border-radius: 50px;
  padding: 8px 18px;
  text-decoration: none;
  transition: 0.2s;
}

.tcz-cs2__right {
  flex: 1 1 auto;
  border-radius: 18px 0 0 18px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.tcz-cs2__image-card {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border-radius: 18px 0 0 18px;
}
.tcz-cs2__slide-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.tcz-cs2__slide-inner {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
}
.tcz-cs2__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tcz-cs2__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5, 15, 50, 0.05),
    rgba(5, 15, 50, 0.65)
  );
}
.tcz-cs2__img-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 2;
}
.tcz-cs2__img-title {
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 18px;
}

/* BOTTOM BAR STYLING */
.tcz-cs2__bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 32px auto 0;
  padding: 0 40px;
}

.tcz-cs2__counter {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.tcz-cs2__counter-current {
  font-size: 42px;
  font-weight: 800;
  background: linear-gradient(135deg, #1a56db, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.tcz-cs2__nav {
  display: flex;
  gap: 10px;
}
.tcz-cs2__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}
.tcz-cs2__btn:hover {
  background: #eeeeee;
  transform: scale(1.1);
}

/* MOBILE RESPONSIVE UPDATES */
@media (max-width: 700px) {
  .tcz-cs2__left {
    display: none;
  }
  .tcz-cs2__right {
    border-radius: 0;
    padding: 0 15px;
  } /* Centering the section on mobile */
  .tcz-cs2__image-card {
    border-radius: 18px;
    min-height: 380px;
  }
.tcz-cs2__wm-behind{
  text-align: center;
 
}

.tcz-cs2__wm-top{
  text-align: center;
}

  .tcz-cs2__bottom {
    flex-direction: column; /* Stacked for middle alignment */
    gap: 20px;
    padding: 0;
    text-align: center;
  }
  .tcz-cs2__bottom-spacer {
    display: none;
  }
  .tcz-cs2__nav {
    order: 2;
  }
  .tcz-cs2__counter {
    order: 1;
    justify-content: center;
  }
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ✅ FIX 1: font-family applied to body */
body {
  font-family: "Gilroy", sans-serif;
  font-weight: 500;
}

/* ══════════════════════════════
       SECTION
    ══════════════════════════════ */
.ai-section {
  position: relative;
  width: 100%;
  padding: clamp(3rem, 5vw, 5rem) clamp(1.5rem, 5vw, 5rem);
  overflow: hidden;
}

/* ✅ FIX 2: background image via <img> tag — z-index:0 */
.ai-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

/* ✅ FIX 3: overlay on z-index:1, sits above bg image */
.ai-overlay {
  position: absolute;
  inset: 0;

  z-index: 1;
}

/* ✅ FIX 4: inner content on z-index:2 — above both bg and overlay */
.ai-inner {
  position: relative;
  z-index: 2;
}

/* ══════════════════════════════
       TOP ROW
    ══════════════════════════════ */
.ai-top {
  display: flex;
  gap: clamp(17rem, 6vw, 7rem);
  align-items: flex-start;
  margin-bottom: clamp(2rem, 3.5vw, 3.5rem);
}

.ai-heading-col {
  flex: 0 0 auto;
  width: clamp(240px, 36%, 400px);
}

.ai-heading {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 500;
  line-height: 1.35;
  color: #ffffff;
}
.ai-heading strong {
  font-weight: 700;
}

.ai-body-col {
  flex: 1;
}

.ai-body {
  font-size: clamp(0.8rem, 1.1vw, 0.9rem);
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.68);
  max-width: 500px;
}
.ai-body strong {
  color: #ffffff;
  font-weight: 700;
}

/* ══════════════════════════════
       DIVIDER
    ══════════════════════════════ */
.ai-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.13);
  margin-bottom: clamp(1.5rem, 2.5vw, 2.5rem);
}

/* ══════════════════════════════
       GRIDS
    ══════════════════════════════ */
.ai-grid {
  display: grid;
  gap: clamp(0.6rem, 1.2vw, 1rem);
}

.row1 {
  grid-template-columns: repeat(4, 1fr);
}

.row2 {
  grid-template-columns: 1fr 2fr 1fr;
  margin-top: clamp(0.6rem, 1.2vw, 1rem);
}

/* ══════════════════════════════
       STAT CARD
    ══════════════════════════════ */
.stat-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 10px;
  padding: clamp(1rem, 1.8vw, 1.5rem) clamp(1rem, 1.6vw, 1.4rem);
  /* ✅ FIX 5: isolation creates stacking context so backdrop-filter works */
  isolation: isolate;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition:
    background 0.25s,
    border-color 0.25s,
    transform 0.25s;
  cursor: default;
}
.stat-card:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(56, 191, 255, 0.45);
  transform: translateY(-4px);
}

/* Layout A: desc top, number bottom */
.layout-a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  min-height: clamp(130px, 14vw, 175px);
}

/* Layout B: label top, number bottom */
.layout-b {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.8rem;
  min-height: clamp(130px, 14vw, 175px);
}

/* Layout C (wide card): desc left, aligned bottom */
.layout-c {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: clamp(110px, 12vw, 155px);
}
.layout-c .stat-desc {
  flex: 1;
}

.stat-label {
  font-size: clamp(0.7rem, 0.95vw, 0.8rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.stat-desc {
  font-size: clamp(0.72rem, 0.92vw, 0.82rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.65;
}
.stat-desc strong {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

.stat-number {
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

/* ══════════════════════════════
       RESPONSIVE
    ══════════════════════════════ */
@media (max-width: 1024px) {
  .row1 {
    grid-template-columns: repeat(2, 1fr);
  }
  .row2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .row2 .stat-card:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .ai-top {
    flex-direction: column;
    gap: 1.5rem;
  }
  .ai-heading-col {
    width: 100%;
  }
  .ai-body {
    max-width: 100%;
  }
}

@media (max-width: 540px) {
  .row1 {
    grid-template-columns: 1fr;
  }
  .row2 {
    grid-template-columns: 1fr;
  }
  .row2 .stat-card:last-child {
    grid-column: span 1;
  }
  .layout-c {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ── SECTION ── */
.ai-section {
  position: relative;
  width: 100%;
  padding: clamp(3rem, 5vw, 5rem) clamp(1.5rem, 5vw, 5rem);
  overflow: hidden;
}

/* ── BG IMAGE ── */
.ai-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

/* ── OVERLAY ── */
.ai-overlay {
  position: absolute;
  inset: 0;

  z-index: 1;
}

/* ── INNER CONTENT ── */
.ai-inner {
  position: relative;
  z-index: 2;
}

/* ── TOP ROW: heading | body ── */
.ai-top {
  display: flex;
  gap: clamp(2rem, 6vw, 7rem);
  align-items: flex-start;
  margin-bottom: clamp(2rem, 3.5vw, 3.5rem);
}

.ai-heading-col {
  flex: 0 0 auto;
  width: clamp(240px, 36%, 400px);
}

.ai-heading {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 500;
  line-height: 1.35;
  color: #ffffff;
}
.ai-heading strong {
  font-weight: 700;
}

.ai-body-col {
  flex: 1;
}

.ai-body {
  font-size: clamp(0.8rem, 1.1vw, 0.9rem);
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.68);
  max-width: 500px;
}
.ai-body strong {
  color: #ffffff;
  font-weight: 700;
}

/* ── DIVIDER ── */
.ai-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.13);
  margin-bottom: clamp(1.5rem, 2.5vw, 2.5rem);
}

/* ── GRID BASE ── */
.ai-grid {
  display: grid;
  gap: clamp(0.6rem, 1.2vw, 1rem);
}

/* Row 1: 70% | 30% */
.ai-grid.row1 {
  grid-template-columns: 7fr 3fr;
}

/* Row 2: 30% | 70% */
.ai-grid.row2 {
  grid-template-columns: 3fr 7fr;
  margin-top: clamp(0.6rem, 1.2vw, 1rem);
}

/* ── OUTER CARD ── */
.stat-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 10px;
  padding: clamp(1.2rem, 2vw, 1.8rem) clamp(1.2rem, 2vw, 1.6rem);
  isolation: isolate;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition:
    background 0.25s,
    border-color 0.25s,
    transform 0.25s;
  cursor: default;
  min-height: clamp(140px, 15vw, 190px);
}
.stat-card:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(56, 191, 255, 0.4);
  transform: translateY(-4px);
}

/* ── SPLIT LAYOUT inside each card ── */
.split-card {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.split-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-right: clamp(1rem, 2vw, 1.5rem);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.split-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-left: clamp(1rem, 2vw, 1.5rem);
}

/* ── TEXT STYLES ── */
.stat-label {
  font-size: clamp(0.7rem, 0.95vw, 0.82rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.02em;
  line-height: 1.4;
  margin-bottom: 0.4rem;
}

.stat-desc {
  font-size: clamp(0.72rem, 0.92vw, 0.82rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.65;
}
.stat-desc strong {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

.stat-number {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-top: 0.2rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .ai-grid.row1,
  .ai-grid.row2 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .ai-top {
    flex-direction: column;
    gap: 1.5rem;
  }
  .ai-heading-col {
    width: 100%;
  }
  .ai-body {
    max-width: 100%;
  }
  .ai-grid.row1,
  .ai-grid.row2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .split-card {
    flex-direction: column;
    gap: 1.2rem;
  }
  .split-left {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding-right: 0;
    padding-bottom: 1rem;
  }
  .split-right {
    padding-left: 0;
  }
}

.pt-section {
  width: 100%;
  background: #ffffff;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 6vw, 6rem);
}

/* ── TOP ROW: label left | heading right ── */
.pt-top-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(23rem, 6vw, 6rem);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.pt-label {
  flex: 0 0 auto;
  width: clamp(120px, 18%, 180px);
  font-size: 1rem;
  font-weight: 500;
  color: #6b7a8d;
  line-height: 1.5;
  padding-top: 0.2rem;
}

.pt-heading {
  flex: 1;
  font-size: clamp(1.1rem, 2.2vw, 1.55rem);
  font-weight: 700;
  line-height: 1.45;
  color: #0d1b2e;
  max-width: 560px;
}

.pt-heading .pt-muted {
  font-weight: 400;
  color: #94a3b8;
}

/* ── DIVIDER ── */
.pt-divider {
  width: 100%;
  height: 1px;
  background: #e8ecf2;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

/* ── LOGOS ROW ── */
.pt-logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  flex-wrap: wrap;
}

.pt-logo-item {
  flex: 1 1 auto;
  min-width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Logo images ── */
.pt-logo-item img {
  max-height: 60px;
  max-width: 140px;
  object-fit: contain;
  /*filter: grayscale(100%) brightness(0.35);*/
  opacity: 0.7;
  transition:
    opacity 0.25s ease,
    filter 0.25s ease;
  display: block;
}
.pt-logo-item img:hover {
  filter: none;
  opacity: 1;
}

/* ══════════════════════════════
       CTA BANNER
    ══════════════════════════════ */
.pt-cta {
  position: relative;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  border-radius: 14px;
  overflow: hidden;
  padding: clamp(2rem, 4vw, 3rem) clamp(2rem, 5vw, 4rem);
  background: #071428;
  min-height: 200px;
  display: flex;
  align-items: center;
}

/* Wave SVG background */
.pt-cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  z-index: 0;
}

/* CTA background image — covers full banner */
.pt-cta-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}

/* Dark overlay on top of bg image so text stays readable */
.pt-cta-bg-overlay {
  position: absolute;
  inset: 0;

  z-index: 0;
}

/* CTA content */
.pt-cta-content {
  position: relative;
  z-index: 1;
  /*max-width: 800px!important;*/
}

.pt-cta-label {
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.06em;
  margin-bottom: 0.7rem;
}

.pt-cta-heading {
  font-size: clamp(1.3rem, 2.5vw, 1.85rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.pt-cta-sub {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin-bottom: 1.6rem;
}

.pt-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 8px 15px;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  font-family: inherit;
  cursor: pointer;
  transition:
    background 0.22s ease,
    border-color 0.22s ease;
}

.pt-cta-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.7);
}

.pt-cta-btn-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3b82f6;
  flex-shrink: 0;
}

/* ══════════════════════════════
       RESPONSIVE
    ══════════════════════════════ */
@media (max-width: 768px) {
  .pt-top-row {
    flex-direction: column;
    gap: 1rem;
  }
  .pt-label {
    width: 100%;
  }
  .pt-logos {
    justify-content: center;
    gap: 1.5rem 2rem;
  }
  .pt-logo-item {
    flex: 0 1 calc(33% - 2rem);
    min-width: 80px;
  }
  .pt-cta-waves {
    width: 50%;
  }
}

@media (max-width: 480px) {
  .pt-section {
    padding: 2.5rem 1.25rem;
  }
  .pt-logo-item {
    flex: 0 1 calc(50% - 1rem);
  }
  .pt-cta-waves {
    display: none;
  }
  .pt-cta {
    border-radius: 10px;
  }
}

══════════════════════════════ */ .faq-section {
  width: 100%;
  background: #ffffff;
  padding: clamp(2.5rem, 5vw, 5rem) 0;
  overflow: hidden;
}

/* ── Two-column layout ── */
.faq-inner {
  display: flex;
  align-items: stretch;
  min-height: 420px;
}

/* ══════════════════════════════
       LEFT — watermark column
    ══════════════════════════════ */
.faq-left {
  flex: 0 0 38%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: clamp(1.5rem, 5vw, 5rem);
}

.faq-watermark {
  display: flex;
  flex-direction: column;
  gap: 0;
  pointer-events: none;
  user-select: none;
  line-height: 0.88;
}

.faq-watermark span {
  font-family: "Gilroy", sans-serif;
  font-size: clamp(4.5rem, 10vw, 10rem);
  font-weight: 700;
  line-height: 0.9;
  color: transparent;
  /* Light grey outline — exact match to design */
  -webkit-text-stroke: 2px rgba(0, 0, 0, 0.1);
  letter-spacing: -0.01em;
  display: block;
}

/* ══════════════════════════════
       RIGHT — accordion column
    ══════════════════════════════ */
.faq-right {
  flex: 1;
  padding: 0 clamp(1.5rem, 5vw, 5rem) 0 clamp(1rem, 3vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ── FAQ item ── */
.faq-item {
  border-bottom: 1px solid #dde2e8;
}
.faq-item:first-child {
  border-top: 1px solid #dde2e8;
}

/* ── Question button ── */
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(0.95rem, 1.8vw, 1.25rem) 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq-question-text {
  font-family: "Gilroy", sans-serif;
  font-size: clamp(0.88rem, 1.4vw, 1rem);
  font-weight: 600;
  color: #0d1b2e;
  line-height: 1.4;
}

/* ── +/− icon (pure CSS) ── */
.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: #0d1b2e;
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}
/* Horizontal bar — always visible */
.faq-icon::before {
  width: 14px;
  height: 1.5px;
}
/* Vertical bar — hidden when open */
.faq-icon::after {
  width: 1.5px;
  height: 14px;
}

.faq-item.open .faq-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

/* ── Answer panel ── */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease;
}
.faq-item.open .faq-answer {
  max-height: 250px;
}

.faq-answer-inner {
  padding-bottom: clamp(0.9rem, 1.8vw, 1.2rem);
  font-size: clamp(0.78rem, 1.1vw, 0.88rem);
  font-weight: 500;
  color: #5c6b7a;
  line-height: 1.75;
}

/* ══════════════════════════════
       RESPONSIVE
    ══════════════════════════════ */

/* Tablet: shrink watermark font */
@media (max-width: 900px) {
  .faq-left {
    flex: 0 0 34%;
  }
  .faq-watermark span {
    font-size: clamp(3.5rem, 9vw, 7rem);
    -webkit-text-stroke: 1.5px rgba(0, 0, 0, 0.09);
  }
}

/* Mobile: stack — watermark above accordion */
@media (max-width: 640px) {
  .faq-inner {
    flex-direction: column;
  }

  .faq-left {
    flex: none;
    padding: 0 clamp(1.5rem, 5vw, 3rem);
    margin-bottom: 0.5rem;
    /* show only 1 FAQ on mobile */
    height: auto;
  }

  /* Show only 1 "FAQ" on mobile */
  .faq-watermark span:not(:first-child) {
    display: none;
  }

  .faq-watermark span {
    font-size: clamp(4rem, 20vw, 7rem);
    -webkit-text-stroke: 2px rgba(0, 0, 0, 0.08);
  }

  .faq-right {
    padding: 0 clamp(1.5rem, 5vw, 3rem);
  }
}
.ps-section {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 100vh;
  padding: clamp(3rem, 7vw, 6rem) clamp(1.5rem, 6vw, 5rem)
    clamp(4rem, 8vw, 7rem);
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);

  box-sizing: border-box;
}

/* ── BACKGROUND IMAGE ── */
.ps-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}

/* ── OVERLAY ── */
.ps-bg-overlay {
  position: absolute;
  inset: 0;

  z-index: 0;
}

/* ── WATERMARK ── */
.ps-watermark {
  position: absolute;
  top: -10px;
  left: -8px;
  pointer-events: none;
  user-select: none;
  z-index: 1;
  display: flex;
  flex-direction: column;
  line-height: 0.9;
}

.ps-watermark span {
  font-family: "DM Serif Display", serif;
  font-size: clamp(64px, 12vw, 140px);
  font-weight: 400;
  letter-spacing: -2px;
  display: block;
  white-space: nowrap;
}

.ps-watermark span:nth-child(1) {
  color: rgba(120, 150, 200, 0.16);
}
.ps-watermark span:nth-child(2) {
  color: rgba(110, 140, 195, 0.1);
}
.ps-watermark span:nth-child(3) {
  color: rgba(100, 130, 190, 0.06);
}

/* ── TOP ROW ── */
.ps-top-row {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(1.5rem, 4vw, 3rem);
  flex-wrap: wrap;
  padding-top: clamp(1rem, 3vw, 2rem);
  animation: ps-fade-up 0.7s 0.05s ease both;
}

.ps-label {
  flex: 0 0 auto;
  font-family: "DM Sans", sans-serif;
  font-size: clamp(0.65rem, 1vw, 0.72rem);
  font-weight: 600;
  color: #4a6080;
  letter-spacing: 0.03em;
  line-height: 1.6;
  max-width: 160px;
}

.ps-tagline {
  flex: 1;
  max-width: 520px;
  font-family: "DM Serif Display", serif;
  font-size: clamp(1.15rem, 2.4vw, 1.75rem);
  font-weight: 400;
  color: #0d1b2e;
  line-height: 1.5;
  margin: 0;
}

.ps-tagline strong {
  font-style: italic;
  font-weight: 400;
  color: #0d1b2e;
}

/* ════════════════════════════════════════
   GRID: 3 column wrappers
   Col 1 → 1 card
   Col 2 → 2 cards stacked
   Col 3 → 1 card
════════════════════════════════════════ */
.ps-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  min-height: clamp(360px, 50vw, 500px);
}

/* Column wrappers */
.ps-col-left,
.ps-col-center,
.ps-col-right {
  display: flex;
  flex-direction: column;
  gap: 0; /* gap managed by connector */
}

/* ── BASE CARD ── */
.ps-card {
  border-radius: 18px;
  padding: clamp(1.5rem, 2.5vw, 2rem) clamp(1.25rem, 2vw, 1.75rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
  font-family: "DM Sans", sans-serif;
  flex: 1;
}

/* ── DISCOVERY — col 1, no bg ── */
.ps-card--discovery {
  background: white;
  border: none;
  box-shadow: none;
}
.ps-card--discovery:hover {
  transform: none;
}

/* ── ASSESSMENT — col 2 top, white card ── */
.ps-card--assessment {
  background: white;
  border: 1px solid rgba(160, 195, 245, 0.5);
  box-shadow:
    0 2px 20px rgba(100, 150, 230, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.ps-card--assessment:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(80, 130, 220, 0.18);
}

/* ── PILOT — col 2 bottom, blue tint ── */
.ps-card--pilot {
  background: white;
  border: 1px solid rgba(140, 185, 245, 0.45);
  box-shadow:
    0 2px 16px rgba(80, 130, 210, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.ps-card--pilot:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(80, 130, 220, 0.18);
}

/* ── FULL SCALE — col 3, no bg ── */
.ps-card--fullscale {
  background: white;
  border: none;
  box-shadow: none;
}
.ps-card--fullscale:hover {
  transform: none;
}

/* ── CONNECTOR LINE between center cards ── */
.ps-connector {
  width: 1px;
  height: 16px;
  background: white;
  margin: 0 auto;
  flex-shrink: 0;
}

/* ── ICON ── */
.ps-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3a6abf;
  flex-shrink: 0;
}

.ps-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ps-card--discovery .ps-icon,
.ps-card--fullscale .ps-icon {
  color: #5580b8;
}

/* ── CARD TEXT ── */
.ps-card-text {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.ps-card-title {
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  font-weight: 700;
  color: #0d1b2e;
  letter-spacing: -0.01em;
}

.ps-card-desc {
  font-size: clamp(0.75rem, 1.1vw, 0.82rem);
  font-weight: 400;
  color: #4a6080;
  line-height: 1.65;
  margin: 0;
}

/* ── CARD ANIMATIONS ── */
.ps-card {
  animation: ps-fade-up 0.6s ease both;
}
.ps-col-left .ps-card {
  animation-delay: 0.15s;
}
.ps-col-center .ps-card:nth-child(1) {
  animation-delay: 0.25s;
}
.ps-col-center .ps-card:nth-child(3) {
  animation-delay: 0.35s;
} /* nth-child(3) because connector div is child 2 */
.ps-col-right .ps-card {
  animation-delay: 0.43s;
}

@keyframes ps-fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 900px)
════════════════════════════════════════ */
@media (max-width: 900px) {
  .ps-grid {
    grid-template-columns: 1fr 1fr;
    min-height: unset;
  }

  .ps-col-left {
    grid-column: 1;
    grid-row: 1;
  }
  .ps-col-center {
    grid-column: 2;
    grid-row: 1;
  }
  .ps-col-right {
    grid-column: 1 / -1;
    grid-row: 2;
    flex-direction: row;
    gap: 16px;
  }

  .ps-card--discovery,
  .ps-card--fullscale {
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(160, 195, 245, 0.4);
    box-shadow: 0 2px 16px rgba(80, 130, 210, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  .ps-card--discovery:hover,
  .ps-card--fullscale:hover {
    transform: translateY(-4px);
  }
}

/* ════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 600px)
════════════════════════════════════════ */
@media (max-width: 600px) {
  .ps-section {
    padding: 3rem 1.25rem 4rem;
    gap: 2.5rem;
  }

  .ps-top-row {
    flex-direction: column;
  }
  .ps-label {
    max-width: 100%;
  }

  .ps-grid {
    grid-template-columns: 1fr;
  }

  .ps-col-left,
  .ps-col-center,
  .ps-col-right {
    grid-column: 1;
    grid-row: auto;
    flex-direction: column;
  }

  .ps-card--discovery,
  .ps-card--fullscale {
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(160, 195, 245, 0.4);
    box-shadow: 0 2px 16px rgba(80, 130, 210, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
}

.cu-section * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.cu-section {
  font-family: sans-serif;
  padding: 3rem 2rem;
  display: flex;
  justify-content: center;
  background: #fff;
}
.cu-inner {
  display: flex;
  gap: 2.5rem;
  max-width: 900px;
  width: 100%;
  align-items: center;
}

/* ── Left decorative card ── */
.cu-card {
  flex: 0 0 300px;
  min-height: 380px;
  border-radius: 20px;
  background: url("/images/Frame\ 15666.png") no-repeat center center/cover;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}
.cu-card-blob {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 240px;
  height: 200px;

  border-radius: 50%;
  opacity: 0.7;
}
.cu-card-wave {
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  height: 220px;

  border-radius: 0 0 60% 60% / 0 0 40% 40%;
  opacity: 0.6;
}
.cu-card-label {
  position: relative;
  z-index: 1;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.cu-card-title {
  position: relative;
  z-index: 1;
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 10px;
}
.cu-card-desc {
  position: relative;
  z-index: 1;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* ── Right form area ── */
.cu-form-wrap {
  flex: 1;
}
.cu-form-wrap h2 {
  font-size: 26px;
  font-weight: 600;
  color: #111;
  margin-bottom: 6px;
}
.cu-form-wrap p {
  font-size: 14px;
  color: #666;
  margin-bottom: 24px;
}
.cu-row {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
}
.cu-field {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.cu-field label {
  font-size: 13px;
  color: #555;
  margin-bottom: 6px;
}
.cu-field input,
.cu-field select,
.cu-field textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  font-size: 14px;
  color: #111;
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
}
.cu-field input:focus,
.cu-field select:focus,
.cu-field textarea:focus {
  border-color: #3a7cff;
}
.cu-field textarea {
  resize: none;
  height: 90px;
}

/* ── Phone row ── */
.cu-phone-row {
  display: flex;
}
.cu-phone-prefix {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  border: 1px solid #d1d5db;
  border-right: none;
  border-radius: 10px 0 0 10px;
  background: #fff;
  font-size: 13px;
  color: #111;
  white-space: nowrap;
}
.cu-phone-prefix select {
  border: none;
  outline: none;
  background: transparent;
  font-size: 13px;
  color: #111;
  cursor: pointer;
  padding: 0;
}
.cu-phone-input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid #d1d5db;
  border-radius: 0 10px 10px 0;
  font-size: 14px;
  color: #111;
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
}
.cu-phone-input:focus {
  border-color: #3a7cff;
}

/* ── Button ── */
.cu-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border: 1.5px solid #222;
  border-radius: 50px;
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  color: #111;
  cursor: pointer;
  transition:
    background 0.18s,
    color 0.18s;
  margin-top: 8px;
}
.cu-btn:hover {
  background: #1a1a1a;
  color: #fff;
}
.cu-btn-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3a7cff;
  flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 680px) {
  .cu-inner {
    flex-direction: column;
  }
  .cu-card {
    flex: none;
    width: 100%;
    min-height: 220px;
  }
  .cu-row {
    flex-direction: column;
    gap: 0;
    margin-bottom: 0;
  }
  .cu-row .cu-field {
    margin-bottom: 16px;
  }
}

/* // about us */

.teceze-is-a-global-container {
  width: 1125px;
  height: 352px;
  position: relative;
  font-size: 32px;
  line-height: 44px;
  font-family: Gilroy-Medium;
  text-align: center;
  display: inline-block;
  color: #000a2d;
}
.we-work-closely {
  color: #7b7e8c;
}

.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)),
    url("https://images.unsplash.com/photo-1550751827-4bd374c3f58b?auto=format&fit=crop&q=80&w=2070");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  box-sizing: border-box;
}
