﻿
.logo-lion-vector-outer {
  position: absolute;
  top: 0;
  right: -10vw;
  z-index: -1;
  pointer-events: none;
  width: min(72vw, 375px);
  max-width: 375px;
}
.aboutus-innrer-intro {    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   ABOUT US â€” Stats stack cards
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.aboutus-stats-section {
  --stats-gap: clamp(1.5rem, 3.5vw, 2.75rem);
  --stats-card-h: calc(100vh - var(--header-h, 106px) - var(--stats-gap));
  background: var(--color-light, #F3F3F3);
  overflow: visible;
  padding-top: var(--stats-gap);
}

.aboutus-stats-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}

.aboutus-stats-stage > .pin-spacer {
  width: 100%;
  max-width: 100%;
}

.aboutus-stats-card {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  height: var(--stats-card-h);
  max-height: calc(100dvh - var(--header-h, 106px) - var(--stats-gap));
  margin: 0 0 var(--stats-gap);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #fff;
  border: 1px solid #F0F0F0;
  border-radius: 1.25rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.25rem, 3vw, 2rem);
  transform-origin: top center;
  will-change: transform;
}

.aboutus-stats-bg-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  pointer-events: none;
  will-change: transform, opacity;
}

.aboutus-stats-bg {
  position: relative;
  inset: auto;
  left: auto;
  right: auto;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  will-change: transform;
}

.aboutus-stats-copy {
  position: relative;
  z-index: 1;
}

