
/* Shared (all breakpoints) */
.timeline-images-section {
  padding: 40px 0 80px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.timeline-images-marquee {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.timeline-images-row {
  display: flex;
  width: 100%;
  gap: 24px;
}

.timeline-images-row .marquee-track {
  display: flex;
  gap: 24px;
  flex-shrink: 0;
}

.timeline-images-row-1 .marquee-track {
  animation: about-us-marquee-scroll-right 80s linear infinite;
}

.timeline-images-row-2 .marquee-track {
  animation: about-us-marquee-scroll-left 80s linear infinite;
}

@keyframes about-us-marquee-scroll-right {
  0% {
    transform: translateX(calc(-100% - 24px));
  }

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

@keyframes about-us-marquee-scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-100% - 24px));
  }
}

.timeline-image-item {
  flex-shrink: 0;
}

.timeline-image-item img {
  height: 200px;
  width: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

@media (prefers-reduced-motion: reduce) {
  .timeline-images-row .marquee-track {
    animation: none;
  }
}

.about-us-image {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.about-us-image img {
  display: block;
  width: 100%;
  height: auto;
}

.timeline-outer-container {
  --tl-bg: #faf6ef;
  --tl-ink: #1a1a1a;
  --tl-muted: #5a5a5a;
  --tl-soft: #8a8a8a;
  --tl-line: #d8d3c5;
  --tl-track-line: #E0E0E0;
  --tl-track-cap: #2087EC;
  --tl-accent: #ff5722;
  --tl-card-bg: #1a1a1d;
  --tl-card-ink: #f6f6f5;
  --tl-card-muted: #a4a4a4;
  --tl-card-tag: #d6d6d6;
  --tl-prev-bg: #ece7dc;
  --tl-step: 380px;
  --tl-card-width: 380px;
  --tl-card-gap: 160px;
  --tl-card-shift: calc(var(--tl-card-width) + var(--tl-card-gap));
  --tl-duration: 0.7s;
  --tl-ease: cubic-bezier(0.33, 1, 0.68, 1);

  position: relative;
  background-color: #FFFFFF;
  color: var(--tl-ink);
  font-family: 'Inter', sans-serif;
  overflow: hidden;
}

.timeline-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: stretch;
  margin: 0 auto;
}

.timeline-left-panel {
  display: flex;
  flex-direction: column;
  padding: 10px 0;
}

.timeline-left-panel h2 {
  font-family: 'Urbanist', serif;
  font-weight: 600;
  line-height: 1.25;
  color: var(--tl-ink);
  margin: 0;
  letter-spacing: -0.01em;
}

.timeline-left-panel .timeline-left-bottom {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.timeline-left-panel p {
  font-family: 'Urbanist', sans-serif;
  line-height: 160%;
  color: var(--tl-muted);
  margin: 0;
  font-weight: 500;
}

.timeline-nav {
  display: inline-flex;
  gap: 12px;
}

.timeline-nav-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: transform 0.2s ease, background-color 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.timeline-nav-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.timeline-nav-btn[data-dir="prev"] {
  background-color: var(--tl-prev-bg);
  color: #2a2a2a;
}

.timeline-nav-btn[data-dir="next"] {
  background-color: #2087EC;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(32, 135, 236, 0.28);
}

.timeline-nav-btn[data-dir="prev"]:hover {
  background-color: #e3ddce;
  transform: translateY(-1px);
}

.timeline-nav-btn[data-dir="next"]:hover {
  background-color: #1878d7;
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(32, 135, 236, 0.38);
}

.timeline-nav-btn:active {
  transform: translateY(0) scale(0.96);
}

.timeline-nav-btn[disabled],
.timeline-nav-btn.is-disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.timeline-nav-btn:focus-visible {
  outline: 2px solid var(--tl-accent);
  outline-offset: 3px;
}

.timeline-right-panel {
  position: relative;
  overflow: visible;
}

.timeline-track-anchor {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  overflow: visible;
  z-index: 1;
}

.timeline-track {
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  transition: transform var(--tl-duration) var(--tl-ease);
  will-change: transform;
}

.timeline-dot-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--tl-step);
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 0;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0;
  pointer-events: auto;
}

.timeline-rail {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  align-items: center;
  height: 5px;
}

.timeline-rail--before::before {
  content: '';
  flex: 1 1 auto;
  min-width: 0;
  height: 1px;
  background-color: var(--tl-track-line);
}

.timeline-rail--before::after {
  content: '';
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  border-radius: 10px;
  background-color: #E0E0E0;
}

.timeline-rail--after::before {
  content: '';
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  border-radius: 10px;
  background-color: #E0E0E0;
}

.timeline-rail--after::after {
  content: '';
  flex: 1 1 auto;
  min-width: 0;
  height: 1px;
  background-color: var(--tl-track-line);
}

