:root {
  --color-primary: #870f2d;
  --color-secondary: #cd5a73;
  --color-black: #000000;
  --color-white: #ffffff;
  --color-charcoal: #1e1e1e;
  --color-dark-grey: #686e78;
  --color-grey: #9aa0aa;
  --color-light-grey: #f5f5f5;
  --color-border: #dadee5;
  --font-primary: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont,
    sans-serif;
  --font-secondary: "Roboto", -apple-system, BlinkMacSystemFont, sans-serif;
  --section-pad-y: 80px;
}

body {
  font-family: var(--font-primary);
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

p {
  margin: 0;
}

.section-pad {
  padding-top: var(--section-pad-y);
  padding-bottom: var(--section-pad-y);
}

/* Eyebrow / index row shared across sections: label + "1.x" index on the right */
.section-eyebrow-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  margin-bottom: 0;
}
span {
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 142.857%;
}
h1 {
}

h2 {
  font-size: 54px;
  font-style: normal;
  font-weight: 500;
  line-height: 60px; /* 111.111% */
  margin: 0;
}

h3 {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  margin: 0;
  line-height: 120%;
}
h4 {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 155.556%; /**/
  margin: 0;
}
p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /*  */
  margin: 0;
}
/* .eyebrow {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: var(--color-black);
} */
.eyebrow.on-dark {
  color: var(--color-white);
}
.section-index {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 1px;
  color: var(--color-black);
}
.section-index.on-dark {
  color: var(--color-white);
}
.section-heading h2 {
  color: var(--color-primary);
}
.section-heading {
  padding-bottom: 40px;
  max-width: 750px;
}
.hero-eyebrow {
  max-width: 194px;
}
.founder-name h2 {
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 111.111%;
  margin-bottom: 6px;
}

.backImage {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
/* .section-heading {
  font-size: 54px;
  font-weight: 500;
  line-height: 60px;
  color: var(--color-primary);
  margin: 0 0 48px 0;
}
.section-heading.on-dark {
  color: var(--color-white);
}
.section-heading.small {
  font-size: 48px;
} */

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
.whiteHeader {
  background-color: #fff;
}
.site-header .header-inner {
  height: 80px;
}

.main-nav {
  gap: 32px;
}
.nav-link-custom {
  font-size: 14px;
  padding-block: 0;
  font-weight: 400;
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: opacity 0.2s ease;
}
.whiteHeader .nav-link-custom {
  color: var(--Charcoal, #1e1e1e);
}
.site-header.whiteHeader svg path {
  fill: var(--color-primary);
}
.nav-link-custom:hover {
  opacity: 0.75;
  color: var(--color-primary);
}
.nav-item-dropdown {
  position: relative;
}
.nav-dropdown-btn {
  color: var(--color-white);
}

.logo-mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--color-white);
  text-align: center;
  line-height: 1.1;
}
.logo-mark .logo-ar {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.logo-mark .logo-en {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 2px;
}

.header-tools {
  gap: 32px;
}
.formHeader {
  position: relative;
  max-width: 182px;
}
.formHeader input {
  border: 1px solid #fff;
  border-radius: 19px;
  padding-inline-start: 40px;
  background-color: unset !important;
}
.formHeader input:focus {
  color: #fff;
  box-shadow: unset;
}
.nav-link.nav-link-custom.dropdown-toggle::after {
  content: url("/images/arrowDropDown.svg");
  border: unset;
}
.formHeader i {
  color: #fff;
}
.btnSubmit {
  position: absolute;
  top: 7px;
  padding: 0;
  left: 16px;
}
.lang-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}
.lang-switch .active-lang {
  font-weight: 500;
  color: var(--color-white);
}
.lang-switch .sep,
.lang-switch .inactive-lang {
  color: var(--color-light-grey);
}
.leftMenu {
  min-width: 377px;
  justify-content: end;
}
.icon-btn {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
}
.nav-toggle-btn {
  display: none;
  color: var(--color-white);
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  height: 1330px;
  /* display: flex;
  align-items: flex-end; */
  color: var(--color-white);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.heroTitle {
  position: absolute;
  top: 136px;
  width: 100%;
  z-index: 3;
}
.hero-slide {
  padding-top: 250px;
}
.heroData {
  position: absolute;
  z-index: 2;
  width: 100%;
  bottom: 70px;
}
/* .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.6)
  );
  z-index: 1;
} */
/* .hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 200px;
  padding-bottom: 80px;
} */

.hero-eyebrow-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 48px;
}

