*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --brand-blue: #181c2c;
  --brand-blue-deep: #111521;
  --brand-blue-soft: #24304d;
  --brand-yellow: #f3c543;
  --brand-yellow-deep: #ddb12d;
  --brand-cream: #fff7df;
  --black: #181c2c;
  --white: #fff;
  --offwhite: #f5f8ff;
  --lightgrey: #e8eef9;
  --border: #d6e0f0;
  --text: #46546f;
  --red: #f3c543;
  --pink: #fff2b8;
  --nav-dark: #181c2c;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Nunito Sans", sans-serif;
  color: var(--black);
  background: #f9fbff;
  overflow-x: hidden;
}
body.is-loading {
  overflow: hidden;
}
body.menu-open {
  overflow: hidden;
}

.site-preloader {
  position: fixed;
  inset: 0;
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(24, 28, 44, 0.98), rgba(17, 21, 33, 0.98));
  opacity: 1;
  visibility: visible;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}
.site-preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.site-preloader-mark {
  display: grid;
  justify-items: center;
  gap: 1rem;
}
.site-preloader-logo {
  width: 118px;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
}
.site-preloader-mark span {
  width: 92px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  overflow: hidden;
  position: relative;
}
.site-preloader-mark span::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 42%;
  border-radius: inherit;
  background: var(--brand-yellow);
  animation: loaderSweep 1.15s ease-in-out infinite;
}
@keyframes loaderSweep {
  0% { transform: translateX(-110%); }
  100% { transform: translateX(240%); }
}

/* ════════════════════════════
   HEADER — 2 rows
   ════════════════════════════ */
.hdr-top {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  /* min-height: 122px;
  padding: 1rem 0 0.85rem; */
}
.logo-link {
  display: inline-flex;
}
.hdr-wordmark {
  font-size: 1.95rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--black);
  text-decoration: none;
  line-height: 1;
  font-style: italic;
}

.hdr-nav {
  z-index: 999;
  background: linear-gradient(90deg, var(--brand-blue-deep), var(--brand-blue));
  height: 54px;
  box-shadow: 0 10px 24px rgba(14, 45, 99, 0.16);
}
.hdr-nav-inner {
  width: 100%;
  height: 100%;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.ham-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.3rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1002;
}
.ham-btn span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  transform-origin: center;
  transition:
    transform 0.28s ease,
    opacity 0.2s ease,
    background 0.2s ease;
}

.dn-links {
  display: flex;
  list-style: none;
  align-items: center;
  flex: 1;
  justify-content: center;
}
.dn-links > li {
  position: relative;
}
.dn-links > li > a,
.dn-links > li > button {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0 0.85rem;
  height: 54px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.82);
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: color 0.15s;
}
.dn-links > li > a:hover,
.dn-links > li > button:hover {
  color: #fff;
}
.dn-links > li > button svg {
  width: 9px;
  height: 9px;
}
.dd {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 16px 36px rgba(24, 28, 44, 0.16);
  min-width: 230px;
  z-index: 200;
  padding: 0.55rem 0;
  border-radius: 16px;
  overflow: hidden;
}
.dn-links > li:hover .dd {
  display: block;
}
.dd a {
  display: block;
  padding: 0.48rem 1.3rem;
  font-size: 0.79rem;
  color: var(--text);
  text-decoration: none;
}
.dd a:hover {
  background: #f4f7fc;
  color: var(--brand-blue);
}
.dd-lbl {
  display: block;
  padding: 0.4rem 1.3rem 0.18rem;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #bbb;
}

.hdr-ctas {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-shrink: 0;
}
.hdr-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1.3rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  border-radius: 5px;
  background: var(--brand-yellow);
  color: var(--brand-blue-deep);
  border: none;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: 0.18s;
}
.hdr-cta:hover {
  background: var(--brand-yellow-deep);
}

