@font-face {
  font-family: "Almarai";
  src: url("../assets/fonts/Almarai-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Almarai";
  src: url("../assets/fonts/Almarai-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "AlmaraiBold";
  src: url("../assets/fonts/Almarai-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Almarai";
  src: url("../assets/fonts/Almarai-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-family-primary);
}

:root {
  --main-electric-purple: #6b47f5;
  --main-lavender: #9075f7;
  --secondary-deep-purple: #34295e;
  --secondary-lavender-signal: #d6d1ed;
  --secondary-clear-white: #f7f6f2;

  /* Font Families */
  --font-family-primary: "Almarai", sans-serif;
  --font-family-bold: "AlmaraiBold", "Almarai", sans-serif;
}

.container {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

h1 {
  font-family: var(--font-family-primary);
  color: var(--main-electric-purple);
}

a {
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family-primary);
  background-color: var(--secondary-clear-white);
}

body.is-loading {
  overflow: hidden;
}

body.no-scroll {
  overflow: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

section[id] {
  scroll-margin-top: 6rem;
}

.break-words {
  word-break: break-all;
}

/* Page Loader */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background: rgba(36, 24, 75, 0.96);
  backdrop-filter: blur(10px);
  transition:
    opacity 260ms ease,
    visibility 260ms ease;
}

.page-loader img {
  width: 10rem;
  height: 7rem;
  /* animation: loader-spin 1s linear infinite; */
  transform-origin: center;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@keyframes loader-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Site Header / Navbar */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1rem 0 0;
  pointer-events: none;
}

.site-header__shell {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
  pointer-events: auto;
  position: relative;
}

.site-header__bar {
  height: 4.5rem;
  padding: 0 1rem 0 1.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 35px rgba(36, 24, 75, 0.14);
  backdrop-filter: blur(10px);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  transition:
    width 220ms ease,
    max-width 220ms ease,
    border-radius 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  justify-self: start;
}

.site-header__brand img {
  display: block;
  width: auto;
  height: 1.85rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-self: center;
  justify-content: center;
  min-width: 0;
}

.site-nav a {
  color: var(--secondary-deep-purple);
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1;
  font-family: var(--font-family-bold);
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--main-electric-purple);
}

.site-nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0 1.35rem;
  border-radius: 999px;
  background: var(--main-electric-purple);
  color: var(--secondary-clear-white) !important;
  justify-self: end;
  margin-left: auto;
  text-decoration: none;
}

.site-header__toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  border: 0;
  border-radius: 999px;
  background: var(--main-electric-purple);
  color: var(--secondary-clear-white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.2rem;
  cursor: pointer;
  flex: 0 0 auto;
}

.site-header__toggle span:not(.sr-only) {
  width: 1rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.site-mobile-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 0;
  right: 0;
  padding: 0.9rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 40px rgba(36, 24, 75, 0.18);
}

.site-mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.site-mobile-menu__nav a {
  padding: 0.9rem 1rem;
  border-radius: 0.85rem;
  text-decoration: none;
  color: var(--secondary-deep-purple);
  font-family: var(--font-family-bold);
  font-size: 1rem;
}

.site-mobile-menu__nav a:last-child {
  color: var(--main-electric-purple);
}

.site-header.is-scrolled {
  padding-top: 0;
}

.site-header.is-scrolled .site-header__shell {
  width: 100%;
  max-width: none;
  margin: 0;
}

.site-header.is-scrolled .site-header__bar {
  width: 100%;
  border-radius: 0;
  box-shadow: 0 10px 28px rgba(36, 24, 75, 0.14);
}

.site-header.is-scrolled .site-nav__cta {
  border-radius: 0.5rem;
}

.site-header.is-menu-open .site-mobile-menu {
  display: block;
}

.svg-filter-white {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%)
    hue-rotate(93deg) brightness(103%) contrast(103%);
}

/* Hero Section */
#hero {
  position: relative;
  overflow: hidden;
  height: 100svh;
  display: flex;
  align-items: center;
  background-color: #24184b;
  background-image:
    url("../assets/images/hero_section_vector.svg"),
    url("../assets/images/hero_section.webp");
  background-position:
    calc(100% + 14vw) center,
    center center;
  background-size:
    auto 100%,
    cover;
  background-repeat: no-repeat, no-repeat;
}