.hero-titles {
  padding-bottom: 48px;
  position: relative;
}
.hero-title h1 {
  margin: 0;
  font-weight: 300;
  font-size: 98px;
  line-height: 128px;
}
.hero-title h1 span {
  display: inline-block;
  background: rgba(135, 15, 45, 0.5);
  font-weight: 500;
  font-size: 95px;
  line-height: 104px;
  padding: 12px;
  margin: 8px 0;
  max-width: 670px;
}
.hero-title-sub span {
  font-weight: 300;
  font-size: 68px;
  line-height: 128px;
  margin: 0;
}
.hero-title {
  max-width: 700px;
}
.hero-dots {
  position: absolute;
  right: -30px;
  top: 50%;
  /* transform: translateY(-50%) rotate(90deg); */
  display: flex;
  left: unset;
  align-items: center;
  gap: 8px;
}
.hero-dots span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  display: block;
}
.hero-dots span.active {
  width: 24px;
  background: var(--color-primary);
}

.scroll-explore {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  padding-bottom: 32px;
}
.scroll-explore svg {
  animation: bounceDown 1.6s infinite;
}
@keyframes bounceDown {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(4px);
  }
}

.hero-intro {
  border-top: 1px solid var(--color-white);
  padding-top: 32px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}
.hero-intro p {
  font-size: 18px;
  line-height: 28px;
  max-width: 735px;
  margin: 0;
}
.hero-index-inline span {
  /* font-size: 14px; */
  font-weight: 500;
  letter-spacing: 1px;
  /* white-space: nowrap; */
}

.hero-about-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--color-white);
  padding-top: 21px;
  margin-top: 32px;
  color: var(--color-white);
}
.hero-about-link .link-title {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 4px;
}
.hero-about-link .link-sub {
  font-size: 12px;
}
.hero-about-link .arrow-circle {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}
.hero-about-link:hover .arrow-circle {
  transform: translateX(4px);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding-top: 48px;
}
.hero-stat {
  flex: 1 1 220px;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  padding-top: 33px;
}
.hero-stat .stat-number {
  font-size: 72px;
  line-height: 72px;
  font-weight: 400;
}
.hero-stat .stat-label {
  font-size: 14px;
  margin-top: 8px;
}

/* ==========================================================================
   REPUTATION (about) SECTION
   ========================================================================== */
.reputation-text p {
  color: var(--color-charcoal);
}
.reputation-img {
  border-radius: 10px;
  /* aspect-ratio: 555/520; */
  height: 520px;
}
.bs-gutter-x-64 {
  --bs-gutter-x: 64px;
}
.bs-gutter-x-40 {
  --bs-gutter-x: 40px;
}
.bs-gutter-x-48 {
  --bs-gutter-x: 48px;
}

.eyebrow span {
  font-weight: 500;
}
/* .reputation-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
} */
.about-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--color-border);
  padding-top: 25px;
  margin-top: 56px;
}
.about-link .link-title {
  font-family: var(--font-secondary);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-black);
  margin-bottom: 4px;
}
.about-link .link-sub {
  font-family: var(--font-secondary);
  font-size: 14px;
  color: var(--color-dark-grey);
}
.about-link .arrow-circle {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-black);
  transition: transform 0.2s ease;
}
.about-link:hover .arrow-circle {
  transform: translateX(4px);
}

/* ==========================================================================
   GLOBAL REACH banner
   ========================================================================== */
.global-reach {
  position: relative;
  color: var(--color-white);
  overflow: hidden;
}
.global-reach-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
  z-index: 0;
}
.global-reach-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.6)
  );
  z-index: 1;
}
.global-reach-content {
  position: relative;
  z-index: 2;
}
/* .global-reach h2 {
  font-size: 54px;
  font-weight: 500;
  line-height: 60px;
  margin-bottom: 32px;
} */
.note {
  max-width: 768px;
}
.body {
  max-width: 730px;
}

/* ==========================================================================
   SERVICES ACCORDION
   ========================================================================== */
