:root {
  --blue-900: #0a1f44;
  --blue-800: #0d2d6b;
  --blue-700: #1040a0;
  --blue-600: #1a56d6;
  --blue-500: #2563eb;
  --blue-400: #3b82f6;
  --blue-200: #bfdbfe;
  --blue-100: #dbeafe;
  --blue-50: #eff6ff;

  --slate-900: #0f172a;
  --slate-700: #334155;
  --slate-500: #64748b;
  --slate-100: #f1f5f9;
  --white: #ffffff;

  --accent-gold: #f59e0b;

  --font-display: "Poppins", sans-serif;
  --font-body: "Inter", sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 26px;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.07);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.09);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.11);
  --shadow-blue: 0 6px 24px rgba(37, 99, 235, 0.22);

  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --max-w: 1240px;
}

/* ============================================================
   Reset & Base
============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--slate-700);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}

/* ============================================================
   Layout Utilities
============================================================ */
.container {
  width: 90%;
  max-width: var(--max-w);
  margin-inline: auto;
}

.section {
  padding: 88px 0;
}
.section--alt {
  background: var(--slate-100);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-500);
  background: var(--blue-50);
  padding: 5px 13px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.section-title1 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  font-weight: 700;
  color: var(--slate-900);
  line-height: 1.28;
  margin-bottom: 13px;
}

.section-title--white {
  color: var(--white);
}

.section-subtitle1 {
  font-size: 15px;
  color: var(--blue-700);
  max-width: 780px !important;
  line-height: 1.75;
}

.section-subtitle--white {
  color: rgba(255, 255, 255, 0.7);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .section-subtitle1 {
  margin-inline: auto;
}

/* ============================================================
   Buttons
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.14);
  opacity: 0;
  transition: opacity 0.22s;
}

.btn:hover::after {
  opacity: 1;
}

.btn--primary {
  background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
  color: var(--white);
  box-shadow: var(--shadow-blue);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.btn--ghost-white {
  background: rgba(0, 174, 255, 0.329);
  color: var(--blue-800);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
}

.btn--ghost-white:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}
.btn--ghost-white2 {
  background: rgba(192, 192, 192, 0.329);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
}

.btn--ghost-white:hover2 {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--white);
  color: var(--blue-700);
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.14);
}

.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.18);
}

/* ============================================================
   Scroll Reveal
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-36px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: none;
}

.reveal-right {
  opacity: 0;
  transform: translateX(36px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

.stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.stagger.visible > *:nth-child(1) {
  opacity: 1;
  transform: none;
  transition-delay: 0.04s;
}
.stagger.visible > *:nth-child(2) {
  opacity: 1;
  transform: none;
  transition-delay: 0.12s;
}
.stagger.visible > *:nth-child(3) {
  opacity: 1;
  transform: none;
  transition-delay: 0.2s;
}
.stagger.visible > *:nth-child(4) {
  opacity: 1;
  transform: none;
  transition-delay: 0.28s;
}
.stagger.visible > *:nth-child(5) {
  opacity: 1;
  transform: none;
  transition-delay: 0.36s;
}
.stagger.visible > *:nth-child(6) {
  opacity: 1;
  transform: none;
  transition-delay: 0.44s;
}
.stagger.visible > *:nth-child(7) {
  opacity: 1;
  transform: none;
  transition-delay: 0.52s;
}
.stagger.visible > *:nth-child(n + 8) {
  opacity: 1;
  transform: none;
  transition-delay: 0.58s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-left,
  .reveal-right,
  .stagger > * {
    transition: none;
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   1. Hero
============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    148deg,
    var(--blue-900) 0%,
    var(--blue-800) 55%,
    var(--blue-700) 100%
  );
  padding: 110px 0 88px;
}

.hero__shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__shapes::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.22) 0%,
    transparent 70%
  );
  top: -130px;
  right: -80px;
  border-radius: 50%;
}

.hero__shapes::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  background: radial-gradient(
    circle,
    rgba(37, 99, 235, 0.16) 0%,
    transparent 70%
  );
  bottom: -60px;
  left: 4%;
  border-radius: 50%;
}

.hero__ring {
  position: absolute;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 50%;
  top: 50%;
  right: 7%;
  transform: translateY(-50%);
}

.hero__ring-inner {
  position: absolute;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero__visual {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  opacity: 0.1;
  width: min(500px, 40vw);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 660px;
  margin: 0 auto;
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero .eyebrow {
  background: rgba(255, 255, 255, 0.11);
  color: var(--white);
}

.hero__heading {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.2vw, 36px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero__heading em {
  font-style: normal;
  color: var(--blue-400);
}

.hero__description {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.hero__cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero__stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  width: 100%;
}

.hero__stat {
  text-align: center;
}

.hero__stat-number {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.73rem;
  color: rgba(255, 255, 255, 0.58);
  margin-top: 3px;
}

/* ============================================================
   2. Company Overview  — ENHANCED IMAGE CONTAINER
============================================================ */
.overview__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.overview__text p {
  color: var(--slate-500);
  margin-bottom: 14px;
  font-size: 0.9rem;
}

/* ─── Image wrapper ─── */
.overview__image-wrap {
  position: relative;
  padding: 16px;
}

/* Decorative background glow behind the card */
.overview__image-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 60% 40%,
    rgba(37, 99, 235, 0.12) 0%,
    transparent 70%
  );
  border-radius: var(--radius-xl);
  pointer-events: none;
}