#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

#hero::before {
  background: linear-gradient(
    90deg,
    rgba(36, 24, 75, 0.12) 0%,
    rgba(36, 24, 75, 0.18) 38%,
    rgba(36, 24, 75, 0.08) 100%
  );
}

#hero .hero__container {
  position: relative;
  z-index: 1;
  width: 100%;
}

#hero .hero__content {
  max-width: 39rem;
  padding: clamp(5rem, 10vw, 8rem) 0 clamp(5rem, 10vw, 8rem);
  color: white;
}

#hero .hero__content h1 {
  font-family: var(--font-family-primary);
  color: white;
  font-size: clamp(3rem, 4.4vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  font-weight: 400;
  margin-bottom: 1rem;
}

#hero .hero__content h2 {
  font-family: var(--font-family-primary);
  color: white;
  font-size: clamp(1.9rem, 2.5vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 400;
  margin-bottom: 1.25rem;
}

#hero .hero__content p {
  max-width: 33rem;
  color: white;
  font-size: clamp(1rem, 1.12vw, 1.15rem);
  line-height: 1.6;
}

/* Our Four Pillars Section */
#our-four-pillars {
  background: var(--secondary-deep-purple);
  padding: 8rem 0;
}

#our-four-pillars .pillars-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

#our-four-pillars .pillars-content h2 {
  color: var(--secondary-clear-white);
  font-family: var(--font-family-bold);
  font-size: 3rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-align: center;
}

#our-four-pillars .pillars-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

#our-four-pillars .pillars-card {
  min-height: 276px;
  border: 1px solid var(--main-lavender);
  border-radius: 0.75rem;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  text-align: center;
  color: var(--secondary-clear-white);
}

#our-four-pillars .pillars-card__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#our-four-pillars .pillars-card__icon img {
  display: block;
  object-fit: contain;
  width: 100%;
}

#our-four-pillars .pillars-card h3 {
  font-family: var(--font-family-bold);
  font-size: 1.25rem;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--secondary-clear-white);
}

#our-four-pillars .pillars-button {
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 64px;
  border-radius: 0.5rem;
  background: var(--main-electric-purple);
  color: var(--secondary-clear-white);
  font-family: var(--font-family-bold);
  font-size: 1.25rem;
  text-decoration: none;
}

/* Core Business Lines Section */
#core-business-lines {
  background-color: #f7f6f2;
  padding: 8rem 0;
}

#core-business-lines .core-business-lines__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

#core-business-lines .core-business-lines__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

#core-business-lines .core-business-lines__header h2 {
  font-family: var(--font-family-bold);
  font-size: 3rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--secondary-deep-purple);
}

#core-business-lines .core-business-lines__header h2 span {
  color: var(--main-electric-purple);
}

#core-business-lines .core-business-lines__header p {
  font-size: 1.25rem;
  line-height: 1.45;
  color: var(--secondary-deep-purple);
}

#core-business-lines .core-business-lines__summary {
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--secondary-deep-purple);
  text-align: center;
}

#core-business-lines .core-business-lines__summary span {
  font-family: var(--font-family-bold);
  font-weight: 700;
}

#core-business-lines .core-business-lines__grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

#core-business-lines .core-business-lines__card {
  background: white;
  border-radius: 0.5rem;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-height: 270px;
}

#core-business-lines .core-business-lines__card-icon {
  width: 96px;
  height: 96px;
  border-radius: 0.5rem;
  background: var(--secondary-clear-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  overflow: hidden;
}

#core-business-lines .core-business-lines__card-icon img {
  display: block;
  object-fit: contain;
}

#core-business-lines .core-business-lines__card-body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--secondary-deep-purple);
}

#core-business-lines .core-business-lines__card-body h4 {
  font-size: 1.5rem;
  line-height: 1.75;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--secondary-deep-purple);
}

#core-business-lines .core-business-lines__card-body p {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--secondary-deep-purple);
}

#core-business-lines .core-business-lines__chips--two-row {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

#core-business-lines .core-business-lines__chips {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: fit-content;
}

#core-business-lines
  .core-business-lines__chips
  .core-business-lines__chips-item {
  display: inline-flex;
  align-items: center;
  min-height: 1.7rem;
  width: fit-content;
  padding: 0.25rem 0.5rem;
  border: 1px solid var(--secondary-lavender-signal);
  border-radius: 999px;
  color: var(--secondary-deep-purple);
  font-size: 0.75rem;
  line-height: 1;
  white-space: nowrap;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 0.25rem;
}