.services-list {
  border-top: 1px solid var(--color-border);
}
.service-item {
  border-bottom: 1px solid var(--color-border);
}
.service-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  gap: 24px;
  text-align: left;
}
.service-toggle .service-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  color: var(--color-primary);
}
.service-toggle .service-icon svg {
  width: 100%;
  height: 100%;
}
.service-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.service-title-wrap h3 {
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
  margin: 0;
  color: var(--color-black);
}
.service-title-wrap .service-count {
  font-size: 14px;
  color: var(--color-grey);
}
.service-toggle-icon {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.service-toggle-icon svg {
  transition: transform 0.2s ease;
}
.service-item.active .service-toggle-icon {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}
.service-item.active .service-toggle-icon svg {
  transform: rotate(45deg);
}

.service-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.service-item.active .service-panel {
  max-height: 2000px;
}
.service-panel-inner {
  border-top: 1px solid var(--color-border);
  padding: 24px 0 48px 0;
}
.practice-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 12px;
  border-radius: 4px;
  transition: background 0.15s ease;
}
.practice-row:hover {
  background: var(--color-light-grey);
}
.practice-row .practice-name {
  font-size: 16px;
  line-height: 24px;
  color: var(--color-charcoal);
}
.practice-row .practice-num {
  font-size: 12px;
  font-weight: 300;
  color: var(--color-dark-grey);
}
.more-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border-top: 1px solid var(--color-white);
  padding-top: 21px;
}

.services-more-link {
  border-color: var(--color-border);
  margin-top: 56px;
}

/* ==========================================================================
   CLIENTS WE SERVE (dark)
   ========================================================================== */
.clients-section {
  background: var(--color-black);
  color: var(--color-white);
}
.clientDataText {
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
  width: 100%;
}
/* .sectionHeadingTitleBig h2 {
  font-size: 54px;
  font-weight: 500;
  line-height: 60px;
  margin-bottom: 32px;
} */
/* .clients-section p.lead {
  font-size: 16px;
  line-height: 24px;
  max-width: 576px;
  margin-bottom: 32px;
} */
/* .client-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 26px 12px;
} */
.client-card .client-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 17px;
  color: var(--color-secondary);
}
.clientText {
  max-width: 200px;
  text-align: center;
}
.clientText span {
  font-size: 16.5px;
  font-weight: 500;
  line-height: 25px;
  margin: 0;
}

/* ==========================================================================
   FOUNDER / CEO
   ========================================================================== */