/* The actual image card */
.overview__image-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.8) inset,
    0 20px 60px rgba(10, 31, 68, 0.18),
    0 4px 16px rgba(37, 99, 235, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: var(--blue-900);
}

.overview__image-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.overview__image-card:hover img {
  transform: scale(1.04);
}

/* Subtle gradient overlay at bottom of image */
.overview__image-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(
    to top,
    rgba(10, 31, 68, 0.35) 0%,
    transparent 100%
  );
  pointer-events: none;
}

/* Stat badges */
.stat-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  box-shadow:
    0 8px 32px rgba(10, 31, 68, 0.16),
    0 2px 8px rgba(37, 99, 235, 0.1);
  display: flex;
  align-items: center;
  gap: 11px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
}

.stat-badge__icon {
  width: 36px;
  height: 36px;
  background: var(--blue-50);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-600);
}

.stat-badge__num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--slate-900);
  line-height: 1;
}

.stat-badge__label {
  font-size: 0.7rem;
  color: var(--slate-500);
}

.stat-badge--tl {
  top: 0px;
  left: 0px;
}

.stat-badge--br {
  bottom: 0px;
  right: 0px;
}

/* ============================================================
   3. Our Story — Parallax section
============================================================ */
.story-section {
  position: relative;
  overflow: hidden;
}

.story-parallax-bg {
  position: absolute;
  inset: 0;
  background-image: url("../assets/img/parllexbg.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  will-change: transform;
}

.story-parallax-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 31, 68, 0.82) 0%,
    rgba(13, 45, 107, 0.88) 50%,
    rgba(10, 31, 68, 0.82) 100%
  );
}

.story-section .container {
  position: relative;
  z-index: 2;
}

.story-section .eyebrow {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
}
.story-section .section-title1 {
  color: var(--white);
}
.story-section .section-subtitle1 {
  color: rgba(255, 255, 255, 0.65);
}

.timeline {
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.35),
    rgba(255, 255, 255, 0.1)
  );
  transform: translateX(-50%);
}

.timeline__item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  margin-bottom: 50px;
  position: relative;
}

.timeline__item:last-child {
  margin-bottom: 0;
}

.timeline__dot {
  width: 16px;
  height: 16px;
  background: var(--blue-400);
  border-radius: 50%;
  border: 3px solid var(--blue-900);
  box-shadow: 0 0 0 2px var(--blue-400);
  justify-self: center;
  align-self: center;
  z-index: 1;
  transition: transform 0.28s;
}

.timeline__item:hover .timeline__dot {
  transform: scale(1.4);
}

.timeline__card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  transition:
    background var(--transition),
    transform var(--transition);
}

.timeline__card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
}

.timeline__item--left .timeline__card {
  grid-column: 1;
  grid-row: 1;
  text-align: right;
}
.timeline__item--left .timeline__dot {
  grid-column: 2;
  grid-row: 1;
}
.timeline__item--left .timeline__spacer {
  grid-column: 3;
  grid-row: 1;
}