#core-business-lines
  .core-business-lines__chips
  .core-business-lines__chips-icon {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#core-business-lines .core-business-lines__button {
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 64px;
  border-radius: 0.5rem;
  background: var(--main-electric-purple);
  color: var(--secondary-clear-white);
  font-family: var(--font-family-bold);
  font-size: 1.25rem;
  text-decoration: none;
}

/* Why Us Section */
#why-us {
  background: var(--secondary-deep-purple);
  padding: 8rem 0rem;
}

#why-us .why-us__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
}

#why-us .why-us__header {
  max-width: 44rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#why-us .why-us__header h2 {
  font-weight: 700;
  font-size: 3rem;
  line-height: 3.5rem;
  letter-spacing: -0.03em;
  color: white;
}

#why-us .why-us__header p {
  font-size: 1.25rem;
  line-height: 1.5rem;
  color: white;
  letter-spacing: 0;
}

#why-us .why-us__group {
  width: 100%;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 1.5rem;
  align-items: center;
}

#why-us .why-us__group-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-align: center;
  min-height: 100%;
}

#why-us .why-us__group-label img {
  display: block;
  width: 64px;
  height: 64px;
  object-fit: contain;
}

#why-us .why-us__group-label h3 {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.75rem;
  color: white;
}

#why-us .why-us__group-label h3 span {
  display: block;
  margin-top: 0.75rem;
}

#why-us .why-us__group-label .why-us__logo {
  width: auto;
  height: auto;
  display: inline-block;
  margin: 0 auto;
}

#why-us .why-us__group-label--impact {
  gap: 0.8rem;
}

#why-us .why-us__group-label--impact h3 {
  font-size: 1.5rem;
}

#why-us .why-us__group-label--impact img {
  width: 64px;
  height: 64px;
}

#why-us .why-us__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

#why-us .why-us__card {
  min-height: 205px;
  border: 1px solid var(--main-lavender);
  border-radius: 0.75rem;
  padding: 5.474rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.5rem;
  color: white;
}

#why-us .why-us__card img {
  display: block;
  width: 64px;
  height: 64px;
  object-fit: contain;
}

#why-us .why-us__card h4 {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.75rem;
  letter-spacing: -2%;
  color: white;
}

#why-us .why-us__card p {
  font-size: 0.9rem;
  line-height: 1.45;
  color: white;
}

#why-us .why-us__card--impact {
  min-height: 347.59px;
  padding: 1.25rem;
}

#why-us .why-us__divider {
  width: 100%;
  height: 1px;
  background: rgba(214, 209, 237, 0.14);
}

#why-us .why-us__button {
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 64px;
  border-radius: 0.5rem;
  background: var(--main-electric-purple);
  color: var(--secondary-clear-white);
  font-family: var(--font-family-bold);
  font-size: 1.25rem;
  text-decoration: none;
}

/* Business Ecosystem Section */
#business-ecosystem {
  background: var(--secondary-clear-white);
  padding: 8rem 0;
}

#business-ecosystem .business-ecosystem__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

#business-ecosystem .business-ecosystem__header {
  max-width: 50rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

#business-ecosystem .business-ecosystem__header h2 {
  font-family: var(--font-family-bold);
  font-size: 3rem;
  line-height: 3.5rem;
  letter-spacing: -0.03em;
  color: var(--secondary-deep-purple);
}

#business-ecosystem .business-ecosystem__header h2 span {
  display: block;
}

#business-ecosystem .business-ecosystem__header p {
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--secondary-deep-purple);
}

#business-ecosystem .business-ecosystem__section-title {
  width: 100%;
  text-align: center;
  font-family: var(--font-family-bold);
  font-size: 1.5rem;
  line-height: 1.2;
  color: var(--secondary-deep-purple);
  margin-top: 0.75rem;
}

#business-ecosystem .business-ecosystem__section-title--lined {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

#business-ecosystem .business-ecosystem__section-title--lined::before,
#business-ecosystem .business-ecosystem__section-title--lined::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: rgba(52, 41, 94, 0.2);
}