.founder-photo {
  width: 260px;
  height: 260px;
  border-radius: 999px;
  overflow: hidden;
  background: var(--color-grey);
  margin: 0 auto;
}
.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.founder-role span {
  color: var(--color-primary);
  letter-spacing: 1.1px;
  margin-bottom: 12px;
}
/* .founder-name {
  font-size: 36px;
  line-height: 40px;
  margin-bottom: 6px;
  color: var(--color-charcoal);
} */
.founder-title {
  font-size: 11px;
  letter-spacing: 0.55px;
  color: var(--color-dark-grey);
  margin-bottom: 20px;
}
.founder-bio {
  font-size: 16px;
  line-height: 24px;
  color: var(--color-black);
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
/* .contact-section h2 {
  font-size: 54px;
  font-weight: 500;
  line-height: 60px;
  color: var(--color-primary);
  margin-bottom: 32px;
} */
.contact-section .lead {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 32px;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.contact-info-item .icon {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: var(--color-light-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-primary);
}
.contact-info-item .icon svg {
  width: 18px;
  height: 18px;
}
.contact-info-item .label {
  font-size: 12px;
  letter-spacing: 0.6px;
  color: var(--color-primary);
  margin-bottom: 4px;
}
.contact-info-item .value {
  font-size: 14px;
  color: var(--color-black);
  line-height: 20px;
  max-width: 300px;
}
.gap-32 {
  gap: 32px;
}
.form-group {
  margin-bottom: 20px;
}
.form-label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.6px;
  color: var(--color-black);
  margin-bottom: 8px;
}
.form-control-custom {
  width: 100%;
  background: var(--color-light-grey);
  border: 1px solid var(--color-border);
  padding: 13px 17px;
  font-size: 14px;
  font-family: var(--font-primary);
  color: var(--color-black);
}
.form-control-custom::placeholder {
  color: var(--color-grey);
  font-weight: 500;
}
.form-control-custom:focus {
  outline: none;
  border-color: var(--color-primary);
  background: var(--color-white);
}
textarea.form-control-custom {
  min-height: 106px;
  resize: vertical;
}

.form-check-custom {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 12px;
  color: var(--color-black);
}
.form-check-custom input {
  margin-top: 2px;
  width: 16px;
  height: 16px;
  accent-color: var(--color-primary);
}
.form-check-custom a {
  color: var(--color-grey);
  text-decoration: underline;
}

.btn-primary-custom {
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 500;
  padding: 12px 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.btn-primary-custom:hover {
  background: #6c0c24;
}
.btn-primary-custom:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.errorSection {
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding: 200px 0 80px; */
  min-height: 100vh;
}
.errorTite h2 {
  color: var(--Primary, #870f2d);
  text-align: center;
  font-family: "Plus Jakarta Sans";
  font-size: 145.286px;
  font-style: normal;
  font-weight: 800;
  line-height: 110%; /* 159.814px */
}
.errorSection H3 {
  color: var(--Black, #000);
  text-align: center;
  font-family: "Plus Jakarta Sans";
  font-size: 38.743px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 46.491px */
}
.rowGap {
  row-gap: 32px;
}
.errorSection P {
  color: var(--color-dark-grey);
  text-align: center;
  font-family: "Plus Jakarta Sans";
  font-size: 19.371px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.redBtn {
  background-color: var(--color-primary);
  color: var(--color-white);
  /* font-family: "Plus Jakarta Sans"; */
  padding: 12px 29px;
  font-size: 16.95px;
  font-style: normal;
  font-weight: 600;
  line-height: 142.857%; /*  */
  letter-spacing: 0.848px;
}
.gap-19 {
  gap: 19px;
}
/* clientPge */
.clientCard {
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  background: #fff;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.05);
  padding: 24px;
}
.clientCard h4 {
  color: #8b1a1a;
  font-weight: 700;
  line-height: normal;
}

.clientCard span {
  color: #334155;
  font-weight: 400;
  line-height: 150%;
}
.clientName {
  height: 22px;
}
.clientSmallDesc {
  height: 65px;
}

/* pagination */
.paginatnions {
  padding-top: 80px;
}
.pageNumber {
  display: flex;
  width: 47.805px;
  height: 47.805px;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
  align-items: center;
  border-radius: 50%;
  border: 1.732px solid #e6ecef;
  background: #fff;
  color: #1e1e1e;
  text-align: center;
  /* font-family: "Plus Jakarta Sans"; */
  font-size: 16.732px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.pageNumber.active {
  background-color: var(--color-primary);
  color: var(--color-white);
}
.disapeled {
  opacity: 0.5;
}
.Prev {
  transform: rotate(180deg);
}
/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--color-charcoal);
  color: var(--color-white);
  padding: 49px 0 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.footer-logo .logo-en {
  font-size: 16px;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  font-size: 14px;
  color: var(--color-white);
  transition: opacity 0.2s ease;
}
.footer-nav a:hover {
  opacity: 0.7;
}

.footer-heading {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.7px;
  margin-bottom: 8px;
}
.footer-col p {
  font-size: 14px;
  margin-bottom: 24px;
}
.newsletter-form {
  display: flex;
  padding-top: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--color-white);
  font-size: 14px;
  padding: 12px 0;
}
.newsletter-form input::placeholder {
  color: var(--color-grey);
  font-weight: 500;
}
.newsletter-form button {
  width: 40px;
  height: 40px;
  background: var(--color-primary);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.newsletter-privacy {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  margin-top: 16px;
}
.newsletter-privacy input {
  width: 16px;
  height: 16px;
  accent-color: var(--color-primary);
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.social-icons a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--color-light-grey);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: background 0.2s ease, color 0.2s ease;
}
.social-icons a:hover {
  background: var(--color-white);
  color: var(--color-charcoal);
}
.social-icons svg {
  width: 14.6px;
  height: 14px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}
.footer-contact-item .icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  flex-shrink: 0;
}
.footer-contact-item .icon svg {
  width: 16.6px;
  height: 16px;
}
.footer-contact-item .value {
  font-size: 14px;
  line-height: 20px;
}

.bottom-bar {
  background: var(--color-black);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding: 25px 0 24px;
}
.bottom-bar .container-custom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.bottom-bar span,
.bottom-bar a {
  font-size: 14px;
  color: var(--color-white);
}

/* ==========================================================================
   Utility icon sizing (inline SVG stroke icons)
   ========================================================================== */
.icon-sm {
  width: 18px;
  height: 18px;
}

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */
.hero-compact {
  min-height: 559px;
  align-items: flex-end;
}
/* .hero-compact .hero-content {
  padding-top: 160px;
  padding-bottom: 40px;
} */
.page-hero-title {
  display: inline-block;
  font-size: 64px;
  line-height: 72px;
  max-width: none;
}

.breadcrumb-section {
  padding: 32px 0 24px;
}
.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--color-dark-grey);
}
.breadcrumb-nav a {
  color: var(--color-dark-grey);
  transition: color 0.2s ease;
}
.breadcrumb-nav a:hover {
  color: var(--color-primary);
}
.breadcrumb-nav .crumb-sep {
  display: inline-flex;
  color: var(--color-grey);
}
.breadcrumb-nav .crumb-current {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: underline;
}

.section-grey {
  background: var(--color-light-grey);
}

.who-we-are-text p {
  color: var(--color-charcoal);
}
.who-we-are-img {
  border-radius: 10px;
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.approach-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  color: var(--color-primary);
  margin-bottom: 20px;
}
.approach-body {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.approach-body p {
  color: var(--color-charcoal);
}
.approach-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  color: var(--color-primary);
}
.approach-icon svg {
  width: 100%;
  height: 100%;
}

.reach-card {
  height: 100%;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 32px;
}
.reach-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  color: var(--color-primary);
  margin-bottom: 24px;
}
.reach-icon svg {
  width: 100%;
  height: 100%;
}
.reach-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
  color: var(--color-primary);
  margin-bottom: 12px;
}
.reach-card p {
  color: var(--color-charcoal);
}