/* Mobile menu */
.mob-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(22, 27, 38, 0.58);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.28s ease,
    visibility 0.28s ease;
  z-index: 1498;
}
.mob-nav-backdrop.open {
  opacity: 1;
  visibility: visible;
}
.mob-nav {
  position: fixed;
  inset: 0 auto 0 0;
  width: min(420px, 92vw);
  max-width: 100%;
  z-index: 1499;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.28s ease,
    visibility 0.28s ease;
}
.mob-nav.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mob-nav-panel {
  height: 100%;
  overflow-y: auto;
  background: #fff;
  padding: 1.8rem 1.3rem 1.5rem;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}
.mob-nav.open .mob-nav-panel {
  transform: translateX(0);
}
.mob-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.4rem;
}
.mob-nav-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-blue-soft);
}
.mob-close-btn {
  position: relative;
  width: 42px;
  height: 42px;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
}
.mob-close-btn span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 31px;
  height: 1.6px;
  background: var(--black);
  transform-origin: center;
}
.mob-close-btn span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}
.mob-close-btn span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.mob-nav-links {
  display: grid;
  gap: 0.9rem;
}
.mob-nav-links > a,
.mob-group summary {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.25rem 0 1rem;
  font-size: 1.02rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--black);
  text-decoration: none;
  list-style: none;
  cursor: pointer;
}
.mob-nav-links > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 12px;
  background: linear-gradient(90deg, rgba(243, 197, 67, 0.9), rgba(243, 197, 67, 0.25));
}
.mob-group {
  border: 0;
}
.mob-group summary {
  padding-right: 2rem;
  background-image: linear-gradient(90deg, rgba(243, 197, 67, 0.9), rgba(243, 197, 67, 0.25));
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100% 12px;
}
.mob-group summary::-webkit-details-marker {
  display: none;
}
.mob-group summary::after {
  content: "";
  position: absolute;
  top: 0.55rem;
  right: 0.2rem;
  width: 10px;
  height: 10px;
  border-right: 1.8px solid var(--black);
  border-bottom: 1.8px solid var(--black);
  transform: rotate(45deg);
  transition: transform 0.22s ease;
}
.mob-group[open] summary::after {
  transform: rotate(225deg) translate(-2px, -2px);
}
.mob-nav-links > a:hover,
.mob-group summary:hover,
.mob-sub-links a:hover {
  color: var(--brand-blue);
}
.mob-sub-links {
  display: grid;
  gap: 0.75rem;
  padding: 0.5rem 0 0.2rem 1rem;
}
.mob-sub-links a {
  color: #50535d;
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.5;
}
.mob-nav-cta-stack {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.8rem;
}
.mob-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 0;
  background: var(--brand-yellow);
  color: var(--brand-blue-deep);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition:
    transform 0.18s ease,
    background 0.18s ease;
}
.mob-nav-cta:hover {
  transform: translateY(-2px);
  background: var(--brand-yellow-deep);
}

.hero,
.about-grid img,
.roles-grid img,
.why-img img,
.vision-img img,
.team-section,
.story-img-full,
.hubs-map,
.svc-card,
.sec-card,
.sv-badge-card,
.sv-offer-card,
.sv-quote-card,
.tr-course-card,
.tr-video-frame {
  will-change: transform, opacity;
}

.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-body,
.hero-links-bar,
.about-hd,
.svc-hd,
.roles-right,
.why-right,
.vision-right,
.story-right,
.faq-list,
.footer-inner {
  animation: fadeLift 0.7s ease both;
}

.hdr-cta,
.hero-links-bar a,
.svc-card,
.sec-card,
.f-socials a,
.logo-img {
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    opacity 0.22s ease,
    background 0.18s ease,
    color 0.18s ease;
}

.hdr-cta:hover,
.hero-links-bar a:hover,
.svc-card:hover,
.sec-card:hover,
.f-socials a:hover,
.logo-img:hover {
  transform: translateY(-3px);
}

.svc-card:hover,
.sec-card:hover {
  box-shadow: 0 16px 34px rgba(26, 31, 46, 0.08);
}