.timeline-year-label {
  flex-shrink: 0;
  padding: 0 10px;
  font-family: 'Urbanist', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: var(--tl-soft);
  letter-spacing: 0.01em;
  user-select: none;
  white-space: nowrap;
  background-color: #FFFFFF;
  transition: color 0.3s ease, font-weight 0.3s ease;
}

.timeline-dot-wrapper:hover .timeline-year-label {
  color: var(--tl-ink);
}

.timeline-dot-wrapper.active .timeline-year-label {
  color: var(--tl-ink);
  font-weight: 600;
}

.timeline-card-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: var(--tl-card-width);
  z-index: 3;
  overflow: visible;
  pointer-events: none;
}

.timeline-card {
  position: absolute;
  inset: 0;
  width: var(--tl-card-width);
  height: var(--tl-card-width);
  background-color: #090909;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.18), 0 8px 16px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateX(0) scale(1);
  transform-origin: center center;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.timeline-card.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0) scale(1);
  z-index: 4;
  pointer-events: auto;
}

.timeline-card.leave-exit,
.timeline-card.enter-enter {
  visibility: visible;
  pointer-events: none;
}

.timeline-card.leave-exit {
  z-index: 2;
}

.timeline-card.enter-enter {
  z-index: 3;
  pointer-events: auto;
}

@keyframes tl-card-leave-forward {
  0% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateX(calc(-1 * var(--tl-card-shift))) scale(1);
  }
}