#business-ecosystem .business-ecosystem__section-title--lined::before {
  margin-right: 0.25rem;
}

#business-ecosystem .business-ecosystem__section-title--lined::after {
  margin-left: 0.25rem;
}

#business-ecosystem .business-ecosystem__client-card {
  width: 100%;
  background: white;
  border-radius: 0.5rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

#business-ecosystem .business-ecosystem__logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

#business-ecosystem .business-ecosystem__logo img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

#business-ecosystem .business-ecosystem__logo--tawuniya img {
  max-width: 160px;
}

#business-ecosystem .business-ecosystem__card-copy h3 {
  font-family: var(--font-family-bold);
  font-size: 1.5rem;
  line-height: 1.2;
  color: var(--secondary-deep-purple);
  margin-bottom: 0.5rem;
}

#business-ecosystem .business-ecosystem__card-copy p {
  font-size: 1rem;
  line-height: 1.45;
  color: var(--secondary-deep-purple);
}

#business-ecosystem .business-ecosystem__group-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

#business-ecosystem .business-ecosystem__mini-card {
  background: white;
  border-radius: 0.25rem;
  padding: 1.5rem;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 2.75rem;
}

#business-ecosystem .business-ecosystem__mini-logo-container {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#business-ecosystem .business-ecosystem__logo-container {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: start;
}

#business-ecosystem .business-ecosystem__mini-card img {
  display: block;
  object-fit: contain;
}

#business-ecosystem .business-ecosystem__mini-card-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: auto;
}

#business-ecosystem .business-ecosystem__mini-card h3 {
  font-family: var(--font-family-bold);
  font-size: 1.5rem;
  line-height: 1.2;
  color: var(--secondary-deep-purple);
}

#business-ecosystem .business-ecosystem__mini-card p {
  font-size: 1rem;
  line-height: 1.35;
  color: var(--secondary-deep-purple);
}

#business-ecosystem .business-ecosystem__map-container {
  width: 100%;
  padding: 0.25rem;
  background-color: white;
  border-radius: 0.5rem;
  height: 600px;
}

#business-ecosystem .business-ecosystem__map-card {
  width: 100%;
  height: 100%;
  background: url("../assets/images/map.png") no-repeat center center;
  background-size: cover;
  border-radius: 0.5rem;
  padding: 1rem;
  display: flex;
  align-items: start;
  justify-content: end;
  flex-direction: column;
  gap: 1rem;
}

#business-ecosystem .business-ecosystem__map-copy {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

#business-ecosystem .business-ecosystem__map-copy h3 {
  font-family: var(--font-family-bold);
  font-size: 1.5rem;
  line-height: 1.2;
  color: var(--secondary-deep-purple);
}

#business-ecosystem .business-ecosystem__map-copy p {
  font-size: 0.85rem;
  line-height: 1.45;
  color: var(--secondary-deep-purple);
}

#business-ecosystem .business-ecosystem__partners-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

#business-ecosystem .business-ecosystem__partner-card {
  background: white;
  border-radius: 0.5rem;
  /* min-height: 200px; */
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 3.5rem;
}

#business-ecosystem .business-ecosystem__partner-card--wide {
  grid-column: 1 / -1;
}

#business-ecosystem .business-ecosystem__partner-card img {
  display: block;
  max-width: 140px;
  max-height: 56px;
  object-fit: contain;
}

#business-ecosystem .business-ecosystem__partner-card p {
  font-size: 0.82rem;
  line-height: 1.35;
  color: var(--secondary-deep-purple);
}

/* Leadership Team Section */
#leadership-team {
  background: var(--secondary-deep-purple);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

#leadership-team .leadership-team__background-overlay {
  position: absolute;
  left: 0;
  right: 0;
}

#leadership-team .leadership-team__background-overlay img {
  width: 100%;
}

#leadership-team .leadership-team__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
}

#leadership-team .leadership-team__header {
  position: relative;
  z-index: 1;
  max-width: 52rem;
  text-align: center;
  color: var(--secondary-clear-white);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

#leadership-team .leadership-team__header h2 {
  font-family: var(--font-family-bold);
  font-size: 3rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

#leadership-team .leadership-team__header p {
  font-size: 1.25rem;
  line-height: 1.5rem;
  color: white;
  max-width: 800px;
  letter-spacing: 0;
}