@keyframes fadeLift {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ════════════════════════════
   HERO
   ════════════════════════════ */
.hero {
  position: relative;
  background: var(--nav-dark);
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
  background-image: url("../img/hero/1.jfif");
  background-size: cover;
  background-position: center 20%;
}
.hero-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(24, 28, 44, 0.24) 0%,
    rgba(24, 28, 44, 0.4) 35%,
    rgba(24, 28, 44, 0.8) 72%,
    rgba(24, 28, 44, 0.94) 100%
  );
}
/* Vertical ESTABLISHED text */
.hero-estab {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
}
.hero-estab span {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
}

/* Hero body: heading LEFT + description RIGHT, then links below */
.hero-body {
  position: relative;
  z-index: 3;
  padding: 6rem 3rem 0 3.5rem;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero-top-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: flex-end;
  padding-bottom: 2.5rem;
}
.hero-h1 {
  font-size: 60px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 0.95;
  color: #fff;
}
.hero-right {
  padding-bottom: 0.5rem;
}
.hero-right p {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  max-width: 480px;
}
.hero-links-bar {
  background: linear-gradient(90deg, rgba(17, 21, 33, 0.9), rgba(24, 28, 44, 0.78));
  backdrop-filter: blur(4px);
  padding: 0.85rem 3.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-links-bar a {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: 0.15s;
}
.hero-links-bar a:hover {
  color: #fff;
}
.hero-links-bar .pipe {
  color: rgba(255, 255, 255, 0.3);
}

/* ════════════════════════════
   SHARED
   ════════════════════════════ */
.s {
  padding: 74px 3rem;
}
.s-sm {
  padding: 54px 3rem;
}
.wrap {
  max-width: 1240px;
  margin: 0 auto;
}
.bg-off {
  background: var(--offwhite);
}
.bg-dark {
  background: var(--nav-dark);
}
.bg-grey {
  background: var(--lightgrey);
}

/* ALL CAPS SPACED headings — site style */
.ttl-caps {
  font-size: 40px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: var(--brand-blue-deep);
}
.ttl-caps-sm {
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  line-height: 1.2;
  margin-bottom: 0.7rem;
}
.body-txt {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text);
}
.body-txt a {
  color: var(--brand-blue);
  text-decoration: none;
}
.body-txt a:hover {
  text-decoration: underline;
}
.center {
  text-align: center;
}
.sub-line {
  font-size: 0.93rem;
  color: var(--text);
  margin-bottom: 1.4rem;
}
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}
.btn-link-primary,
.btn-link-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.35rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.btn-link-primary {
  background: var(--brand-yellow);
  color: var(--brand-blue-deep);
}
.btn-link-primary:hover {
  background: var(--brand-yellow-deep);
  transform: translateY(-2px);
}
.btn-link-secondary {
  border: 1px solid rgba(24, 28, 44, 0.18);
  color: var(--brand-blue);
  background: #fff;
}
.btn-link-secondary:hover {
  border-color: var(--brand-blue);
  transform: translateY(-2px);
}

/* ════════════════════════════
   1. ABOUT (centred heading, then 2-col text + photo)
   ════════════════════════════ */
.about-hd {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.about-grid img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

/* ════════════════════════════
   2. SERVICES (centred heading, 3-col cards, num + spaced title)
   ════════════════════════════ */
.svc-hd {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}
.svc-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: 0 16px 40px rgba(16, 33, 63, 0.06);
}
.svc-card {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
}
.svc-card:last-child {
  border-right: none;
}
.svc-n {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--brand-yellow-deep);
  margin-bottom: 0.8rem;
}
.svc-card h3 {
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  line-height: 1.35;
  margin-bottom: 0.8rem;
  color: var(--brand-blue-deep);
}
.svc-card p {
  font-size: 0.86rem;
  line-height: 1.75;
  color: var(--text);
}

/* ════════════════════════════
   3. SECTORS (centred heading, 3-col icon cards: top row white, bottom row grey)
   ════════════════════════════ */