@keyframes tl-card-enter-forward {
  0% {
    opacity: 0.42;
    transform: translateX(var(--tl-card-shift)) scale(1);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes tl-card-leave-backward {
  0% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateX(var(--tl-card-shift)) scale(1);
  }
}

@keyframes tl-card-enter-backward {
  0% {
    opacity: 0.42;
    transform: translateX(calc(-1 * var(--tl-card-shift))) scale(1);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.timeline-card-container.is-forward .timeline-card.leave-exit {
  animation: tl-card-leave-forward var(--tl-duration) var(--tl-ease) forwards;
}

.timeline-card-container.is-forward .timeline-card.enter-enter {
  animation: tl-card-enter-forward var(--tl-duration) var(--tl-ease) forwards;
}

.timeline-card-container.is-backward .timeline-card.leave-exit {
  animation: tl-card-leave-backward var(--tl-duration) var(--tl-ease) forwards;
}

.timeline-card-container.is-backward .timeline-card.enter-enter {
  animation: tl-card-enter-backward var(--tl-duration) var(--tl-ease) forwards;
}

.timeline-card-content {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.timeline-card-year {
  font-family: 'Urbanist', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 100%;
  color: #2087EC;
  letter-spacing: 0.01em;
}

.timeline-card-title {
  font-family: 'Urbanist', 'Inter', sans-serif;
  font-weight: 700;
  color: #F9F9F9;
  margin: 0;
  line-height: 160%;
  letter-spacing: 1%;
}

.timeline-card-body {
  font-family: 'Urbanist', sans-serif;
  font-weight: 500;
  line-height: 1.55;
  color: #CCCCCC;
  margin: 0;
}

.timeline-card-visual {
  flex: 1 1 auto;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: auto;
}

.timeline-card-visual--image {
  padding: 0;
}

.timeline-card-visual--brand {
  background: linear-gradient(90deg, #0b1a33 0%, #1a4f9c 52%, #4da3ff 100%);
}

.timeline-card-visual--focus {
  background: linear-gradient(90deg, #0d1428 0%, #1e3d7a 55%, #3d8ee8 100%);
}

.timeline-card-visual--reach {
  background: linear-gradient(90deg, #101828 0%, #234b8f 50%, #5b9fff 100%);
}

.timeline-card-visual--core {
  background: linear-gradient(90deg, #0a1628 0%, #1c4585 48%, #4696f0 100%);
}

.timeline-card-visual--speed {
  background: linear-gradient(90deg, #0c1a30 0%, #2056a8 54%, #58a8ff 100%);
}

.timeline-card-visual--boundaries {
  background: linear-gradient(90deg, #081422 0%, #183f7c 50%, #3f95eb 100%);
}

.timeline-card-logo {
  display: block;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.timeline-card-full-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

@media (prefers-reduced-motion: reduce) {
  .timeline-track,
  .timeline-card,
  .timeline-nav-btn {
    transition-duration: 0.001ms !important;
  }

  .timeline-card.leave-exit,
  .timeline-card.enter-enter {
    animation: none !important;
  }

  .timeline-card.active {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
}

/* Core Values — shared */
.core-values-section {
  --cv-bg: #000000;
  --cv-bg-soft: #0c0c12;
  --cv-line: rgba(255, 255, 255, 0.07);
  --cv-line-strong: rgba(255, 255, 255, 0.12);
  --cv-text: #f5f5f7;
  --cv-tag: #2087EC;
  --cv-plus: rgba(16, 85, 224, 0.55);
  --cv-cell-bg: #000000;

  background-color: var(--cv-bg);
  background-image:
    radial-gradient(1200px 600px at 50% -10%, rgba(139, 92, 246, 0.07), transparent 60%),
    radial-gradient(900px 500px at 85% 110%, rgba(251, 146, 60, 0.05), transparent 60%);
  color: var(--cv-text);
  font-family: 'Urbanist', sans-serif;
  text-align: center;
}

.core-values-header {
  gap: 16px;
  max-width: 720px;
  margin: 0 auto 24px;
}

.core-values-overline {
  display: inline-block;
  font-family: 'Urbanist', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.core-values-title {
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 1%;
  margin: 0;
  background: linear-gradient(40deg, #0091FF 30%, #FF02F0 45.11%, #FF8635 50.12%, #6647F0 55.13%, #0091FF 60.14%);
  background-size: 120% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.core-values-grid {
  margin: 0 auto;
  display: grid;
  border: 1px solid var(--cv-line-strong);
  background-color: var(--cv-bg-soft);
  position: relative;
}

.core-value-cell {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: end;
  text-align: left;
  border-right: 1px solid var(--cv-line);
  border-bottom: 1px solid var(--cv-line);
  background-color: var(--cv-cell-bg);
  overflow: hidden;
  transition: transform 0.35s ease;
}

.core-value-cell::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.85s ease 0.3s;
  pointer-events: none;
  z-index: 0;
}

.core-value-cell:nth-child(-n+4)::after {
  background: linear-gradient(360deg, #FF02F0 0.03%, #0091FF 100%);
}

.core-value-cell:nth-child(n+5):nth-child(-n+8)::after {
  background: linear-gradient(360deg, #FF8635 0.23%, #FF02F0 99.98%);
}

.core-value-cell:nth-child(n+9)::after {
  background: linear-gradient(360deg, #0091FF -21.23%, #A147F0 25.23%, #FF8635 100.13%);
}

.core-value-cell:hover::after,
.core-value-cell:focus-within::after {
  opacity: 1;
  transition: opacity 0.4s ease 0s;
}

.core-value-statement {
  position: relative;
  z-index: 1;
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  line-height: 1.55;
  color: #CCCCCC;
  margin: 0 0 18px 0;
}

.core-value-tag {
  position: relative;
  z-index: 1;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--cv-tag);
  transition: color 0.85s ease 0.25s;
}

.core-value-cell:hover .core-value-tag,
.core-value-cell:focus-within .core-value-tag {
  color: #ffffff;
  transition: color 0.4s ease 0s;
}

.core-values-section .core-value-cell {
  opacity: 0;
  transform: translateY(14px);
}

.core-values-section.is-visible .core-value-cell {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.core-values-section.is-visible .core-value-cell:hover::after,
.core-values-section.is-visible .core-value-cell:focus-within::after {
  transition: opacity 0.4s ease 0s;
}

.core-values-section.is-visible .core-value-cell:nth-child(1)  { transition-delay: 0.02s; }
.core-values-section.is-visible .core-value-cell:nth-child(2)  { transition-delay: 0.06s; }
.core-values-section.is-visible .core-value-cell:nth-child(3)  { transition-delay: 0.10s; }
.core-values-section.is-visible .core-value-cell:nth-child(4)  { transition-delay: 0.14s; }
.core-values-section.is-visible .core-value-cell:nth-child(5)  { transition-delay: 0.18s; }
.core-values-section.is-visible .core-value-cell:nth-child(6)  { transition-delay: 0.22s; }
.core-values-section.is-visible .core-value-cell:nth-child(7)  { transition-delay: 0.26s; }
.core-values-section.is-visible .core-value-cell:nth-child(8)  { transition-delay: 0.30s; }
.core-values-section.is-visible .core-value-cell:nth-child(9)  { transition-delay: 0.34s; }
.core-values-section.is-visible .core-value-cell:nth-child(10) { transition-delay: 0.38s; }
.core-values-section.is-visible .core-value-cell:nth-child(11) { transition-delay: 0.42s; }
.core-values-section.is-visible .core-value-cell:nth-child(12) { transition-delay: 0.46s; }

@media (prefers-reduced-motion: reduce) {
  .core-values-section .core-value-cell,
  .core-values-section.is-visible .core-value-cell {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .core-value-cell::after,
  .core-values-section.is-visible .core-value-cell::after {
    transition: none;
  }

  .core-value-tag {
    transition: none;
  }
}

/* 1440px and larger */
@media (min-width: 1440px) {
  .about-us-section {
    padding: 49px 0px 40px 0px;
  }

  .about-us h1 {
    font-weight: 700;
    font-size: 36px;
    line-height: 140%;
    margin-top: 24px;
    letter-spacing: 1%;
    color: #F9F9F9;
    width: 73%;
    margin-bottom: 60px;
    font-family: "Urbanist";
  }

  .about-us h2 {
    font-weight: 400;
    font-size: 20px;
    line-height: 44px;
    color: #1B68A8;
  }

  .about-us h3 {
    font-weight: 700;
    font-size: 36px;
    line-height: 140%;
    letter-spacing: 1%;
    color: #1E1E1E;
    font-family: "Urbanist";
    margin-bottom: 0px;
  }

  .about-us p {
    font-weight: 500;
    font-size: 18px;
    line-height: 160%;
    padding-top: 24px;
    width: 100%;
    max-width: 700px;
    font-family: "Urbanist";
    text-align: justify;
    color:#646464;
  }

  .about-us-box-item {
    flex: 1;
    border-left: 1px solid #B9D0FF;
    padding: 0 16px;
  }

  .about-us-box-item:first-child {
    border-left: none;
  }

  .about-us-box-item h4 {
    font-weight: 700;
    font-size: 48px;
    line-height: 140%;
    letter-spacing: 1%;
    margin: 0;
    text-align: center;
    font-family: "Urbanist";
    color: #333333;
  }

  .about-us-box-item p {
    font-family: "Urbanist";
    font-size: 18px;
    margin: 0;
    padding-top: 8px;
    color: #2087EC;
    text-align: center;
    line-height: 160%;
    font-weight: 500;
  }

  .about-us-box.container {
    padding: 36px 100px;
  }

  .about-us-section-background {
    background-color: black;
    height: 600px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }

  .about-us-mission-section {
    gap: 16px;
    padding-top: 40px;
  }

  .timeline-images-section h3 {
    margin-top: 16px;
    margin-bottom: 32px;
    font-family: 'Urbanist', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 140%;
    letter-spacing: 1%;
    color:#1E1E1E;
  }

  .timeline-outer-container {
    padding: 78px 0;
  }

  .timeline-grid {
    grid-template-columns: minmax(280px, 360px) 1fr;
    gap: 60px;
    max-width: 1280px;
    padding: 0 40px;
    min-height: 480px;
  }

  .timeline-left-panel {
    gap: 152px;
    width: 512px;
  }

  .timeline-left-panel h3 {
    font-family: 'Urbanist', sans-serif;
    width: 330px;
    font-size: 36px;
    font-weight: 700;
    color:#1E1E1E;
    line-height: 140%;
    letter-spacing: 1%;
  }

  .timeline-left-panel h2 {
    font-size: clamp(1.65rem, 2.4vw, 2.1rem);
    max-width: 320px;
  }

  .timeline-left-panel p {
    font-size: 18px;
    max-width: 500px;
  }

  .timeline-right-panel {
    height: 480px;
  }

  .timeline-card-container {
    height: 400px;
  }

  .timeline-card {
    padding: 16px;
    gap: 29.25px;
  }

  .timeline-card-title {
    font-size: 24px;
    margin-top: 12px;
    margin-bottom: 4px;
  }

  .timeline-card-body {
    font-size: 16px;
  }

  .timeline-card-visual {
    min-height: 170px;
    padding: 28px 32px;
  }

  .timeline-card-logo {
    height: 32px;
  }

  .core-values-section {
    --cv-cell: 212px;
    padding: 40px 0px;
    border-radius: 56px;
  }

  .core-values-title {
    font-size: clamp(36px, 5vw, 36px);
  }

  .core-values-grid {
    width: calc(var(--cv-cell) * 4);
    grid-template-columns: repeat(4, var(--cv-cell));
    grid-auto-rows: var(--cv-cell);
  }

  .core-value-cell {
    padding: 24px 24px;
  }

  .core-value-cell:nth-child(4n) {
    border-right: 1px solid var(--cv-line);
  }

  .core-value-cell:nth-last-child(-n+4) {
    border-bottom: none;
  }

  .core-value-statement {
    font-size: 20px;
  }

  .core-value-tag {
    font-size: 12px;
  }
}

/* 1024px – 1439px (excludes 1440px) */
@media (min-width: 1024px) and (max-width: 1439px) {
  .about-us-section {
    padding: 49px 0px 40px 0px;
  }

  .about-us h1 {
    font-weight: 700;
    font-size: 36px;
    line-height: 160%;
    margin-top: 24px;
    letter-spacing: 1%;
    color: #F9F9F9;
    width: 84%;
    margin-bottom: 60px;
    font-family: "Urbanist";
  }

  .about-us h2 {
    font-weight: 400;
    font-size: 20px;
    line-height: 44px;
    color: #1B68A8;
  }

  .about-us h3 {
    font-weight: 700;
    font-size: 32px;
    line-height: 140%;
    letter-spacing: 1%;
    color: #1E1E1E;
    font-family: "Urbanist";
    margin-bottom: 0px;
    padding-top: 0px;
  }

  .about-us p {
    font-weight: 500;
    font-size: 18px;
    line-height: 160%;
    padding-top: 24px;
    width: 100%;
    max-width: 700px;
    font-family: "Urbanist";
    text-align: justify;
  }

  .about-us-box-item {
    flex: 1;
    border-left: 1px solid #B9D0FF;
    padding: 0 16px;
  }

  .about-us-box-item:first-child {
    border-left: none;
  }

  .about-us-box-item h4 {
    font-weight: 700;
    font-size: 48px;
    line-height: 140%;
    letter-spacing: 1%;
    margin: 0;
    text-align: center;
    font-family: "Urbanist";
    color: #333333;
  }

  .about-us-box-item p {
    font-family: "Urbanist";
    font-size: 18px;
    margin: 0;
    padding-top: 8px;
    color: #2087EC;
    text-align: center;
    line-height: 160%;
    font-weight: 500;
  }

  .about-us-box.container {
    padding: 36px 60px;
  }

  .about-us-section-background {
    background-color: black;
    height: 600px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }

  .about-us-mission-section {
    gap: 16px;
    padding-top: 40px;
  }

  .timeline-images-section h3 {
    margin-top: 16px;
    margin-bottom: 32px;
    font-family: 'Urbanist', sans-serif;
  }

  .timeline-outer-container {
    padding: 78px 0;
  }

  .timeline-grid {
    grid-template-columns: minmax(280px, 360px) 1fr;
    gap: 60px;
    max-width: 1280px;
    padding: 0 40px;
    min-height: 480px;
  }

  .timeline-left-panel {
    gap: 152px;
    width: 512px;
  }

  .timeline-left-panel h3 {
    font-family: 'Urbanist', sans-serif;
    width: 330px;
    font-size: 36px;
    line-height: 140%;
    letter-spacing: 1%;
  }

  .timeline-left-panel h2 {
    font-size: clamp(1.65rem, 2.4vw, 2.1rem);
    max-width: 320px;
  }

  .timeline-left-panel p {
    font-size: 18px;
    max-width: 396px;
  }

  .timeline-right-panel {
    height: 480px;
  }

  .timeline-card-container {
    height: 400px;
  }

  .timeline-card {
    padding: 16px;
    gap: 29.25px;
  }

  .timeline-card-title {
    font-size: 24px;
    margin-top: 12px;
    margin-bottom: 4px;
  }

  .timeline-card-body {
    font-size: 16px;
  }

  .timeline-card-visual {
    min-height: 170px;
    padding: 28px 32px;
  }

  .timeline-card-logo {
    height: 32px;
  }

  .core-values-section {
    --cv-cell: 212px;
    padding: 40px 0px;
    border-radius: 56px;
  }

  .core-values-title {
    font-size: clamp(36px, 5vw, 36px);
  }

  .core-values-grid {
    width: calc(var(--cv-cell) * 4);
    grid-template-columns: repeat(4, var(--cv-cell));
    grid-auto-rows: var(--cv-cell);
  }

  .core-value-cell {
    padding: 24px 24px;
  }

  .core-value-cell:nth-child(4n) {
    border-right: 1px solid var(--cv-line);
  }

  .core-value-cell:nth-last-child(-n+4) {
    border-bottom: none;
  }

  .core-value-statement {
    font-size: 20px;
  }

  .core-value-tag {
    font-size: 12px;
  }
}

/* 786px – 1023px (excludes 1024px) */
@media (min-width: 786px) and (max-width: 1023px) {
  .about-us-section {
    padding: 80px 20px 40px 20px;
  }

  .about-us h1 {
    font-weight: 700;
    font-size: 28px;
    line-height: 140%;
    margin-top: 24px;
    letter-spacing: 1%;
    color: #F9F9F9;
    width: 90%;
    margin-bottom: 51px;
    font-family: "Urbanist";
  }

  .about-us h2 {
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
    color: #1B68A8;
  }

  .about-us h3 {
    font-weight: 700;
    font-size: 28px;
    line-height: 140%;
    letter-spacing: 1%;
    color: #1E1E1E;
    font-family: "Urbanist";
    margin-bottom: 0px;
    padding-top: 0px;
  }

  .about-us p {
    font-weight: 500;
    font-size: 16px;
    line-height: 160%;
    padding-top: 24px;
    width: 100%;
    max-width: 626px;
    font-family: "Urbanist";
    text-align: justify;
  }

  .about-us-box-item {
    flex: 0 0 50%;
    width: 50%;
    padding: 30px 20px;
    border-left: none;
  }

  .about-us-box-item:nth-child(even) {
    border-left: 1px solid #B9D0FF;
  }

  .about-us-box-item:nth-child(-n+2) {
    border-bottom: 1px solid #B9D0FF;
  }

  .about-us-box-item h4 {
    font-weight: 700;
    font-size: 48px;
    line-height: 140%;
    letter-spacing: 1%;
    margin: 0;
    text-align: center;
    font-family: "Urbanist";
    color: #333333;
  }

  .about-us-box-item p {
    font-family: "Urbanist";
    font-size: 18px;
    margin: 0;
    padding-top: 8px;
    color: #2087EC;
    text-align: center;
    line-height: 160%;
    font-weight: 500;
  }

  .about-us-box.container {
    margin-top: 0px;
    padding: 20px 20px;
  }

  .about-us-box .d-flex {
    flex-wrap: wrap;
    gap: 0;
  }

  .about-us-image {
    max-width: 718px;
    width: 100%;
  }

  .about-us-section-background {
    background-color: black;
    height: 458px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }

  .about-us-mission-section {
    gap: 16px;
    padding-top: 40px;
  }

  .core-value-statement {
    font-size: 14px !important;
  }

  .core-value-tag {
    font-size: 9px !important;
  }

  .core-values-title {
    font-size: 28px !important;
  }

  .core-values-section {
    --cv-cell: 152px;
    padding: 90px 20px;
    border-radius: 56px;
  }

  .core-values-grid {
    width: calc(var(--cv-cell) * 4);
    grid-template-columns: repeat(4, var(--cv-cell));
    grid-auto-rows: var(--cv-cell);
  }

  .core-value-cell {
    padding: 24px 24px;
  }

  .core-value-cell:nth-child(4n) {
    border-right: 1px solid var(--cv-line);
  }

  .core-value-cell:nth-last-child(-n+4) {
    border-bottom: 1px solid var(--cv-line);
  }

  .core-value-cell:nth-child(2n) {
    border-right: 1px solid var(--cv-line);
  }

  .core-value-cell:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .core-value-cell::before {
    content: none !important;
  }

  .core-value-cell:nth-child(n+3):not(:nth-child(2n+1))::before {
    content: '+';
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    font-family: 'Urbanist', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: var(--cv-plus);
    pointer-events: none;
    z-index: 2;
  }

  .timeline-images-section h3 {
    margin-top: 16px;
    margin-bottom: 32px;
    font-family: 'Urbanist', sans-serif;
  }

  .timeline-outer-container {
    padding: 80px 0 0px 0;
  }

  .timeline-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    min-height: auto;
    max-width: 1280px;
    padding: 0 40px;
  }

  .timeline-left-panel {
    padding: 0;
    gap: 16px;
    width: 100%;
    max-width: 626px;
    margin-inline: auto;
    align-items: flex-start;
    text-align: left;
  }

  .timeline-left-panel h3 {
    width: auto;
    max-width: 95%;
    font-size: 36px;
    font-family: 'Urbanist', sans-serif;
    line-height: 140%;
    letter-spacing: 1%;
    font-weight: 700;
  }

  .timeline-left-panel h2 {
    max-width: 100%;
    font-size: clamp(1.65rem, 2.4vw, 2.1rem);
  }

  .timeline-left-panel p {
    max-width: 100%;
    font-size: 18px;
  }

  .timeline-left-panel .timeline-left-bottom {
    align-items: flex-start;
    width: 100%;
  }

  .timeline-right-panel {
    height: 540px;
  }

  .timeline-card-container {
    height: 400px;
  }

  .timeline-card {
    padding: 16px;
    gap: 29.25px;
  }

  .timeline-card-title {
    font-size: 24px;
    margin-top: 12px;
    margin-bottom: 4px;
  }

  .timeline-card-body {
    font-size: 16px;
  }

  .timeline-card-visual {
    min-height: 170px;
    padding: 28px 32px;
  }

  .timeline-card-logo {
    height: 32px;
  }
}

/* 500px – 785px */
@media (min-width: 500px) and (max-width: 785px) {
  .about-us-section {
    padding: 80px 20px 40px 20px;
  }

  .about-us h1 {
    font-weight: 700;
    font-size: 28px;
    line-height: 140%;
    margin-top: 24px;
    letter-spacing: 1%;
    color: #F9F9F9;
    width: 90%;
    margin-bottom: 51px;
    font-family: "Urbanist";
  }

  .about-us h2 {
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
    color: #1B68A8;
  }

  .about-us h3 {
    font-weight: 700;
    font-size: 28px;
    line-height: 140%;
    letter-spacing: 1%;
    color: #1E1E1E;
    font-family: "Urbanist";
    margin-bottom: 0px;
    padding-top: 0px;
  }

  .about-us p {
    font-weight: 500;
    font-size: 16px;
    line-height: 160%;
    padding-top: 24px;
    width: 100%;
    max-width: 626px;
    font-family: "Urbanist";
    text-align: justify;
  }

  .about-us-box-item {
    flex: 0 0 50%;
    width: 50%;
    padding: 30px 20px;
    border-left: none;
  }

  .about-us-box-item:nth-child(even) {
    border-left: 1px solid #B9D0FF;
  }

  .about-us-box-item:nth-child(-n+2) {
    border-bottom: 1px solid #B9D0FF;
  }

  .about-us-box-item h4 {
    font-weight: 700;
    font-size: 48px;
    line-height: 140%;
    letter-spacing: 1%;
    margin: 0;
    text-align: center;
    font-family: "Urbanist";
    color: #333333;
  }

  .about-us-box-item p {
    font-family: "Urbanist";
    font-size: 18px;
    margin: 0;
    padding-top: 8px;
    color: #2087EC;
    text-align: center;
    line-height: 160%;
    font-weight: 500;
  }

  .about-us-box.container {
    margin-top: 0px;
    padding: 20px 20px;
  }

  .about-us-box .d-flex {
    flex-wrap: wrap;
    gap: 0;
  }

  .about-us-image {
    max-width: 718px;
    width: 100%;
  }

  .about-us-section-background {
    background-color: black;
    height: 458px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }

  .about-us-mission-section {
    gap: 12px;
    padding-top: 20px;
  }

  .core-value-statement {
    font-size: 14px !important;
  }

  .core-value-tag {
    font-size: 9px !important;
  }

  .core-values-title {
    font-size: 28px !important;
  }

  .core-values-section {
    --cv-cell: 152px;
    padding: 90px 20px;
    border-radius: 32px !important;
  }

  .core-values-grid {
    width: calc(var(--cv-cell) * 4);
    grid-template-columns: repeat(4, var(--cv-cell));
    grid-auto-rows: var(--cv-cell);
  }

  .core-value-cell {
    padding: 24px 24px;
  }

  .core-value-cell:nth-child(4n) {
    border-right: 1px solid var(--cv-line);
  }

  .core-value-cell:nth-last-child(-n+4) {
    border-bottom: 1px solid var(--cv-line);
  }

  .core-value-cell:nth-child(2n) {
    border-right: 1px solid var(--cv-line);
  }

  .core-value-cell:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .core-value-cell::before {
    content: none !important;
  }

  .core-value-cell:nth-child(n+3):not(:nth-child(2n+1))::before {
    content: '+';
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    font-family: 'Urbanist', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: var(--cv-plus);
    pointer-events: none;
    z-index: 2;
  }

  .timeline-images-section {
    padding: 0px;
  }

  .timeline-images-section h3 {
    margin-top: 16px;
    margin-bottom: 32px;
    font-family: 'Urbanist', sans-serif;
    font-size: 24px;
    text-align: center;
    width: 292px;
  }

  .timeline-outer-container {
    padding: 60px 0;
    padding-bottom: 0px;
    --tl-step: min(340px, calc(100vw - 56px));
  }

  .timeline-grid {
    grid-template-columns: 1fr;
    gap: 0px;
    min-height: auto;
    padding: 0 24px;
  }

  .timeline-left-panel {
    padding: 0;
    gap: 28px;
    width: 100%;
    max-width: 626px;
    margin-inline: auto;
    align-items: flex-start;
    text-align: left;
  }

  .timeline-left-panel h3 {
    width: auto;
    max-width: 95%;
    font-size: 28px;
    font-family: 'Urbanist', sans-serif;
  }

  .timeline-left-panel h2 {
    max-width: 100%;
  }

  .timeline-left-panel p {
    max-width: 100%;
    font-size: 16px;
  }

  .timeline-left-panel .timeline-left-bottom {
    align-items: flex-start;
    width: 100%;
  }

  .timeline-right-panel {
    height: 480px;
  }

  .timeline-card-container {
    height: 420px;
  }

  .timeline-card {
    padding: 20px;
    gap: 16px;
  }

  .timeline-card-title {
    font-size: 1.25rem;
    margin-top: 12px;
    margin-bottom: 4px;
  }

  .timeline-card-body {
    font-size: 16px;
  }

  .timeline-card-visual {
    min-height: 120px;
    padding: 20px 24px;
  }

  .timeline-card-visual--image {
    padding: 0;
  }

  .timeline-card-logo {
    height: 26px;
  }

  .timeline-card-full-image {
    min-height: 120px;
  }
}

@media (min-width: 500px) and (max-width: 560px) {
  .core-values-title {
    font-size: 24px !important;
  }

  .core-value-statement {
    font-size: 9px !important;
    margin-bottom: 3px !important;
  }

  .core-value-tag {
    font-size: 6px !important;
  }

  .core-values-section {
    padding: 40px 16px;
  }

  .core-values-grid {
    --cv-cell: clamp(72px, 22vw, 86px);
    width: min(100%, calc(var(--cv-cell) * 4));
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: clamp(72px, 22vw, 86px);
  }

  .core-value-cell {
    padding: 14px 10px;
  }
}

/* Below 500px */
@media (max-width: 499px) {
  .about-us-section {
    padding: 50px 15px 40px 15px;
  }

  .about-us-section-background {
    height: 335px;
    background-color: black;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }

  .about-us h1 {
    font-weight: 700;
    font-size: 24px;
    line-height: 140%;
    margin-top: 24px;
    letter-spacing: 1%;
    color: #F9F9F9;
    width: 368px;
    margin-bottom: 51px;
    font-family: "Urbanist";
    padding: 0 10px;
  }

  .about-us h2 {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #1B68A8;
    padding: 0 10px;
  }

  .about-us h3 {
    font-weight: 700;
    font-size: 22px;
    line-height: 30px;
    letter-spacing: 1%;
    color: #1E1E1E;
    font-family: "Urbanist";
    margin-bottom: 0px;
    padding-top: 0px;
  }

  .about-us p {
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    padding-top: 15px;
    width: 100%;
    font-family: "Urbanist";
    text-align: justify;
  }

  .about-us-mission-section {
    gap: 12px;
    padding-top: 20px;
  }

  .about-us-box.container {
    border-radius: 16px;
  }

  .about-us-box .d-flex {
    justify-content: space-between;
    gap: 24px;
    flex-direction: column !important;
    align-items: center !important;
  }

  .about-us-box-item {
    flex: 0 0 calc(50% - 10px);
    width: calc(50% - 10px);
    margin-bottom: 0;
    padding: 20px 10px;
    background-color: #FFFFFF;
    border-left: none;
    border-bottom: 1px solid #B9D0FF;
  }

  .about-us-box-item h4 {
    font-weight: 700;
    font-size: 32px;
    line-height: 140%;
    text-align: center;
    font-family: "Urbanist";
    color: #333333;
    margin: 0;
  }

  .about-us-box-item p {
    font-family: "Urbanist";
    padding-top: 6px;
    font-size: 14px;
    line-height: 160%;
    text-align: center;
    color: #2087EC;
    margin: 0;
    font-weight: 500;
  }

  .about-us-box .d-flex {
    flex-direction: column;
    gap: 16px;
  }

  .about-us-box-item {
    width: 100%;
  }

  .core-values-section {
    padding: 40px 16px;
    border-radius: 32px !important;
  }

  .core-values-title {
    font-size: 24px !important;
  }

  .core-value-statement {
    font-size: 9px !important;
    margin-bottom: 3px !important;
  }

  .core-value-tag {
    font-size: 6px !important;
  }

  .core-values-grid {
    --cv-cell: clamp(72px, 22vw, 86px);
    width: min(100%, calc(300px * 3));
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: clamp(72px, 22vw, 86px);
  }

  .core-value-cell {
    border-right: 1px solid var(--cv-line) !important;
    border-bottom: 1px solid var(--cv-line);
    padding: 14px 10px;
  }

  .core-value-cell:nth-child(4n) {
    border-right: 1px solid var(--cv-line) !important;
  }

  .core-value-cell:nth-last-child(-n+4) {
    border-bottom: 1px solid var(--cv-line);
  }

  .core-value-cell:nth-last-child(-n+3) {
    border-bottom: none;
  }

  .core-value-cell::before {
    content: none !important;
  }

  .timeline-images-section {
    padding: 0px;
  }

  .timeline-images-section h3 {
    margin-top: 16px;
    margin-bottom: 32px;
    font-family: 'Urbanist', sans-serif;
    font-size: 24px;
    text-align: center;
    width: 292px;
  }

  .timeline-outer-container {
    padding: 60px 0;
    padding-bottom: 0px;
    --tl-step: min(340px, calc(100vw - 32px));
    --tl-card-width: var(--tl-step);
  }

  .timeline-grid {
    grid-template-columns: 1fr;
    gap: 0px;
    min-height: auto;
    padding: 0 24px;
  }

  .timeline-left-panel {
    padding: 0;
    gap: 28px;
    width: 100%;
    margin-inline: auto;
    align-items: flex-start;
    text-align: left;
  }

  .timeline-left-panel h3 {
    width: auto;
    max-width: 95%;
    font-size: 28px;
    font-family: 'Urbanist', sans-serif;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: 1%;
    color:#1E1E1E;
  }

  .timeline-left-panel p {
    font-size: 16px;
    max-width: 100%;
  }

  .timeline-left-panel .timeline-left-bottom {
    align-items: flex-start;
    width: 100%;
  }

  .timeline-right-panel {
    height: 480px;
  }

  .timeline-card-container {
    height: 420px;
  }

  .timeline-card {
    padding: 20px;
    gap: 16px;
  }

  .timeline-card-title {
    font-size: 1.25rem;
    margin-top: 12px;
    margin-bottom: 4px;
  }

  .timeline-card-body {
    font-size: 16px;
  }

  .timeline-card-visual {
    min-height: 120px;
    padding: 20px 24px;
  }

  .timeline-card-visual--image {
    padding: 0;
  }

  .timeline-card-logo {
    height: 26px;
  }

  .timeline-card-full-image {
    min-height: 120px;
  }
}