.commitment-text p {
  color: var(--color-charcoal);
}
.commitment-icon {
  display: inline-flex;
  width: 150px;
  height: 180px;
}
.commitment-icon svg {
  width: 100%;
  height: 100%;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1400px) {
  :root {
    --container-pad: 60px;
  }
}

@media (max-width: 991.98px) {
  /* :root {
    --container-pad: 32px;
    --section-pad-y: 56px;
  } */

  .nav-toggle-btn {
    display: flex;
  }
  .main-nav {
    display: none !important;
  }
  .header-tools .lang-switch {
    display: none;
  }

  /* .hero-content {
    padding-top: 140px;
  } */
  .hero-title {
    font-size: 56px;
    line-height: 64px;
  }
  .hero-title-highlight {
    font-size: 48px;
    line-height: 56px;
    padding: 10px;
  }
  .hero-title-sub {
    font-size: 34px;
    line-height: 44px;
  }
  .hero-dots {
    display: none;
  }
  .hero-intro {
    flex-direction: column;
  }
  .hero-index-inline {
    display: none;
  }
  /* 
  .section-heading,
  .section-heading.small,
  .global-reach h2,
  .clients-section h2,
  .contact-section h2 {
    font-size: 34px;
    line-height: 42px;
    margin-bottom: 32px;
  } */

  .hero-stats {
    gap: 24px;
  }
  .hero-stat {
    flex: 1 1 45%;
  }

  .founder-photo {
    margin-bottom: 32px;
  }

  .hero-compact {
    min-height: 360px;
  }
  /* .hero-compact .hero-content {
    padding-top: 120px;
  } */
  .who-we-are-img {
    height: 360px;
  }
}

@media (max-width: 767.98px) {
  .hero-title {
    font-size: 40px;
    line-height: 48px;
  }
  .hero-title-highlight {
    font-size: 32px;
    line-height: 40px;
  }
  .hero-title-sub {
    font-size: 24px;
    line-height: 32px;
  }
  .hero-eyebrow {
    display: none;
  }
  /* 
  .section-heading,
  .section-heading.small,
  .global-reach h2,
  .clients-section h2,
  .contact-section h2 {
    font-size: 28px;
    line-height: 36px;
  } */

  .hero-stat {
    flex: 1 1 100%;
  }
  .service-toggle {
    align-items: flex-start;
  }
  .service-title-wrap h3 {
    font-size: 20px;
    line-height: 28px;
  }

  .client-card {
    padding: 16px 8px;
  }

  .hero-compact {
    min-height: 280px;
  }
  .breadcrumb-section {
    padding: 24px 0 16px;
  }
  .approach-body {
    flex-direction: column;
    gap: 16px;
  }
  .reach-card {
    padding: 24px;
  }
  .commitment-icon {
    width: 110px;
    height: 132px;
    margin-top: 24px;
  }
}