.sectors-hd {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}
.sectors-row1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.sectors-row2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.sec-card {
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid var(--border);
  margin: -1px 0 0 -1px;
}
.sec-card-grey {
  background: #f1f6ff;
}
.sec-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sec-icon svg {
  width: 100px;
  height: 150px;
  color: var(--brand-yellow-deep);
}
.sec-card h3 {
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 0.7rem;
}
.sec-card p {
  font-size: 0.84rem;
  line-height: 1.7;
  color: var(--text);
}

/* ════════════════════════════
   4. OUR ROLES (image left + accordion list right)
   ════════════════════════════ */
.roles-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}
.roles-grid img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}
.roles-right .ttl-caps {
  margin-bottom: 0.6rem;
}
.roles-right .sub-line {
  margin-bottom: 1.5rem;
}
.roles-acc {
  border-top: 1px solid var(--border);
}
.roles-item {
  border-bottom: 1px solid var(--border);
}
.roles-btn {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 0;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  transition: color 0.15s;
}
.roles-btn:hover {
  color: var(--brand-blue);
}
.roles-btn .arrow {
  width: 26px;
  height: 26px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--black);
  flex-shrink: 0;
  transition: 0.25s;
}
.roles-btn.open .arrow {
  transform: rotate(180deg);
  background: var(--brand-blue-deep);
  color: #fff;
  border-color: var(--brand-blue-deep);
}
.roles-body {
  overflow: hidden;
  max-height: 0;
  transition:
    max-height 0.3s ease,
    padding 0.25s;
}
.roles-body.open {
  max-height: 200px;
  padding-bottom: 0.9rem;
}
.roles-body p {
  font-size: 0.87rem;
  color: var(--text);
  line-height: 1.75;
}

/* ════════════════════════════
   5. WHY BUSINESSES CHOOSE WBWS
   Vertical rotated title LEFT | image CENTRE | text RIGHT
   ════════════════════════════ */
.why-outer {
  display: grid;
  grid-template-columns: 140px 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 90px 3rem;
  max-width: 100%;
}
.why-vtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  /* rotated text */
}
.why-vtitle span {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 0.95;
  white-space: nowrap;
  color: var(--black);
}
.why-img img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}
.why-right {
}
.why-right .body-txt + .body-txt {
  margin-top: 0.9rem;
}
.why-list {
  list-style: disc;
  padding-left: 1.3rem;
  margin: 0.8rem 0;
  color: var(--text);
}
.why-list li {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 0.3rem;
}

/* ════════════════════════════
   6. OUR CLIENTS (dark bg, centered logos)
   ════════════════════════════ */
.clients-wrap {
  text-align: center;
}
.clients-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3.5rem;
  margin-top: 2.5rem;
}
.clients-logos img {
  width: 170px;
  height: 82px;
  object-fit: contain;
  object-position: center;
  background: rgba(255, 255, 255, 0.06);
  padding: 0.85rem 1rem;
  border-radius: 16px;
  filter: none;
  opacity: 0.92;
  transition: 0.2s;
}
.clients-logos img:hover {
  opacity: 1;
}

/* ════════════════════════════
   7. MEET THE TEAM (full-width photo, centred dark overlay box)
   ════════════════════════════ */
.team-section {
  position: relative;
  min-height: 440px;
  overflow: hidden;
}
.team-photo {
  position: absolute;
  inset: 0;
  background-image: url("../img/team.jfif");
  background-size: cover;
  background-position: center;
  filter: brightness(0.5);
}
.team-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 21, 33, 0.9), rgba(17, 21, 33, 0.38)),
    radial-gradient(circle at top right, rgba(243, 197, 67, 0.26), transparent 34%);
}
.team-box {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 2rem 3rem;
}
.team-box-inner {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2.5rem 2.6rem;
  text-align: left;
  width: min(520px, 100%);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.2);
}
.team-box-inner h2 {
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 0.8rem;
}
.team-box-inner p {
  font-size: 0.96rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 1.4rem;
}
.team-box-inner a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  background: var(--brand-yellow);
  color: var(--brand-blue-deep);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: 0.18s;
}
.team-box-inner a:hover {
  background: var(--brand-yellow-deep);
  transform: translateY(-2px);
}