.aboutus-stats-value {
  margin: 0 0 0.45rem;
  font-size: clamp(5.5rem, 8vw, 150px);
  font-weight: 700;
  line-height: 1;
  color: var(--color-secondary, #ED1C24);
}

.aboutus-stats-unit,
.aboutus-stats-value .counter-suffix {
  font-size: 44px;
  font-weight: 600;
  margin-left: 0.2em;
  color: inherit;
}

.aboutus-stats-value .counter-odometer {
  align-items: baseline;
}

/* Odometer clip hardening (150% zoom / scaled pin cards) */
.aboutus-stats-value .odometer-digit {
  overflow: hidden !important;
  overflow: clip !important;
  clip-path: inset(3px 0) !important;
  -webkit-clip-path: inset(3px 0) !important;
  contain: paint;
  transform: translateZ(0);
  -webkit-mask-image: linear-gradient(transparent 0, #000 3px, #000 calc(100% - 3px), transparent 100%);
  mask-image: linear-gradient(transparent 0, #000 3px, #000 calc(100% - 3px), transparent 100%);
}
.aboutus-stats-value .odometer-digit-line {
  line-height: 1;
  height: 1em;
  overflow: hidden;
}
.aboutus-stats-value .odometer-column {
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}


.aboutus-stats-value .odometer-separator {
  display: inline-block;
  font-weight: inherit;
}

.aboutus-stats-label {
  margin: 0;
  font-size: var(--text-h3);
  font-weight: 400;
  color: var(--color-primary);
  line-height: 1.4;
}

@media (max-width: 1440px) {
  .aboutus-stats-section {
    --stats-gap: clamp(1.25rem, 3vw, 2rem);
  }
}

@media (max-width: 767px) {
  .aboutus-stats-section {
    --stats-gap: 1.25rem;
    --stats-card-h: calc(100svh - var(--header-h, 72px) - var(--stats-gap));
  }

  .aboutus-stats-card {
    max-height: calc(100svh - var(--header-h, 72px) - var(--stats-gap));
  }
}

@media (prefers-reduced-motion: reduce) {
  .aboutus-stats-section.is-stats-reduced .aboutus-stats-card,
  .aboutus-stats-card {
    height: auto;
    max-height: none;
    min-height: 14rem;
    margin-bottom: 1rem;
    transform: none !important;
    will-change: auto;
  }

  .aboutus-stats-bg-wrap,
  .aboutus-stats-bg {
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    will-change: auto;
  }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   ABOUT US â€” Leadership message
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.aboutus-leadership-section {
  background: var(--color-light, #F3F3F3);
  padding-top: clamp(3.75rem, 8vw, 10vw);
  padding-bottom: clamp(3.75rem, 8vw, 10vw);
}

.aboutus-leadership-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(0.75rem, 2.5vw, 2rem);
  align-items: start;
}

.aboutus-leadership-quote {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.6rem, 1.15vw, 1.25rem);
  flex-shrink: 0;
}

.aboutus-leadership-quote img {
  display: block;
  width: clamp(6.75rem, 14.5vw, 18.3125rem);
  height: auto;
  max-width: none;
}

.aboutus-leadership-quote .quote-vector1 {
  position: relative;
  right: 0;
  margin-top: clamp(-9.375rem, -7.8vw, -5.5rem);
}

.aboutus-leadership-quote .quote-vector2 {
  position: relative;
  right: 0;
  bottom: clamp(-9.375rem, -7vw, -5.5rem);
}

.aboutus-leadership-content {
  min-width: 0;
}

.aboutus-leadership-heading {
  margin-bottom: 0;
  margin-left: -16vw;
  margin-top: -20px;
}

.aboutus-leadership-title {
  max-width: 12.4em;
  margin-bottom: 0;
}

.aboutus-leadership-row {
  display: grid;
  /* grid-template-columns: minmax(160px, 40%) minmax(0, 1fr); */
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: start;
  margin-top: clamp(1.5rem, 3vw, 2.75rem);
  max-width: 100%;
  margin-right: 0;
  margin-left: auto;
}

.aboutus-leadership-photo {
  min-width: 0;
}

.aboutus-leadership-photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.aboutus-leadership-copy {
  min-width: 0;
}

.aboutus-leadership-copy p {
  max-width: none;
  color: var(--color-primary);
  font-size: var(--text-p);
  line-height: 1.55;
}

.aboutus-leadership-copy p:last-child {
  margin-bottom: 0;
}

.aboutus-leadership-name {
  font-weight: 700;
  font-size: var(--text-20);
  margin: 1.75rem 0 0.2rem;
  color: var(--color-primary);
  margin-bottom: 0;
}

.aboutus-leadership-role {
  font-size: var(--text-small);
  font-weight: 400;
  color: var(--color-gray);
  margin: 0;
}

/* Laptop + 125%/150% zoom â€” same desktop structure, scaled */
@media (max-width: 1600px) {
  .aboutus-leadership-heading { margin-left: -13.5vw; }
  .aboutus-leadership-row {margin-top: clamp(1.5rem, 3vw, 0.75rem);}
}

@media (max-width: 1366px) {
  .aboutus-leadership-heading { margin-left: -10vw; }
  .aboutus-leadership-row {
    /* grid-template-columns: minmax(140px, 36%) minmax(0, 1fr); */
  }
  .aboutus-leadership-quote img {width: clamp(6.75rem, 12.5vw, 18.3125rem);}
  .aboutus-leadership-quote .quote-vector1 {margin-top: clamp(-9.375rem, -1.4vw, 0rem);}
}

@media (max-width: 1200px) {
  .aboutus-leadership-heading { margin-left: -8vw; }
}

@media (max-width: 1024px) {
  .aboutus-leadership-heading { margin-left: -6vw; }
  .aboutus-leadership-row {
    grid-template-columns: minmax(130px, 34%) minmax(0, 1fr);
    gap: 1.15rem;
  }
}

/* Phone + tablet â€” title top, quotes on photo (no duplicate markup) */
@media (max-width: 1023px) {
  .aboutus-leadership-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "title"
      "photo"
      "copy";
    gap: 1rem;
  }

  .aboutus-leadership-content,
  .aboutus-leadership-row {
    display: contents;
  }

  .aboutus-leadership-heading {
    grid-area: title;
    margin: 0;
  }

  .aboutus-leadership-title {
    max-width: 100%;
  }

  .aboutus-leadership-photo {
    grid-area: photo;
    position: relative;
    z-index: 0;
    max-width: 100%;
    padding-top: clamp(3.25rem, 16vw, 4.75rem);
  }

  .aboutus-leadership-quote {
    grid-area: photo;
    z-index: 1;
    align-self: start;
    justify-self: start;
    gap: 0.4rem;
    margin: 0;
    padding: 0;
    pointer-events: none;
  }

  .aboutus-leadership-quote img {
    width: clamp(2.75rem, 14vw, 4rem);
  }

  .aboutus-leadership-quote .quote-vector1,
  .aboutus-leadership-quote .quote-vector2 {
    margin-top: 0;
    bottom: 0;
  }

  .aboutus-leadership-copy {
    grid-area: copy;
  }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   ABOUT US â€” What we stand for
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.aboutus-stand-section {
  --stand-visual-w: clamp(13rem, 24vw, 28.25rem);
  --stand-num-up: clamp(3.75rem, 9.5vw, 11.15rem);
  background: #fff;
  overflow: visible;
}

.aboutus-stand-inner {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 6vw, 7rem);
}

.aboutus-stand-visual {
  position: relative;
  flex: 0 0 auto;
  width: var(--stand-visual-w);
  max-width: 42%;
  overflow: visible;
  align-self: start;
  border-radius: 20px 20px 0 0;
  background: radial-gradient(88.81% 88.81% at 50% 50%, #ED1C24 0%, #231F20 100%);
  height: clamp(22rem, 42vw, 40.625rem);
  /* Clip left/top/bottom so the x-slide stays inside the frame.
     Negative right inset keeps the snout pop-out â€” no overflow:hidden. */
  clip-path: inset(0 -40% 0 0 round 20px 20px 0 0);
  -webkit-clip-path: inset(0 -40% 0 0 round 20px 20px 0 0);
}

.aboutus-stand-visual-img {
  display: block;
  width: 125%;
  height: auto;
  max-width: none;
  object-fit: cover;
  object-position: center right;
  border-radius: 1.25rem;
  position: absolute;
  left: 0;
  bottom: 0;
}

.aboutus-stand-content {
  flex: 1 1 0;
  min-width: 0;
}

.aboutus-stand-heading {
  position: relative;
  z-index: 2;
  margin-bottom: 0.75rem;
}

.aboutus-stand-heading .title-section {
  margin-bottom: 0;
}

.aboutus-stand-cards {
  display: flex;
  flex-direction: column;
  gap: calc(var(--stand-num-up) + 0.75rem);
  padding-top: var(--stand-num-up);
}

.aboutus-stand-card {
  position: relative;
  width: 72%;
  max-width: 28rem;
  background: #fff;
  border-radius: 1.25rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  padding: clamp(4.5rem, 1.8vw, 1.6rem) clamp(2.5rem, 5vw, 1.5rem) clamp(1.2rem, 1.8vw, 1.5rem) clamp(1.2rem, 1.8vw, 1.6rem);
  height: auto;
  display: flex;
  flex-direction: column;
  min-height: clamp(14.5rem, 20vw, 18.125rem);
  overflow: visible;
}

.aboutus-stand-card:nth-child(2) {
  align-self: flex-end;
  width: 80%;
  max-width: 32rem;
  min-height: clamp(16rem, 24vw, 20rem);
}

.aboutus-stand-num {
  position: absolute;
  top: calc(-1 * var(--stand-num-up));
  left: 0;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

.aboutus-stand-icon {
  position: absolute;
  top: -3.5rem;
  right: 1.25rem;
  z-index: 1;
  display: block;
  /* width: clamp(2.75rem, 4.4vw, 4.15rem); */
  width: auto;
  pointer-events: none;
}

.aboutus-stand-icon img {
  display: block;
  width: 100%;
  height: auto;
}

.aboutus-stand-card h3,
.aboutus-stand-card p {
  position: relative;
  z-index: 1;
}

.aboutus-stand-card h3 {
  margin: 0 0 1rem;
  color: var(--color-primary);
}

.aboutus-stand-card p {
  margin-bottom: 0;
  color: var(--color-primary);
  font-size: var(--text-p);
  line-height: 1.55;
}

@media (min-width: 768px) {
  .aboutus-stand-visual {
    position: sticky;
    top: calc(var(--header-h, 106px) + 24px);
  }
}

@media (min-width: 1024px) {
  .aboutus-stand-visual {
    top: calc(var(--header-h, 106px) + 32px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .aboutus-stand-visual {
    position: static;
  }
}

@media (max-width: 1600px) {
  .aboutus-stand-section {
    --stand-visual-w: clamp(14rem, 28vw, 22rem);
  }
}

/* Laptop + 125%/150% zoom â€” keep desktop row, lion fully on-screen */
@media (max-width: 1440px) {
  .aboutus-stand-inner {
    gap: clamp(1.25rem, 2.2vw, 2rem);
    min-width: 0;
    max-width: 100%;
  }

  .aboutus-stand-section {
    --stand-visual-w: clamp(13.5rem, 34%, 20rem);
    --stand-num-up: clamp(3.25rem, 5vw, 5rem);
  }

  .aboutus-stand-visual {
    flex: 0 1 auto;
    min-width: 12.5rem;
    max-width: 38%;
    height: clamp(20rem, 50vw, 32rem);
    clip-path: inset(0 -18% 0 0 round 20px 20px 0 0);
    -webkit-clip-path: inset(0 -18% 0 0 round 20px 20px 0 0);
  }

  .aboutus-stand-visual-img {
    width: 120%;
    left: 0;
    object-position: center center;
  }

  .aboutus-stand-card {
    width: 78%;
    max-width: none;
  }

  .aboutus-stand-card:nth-child(2) {
    width: 86%;
    max-width: none;
  }
}

@media (max-width: 1100px) {
  .aboutus-stand-section {
    --stand-visual-w: clamp(12rem, 36%, 17rem);
  }

  .aboutus-stand-visual {
    max-width: 40%;
    height: clamp(18rem, 48vw, 26rem);
  }
}

/* Phone â€” title, lion, cards stacked */
@media (max-width: 767px) {
  .aboutus-stand-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "title"
      "visual"
      "cards";
    gap: 1.15rem;
    overflow: hidden;
  }

  .aboutus-stand-content {
    display: contents;
  }

  .aboutus-stand-section {
    --stand-num-up: 7.75rem;
  }

  .aboutus-stand-heading {
    grid-area: title;
    margin-bottom: 0;
  }

  .aboutus-stand-visual {
    grid-area: visual;
    --stand-visual-w: 90%;
    flex: none;
    max-width: 100%;
    height: clamp(30rem, 70vw, 26rem);
    position: relative;
    top: auto;
    margin-inline: auto;
    margin-left: 0;
  }

  .aboutus-stand-cards {
    grid-area: cards;
    gap: calc(var(--stand-num-up) + 0.5rem);
    padding-top: var(--stand-num-up);
  }

  .aboutus-stand-card,
  .aboutus-stand-card:nth-child(2) {
    width: 100%;
    max-width: none;
    align-self: stretch;
    margin: 0;
    min-height: 0;
    padding: 3.35rem 1.35rem 1.35rem 1.35rem;
  }

  .aboutus-stand-icon {
    top: -2rem;
    right: -0.5rem;
  }

  .aboutus-stand-icon img {
    max-width: 65px;
  }
}

/* Tablet â€” stacked like phone, but sized for iPad (no oversized empty cards) */
@media (min-width: 768px) and (max-width: 1023px) {
  .aboutus-stand-section {
    --stand-num-up: 4.75rem;
    --stand-visual-w: min(72%, 26rem);
    padding-top: clamp(1.5rem, 3vw, 2.5rem);
  }

  .aboutus-stand-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "title"
      "visual"
      "cards";
    gap: 1.5rem;
    overflow: visible;
    max-width: 40rem;
    margin-inline: auto;
  }

  .aboutus-stand-content {
    display: contents;
  }

  .aboutus-stand-heading {
    grid-area: title;
    margin-bottom: 0.25rem;
  }

  .aboutus-stand-visual {
    grid-area: visual;
    flex: none;
    width: var(--stand-visual-w);
    max-width: 100%;
    height: clamp(22rem, 72vw, 42rem);
    margin-inline: auto;
    position: relative;
    top: auto;
    clip-path: inset(0 -12% 0 0 round 20px 20px 0 0);
    -webkit-clip-path: inset(0 -12% 0 0 round 20px 20px 0 0);
  }

  .aboutus-stand-visual-img {
    width: 118%;
    object-position: center center;
  }

  .aboutus-stand-cards {
    grid-area: cards;
    gap: calc(var(--stand-num-up) + 1.25rem);
    padding-top: var(--stand-num-up);
  }

  .aboutus-stand-card,
  .aboutus-stand-card:nth-child(2) {
    width: 100%;
    max-width: none;
    align-self: stretch;
    margin: 0;
    min-height: 0;
    height: auto;
    padding: 2.75rem 1.75rem 1.5rem 1.75rem;
  }

  .aboutus-stand-icon {
    top: -2.25rem;
    right: 0.75rem;
    width: auto;
  }

  .aboutus-stand-icon img {
    max-width: 72px;
  }

  .aboutus-stand-card h3 {
    margin-bottom: 0.75rem;
  }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   ABOUT US â€” CTA parallax (no people cutout)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.bg-parallax-section .outer-bg-wrap {
  position: relative;
  overflow: visible;
}

.bg-parallax-section .bg-parallax-stage {
  position: relative;
  overflow: visible;
  padding-top: 0;
  padding-right: 0;
}

.bg-parallax-section .bg-parallax-frame {
  /* Travel budget for img y-parallax — must stay ≤ half of (img height - 100%) */
  --cta-parallax-bleed: clamp(32px, 4vh, 64px);
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 660px;
  padding-block: clamp(2.5rem, 5vw, 4.5rem);
  padding-inline: clamp(1.25rem, 3vw, 2.5rem);
  box-sizing: border-box;
  overflow: hidden;
}

.bg-parallax-section .parallax-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  border-radius: inherit;
  pointer-events: none;
}

.bg-parallax-section .parallax-wrap .parallax-img {
  position: absolute;
  left: 0;
  width: 100%;
  /* Extra height so y-parallax never reveals empty gaps */
  top: calc(-1 * var(--cta-parallax-bleed));
  height: calc(100% + (2 * var(--cta-parallax-bleed)));
  max-width: none;
  object-fit: cover;
  object-position: center center;
  will-change: transform;
  backface-visibility: hidden;
}

.bg-parallax-section .overlay-scrim {
  z-index: 1;
  border-radius: inherit;
}

.bg-parallax-section .bg-parallax-content {
  position: relative;
  z-index: 2;
  max-width: min(42rem, 72%);
  pointer-events: none;
}

.bg-parallax-section .bg-parallax-content .section-title-outer {
  margin-bottom: 0;
  max-width: none;
}

.bg-parallax-section .bg-parallax-content .section-title-sm {
  max-width: none;
  margin: 0;
}

.bg-parallax-section .bg-parallax-content .title-section {
  margin-bottom: 0;
}

.bg-parallax-section .outer-btn-wrap {
  z-index: 3;
}

.bg-parallax-cta-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 5px;
  max-width: min(100%, 72%);
  pointer-events: auto;
}

.bg-parallax-cta-row .outer-btn-wrap {
  flex: 0 1 auto;
  min-width: 0;
}

.bg-parallax-cta-row .outer-btn-wrap + .outer-btn-wrap {
  border-left: 1px solid rgba(35, 31, 32, 0.12);
}

.bg-parallax-cta-row .site-link {
  white-space: nowrap;
}

@media (max-width: 991px) {
  .bg-parallax-section .outer-bg-wrap {
    overflow: hidden;
    margin-right: 20px;
  }

  .bg-parallax-section .bg-parallax-stage {
    padding-top: 0;
  }

  .bg-parallax-section .bg-parallax-frame {
    min-height: 400px;
    justify-content: center;
    padding-block: clamp(1.75rem, 3.5vw, 2.5rem);
    padding-inline: clamp(1rem, 2.5vw, 1.75rem);
    padding-bottom: 5rem;
  }

  .bg-parallax-section .bg-parallax-content {
    max-width: min(28rem, 80%);
  }

  .bg-parallax-cta-row {
    max-width: 80%;
  }

  .bg-parallax-section .outer-btn-wrap.outer-btn-spacing {
    padding: 0.85rem 1rem;
  }

  .bg-parallax-section .outer-btn-wrap .site-link {
    font-size: 0.875rem;
    gap: 6px;
  }
}

@media (max-width: 767px) {
  .bg-parallax-section .outer-bg-wrap {
    overflow: hidden;
    margin-right: 20px;
  }

  .bg-parallax-section .bg-parallax-stage {
    padding-top: 0;
    overflow: visible;
  }

  .bg-parallax-section .bg-parallax-frame {
    min-height: 340px;
    justify-content: center;
    padding-top: 1.35rem;
    padding-bottom: 5.75rem;
    padding-inline: 1rem;
  }

  .bg-parallax-section .overlay-scrim {
    background: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.92) -5%,
      rgba(0, 0, 0, 0.78) 30%,
      rgba(0, 0, 0, 0.4) 52%,
      rgba(0, 0, 0, 0) 78%
    );
  }

  .bg-parallax-section .bg-parallax-content {
    max-width: 88%;
  }

  .bg-parallax-cta-row {
    flex-direction: column;
    align-items: stretch;
    max-width: 88%;
  }

  .bg-parallax-cta-row .outer-btn-wrap {
    width: 100%;
  }

  .bg-parallax-cta-row .outer-btn-wrap + .outer-btn-wrap {
    border-left: 0;
    border-top: 1px solid rgba(35, 31, 32, 0.12);
  }

  .bg-parallax-section .outer-btn-wrap.outer-btn-spacing {
    padding: 0.8rem 0.9rem;
  }

  .bg-parallax-section .outer-btn-wrap .site-link {
    font-size: 0.8125rem;
    gap: 6px;
    padding-bottom: 8px;
    white-space: nowrap;
  }
  .logo-lion-vector-outer {right: -25vw;}
}

@media (max-width: 393px) {
  .bg-parallax-section .bg-parallax-stage {
    padding-top: 0;
  }

  .bg-parallax-section .bg-parallax-frame {
    min-height: 320px;
    padding-bottom: 5.5rem;
  }

  .bg-parallax-section .bg-parallax-content {
    max-width: 92%;
  }

  .bg-parallax-cta-row {
    max-width: 92%;
  }

  .bg-parallax-section .outer-btn-wrap.outer-btn-spacing {
    padding: 0.7rem 0.8rem;
  }

  .bg-parallax-section .outer-btn-wrap .site-link {
    font-size: 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bg-parallax-section .parallax-wrap {
    inset: 0;
    height: 100%;
    will-change: auto;
    transform: none !important;
  }

  .bg-parallax-section .parallax-img,
  .bg-parallax-section .parallax-wrap .parallax-img {
    top: 0;
    height: 100%;
    will-change: auto;
    transform: none !important;
  }
}

@media (min-width: 1200px) and (max-width: 1366px) {
  .bg-parallax-section .bg-parallax-frame { min-height: 520px; }
  .bg-parallax-section .bg-parallax-content { max-width: min(38rem, 70%); }
  .bg-parallax-cta-row { max-width: 70%; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   ABOUT US â€” Built on trust (TS timeline)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.aboutus-projects-section {
  position: relative;
  overflow: visible;
}

.aboutus-projects-section .bgimage-outer-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.aboutus-projects-section .bgimage-outer-wrap .bg-image {
  z-index: 0;
}

.aboutus-projects-section .aboutus-projects-band {
  position: relative;
  z-index: 1;
}

.aboutus-projects-section .section-sticky-head {
  position: static;
  z-index: 30;
  margin-bottom: 0.25rem;
}

.aboutus-projects-section .section-sticky-title {
  display: inline-block;
  max-width: 100%;
  background-color: transparent;
}
.section-sticky-head .section-title-nonintro {
    max-width: 70%;
}

.aboutus-rail-line {
  background-color: #D3D3D3;
}

.aboutus-projects-section .text-ghost,
.aboutus-stand-section .text-ghost,
#pageContainerLegacy .text-ghost {
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.25) 6.31%, rgba(255, 255, 255, 0.10) 89.81%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.aboutus-projects-section .text-ghost {
  z-index: 100;
}


.aboutus-projects-grid {
  max-width: 85%;
  margin-left: auto;
}

.aboutus-projects-section article > img {
  height: auto;
  object-fit: contain;
  object-position: center center;
}

.inner-article-img {position: relative;}
.img-caption-txt {position: absolute; bottom: 5px; right: 5px; color: #fff; padding: 6px 10px; border-radius:25px;}
.img-caption-txt p {margin-bottom: 0;font-size: 0.75rem; color: #fff;position: relative; z-index:1; }
.img-caption-txt::after {content: ''; background-color: rgba(0, 0, 0, 0.25); width: 100%; height: 100%; position: absolute; bottom: 0; left: 0; border-radius:25px;}





.inner-stand {
    position: relative;
}






@media (min-width: 1024px) {
  .aboutus-projects-section .inner-content-box {
    position: absolute;
    inset: 0;
    left: 8%;
    bottom: -10vw;
  }

  .aboutus-projects-section .inner-content-box > span,
  .aboutus-projects-section .inner-content-box > div {
    left: 0;
  }
}

@media (max-width: 1023px) {
  .aboutus-projects-section .inner-content-box {
    background: #fff;
    border-radius: 0.375rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    padding: 1.5rem;
  }

  .aboutus-projects-section .inner-content-box > [data-count] {
    line-height: 1;
    margin-bottom: 0.75rem;
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.10) 6.31%, rgba(0, 0, 0, 0.10) 89.81%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
  }

  .aboutus-projects-section .inner-content-box > div {
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
  }
  .img-caption-txt {font-size: 0.625rem;}
  .section-sticky-head .section-title-nonintro {
    max-width: 100%;
}
}

/* Sticky title: desktop only â€” not on phone/tablet */
@media (min-width: 1024px) {
  .aboutus-projects-section .section-sticky-head {
    position: sticky;
    top: calc(var(--header-h, 106px) + 32px);
    z-index: 0;
    padding-bottom: 0.75rem;
    background-size: cover;
    background-position: center top;
  }
}

@media (prefers-reduced-motion: reduce) {
  .aboutus-projects-section .section-sticky-head {
    position: static;
  }
}

@media (max-width: 1024px) {
  .aboutus-projects-grid {
    max-width: 100%;
  }
}
@media (max-width: 1600px) {
  .bg-parallax-section .bg-parallax-frame {min-height: 515px;--cta-parallax-bleed: clamp(20px, 3vh, 64px);}
}


@media (min-width: 1367px) and (max-width: 1440px) {
  #aboutus-values .aboutus-values-title {left: clamp(1rem, 6vw, 20rem)!important;top: clamp(1.25rem, 10vh, 8.5rem) !important;}
  .aboutus-leadership-quote .quote-vector2 {bottom: clamp(-9.375rem, -7vw, -5.5rem);}
  .aboutus-leadership-heading {margin-top: -25px;}
}

@media (min-width: 1200px) and (max-width: 1366px) {
  .aboutus-projects-section .section-title-outer .section-sticky-title{max-width: 30vw;}
}


/* 125% zoom */
@media screen and (min-width: 1025px) and (-webkit-min-device-pixel-ratio:1.25),screen and (min-width:1025px) and (min-resolution:120dpi) {

}


/* 150% zoom */
@media screen and (min-width: 1025px) and (-webkit-min-device-pixel-ratio:1.5),screen and (min-width:1025px) and (min-resolution:144dpi) {
.aboutus-stand-card {width: 50%;}
.aboutus-stand-card:nth-child(2) {width: 65%;}
   
}