.timeline__item--right .timeline__spacer {
  grid-column: 1;
  grid-row: 1;
}
.timeline__item--right .timeline__dot {
  grid-column: 2;
  grid-row: 1;
}
.timeline__item--right .timeline__card {
  grid-column: 3;
  grid-row: 1;
}

.timeline__year {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #93c5fd;
  margin-bottom: 6px;
}

.timeline__title {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 7px;
}

.timeline__body {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
}

/* ============================================================
   4. Founder's Message
============================================================ */
.founder {
  background: linear-gradient(135deg, var(--blue-900), var(--blue-800));
}

.founder__inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 56px;
  align-items: center;
}

.founder__avatar-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
}

.founder__avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-400));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.1);
  object-fit: cover;
}

.founder__name {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
}

.founder__role {
  font-size: 0.73rem;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
}

.founder__quote-wrap {
  position: relative;
}

.founder__quote-mark {
  font-size: 6rem;
  line-height: 0.7;
  color: rgba(255, 255, 255, 0.06);
  font-family: Georgia, serif;
  position: absolute;
  top: -8px;
  left: -8px;
  user-select: none;
}

.founder__quote {
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 1.6vw, 1.1rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.78;
  font-style: italic;
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}

.founder__sig {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-left: 780px;

  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--blue-400);
}

.founder__sig-text {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
}
.founder__sig-text strong {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
}

/* ============================================================
   5. Mission & Vision
============================================================ */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.mv-card {
  border-radius: var(--radius-xl);
  padding: 42px 36px;
  position: relative;
  overflow: hidden;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.mv-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.mv-card--mission {
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  color: var(--white);
}

.mv-card--vision {
  background: var(--white);
  border: 1px solid var(--slate-100);
  box-shadow: var(--shadow-md);
}

.mv-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.mv-card--mission .mv-card__icon {
  background: rgba(255, 255, 255, 0.1);
}
.mv-card--vision .mv-card__icon {
  background: var(--blue-50);
}

.mv-card__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.mv-card--mission .mv-card__label {
  color: #93c5fd;
}
.mv-card--vision .mv-card__label {
  color: var(--blue-500);
}

.mv-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 13px;
}

.mv-card--mission .mv-card__title {
  color: var(--white);
}
.mv-card--vision .mv-card__title {
  color: var(--slate-900);
}

.mv-card p {
  font-size: 0.875rem;
  line-height: 1.75;
}
.mv-card--mission p {
  color: rgba(255, 255, 255, 0.72);
}
.mv-card--vision p {
  color: var(--slate-500);
}

/* ============================================================
   6. Core Values
============================================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 20px;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--slate-100);
  box-shadow: var(--shadow-sm);
  transition:
    box-shadow var(--transition),
    transform var(--transition),
    border-color var(--transition);
}

.value-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--blue-100);
}

.value-card__icon {
  width: 46px;
  height: 46px;
  background: var(--blue-50);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: background var(--transition);
}

.value-card:hover .value-card__icon {
  background: var(--blue-100);
}

.value-card__title {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.8rem;
  color: var(--slate-500);
  line-height: 1.65;
}

/* ============================================================
   7. What We Do
============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 20px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  border: 1px solid var(--slate-100);
  box-shadow: var(--shadow-sm);
  transition:
    box-shadow var(--transition),
    transform var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-600), var(--blue-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover::before {
  transform: scaleX(1);
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-card__icon {
  width: 44px;
  height: 44px;
  background: var(--blue-50);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: background var(--transition);
}

.service-card:hover .service-card__icon {
  background: var(--blue-100);
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 8px;
}

.service-card p {
  font-size: 0.8rem;
  color: var(--slate-500);
  line-height: 1.7;
}

/* ============================================================
   8. Why Choose Us
============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.why-card {
  display: flex;
  gap: 16px;
  padding: 24px 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--slate-100);
  box-shadow: var(--shadow-sm);
  transition:
    box-shadow var(--transition),
    transform var(--transition);
}

.why-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.why-card__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-400));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.22);
}

.why-card__title {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 5px;
}

.why-card p {
  font-size: 0.78rem;
  color: var(--slate-500);
  line-height: 1.65;
}

/* ============================================================
   9. Industries
============================================================ */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 14px;
}

.industry-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  padding: 20px 14px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--slate-100);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition:
    box-shadow var(--transition),
    transform var(--transition),
    border-color var(--transition),
    background var(--transition);
  cursor: default;
}