#leadership-team .leadership-team__featured,
#leadership-team .leadership-team__grid {
  position: relative;
  z-index: 1;
  width: 100%;
}

#leadership-team .leadership-team__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

#leadership-team .leadership-team__card {
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
  background: #fff;
  height: 440px;
}

#leadership-team .leadership-team__card--featured .leadership-team__image {
  object-fit: contain;
}

#leadership-team .leadership-team__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

#leadership-team .leadership-team__overlay {
  position: absolute;
  left: 0.35rem;
  right: 0.35rem;
  bottom: 0.35rem;
  background: rgba(26, 26, 26, 0.62);
  color: var(--secondary-clear-white);
  border-radius: 0.35rem;
  padding: 0.65rem 0.6rem 0.45rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

#leadership-team .leadership-team__overlay h3 {
  font-family: var(--font-family-bold);
  font-size: 1.05rem;
  line-height: 1.2;
}

#leadership-team .leadership-team__overlay p {
  font-size: 0.9rem;
  line-height: 1.2;
  color: rgba(247, 246, 242, 0.92);
}

#leadership-team .leadership-team__bio {
  margin-top: 0.35rem;
  border: 0;
  border-radius: 0.25rem;
  min-height: 1.35rem;
  width: 100%;
  text-align: left;
  background: rgba(247, 246, 242, 0.25);
  color: var(--secondary-clear-white);
  padding: 0.15rem 0.35rem;
  font-size: 0.72rem;
  line-height: 1.1;
  cursor: pointer;
}

/* Contact Section */
#contact-muroon {
  background-color: var(--secondary-clear-white);
  padding: 8rem 0px;
  text-align: center;
}

#contact-muroon .contact-content {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
}

#contact-muroon .contact-content h2 {
  font-size: 3rem;
  color: var(--secondary-deep-purple);
  font-family: var(--font-family-bold);
  font-weight: 700;
  letter-spacing: -2%;
}

#contact-muroon .contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.875rem;
  width: 100%;
}

#contact-muroon .contact-info__details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  width: 100%;
}

#contact-muroon .contact-info__details .contact-info__details-item {
  grid-column: span 2;
  background-color: white;
  padding: 2rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 1.5rem;
}

#contact-muroon .contact-info__details .contact-info__details-item--email {
  grid-column: span 1;
}

#contact-muroon
  .contact-info__details
  .contact-info__details-item
  .contact-info__details-item-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#contact-muroon .contact-info__details .contact-info__details-item-text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: start;
  word-break: break-all;
}

#contact-muroon .contact-info__details .contact-info__details-item-title {
  font-size: 1rem;
  color: var(--secondary-deep-purple);
  line-height: 1.5rem;
  font-weight: 400;
  letter-spacing: -2%;
}

#contact-muroon .contact-info__details .contact-info__details-item-description {
  font-size: 1.25rem;
  color: var(--secondary-deep-purple);
  line-height: 1.25rem;
  font-weight: 700;
  letter-spacing: 0;
}

#contact-muroon .contact-info .contact-info__title {
  font-size: 1.5rem;
  color: var(--secondary-deep-purple);
  font-family: var(--font-family-bold);
  font-weight: 700;
  letter-spacing: -2%;
}

/* Footer Section */
#footer {
  background-color: var(--secondary-deep-purple);
  color: var(--secondary-clear-white);
  padding: 2.5rem 0px;
  text-align: center;
}

#footer .footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#footer .footer-content .footer-text {
  color: white;
  font-size: 1.25rem;
  line-height: 1.5rem;
  font-weight: 400;
}