/* ════════════════════════════
   8. VISION, MISSION & VALUES
   Vertical rotated title LEFT | image CENTRE | text RIGHT
   ════════════════════════════ */
.vision-outer {
  display: grid;
  grid-template-columns: 140px 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 90px 3rem;
}
.vision-vtitle span {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-size: clamp(1rem, 1.8vw, 1.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 0.95;
  white-space: nowrap;
  color: var(--black);
  display: block;
}
.vision-img img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}
.vision-right .body-txt + .body-txt {
  margin-top: 0.9rem;
}
.vision-right b {
  font-weight: 700;
  color: var(--black);
}

/* ════════════════════════════
   9. OUR STORY (title left, text right, 2-col)
   ════════════════════════════ */
.story-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 5rem;
  align-items: start;
}
.story-left .ttl-caps {
  margin-top: 0.3rem;
}
.story-right .body-txt + .body-txt {
  margin-top: 1rem;
}

/* Full-width story image below */
.story-img-full {
  width: 100%;
  height: 300px;
  background-image: url("../img/normal.jpeg");
  background-size: cover;
  background-position: center top;
  display: block;
}

/* ════════════════════════════
   10. DISCOVER OUR HUBS
   Centred heading, map placeholder, 2-col list
   ════════════════════════════ */
.hubs-hd {
  text-align: center;
  margin-bottom: 2.5rem;
}
.hubs-map {
  width: 100%;
  height: 360px;
  background: #d4e8f0;
  border: 1px solid var(--border);
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hubs-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.hubs-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
}
.hub-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border);
}
.hub-row:nth-child(odd) {
  padding-right: 3rem;
}
.hub-row:nth-child(even) {
  padding-left: 3rem;
  border-left: 1px solid var(--border);
}
.hub-row h3 {
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--black);
}
.hub-row a {
  font-size: 0.8rem;
  color: var(--text);
  text-decoration: none;
  transition: 0.15s;
}
.hub-row a:hover {
  color: var(--brand-blue);
}

/* ════════════════════════════
   11. FAQ
   Centred heading, ALL CAPS questions with RED + icon
   ════════════════════════════ */
.faq-hd {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2.5rem;
}
.faq-list {
  max-width: 840px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 0;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
  gap: 1rem;
  transition: color 0.15s;
}
.faq-q:hover {
  color: var(--brand-blue);
}
.faq-icon {
  font-size: 1.3rem;
  color: var(--brand-yellow-deep);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.25s;
}
.faq-q.on .faq-icon {
  transform: rotate(45deg);
}
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition:
    max-height 0.35s ease,
    padding-bottom 0.25s;
}
.faq-a.on {
  max-height: 500px;
  padding-bottom: 1.2rem;
}
.faq-a p {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.8;
}
.faq-a ul {
  padding-left: 1.3rem;
  margin-top: 0.4rem;
}
.faq-a ul li {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.8;
}

/* ════════════════════════════
   FOOTER (dark, simple)
   ════════════════════════════ */
.site-footer {
  background:
    linear-gradient(180deg, rgba(24, 28, 44, 0.98), rgba(17, 21, 33, 1)),
    var(--nav-dark);
  color: #fff;
  margin-top: 0;
}
.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 3.6rem 3rem 2.4rem;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.5fr);
  gap: 3rem;
  align-items: start;
}
.footer-brand {
  display: grid;
  gap: 1.2rem;
}
.footer-logo-link {
  display: inline-flex;
  width: fit-content;
}
.footer-logo {
  width: clamp(92px, 10vw, 138px);
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}
.footer-copy {
  max-width: 420px;
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.76);
}
.footer-primary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  width: fit-content;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  background: var(--brand-yellow);
  color: var(--brand-blue-deep);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.18s ease, background 0.18s ease;
}
.footer-primary-link:hover {
  transform: translateY(-2px);
  background: var(--brand-yellow-deep);
}
.footer-links-group {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}
.f-col h3 {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-yellow);
}
.f-col a {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.74);
  text-decoration: none;
  margin-bottom: 0.75rem;
  transition: color 0.15s ease, transform 0.15s ease;
}
.f-col a:hover {
  color: #fff;
  transform: translateX(2px);
}
.footer-bottom {
  max-width: 1240px;
  margin: 0 auto;
  padding: 1rem 3rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer-bottom p,
.footer-bottom a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}
.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer-bottom a:hover {
  color: #fff;
}