.industry-chip:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--blue-200);
  background: var(--blue-50);
}

.industry-chip__icon {
  width: 46px;
  height: 46px;
  background: var(--blue-50);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.industry-chip:hover .industry-chip__icon {
  background: var(--blue-100);
}

.industry-chip__name {
  font-family: var(--font-display);
  font-size: 0.73rem;
  font-weight: 600;
  color: var(--slate-700);
}

/* ============================================================
   10. Our Process
============================================================ */
.process-track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  position: relative;
  padding-top: 36px;
}

.process-track::before {
  content: "";
  position: absolute;
  top: 60px;
  left: calc(100% / 12);
  right: calc(100% / 12);
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--blue-200),
    var(--blue-400),
    var(--blue-200)
  );
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 6px;
}

.process-step__bubble {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-400));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.28);
  margin-bottom: 18px;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.process-step:hover .process-step__bubble {
  transform: scale(1.15);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.38);
}

.process-step__title {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 7px;
}

.process-step p {
  font-size: 0.73rem;
  color: var(--slate-500);
  line-height: 1.6;
}

/* ============================================================
   11. Technology & Innovation  — ENHANCED IMAGE CONTAINER
============================================================ */
.tech-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.tech-content p {
  color: var(--slate-500);
  margin-bottom: 13px;
  line-height: 1.75;
  font-size: 0.9rem;
}

.tech-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}

.tech-chip {
  font-size: 0.73rem;
  font-weight: 600;
  color: var(--blue-700);
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  padding: 5px 13px;
  border-radius: 100px;
  transition:
    background var(--transition),
    color var(--transition);
}

.tech-chip:hover {
  background: var(--blue-600);
  color: var(--white);
}

/* ─── Tech visual container — properly styled ─── */
.tech-visual {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Outer decorative ring */
.tech-visual::before {
  content: "";
  position: absolute;
  inset: -24px;
  border-radius: 50%;
  border: 1px solid var(--blue-100);
  pointer-events: none;
}

/* Inner decorative ring */
.tech-visual::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1px dashed var(--blue-200);
  pointer-events: none;
  animation: spinSlow 24s linear infinite;
}

@keyframes spinSlow {
  to {
    transform: rotate(360deg);
  }
}

/* The image frame */
.tech-image-frame {
  position: relative;
  width: 520px;
  height: 320px;
  border-radius: 10%;
  overflow: hidden;
  box-shadow:
    0 0 0 8px var(--white),
    0 0 0 10px var(--blue-100),
    0 24px 64px rgba(37, 99, 235, 0.22),
    0 8px 24px rgba(10, 31, 68, 0.14);
  flex-shrink: 0;
  background: var(--blue-900);
  z-index: 1;
}

.tech-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.tech-image-frame:hover img {
  transform: scale(1.06);
}

/* Gradient overlay on the image */
.tech-image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.18) 0%,
    transparent 50%,
    rgba(10, 31, 68, 0.22) 100%
  );
  pointer-events: none;
}

/* Floating tech label chips around the circle */
.tech-float-chip {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--blue-100);
  border-radius: 100px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow:
    0 4px 16px rgba(37, 99, 235, 0.14),
    0 2px 6px rgba(0, 0, 0, 0.06);
  animation: floatY 4s ease-in-out infinite;
  z-index: 2;
  white-space: nowrap;
}

.tech-float-chip:nth-child(2) {
  animation-delay: 1.2s;
}
.tech-float-chip:nth-child(3) {
  animation-delay: 2.4s;
}
.tech-float-chip:nth-child(4) {
  animation-delay: 0.6s;
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

.tech-float-chip__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-400));
  flex-shrink: 0;
}

.tech-float-chip__label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--slate-700);
}

/* Chip positions */
.tech-float-chip--a {
  top: 10%;
  left: -5%;
}
.tech-float-chip--b {
  top: 25%;
  right: -8%;
}
.tech-float-chip--c {
  bottom: 18%;
  right: -5%;
}
.tech-float-chip--d {
  bottom: 12%;
  left: -8%;
}

/* ============================================================
   12. Commitment
============================================================ */
.commitment {
  background: linear-gradient(135deg, var(--blue-900), var(--blue-800));
}