@media (max-width: 1024px) {
  .site-header__shell {
    width: min(1200px, calc(100% - 1.5rem));
  }

  .site-nav {
    gap: 1.25rem;
  }

  .site-nav a {
    font-size: 0.9rem;
  }

  #hero {
    min-height: 100svh;
  }

  #hero .hero__content {
    max-width: 34rem;
  }

  #our-four-pillars {
    padding: 4.5rem 0 5rem;
  }

  #our-four-pillars .pillars-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #core-business-lines {
    padding: 4.5rem 0 5rem;
  }

  #core-business-lines .core-business-lines__grid {
    grid-template-columns: 1fr;
  }

  #why-us {
    padding: 4.5rem 0 5rem;
  }

  #why-us .why-us__group {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  #why-us .why-us__cards {
    grid-template-columns: 1fr;
  }

  #business-ecosystem {
    padding: 4.5rem 0 5rem;
  }

  #business-ecosystem .business-ecosystem__group-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #business-ecosystem .business-ecosystem__partners-grid {
    grid-template-columns: 1fr;
  }

  #business-ecosystem .business-ecosystem__partner-card--wide {
    grid-column: auto;
  }

  #leadership-team {
    padding: 4.5rem 0 5rem;
  }

  #leadership-team .leadership-team__content::before,
  #leadership-team .leadership-team__content::after {
    display: none;
  }

  #leadership-team .leadership-team__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .icon-40 {
    width: 40px !important;
    height: 40px !important;
  }
  .site-header {
    padding: 0.75rem 0 0;
  }

  .site-header__shell {
    width: calc(100% - 1rem);
  }

  .site-header__bar {
    height: 3.75rem;
    padding: 0 0.75rem 0 1.1rem;
    justify-content: space-between;
  }

  .site-header__brand img {
    height: 1.6rem;
  }

  .site-nav {
    display: none;
  }

  .site-nav__cta {
    display: none;
  }

  .site-header__toggle {
    display: inline-flex;
    justify-self: end;
  }

  .site-header.is-scrolled .site-header__shell,
  .site-header.is-scrolled .site-header__bar {
    width: 100%;
    margin: 0;
    border-radius: 0;
  }

  .site-header.is-scrolled .site-header__toggle {
    border-radius: 0.5rem;
  }

  .site-mobile-menu {
    left: 0;
    right: 0;
    top: calc(100% + 0.6rem);
    border-radius: 1rem;
  }

  #hero {
    height: 576px;
    min-height: auto;
    align-items: flex-start;
    background-color: #24184b;
    background-image:
      url("../assets/images/hero_section_vector_sm.svg"),
      url("../assets/images/hero_section.webp");
    background-position:
      center bottom,
      center center;
    background-size: contain, cover;
    background-repeat: no-repeat, no-repeat;
  }

  #hero::before {
    background: linear-gradient(
      180deg,
      rgba(36, 24, 75, 0.08) 0%,
      rgba(36, 24, 75, 0.26) 100%
    );
  }

  #hero .hero__content {
    max-width: 100%;
    padding: 8rem 1.5rem 5rem;
  }

  #hero .hero__content h1 {
    font-family: var(--font-family-bold);
    font-size: 2rem;
    margin: 0.85rem 0;
  }

  #hero .hero__content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  #hero .hero__content p {
    max-width: 19rem;
    font-size: 1rem;
    line-height: 1.55;
  }

  #our-four-pillars {
    padding: 3rem 0 4rem;
  }

  #our-four-pillars .pillars-content {
    gap: 1.5rem;
  }

  #our-four-pillars .pillars-content h2 {
    font-size: 1.5rem;
  }

  #our-four-pillars .pillars-grid {
    grid-template-columns: 1fr;
  }

  #our-four-pillars .pillars-card {
    min-height: 110px;
    padding: 1.5rem 1.25rem;
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
    gap: 1rem;
    word-break: break-all;
  }

  #our-four-pillars .pillars-card__icon {
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
  }

  #our-four-pillars .pillars-card h3 {
    font-size: 1.25rem;
  }

  #our-four-pillars .pillars-button {
    display: flex;
  }

  #core-business-lines {
    padding: 2rem 0;
  }

  #core-business-lines .core-business-lines__content {
    gap: 1.25rem;
  }

  #core-business-lines .core-business-lines__header h2 {
    font-size: 1.5rem;
  }

  #core-business-lines .core-business-lines__header p {
    font-size: 1rem;
  }

  #core-business-lines .core-business-lines__summary {
    font-size: 1.25rem;
  }

  #core-business-lines .core-business-lines__grid {
    grid-template-columns: 1fr;
  }

  #core-business-lines .core-business-lines__card {
    min-height: auto;
    padding: 1.25rem;
    gap: 0.9rem;
  }

  #core-business-lines .core-business-lines__card-icon {
    width: 48px;
    height: 48px;
  }

  #core-business-lines .core-business-lines__card-icon img {
    width: 32px;
    height: 32px;
  }

  #core-business-lines .core-business-lines__card-body h4 {
    font-size: 1.25rem;
  }

  #core-business-lines .core-business-lines__card-body p {
    font-size: 1rem;
  }

  #core-business-lines .core-business-lines__chips span {
    font-size: 0.68rem;
  }

  #core-business-lines .core-business-lines__button {
    display: flex;
  }

  #why-us {
    padding: 2rem 0;
  }

  #why-us .why-us__content {
    gap: 1.25rem;
  }

  #why-us .why-us__header h2 {
    font-size: 1.5rem;
  }

  #why-us .why-us__header p {
    font-size: 1rem;
  }

  #why-us .why-us__group {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  #why-us .why-us__group .why-us__logo {
    height: 24px;
  }

  #why-us .why-us__group-label {
    min-height: auto;
    gap: 0.6rem;
  }

  #why-us .why-us__group-label h3 {
    font-size: 1rem;
  }

  #why-us .why-us__group-label h3 span {
    font-size: 1.35rem;
  }

  #why-us .why-us__cards {
    grid-template-columns: 1fr;
  }

  #why-us .why-us__card {
    min-height: auto;
    padding: 1.4rem 1.25rem;
  }

  #why-us .why-us__card--impact {
    min-height: auto;
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
    gap: 1rem;
  }

  #why-us .why-us__card h4 {
    font-size: 1.25rem;
  }

  #why-us .why-us__card p {
    font-size: 0.9rem;
  }

  #why-us .why-us__divider {
    margin: 0.5rem 0;
  }

  #why-us .why-us__button {
    display: flex;
  }

  #business-ecosystem {
    padding: 2rem 0;
  }

  #business-ecosystem .business-ecosystem__content {
    gap: 1rem;
  }

  #business-ecosystem .business-ecosystem__header h2 {
    font-size: 1.5rem;
  }

  #business-ecosystem .business-ecosystem__header p {
    font-size: 1rem;
  }

  #business-ecosystem .business-ecosystem__section-title {
    font-size: 1.25rem;
    margin-top: 0.5rem;
  }

  #business-ecosystem .business-ecosystem__client-card {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 0.9rem;
  }

  #business-ecosystem .business-ecosystem__logo {
    justify-content: flex-start;
  }

  #business-ecosystem .business-ecosystem__logo--tawuniya img {
    max-width: 140px;
  }

  #business-ecosystem .business-ecosystem__card-copy h3 {
    font-size: 1.25rem;
  }

  #business-ecosystem .business-ecosystem__group-grid {
    grid-template-columns: 1fr;
  }

  #business-ecosystem .business-ecosystem__mini-card {
    min-height: auto;
  }

  #business-ecosystem .business-ecosystem__partners-grid {
    grid-template-columns: 1fr;
  }

  #business-ecosystem .business-ecosystem__partner-card {
    gap: 1rem;
    min-height: auto;
  }

  #business-ecosystem .business-ecosystem__partner-card p {
    font-size: 1rem;
  }

  #business-ecosystem .business-ecosystem__map-card {
    background-size: contain;
  }

  #leadership-team {
    padding: 2rem 0;
  }

  #leadership-team .leadership-team__header h2 {
    font-size: 1.5rem;
  }

  #leadership-team .leadership-team__header p {
    font-size: 1rem;
  }

  #leadership-team .leadership-team__card,
  #leadership-team .leadership-team__card--featured {
    min-height: 300px;
  }

  #leadership-team .leadership-team__overlay h3 {
    font-size: 1rem;
  }

  #leadership-team .leadership-team__overlay p {
    font-size: 0.82rem;
  }

  #contact-muroon {
    padding: 2rem 0;
  }

  #contact-muroon .contact-content h2 {
    font-size: 1.5rem;
  }

  #contact-muroon .contact-content .contact-info__title {
    font-size: 1.25rem;
  }

  #contact-muroon .contact-info__details {
    grid-template-columns: 1fr;
  }

  #contact-muroon .contact-info__details .contact-info__details-item,
  #contact-muroon .contact-info__details .contact-info__details-item--email {
    grid-column: auto;
  }

  #footer {
    padding: 2.5rem 0;
  }

  #footer .footer-content {
    flex-direction: column;
    gap: 1.5rem;
  }

  #footer .footer-content .footer-text {
    font-size: 1rem;
    line-height: 1.5;
  }
}