/* ════════════════════════════
   RESPONSIVE
   ════════════════════════════ */
@media (max-width: 1080px) {
  .dn-links,
  .hdr-ctas {
    display: none;
  }
  .ham-btn {
    display: flex;
  }
  .hero-top-row {
    grid-template-columns: 1fr;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .svc-cards {
    grid-template-columns: 1fr;
  }
  .svc-card {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .svc-card:last-child {
    border-bottom: none;
  }
  .sectors-row1,
  .sectors-row2 {
    grid-template-columns: 1fr 1fr;
  }
  .roles-grid {
    grid-template-columns: 1fr;
  }
  .why-outer,
  .vision-outer {
    grid-template-columns: 1fr;
    padding: 60px 1.5rem;
  }
  .why-vtitle,
  .vision-vtitle {
    display: none;
  }
  .story-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hubs-list {
    grid-template-columns: 1fr;
  }
  .hub-row:nth-child(even) {
    border-left: none;
    padding-left: 0;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 1.5rem 2rem;
  }
  .footer-links-group {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-bottom {
    padding: 1rem 1.5rem 1.4rem;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 680px) {
  .s {
    padding: 48px 1.3rem;
  }
  .s-sm {
    padding: 38px 1.3rem;
  }
  .sectors-row1,
  .sectors-row2 {
    grid-template-columns: 1fr;
  }
  .footer-links-group {
    grid-template-columns: 1fr;
  }
  .hero-body {
    padding: 4rem 1rem 0 2.5rem;
  }
  .hero-links-bar {
    padding: 0.8rem 1.5rem;
  }
  .team-box-inner {
    padding: 1.8rem 1.5rem;
    min-width: 280px;
  }
  .team-box {
    padding: 1.4rem;
  }
  .team-box-inner h2 {
    font-size: 1.5rem;
  }
}
/* Desktop logo (increase size) */
.logo-img {
  width: clamp(92px, 8vw, 150px);
  display: block;
  max-height: 104px;
  object-fit: contain;
}

/* Mobile big logo */
@media (max-width: 680px) {
  .hdr-top {
    min-height: 82px;
    padding: 0.45rem 0;
  }

  .logo-img {
    width: 92px;
    max-height: 70px;
  }

  .hdr-nav {
    height: 52px;
  }

  .hdr-nav-inner {
    padding: 0 1rem;
  }
}

.hdr-nav-inner{
  display:flex;
  align-items:center;
}

.hdr-social{
  display:flex !important;
  align-items:center;
  gap:16px;
  margin-right:20px;
  flex-shrink:0;
}

.hdr-social a{
  display:flex;
  align-items:center;
  justify-content:center;
  width:22px;
  height:22px;
  color:#fff;
  text-decoration:none;
}

.hdr-social svg{
  width:22px;
  height:22px;
  fill:#fff;
  display:block;
}

.hdr-social a:hover svg{
  opacity:.75;
}
.mob-social{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  margin-top:20px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.12);
}

.mob-social a{
  display:flex;
  align-items:center;
  justify-content:center;
  width:18px;
  height:18px;
  color:#fff;
  line-height:1;
}

.mob-social a svg{
  width:18px !important;
  height:18px !important;
  min-width:18px;
  min-height:18px;
  display:block;
  fill:black;
}

.mob-social a:hover{
  opacity:.8;
}
@media (max-width:768px){
  .hdr-social{
    display:none !important;
  }
}