.commitment__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.commitment__content .section-subtitle1 {
  color: rgba(255, 255, 255, 0.68);
  max-width: 100%;
}

.commitment__list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.commitment__item {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 15px 18px;
  background: rgba(255, 255, 255, 0.055);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: background var(--transition);
}

.commitment__item:hover {
  background: rgba(255, 255, 255, 0.09);
}

.commitment__check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--blue-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.commitment__item-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.commitment__visual {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-xl);
  padding: 42px 36px;
  backdrop-filter: blur(10px);
  text-align: center;
}

.commitment__visual-icon {
  margin-bottom: 20px;
}

.commitment__visual-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.commitment__visual p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.7;
}

.commitment__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
  margin-top: 28px;
}

.commitment__stat {
  background: rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  padding: 17px;
}

.commitment__stat-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
}

.commitment__stat-label {
  font-size: 0.73rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 3px;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 24px;
}

.testi-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 30px 28px;
  border: 1px solid var(--slate-100);
  box-shadow: var(--shadow-md);
  transition:
    box-shadow var(--transition),
    transform var(--transition);
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.testi-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.testi-stars {
  display: flex;
  gap: 3px;
  color: var(--accent-gold);
  font-size: 0.85rem;
}

.testi-quote {
  font-size: 0.85rem;
  color: #475569;
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 13px;
}

.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-400));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.testi-name {
  font-family: var(--font-display);
  font-size: 0.8375rem;
  font-weight: 700;
  color: var(--slate-900);
}

.testi-role {
  font-size: 0.73rem;
  color: var(--slate-500);
}

/* ============================================================
   14. CTA
============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--white), var(--slate-100));
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.055) 0%,
    transparent 70%
  );
  bottom: -200px;
  left: -80px;
  border-radius: 50%;
}

.cta-section::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.04) 0%,
    transparent 70%
  );
  top: -90px;
  right: -40px;
  border-radius: 50%;
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section .section-title1 {
  color: var(--blue-900);
  font-size: clamp(1.35rem, 2.8vw, 2.2rem);
}
.cta-section .section-subtitle1 {
  color: var(--blue-900);
  margin-inline: auto;
  margin-bottom: 36px;
  max-width: 620px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============================================================
   Responsive
============================================================ */
@media (max-width: 1024px) {
  .section {
    padding: 72px 0;
  }

  .overview__grid,
  .tech-grid,
  .commitment__inner,
  .founder__inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .timeline::before {
    left: 22px;
  }

  .timeline__item {
    grid-template-columns: 44px 1fr;
  }

  .timeline__item--left .timeline__card,
  .timeline__item--right .timeline__card {
    grid-column: 2;
    grid-row: 1;
    text-align: left;
  }

  .timeline__item--left .timeline__dot,
  .timeline__item--right .timeline__dot {
    grid-column: 1;
    grid-row: 1;
  }

  .timeline__item--left .timeline__spacer,
  .timeline__item--right .timeline__spacer {
    display: none;
  }

  .process-track {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  .process-track::before {
    display: none;
  }

  .tech-visual {
    min-height: 300px;
  }
  .tech-image-frame {
    width: 260px;
    height: 260px;
  }

  .hero__visual,
  .hero__ring,
  .hero__ring-inner {
    display: none;
  }
  .mv-grid {
    gap: 18px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 56px 0;
  }
  .hero {
    padding: 108px 0 72px;
    min-height: auto;
  }
  .hero__heading {
    font-size: 1.75rem;
  }
  .hero__stats {
    gap: 20px;
  }
  .mv-grid {
    grid-template-columns: 1fr;
  }
  .process-track {
    grid-template-columns: repeat(2, 1fr);
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .industries-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }
  .founder__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .commitment__stats {
    grid-template-columns: 1fr 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .tech-image-frame {
    width: 240px;
    height: 240px;
  }
  .tech-float-chip {
    display: none;
  }
  .tech-visual::before,
  .tech-visual::after {
    display: none;
  }
}

@media (max-width: 480px) {
  .process-track {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .hero__cta {
    flex-direction: column;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .stat-badge--tl,
  .stat-badge--br {
    display: none;
  }
  .commitment__stats {
    grid-template-columns: 1fr;
  }
  .hero__stats {
    flex-direction: column;
    gap: 13px;
  }
}
