/* ============================================================
   FINCHAM INDIA — style.css  (Aarti-inspired redesign)
   Accent: Orange #f26522  |  Fonts: Poppins + Open Sans
   ============================================================ */


@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;0,9..40,800;1,9..40,400&display=swap');

/* ── Variables ── */
:root {
  --orange: #F47920;
  --orange-dark: #1050a8;
  --orange-light: #e8f2fd;
  --navy: #0d1b3e;
  --dark: #1e2d44;
  --grey: #6c757d;
  --grey-light: #f4f8fd;
  --grey-border: #dde8f5;
  --white: #ffffff;
  --blue1: #1a6fd4;
  --blue2: #38b6ff;
  --grad: linear-gradient(135deg, #1a6fd4 0%, #38b6ff 100%);
  --grad-dark: linear-gradient(135deg, #1050a8 0%, #1a6fd4 100%);
  --grad-orange: linear-gradient(135deg, #F47920 0%, #f5a85c 100%);
  --grad-orange-dark: linear-gradient(135deg, #d4640f 0%, #F47920 100%);
  --font-head: 'DM Sans', Helvetica, sans-serif;
  --font-body: 'DM Sans', Helvetica, sans-serif;
  --trans: 0.3s ease;
  --shadow: 0 4px 24px rgba(26, 111, 212, 0.12);
  --shadow-lg: 0 12px 48px rgba(26, 111, 212, 0.18);
  --radius: 4px;
}

@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1330px !important;
    }
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 18px;
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-head);
  color: var(--dark);
  line-height: 1.2;
}


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

img {
  max-width: 100%;
  display: block;
}

/* ── Utilities ── */
.sec {
  padding: 80px 0;
}

.sec-sm {
  padding: 56px 0;
}

.sec-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 10px;
}

.sec-title {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
}

.sec-sub {
  font-size: 18px;
  color: var(--grey);
  line-height: 1.8;
}

.bar {
  width: 40px;
  height: 3px;
  background: var(--grad);
  margin: 14px 0 24px;
  border-radius: 2px;
}

.bar-center {
  margin-left: auto;
  margin-right: auto;
}

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

/* Buttons */
.btn-orange {
  display: inline-block;
  background: var(--grad-orange);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  padding: 12px 28px;
  border-radius: var(--radius);
  border: none;
  transition: var(--trans);
  cursor: pointer;
}

.btn-orange:hover {
  background: var(--grad-orange-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244, 121, 32, 0.35);
}

.btn-orange-outline {
  display: inline-block;
  background: transparent;
  color: var(--blue1);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  padding: 11px 26px;
  border-radius: var(--radius);
  border: 2px solid var(--blue1);
  transition: var(--trans);
  cursor: pointer;
}

.btn-orange-outline:hover {
  background: var(--grad);
  border-color: transparent;
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white-outline {
  display: inline-block;
  background: transparent;
  color: #1e2d44;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  padding: 11px 26px;
  border-radius: var(--radius);
  border: 2px solid rgb(30 45 68);
  transition: var(--trans);
}

.btn-white-outline:hover {
  background: var(--white);
  color: var(--blue1);
}

/* Scroll animations */
.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .65s ease, transform .65s ease;
}

.fade-left {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity .65s ease, transform .65s ease;
}

.fade-right {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity .65s ease, transform .65s ease;
}

.fade-up.visible,
.fade-left.visible,
.fade-right.visible {
  opacity: 1;
  transform: translate(0);
}

.d1 {
  transition-delay: .1s
}

.d2 {
  transition-delay: .2s
}

.d3 {
  transition-delay: .3s
}

.d4 {
  transition-delay: .4s
}

.d5 {
  transition-delay: .5s
}

/* ======================================================
   TOP BAR
   ====================================================== */
.top-bar {
  background: var(--navy);
  padding: 8px 0;
  font-size: 12px;
  color: rgb(255, 255, 255);
}

.top-bar a {
  color: rgb(255, 255, 255);
  transition: color var(--trans);
}

.top-bar a:hover {
  color: var(--blue1);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-right {
  display: flex;
  gap: 20px;
  align-items: center;
}

/* ======================================================
   NAVBAR
   ====================================================== */
#mainNav {
  background: var(--white);
  border-bottom: 1px solid var(--grey-border);
  transition: box-shadow var(--trans);
  z-index: 1000;
  padding: 0;
}

#mainNav.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 38px;
  height: 38px;
  background: var(--grad);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-mark span {
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  color: var(--dark);
  letter-spacing: -0.3px;
}

.logo-tagline {
  font-size: 10px;
  color: var(--grey);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.logo-img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}

.footer-logo-wrap .logo-img {
  height: 52px;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin-bottom: 0px !important;
}

.nav-links>li {
  position: relative;
}

.nav-links>li>a {
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--dark);
  padding: 8px 0;
  position: relative;
  transition: color var(--trans);
}

.nav-links>li>a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--grad);
  transition: width var(--trans);
}

.nav-links>li>a:hover,
.nav-links>li>a.active {
  color: var(--blue1);
}

.nav-links>li>a:hover::after,
.nav-links>li>a.active::after {
  width: 100%;
}

.nav-cta {
  font-size: 12px;
  padding: 9px 20px;
}

/* ── Dropdown menu ── */
.nav-links li.has-dropdown {
  position: relative;
}

.nav-links li.has-dropdown > a .nav-arrow {
  font-size: 9px;
  margin-left: 3px;
  vertical-align: middle;
  display: inline-block;
  transition: transform 0.2s ease;
}

.nav-links li.has-dropdown:hover > a .nav-arrow {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 190px;
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  padding: 0px 0;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 1010;
}

.nav-links li.has-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* .nav-dropdown::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: var(--white);
  border-top: 1px solid var(--grey-border);
  border-left: 1px solid var(--grey-border);
} */

.nav-dropdown li a {
  display: block;
  padding: 10px 20px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 500;
  color: var(--dark);
  white-space: nowrap;
  transition: color var(--trans), background var(--trans);
  text-decoration: none;
}

.nav-dropdown li a::after {
  display: none !important;
}

.nav-dropdown li a:hover,
.nav-dropdown li a.active {
  color: var(--blue1);
  background: #f0f4ff;
}

/* Mobile dropdown sub-menu */
.mob-drop-item {
  border-bottom: 1px solid var(--grey-border);
}

.mob-drop-parent {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  border-bottom: none !important;
  cursor: pointer;
  user-select: none;
}

.mob-drop-parent .bi-chevron-down {
  font-size: 11px;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.mob-drop-item.open .mob-drop-parent .bi-chevron-down {
  transform: rotate(180deg);
}

.mob-sub-links {
  display: none;
  padding: 0 0 8px 16px;
}

.mob-drop-item.open .mob-sub-links {
  display: block;
}

.mob-sub-links a {
  display: block !important;
  padding: 8px 0 !important;
  font-size: 13px !important;
  color: var(--grey) !important;
  border-bottom: none !important;
}

.mob-sub-links a:hover {
  color: var(--orange) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--trans);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--grey-border);
  box-shadow: var(--shadow-lg);
  padding: 20px 24px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 14px;
  color: var(--dark);
  padding: 12px 0;
  border-bottom: 1px solid var(--grey-border);
  transition: color var(--trans);
}

.mobile-menu a:hover {
  color: var(--orange);
}

.mobile-menu a:last-of-type {
  border-bottom: none;
}

.mobile-cta-wrap {
  margin-top: 12px;
}

.mobile-cta-wrap .btn-orange {
  display: block;
  text-align: center;
}

/* ======================================================
   HERO
   ====================================================== */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #111;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    url('https://images.unsplash.com/photo-1532187863486-abf9dbad1b69?w=1800&q=85') center/cover no-repeat;
  z-index: 0;
}

/* Gradient overlay — dark on left, transparent on right (like Aarti) */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 15, 25, 0.88) 0%, rgba(15, 15, 25, 0.195) 45%, rgba(15, 15, 25, 0) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 80px;
}

.hero-content .col-content {
  max-width: 580px;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #F47920;
  margin-bottom: 16px;
  display: block;
}

.hero-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.hero-title .line2 {
  color: var(--blue1);
}

.hero-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.9;
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── Hero Slides ── */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 20%;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.active {
  opacity: 1;
}

/* Gradient overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 15, 25, 0.88) 0%, rgba(15, 15, 25, 0.195) 45%, rgba(15, 15, 25, 0) 100%);
  z-index: 1;
}

/* Hero content panels */
.hero-panel {
  display: none;
  animation: panelFadeIn 0.7s ease forwards;
}

.hero-panel.active {
  display: block;
}

@keyframes panelFadeIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Slide Nav Bar ── */
.hero-slide-nav {
  position: absolute;
  bottom: 52px;
  /* sits just above the ticker */
  left: 0;
  right: 0;
  z-index: 4;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.slide-nav-inner {
  display: flex;
  align-items: stretch;
  gap: 0;
  padding: 0;
}

.slide-nav-btn {
  flex: 1;
  background: none;
  border: none;
  cursor: pointer;
  padding: 14px 20px 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  position: relative;
  transition: background 0.3s ease;
}

.slide-nav-btn:hover {
  background: rgba(255, 255, 255, 0.05);
}

.snb-label {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.3px;
  transition: color 0.3s ease, font-weight 0.3s ease;
  white-space: nowrap;
}

.slide-nav-btn.active .snb-label {
  color: var(--white);
  font-weight: 700;
}

.slide-nav-btn:hover .snb-label {
  color: rgba(255, 255, 255, 0.75);
}

/* Progress bar under each label */
.snb-bar {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  overflow: hidden;
  display: block;
}

.snb-progress {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--grad);
  border-radius: 2px;
  transition: width 0.08s linear;
}

.slide-nav-btn.active .snb-progress {
  /* animated via JS */
}

/* ── FAB Stack (right side) ── */
.fab-stack {
  position: fixed;
  right: 0;
  top: 90%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  z-index: 998;
}

.fab-btn {
  width: 44px;
  height: 44px;
  background: var(--grad);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease;
  text-decoration: none;
}

.fab-btn:first-child {
  border-radius: 6px;
}

.fab-btn:last-child {
  border-radius: 6px 0px 0px 6px;
}

.fab-btn:hover {
  background: var(--grad-dark);
}

.fab-btn i {
  font-size: 18px;
  color: var(--white);
  line-height: 1;
}

.fab-call {
  background: #d4521a;
}

.fab-call:hover {
  background: #b8431a;
}

@media (max-width: 767px) {
  .slide-nav-inner {
    gap: 0;
  }

  .snb-label {
    font-size: 11px;
  }

  .slide-nav-btn {
    padding: 10px 8px 8px;
  }

  .fab-stack {
    display: none;
  }
}

@media (max-width: 480px) {
  .snb-label {
    font-size: 10px;
    letter-spacing: 0;
  }

  .slide-nav-btn {
    padding: 10px 5px 8px;
  }
}

/* Ticker strip at bottom of hero */
.hero-ticker {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: var(--grad);
  padding: 14px 0;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 30s linear infinite;
  gap: 0;
}

.ticker-track:hover {
  animation-play-state: paused;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  padding: 0 40px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.ticker-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
}

/* ======================================================
   INTRO / ABOUT SPOTLIGHT
   ====================================================== */
.intro {
  background: var(--white);
}

.intro-orange-card {
  background: var(--grad);
  border-radius: var(--radius);
  padding: 44px 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.intro-orange-card .sec-label {
  color: rgba(255, 255, 255, 0.7);
}

.intro-orange-card h2 {
  font-size: clamp(22px, 2.8vw, 32px);
  color: var(--white);
  margin-bottom: 16px;
}

.intro-orange-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.9;
  margin-bottom: 28px;
}

.intro-orange-card .bar {
  background: rgba(255, 255, 255, 0.4);
}

.intro-product-img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  border-radius: var(--radius);
}

.intro-stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 32px;
}

.intro-stat {
  text-align: center;
  padding: 24px 16px;
  border-right: 1px solid var(--grey-border);
  transition: background var(--trans);
}

.intro-stat:last-child {
  border-right: none;
}

.intro-stat:hover {
  background: var(--orange-light);
}

.intro-stat .num {
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 800;
  color: var(--blue1);
  line-height: 1;
}

.intro-stat .lbl {
  font-size: 12px;
  color: #060606 !important;
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

/* ── Hero Stats Bar (full-width, white, attached to hero bottom) ── */
.hero-stat-bar {
  background: var(--white);
  width: 100%;
  border-bottom: 1px solid var(--grey-border);
}

.hero-stat-bar .intro-stat-strip {
  margin-top: 0;
  border-radius: 0;
  border: none;
  border-top: 1px solid var(--grey-border);
}

.hero-stat-bar .intro-stat {
  border-color: var(--grey-border);
  padding: 28px 16px;
}

.hero-stat-bar .intro-stat .num {
  color: var(--blue1);
}

.hero-stat-bar .intro-stat .lbl {
  color: var(--grey);
}

.hero-stat-bar .intro-stat:hover {
  background: var(--orange-light);
}

/* ======================================================
   ABOUT SPLIT — sticky left text, scrolling right entries
   ====================================================== */
.about-split-sec {
  /* background: var(--grey-light); */
}

.about-split-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* LEFT: sticky */
.about-split-left {
  position: sticky;
  top: 96px;
}

/* Embassy image card */
.emb-img-card {
  position: relative;
  margin-top: 28px;
  border-radius: 4px;
  overflow: hidden;
  /* box-shadow: var(--shadow-lg); */
}

.emb-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

/* Flag strip — top overlay */
.emb-flag-strip {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  border-radius: 6px;
  padding: 8px 14px;
}

.emb-flag-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.emb-flag-item svg {
  width: 36px;
  height: auto;
  border-radius: 2px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
  display: block;
}

.emb-flag-item span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--dark);
}

.emb-flag-divider {
  font-size: 16px;
  font-weight: 300;
  color: var(--grey);
  line-height: 1;
  padding-bottom: 12px;
}

/* Stats bar — bottom overlay */
.emb-img-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: rgba(13, 27, 62, 0.88);
  backdrop-filter: blur(6px);
  padding: 14px 20px;
  gap: 8px;
}

.emb-img-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.emb-img-stat strong {
  font-size: 14px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.emb-img-stat span {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.emb-img-stat-divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.about-split-heading {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(28px, 3.8vw, 45px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.15;
  margin: 10px 0 20px;
}

/* RIGHT: scrolling entry blocks */
.about-split-right {
  display: flex;
  flex-direction: column;
}

.about-entry {
  padding: 40px 0;
  border-top: 1px solid var(--grey-border);
}

.about-entry:last-child {
  border-bottom: 1px solid var(--grey-border);
}

.about-entry-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(18px, 2vw, 20px);
  font-weight: 700;
  color: var(--dark);
  margin: 10px 0 14px;
  line-height: 1.3;
}

.about-entry-body {
  font-size: 18px;
  color: var(--grey);
  line-height: 1.85;
  margin: 0;
}

@media (max-width: 991px) {
  .about-split-wrap {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .about-split-left {
    position: static;
    padding-bottom: 40px;
  }
}

/* ======================================================
   CAPABILITIES / BENEFITS — dark navy tabbed section
   ====================================================== */
.benfits-sec {
  background: #2a385b url('../images/bg-image.png') center / cover no-repeat;
  background-blend-mode: overlay;
  padding: 80px 0 72px;
  position: relative;
}

.benfits-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  /* background: rgba(13, 27, 62, 0.82); */
  background: linear-gradient(90deg, rgba(15, 15, 25, 0.88) 0%, rgb(6 6 51 / 78%) 45%, rgb(18 18 73 / 54%) 100%);
  pointer-events: none;
}

/* Header */
.benfits-header {
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

.benfits-tab-nav,
.benfits-panels {
  position: relative;
  z-index: 1;
}

.benfits-label-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.benfits-dash {
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--orange);
  flex-shrink: 0;
}

.benfits-label-row .sec-label {
  margin: 0;
}

.benfits-heading {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(32px, 4.5vw, 45px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin: 0;
}

@media (min-width: 1200px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1200px;
  }
}

/* Tab nav */
.benfits-tab-nav {
  /* display: flex; */
  gap: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 52px;
  flex-wrap: wrap;
}

.benfits-tab {
  flex: 1;
  background: transparent;
  border: 1px solid transparent;
  color: rgb(255, 255, 255);
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  padding: 10px 22px;
  cursor: pointer;
  border-radius: 3px 3px 0 0;
  transition: color var(--trans), border-color var(--trans);
  margin-bottom: -1px;
  text-align: center;
}

.benfits-tab:hover {
  color: rgba(255, 255, 255, 0.8);
}

.benfits-tab.active {
  color: #e97423;
  border-color: rgba(255, 255, 255, 0.35);
  border-bottom-color: var(--navy);
}

/* Panels */
.benfits-panel {
  display: none;
}

.benfits-panel.active {
  display: block;
}

.benfits-panel-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Panel left */
.benfits-panel-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 18px;
}

.benfits-panel-body {
  font-size: 18px;
  color: rgb(255, 255, 255);
  line-height: 1.9;
  margin-bottom: 32px;
}

.btn-benfits {
  display: inline-block;
  background: var(--orange);
  border: 1.5px solid var(--orange);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 11px 22px;
  border-radius: var(--radius);
  transition: var(--trans);
  cursor: pointer;
}

.btn-benfits:hover {
  background: transparent;
  color: var(--white);
}

/* Panel right — numbered items */
.benfits-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.benfits-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.benfits-num {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  flex-shrink: 0;
  padding-top: 2px;
  min-width: 20px;
}

.benfits-item-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 5px;
}

.benfits-item-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}

@media (max-width: 991px) {
  .benfits-panel-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* benfits-tab mobile sizing handled in the MOBILE section below */

/* ── Board / Speaker Slider (Panel 2) ── */
.board-slider {
  width: 100%;
}

.board-slider-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.board-slider-intro {
  flex: 1;
  min-width: 0;
}

.board-slider-intro .benfits-panel-title {
  margin-bottom: 10px;
}

.board-slider-intro .benfits-panel-body {
  margin-bottom: 0;
}

.board-nav-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.board-prev-btn,
.board-next-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--trans), border-color var(--trans), color var(--trans);
}

.board-prev-btn:hover,
.board-next-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.board-prev-btn i,
.board-next-btn i {
  font-size: 18px;
  line-height: 1;
}

/* Viewport clips overflow */
.board-viewport {
  overflow: hidden;
}

.board-track {
  display: flex;
  gap: 16px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* ── Portrait card — photo fills entire card ── */
.board-member-card {
  flex-shrink: 0;
  width: calc(20% - 13px);
  /* 5 visible on large desktop */
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, #1a3a6e 0%, #0d1b3e 100%);
  cursor: default;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.board-member-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.5);
}

/* Image area fills the whole card */
.bmc-img-area {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Actual photo — swap in when images are ready */
.bmc-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* Initials placeholder shown until photo is provided */
.bmc-initials {
  font-family: var(--font-head);
  font-size: 56px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.15);
  letter-spacing: 2px;
  user-select: none;
}

/* Gradient overlay at bottom — always on top of photo */
.bmc-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 12px 12px;
  background: linear-gradient(to top,
      rgba(5, 10, 25, 0.95) 0%,
      rgba(5, 10, 25, 0.75) 50%,
      transparent 100%);
  z-index: 2;
}

.bmc-name {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 2px;
}

.bmc-role {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.4;
}

.bmc-badge {
  display: inline-block;
  background: rgba(246, 170, 0, 0.2);
  border: 1px solid rgba(246, 170, 0, 0.45);
  color: var(--orange);
  font-family: var(--font-head);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 2px 9px;
  border-radius: 20px;
  margin-top: 7px;
  display: block;
  width: fit-content;
}

/* Dot pagination */
.board-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.bdot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  padding: 0;
  transition: background var(--trans), transform var(--trans), width var(--trans);
}

.bdot.active {
  background: var(--orange);
  transform: scale(1.3);
  width: 22px;
  border-radius: 4px;
}

/* Responsive breakpoints */
@media (max-width: 1199px) {
  .board-member-card {
    width: calc(33.333% - 11px);
    /* 3 per view */
  }
}

@media (max-width: 767px) {
  .board-member-card {
    width: calc(50% - 8px);
    /* 2 per view */
  }

  .board-slider-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .board-nav-btns {
    align-self: flex-end;
  }
}

@media (max-width: 480px) {
  .board-member-card {
    width: 75vw;
    /* 1 per view, partially shows next */
  }
}

/* ======================================================
   SERVICES
   ====================================================== */
.services {
  background: var(--grey-light);
}

.svc-card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--trans);
  height: 100%;
}

.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.svc-card-img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.svc-card:hover .svc-card-img {
  transform: scale(1.06);
}

.svc-card-img-wrap {
  overflow: hidden;
}

.svc-card-body {
  padding: 24px;
}

.svc-card-icon {
  width: 46px;
  height: 46px;
  background: var(--orange-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: background var(--trans);
}

.svc-card:hover .svc-card-icon {
  background: var(--grad);
}

.svc-card-icon svg {
  width: 22px;
  height: 22px;
  color: var(--blue1);
  transition: color var(--trans);
}

.svc-card:hover .svc-card-icon svg {
  color: var(--white);
}

.svc-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.svc-card p {
  font-size: 13px;
  color: var(--grey);
  line-height: 1.8;
  margin-bottom: 16px;
}

.svc-card .read-more {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  color: var(--blue1);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--trans);
}

.svc-card:hover .read-more {
  gap: 10px;
}

.read-more-arrow {
  font-size: 14px;
}

/* ======================================================
   WORLD MAP / GLOBAL REACH
   ====================================================== */
.global {
  background: var(--white);
}

.map-container {
  position: relative;
  background: var(--grey-light);
  border-radius: var(--radius);
  padding: 40px;
  border: 1px solid var(--grey-border);
  overflow: hidden;
}

/* SVG world map */
.world-map-svg {
  width: 100%;
  height: auto;
  display: block;
}

.map-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.map-pin-dot {
  width: 12px;
  height: 12px;
  background: var(--grad);
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 3px rgba(26, 111, 212, 0.3);
  animation: ping 2s infinite;
  position: relative;
  z-index: 2;
}

@keyframes ping {

  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(26, 111, 212, 0.3);
  }

  50% {
    box-shadow: 0 0 0 7px rgba(56, 182, 255, 0.15);
  }
}

.map-pin-label {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark);
  color: var(--white);
  font-size: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  white-space: nowrap;
  padding: 3px 8px;
  border-radius: 3px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--trans);
}

.map-pin:hover .map-pin-label {
  opacity: 1;
}

.global-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.g-stat {
  background: var(--grad);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
}

.g-stat:nth-child(even) {
  background: var(--navy);
}

.g-stat .num {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
}

.g-stat .lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* ======================================================
   INDUSTRIES GRID
   ====================================================== */
.industries {
  background: var(--grey-light);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.ind-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 220px;
  cursor: pointer;
}

.ind-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.ind-card:hover img {
  transform: scale(1.08);
}

.ind-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(15, 15, 25, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  transition: var(--trans);
}

.ind-card:hover .ind-overlay {
  background: linear-gradient(180deg, rgba(26, 111, 212, 0.2) 0%, rgba(15, 15, 25, 0.9) 100%);
}

.ind-tag {
  display: inline-block;
  background: var(--grad);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 8px;
  width: fit-content;
}

.ind-overlay h5 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}

/* ======================================================
   WHY CHOOSE US
   ====================================================== */
.why {
  background: var(--white);
}

.why-feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 24px;
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  transition: var(--trans);
  height: 100%;
}

.why-feature:hover {
  border-color: var(--blue1);
  box-shadow: 0 4px 16px rgba(56, 182, 255, 0.15);
  transform: translateY(-4px);
}

.why-ico {
  width: 52px;
  height: 52px;
  background: var(--orange-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--trans);
}

.why-feature:hover .why-ico {
  background: var(--grad);
}

.why-ico svg {
  width: 24px;
  height: 24px;
  color: var(--blue1);
  transition: color var(--trans);
}

.why-feature:hover .why-ico svg {
  color: var(--white);
}

.why-text h5 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.why-text p {
  font-size: 13px;
  color: var(--grey);
  line-height: 1.8;
}

/* ======================================================
   NEWS / UPDATES
   ====================================================== */
.news {
  background: var(--grey-light);
}

.news-card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--trans);
  height: 100%;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.news-img-wrap {
  overflow: hidden;
  height: 190px;
}

.news-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card:hover .news-img {
  transform: scale(1.05);
}

.news-body {
  padding: 22px;
}

.news-cat {
  display: inline-block;
  background: var(--orange-light);
  color: var(--blue1);
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 10px;
}

.news-body h5 {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 8px;
  color: var(--dark);
}

.news-body p {
  font-size: 13px;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 14px;
}

.news-date {
  font-size: 11px;
  color: var(--grey);
  display: flex;
  align-items: center;
  gap: 6px;
}

.news-date svg {
  width: 13px;
  height: 13px;
  color: var(--blue1);
}

/* ======================================================
   CLIENTS
   ====================================================== */
/* ======================================================
   MEMBERS SECTION
   ====================================================== */
.members-sec {
  background: var(--white);
  padding: 80px 0 72px;
}

.members-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.members-label-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.members-dash {
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--orange);
  flex-shrink: 0;
}

.members-heading {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(30px, 4vw, 45px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.1;
  margin: 0;
}

.members-cta {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #f48029;
  text-decoration: none;
  white-space: nowrap;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--orange);
  transition: color var(--trans);
  align-self: flex-end;
  margin-bottom: 6px;
}

.members-cta:hover {
  color: var(--orange);
}

/* Ticker */
.client-track-wrap {
  overflow: hidden;
  border-top: 1px solid #e2e2e2;
  border-bottom: 1px solid #e2e2e2;
  mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
  margin-bottom: 40px;
}

.client-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: scroll-logos 26s linear infinite;
}

.client-track:hover {
  animation-play-state: paused;
}

@keyframes scroll-logos {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.c-logo {
  flex-shrink: 0;
  width: 200px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #e2e2e2;
  padding: 0 24px;
  transition: background var(--trans);
}

.c-logo:hover {
  background: var(--orange-light);
}

.c-logo img {
  max-height: 52px;
  max-width: 140px;
  width: auto;
  object-fit: contain;
  transition: transform var(--trans);
}

.c-logo:hover img {
  transform: scale(1.07);
}

/* Category cards */
.members-cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid #e2e2e2;
}

.members-cat-card {
  padding: 28px 32px;
  border-right: 1px solid #e2e2e2;
}

.members-cat-card:last-child {
  border-right: none;
}

.members-cat-label {
  display: block;
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.members-cat-names {
  font-size: 15px;
  color: var(--dark);
  margin: 0;
  line-height: 1.5;
}

.members-cat-logos {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.members-cat-logos img {
  max-height: 40px;
  max-width: 110px;
  width: auto;
  object-fit: contain;
  transition: transform var(--trans);
}

.member-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.member-card-logo {
  max-height: 72px;
  max-width: 160px;
  object-fit: contain;
}

.member-card .members-cat-label {
  margin-bottom: 4px;
}

.members-cat-logos img:hover {
  transform: scale(1.07);
}

@media (max-width: 767px) {
  .members-cats {
    grid-template-columns: 1fr;
  }

  .members-cat-card {
    border-right: none;
    border-bottom: 1px solid #e2e2e2;
  }

  .members-cat-card:last-child {
    border-bottom: none;
  }

  .members-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ======================================================
   CONTACT
   ====================================================== */
.contact {
  background: var(--grey-light);
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  padding: 40px;
}

.form-lbl {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--dark);
  display: block;
  margin-bottom: 6px;
}

.form-ctrl {
  width: 100%;
  background: var(--grey-light);
  border: 1.5px solid var(--grey-border);
  border-radius: var(--radius);
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--dark);
  outline: none;
  transition: border-color var(--trans), box-shadow var(--trans);
  margin-bottom: 16px;
}

.form-ctrl:focus {
  border-color: var(--blue1);
  box-shadow: 0 0 0 3px rgba(56, 182, 255, 0.15);
  background: var(--white);
}

.form-ctrl::placeholder {
  color: #aaa;
}

textarea.form-ctrl {
  resize: vertical;
  min-height: 110px;
}

.form-btn {
  width: 100%;
  background: var(--grad-orange);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  padding: 13px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: var(--trans);
  margin-top: 4px;
}

.form-btn:hover {
  background: var(--grad-orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(244, 121, 32, 0.3);
}

.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--grey-border);
}

.contact-info-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.ci-icon {
  width: 40px;
  height: 40px;
  background: var(--orange-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ci-icon svg {
  width: 18px;
  height: 18px;
  color: var(--blue1);
}

.ci-text strong {
  display: block;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 3px;
}

.ci-text span {
  font-size: 13px;
  color: var(--grey);
  line-height: 1.6;
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  height: 220px;
  border: 1px solid var(--grey-border);
  margin-top: 24px;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.form-success-msg {
  display: none;
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 13px;
  color: #065f46;
  margin-top: 12px;
  align-items: center;
  gap: 8px;
}

.form-success-msg.show {
  display: flex;
}

.form-success-msg i {
  font-size: 16px;
  color: #059669;
  flex-shrink: 0;
  line-height: 1;
}

/* ── Contact V2 ─────────────────────────────────────── */
/* ======================================================
   CONTACT — REDESIGN
   ====================================================== */
.contact-redesign {
  background: #fafafa;
  padding: 40px 0;
}

.cr-wrap {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: start;
}

/* ── LEFT ── */
.cr-badge {
  display: inline-block;
  border: 1.5px solid var(--orange);
  color: var(--orange);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 3px;
  margin-bottom: 20px;
}

.cr-label-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.cr-dash {
  width: 28px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  flex-shrink: 0;
}

.cr-label-text {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--orange);
}

.cr-heading {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.cr-desc {
  font-size: 18px;
  color: var(--grey);
  line-height: 1.75;
  margin-bottom: 28px;
}

.cr-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.cr-card {
  background: #ffffff;
  border: 1.5px solid var(--grey-border);
  /* border-left: 4px solid var(--blue1); */
  border-radius: 4px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
}

.cr-card-read-more {
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue1);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color var(--trans);
}

.cr-card-read-more:hover {
  color: var(--orange-dark);
  text-decoration: underline;
}

.cr-card-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
  font-family: 'DM Serif Display', Georgia, serif;
}

.cr-card-body {
  font-size: 16px;
  color: var(--grey);
  line-height: 1.65;
}

.cr-info-bar {
  background: var(--navy);
  border-radius: 6px;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cr-info-bar span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.cr-info-bar a {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  transition: opacity var(--trans);
}

.cr-info-bar a:hover {
  opacity: 0.8;
}

/* ── RIGHT: FORM ── */
.cr-form-card {
  background: #fff;
  border: 1.5px solid var(--grey-border);
  border-radius: 4px;
  padding: 36px 32px;
  /* box-shadow: 0 4px 32px rgba(26, 111, 212, 0.08); */
}

.cr-form-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 24px;
  font-family: 'DM Serif Display', Georgia, serif;
}

.cr-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.cr-field {
  margin-bottom: 14px;
}

.cr-lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--grey);
  display: block;
  margin-bottom: 5px;
}

.cr-ctrl {
  width: 100%;
  background: #fff;
  border: 1.5px solid var(--grey-border);
  border-radius: var(--radius);
  padding: 10px 13px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--dark);
  outline: none;
  transition: border-color var(--trans), box-shadow var(--trans);
  -webkit-appearance: none;
  appearance: none;
}

.cr-ctrl:focus {
  border-color: var(--blue1);
  box-shadow: 0 0 0 3px rgba(26, 111, 212, 0.10);
}

.cr-ctrl::placeholder {
  color: #bbb;
}

textarea.cr-ctrl {
  resize: vertical;
  min-height: 100px;
}

.cr-btn {
  width: 100%;
  background: var(--grad-orange);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 14px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.8px;
  cursor: pointer;
  transition: background var(--trans), transform var(--trans);
  margin-top: 4px;
}

.cr-btn:hover {
  background: var(--grad-orange-dark);
  transform: translateY(-1px);
}

@media (max-width: 991px) {
  .cr-wrap {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 576px) {
  .cr-row {
    grid-template-columns: 1fr;
  }

  .cr-form-card {
    padding: 24px 18px;
  }

  .cr-info-bar {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
}

/* ======================================================
   FOOTER
   ====================================================== */
.footer-top {
  background: var(--navy);
  padding: 40px 0 20px;
}

.footer-logo-wrap {
  margin-bottom: 16px;
}

.footer-logo-wrap .logo-name {
  color: var(--white);
}

.footer-logo-wrap .logo-tagline {
  color: rgba(255, 255, 255, 0.4);
}

.footer-about {
  font-size: 15px;
  color: white;
  line-height: 1.9;
  margin-bottom: 22px;
  /* max-width: 240px; */
}

.footer-socials {
  display: flex;
  gap: 8px;
}

.f-social {
  width: 34px;
  height: 34px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--trans);
}

.f-social:hover {
  background: var(--grad);
  border-color: var(--blue1);
}

.f-social i {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1;
  transition: color var(--trans);
}

.f-social:hover i {
  color: var(--white);
}

.f-col-title {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}

.f-links {
  list-style: none;
  padding: 0;
}

.f-links li {
  margin-bottom: 9px;
}

body .sk-ww-linkedin-page-post {
  box-sizing: border-box;
  max-width: 100%;
  background-color: var(--widget-bg-color);
  font-size: var(--details-font-size);
  line-height: 1.5;
  margin-block: var(--widget-outer-margin, 24px);
  /* margin-inline: var(--widget-outer-margin, 0px); */
  padding-block: var(--widget-padding);
  padding-inline: var(--widget-padding);
  border: var(--show-widget-border, 1px solid rgba(15, 23, 42, 0.06));
  border-radius: var(--show-widget-border-radius, 12px);
  box-shadow: var(--widget-shell-shadow);
  font-family: var(--font-family);
  -webkit-font-smoothing: antialiased;
  container-type: inline-size;
  container-name: linkedin-page-posts;
}

.f-links a {
  font-size: 16px;
  color: white;
  transition: color var(--trans);
  display: flex;
  align-items: center;
  gap: 6px;
}

.f-links a::before {
  content: '>';
  color: var(--blue1);
  font-size: 16px;
  line-height: 1;
}

.f-links a:hover {
  color: var(--blue1);
}

.f-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.f-contact-item i {
  font-size: 14px;
  color: var(--blue1);
  margin-top: 4px;
  flex-shrink: 0;
  line-height: 1;
}

.f-contact-item span {
  font-size: 16px;
  color: white;
  line-height: 1.6;
}

.footer-bottom {
  background: #111827;
  padding: 16px 0;
}

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

.footer-bottom p {
  font-size: 12px;
  color: rgb(255, 255, 255);
  margin-bottom: 0px;
}

.footer-credit {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
}

.footer-credit-logo {
  display: inline-flex;
  align-items: center;
}

.footer-credit-logo img {
  height: 17px;
  width: auto;
  opacity: 0.85;
  transition: opacity var(--trans);
}

.footer-credit-logo:hover img {
  opacity: 1;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.3);
  transition: color var(--trans);
}

.footer-bottom a:hover {
  color: var(--blue1);
}

/* ── old back-to-top replaced by .fab-stack ── */

/* ======================================================
   SERVICE TABS
   ====================================================== */
.svc-tabs {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--grey-border);
  box-shadow: var(--shadow);
}

.svc-tab-nav {
  display: flex;
  border-bottom: 1px solid var(--grey-border);
  background: var(--grey-light);
  overflow-x: auto;
}

.svc-tab-btn {
  flex: 1;
  min-width: 140px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 20px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.svc-tab-btn:hover {
  background: rgba(26, 111, 212, 0.05);
}

.svc-tab-btn.active {
  background: var(--white);
  border-bottom-color: var(--blue1);
}

.svc-tab-ico {
  width: 34px;
  height: 34px;
  background: var(--orange-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s ease;
}

.svc-tab-ico svg {
  width: 16px;
  height: 16px;
  color: var(--blue1);
  transition: color 0.3s;
}

.svc-tab-btn.active .svc-tab-ico {
  background: var(--grad);
}

.svc-tab-btn.active .svc-tab-ico svg {
  color: white;
}

.svc-tab-btn span {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 500;
  color: var(--grey);
  transition: color 0.3s;
}

.svc-tab-btn.active span {
  color: var(--blue1);
  font-weight: 700;
}

/* Panels */
.svc-tab-panels {
  position: relative;
  min-height: 420px;
}

.svc-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  animation: panelFadeIn 0.5s ease;
}

.svc-panel.active {
  display: grid;
}

.svc-panel-img {
  position: relative;
  height: 420px;
  overflow: hidden;
}

.svc-panel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.svc-panel:hover .svc-panel-img img {
  transform: scale(1.04);
}

.svc-panel-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--grad);
  color: white;
  border-radius: 8px;
  padding: 12px 18px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.spb-num {
  display: block;
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.spb-lbl {
  display: block;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.85;
  margin-top: 4px;
}

.svc-panel-content {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}

.svc-num {
  font-family: var(--font-head);
  font-size: 52px;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
  opacity: 0.15;
}

.svc-panel-content h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 14px;
  margin-top: -30px;
}

.svc-panel-content p {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.9;
  margin-bottom: 20px;
}

.svc-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.svc-checklist li {
  font-size: 13px;
  color: var(--dark);
  padding: 8px 0;
  border-bottom: 1px solid var(--grey-border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.svc-checklist li:last-child {
  border-bottom: none;
}

.svc-checklist li::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--grad);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='9' cy='9' r='9' fill='url(%23g)'/%3E%3Cpath d='M5 9l3 3 5-5' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='0' x2='18' y2='18'%3E%3Cstop stop-color='%231a6fd4'/%3E%3Cstop offset='1' stop-color='%2338b6ff'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
  background-size: cover;
}

@media (max-width: 767px) {
  .svc-panel.active {
    grid-template-columns: 1fr;
  }

  .svc-panel-img {
    height: 220px;
  }

  .svc-panel-content {
    padding: 28px 24px;
  }

  .svc-tab-btn {
    min-width: 110px;
    padding: 14px 12px;
  }

  .svc-tab-btn span {
    font-size: 11px;
  }
}

/* ======================================================
   GLOBAL V2 — Full-width dark split
   ====================================================== */
.global-v2 {
  padding: 0;
  overflow: hidden;
}

.global-v2-inner {
  display: grid;
  grid-template-columns: 420px 1fr;
  min-height: 580px;
}

.global-v2-left {
  background: linear-gradient(160deg, #0d1b3e 0%, #1a3a6e 100%);
  padding: 64px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Region list */
.region-list {
  margin-bottom: 32px;
}

.region-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.25s ease;
  margin-bottom: 4px;
}

.region-item:hover,
.region-item.active-region {
  background: rgba(56, 182, 255, 0.1);
}

.ri-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
  transition: background 0.25s ease;
}

.region-item.active-region .ri-dot,
.region-item:hover .ri-dot {
  background: var(--blue2);
}

.ri-text {
  flex: 1;
}

.ri-text strong {
  display: block;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.ri-text span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
}

.ri-arrow {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.2);
  transition: color 0.25s ease;
}

.region-item:hover .ri-arrow,
.region-item.active-region .ri-arrow {
  color: var(--blue2);
}

/* Stat row */
.global-v2-stats {
  display: flex;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.gv2-stat {
  flex: 1;
  text-align: center;
  padding: 16px 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.gv2-stat:last-child {
  border-right: none;
}

.gv2-num {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gv2-lbl {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.global-v2-right {
  background: #0d1b3e;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 24px;
}

.global-v2-right .world-map-svg {
  width: 100%;
  height: auto;
}

@media (max-width: 991px) {
  .global-v2-inner {
    grid-template-columns: 1fr;
  }

  .global-v2-left {
    padding: 48px 28px;
  }

  .global-v2-right {
    padding: 16px;
    min-height: 300px;
  }
}

/* ======================================================
   WHY V2 — Numbered card grid
   ====================================================== */
.why-v2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.wv2-card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: 8px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.wv2-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.wv2-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.wv2-card:hover::after {
  transform: scaleX(1);
}

/* Gradient card */
.wv2-gradient {
  background: var(--grad);
  border-color: transparent;
  color: white;
}

.wv2-gradient h4,
.wv2-gradient p {
  color: white;
}

.wv2-gradient h4 {
  color: white;
}

.wv2-gradient p {
  opacity: 0.85;
}

.wv2-gradient::after {
  background: rgba(255, 255, 255, 0.3);
}

.wv2-gradient .wv2-num {
  color: rgba(255, 255, 255, 0.15);
  -webkit-text-fill-color: rgba(255, 255, 255, 0.15);
}

.wv2-gradient .wv2-ico {
  background: rgba(255, 255, 255, 0.15);
}

.wv2-gradient .wv2-ico svg {
  color: white;
}

.wv2-gradient .wv2-tag {
  background: rgba(255, 255, 255, 0.15);
  color: white;
}

/* Dark card */
.wv2-dark {
  background: #0d1b3e;
  border-color: #0d1b3e;
}

.wv2-dark h4 {
  color: white;
}

.wv2-dark p {
  color: rgba(255, 255, 255, 0.55);
}

.wv2-dark .wv2-num {
  color: rgba(255, 255, 255, 0.06);
  -webkit-text-fill-color: rgba(255, 255, 255, 0.06);
}

.wv2-dark .wv2-ico {
  background: rgba(56, 182, 255, 0.1);
}

.wv2-dark .wv2-ico svg {
  color: var(--blue2);
}

.wv2-dark .wv2-tag {
  background: rgba(56, 182, 255, 0.12);
  color: var(--blue2);
}

.wv2-num {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.08;
  line-height: 1;
  pointer-events: none;
}

.wv2-ico {
  width: 50px;
  height: 50px;
  background: var(--orange-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: background 0.3s ease;
}

.wv2-ico svg {
  width: 22px;
  height: 22px;
  color: var(--blue1);
  transition: color 0.3s;
}

.wv2-card:not(.wv2-gradient):not(.wv2-dark):hover .wv2-ico {
  background: var(--grad);
}

.wv2-card:not(.wv2-gradient):not(.wv2-dark):hover .wv2-ico svg {
  color: white;
}

.wv2-card h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}

.wv2-card p {
  font-size: 13px;
  color: var(--grey);
  line-height: 1.8;
  margin-bottom: 16px;
}

.wv2-tag {
  display: inline-block;
  background: var(--orange-light);
  color: var(--blue1);
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}

@media (max-width: 991px) {
  .why-v2-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .why-v2-grid {
    grid-template-columns: 1fr;
  }
}

/* ======================================================
   RESPONSIVE
   ====================================================== */
@media (max-width: 991px) {
  .sec {
    padding: 60px 0;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .top-bar {
    display: none;
  }

  .intro-stat-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .global-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Restore container side padding that hero shorthand removed */
  .hero-content {
    padding-left: var(--bs-gutter-x, 12px);
    padding-right: var(--bs-gutter-x, 12px);
  }

  .hero-content .col-content {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .sec {
    padding: 48px 0;
  }

  .hero {
    min-height: 60vh;
    align-items: center;
  }

  .hero-content {
    padding-top: 70px;
    padding-bottom: 100px;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
  }

  .hero-content .col-content {
    max-width: 100%;
  }

  .hero-eyebrow {
    font-size: 10px;
    letter-spacing: 2.5px;
    margin-bottom: 12px;
  }

  .hero-title {
    font-size: clamp(28px, 8vw, 42px);
    letter-spacing: -0.5px;
    margin-bottom: 14px;
  }

  .hero-sub {
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 24px;
    max-width: 100%;
  }


  .hero-overlay {
    /* background: linear-gradient(
      180deg,
      rgba(10, 10, 20, 0.85) 0%,
      rgba(10, 10, 20, 0.70) 55%,
      rgba(10, 10, 20, 0.40) 100%
    ); */
  }

  .hero-btns {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }

  .hero-btns .btn-orange,
  .hero-btns .btn-white-outline {
    flex: 1 1 140px;
    text-align: center;
    padding: 13px 16px;
    font-size: 13px;
  }

  .intro-stat-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .map-container {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .industry-grid {
    grid-template-columns: 1fr;
  }

  .global-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-content {
    padding-top: 60px;
    padding-bottom: 90px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-btns .btn-orange,
  .hero-btns .btn-white-outline {
    flex: 1 1 100%;
    padding: 12px 14px;
  }
}

/* ======================================================
   LINKEDIN IFRAME (footer Follow Us)
   ====================================================== */
.li-widget-card {
  border-radius: 12px;
  overflow: hidden;
  /* border: 1px solid rgba(10, 102, 194, 0.3); */
  box-shadow: 0 4px 28px rgba(10, 102, 194, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

.li-widget-header {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  background: rgba(10, 102, 194, 0.1);
  border-bottom: 1px solid rgba(10, 102, 194, 0.18);
}

.li-widget-icon {
  font-size: 15px;
  color: #4d9de0;
}

.li-widget-name {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.2px;
  flex: 1;
}

.li-widget-follow-btn {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;

  color: #fff;
  background: #0a66c2;
  border: 1px solid rgba(10, 102, 194, 0.35);
  border-radius: 20px;
  padding: 3px 10px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.li-widget-follow-btn:hover {
  background: rgba(10, 102, 194, 0.12);
  color: #4d9de0;
  border-color: #0a66c2;
}

.li-iframe-wrap {
  position: relative;
  overflow: hidden;
  background: #fff;
  height: 260px;
  padding: 0;
  line-height: 0;
}

.li-iframe {
  width: calc(100% + 32px);
  height: calc(100% + 32px);
  margin: -16px;
  border: none;
  display: block;
}

.li-widget-footer {
  padding: 6px 10px;
  background: rgba(10, 102, 194, 0.07);
  border-top: 1px solid rgba(10, 102, 194, 0.15);
  text-align: right;
}

.li-widget-view-link {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s;
}

.li-widget-view-link:hover {
  color: #4d9de0;
}

/* shown only when iframe is blocked */
.li-iframe-fallback {
  display: none;
  position: absolute;
  inset: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(13, 27, 62, 0.97);
  text-align: center;
  padding: 24px;
}

.li-iframe-fallback i {
  font-size: 36px;
  color: #0a66c2;
}

.li-iframe-fallback p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0;
}

/* ======================================================
   LINKEDIN FEED WIDGET (footer Follow Us) — legacy kept
   ====================================================== */
.li-feed-widget {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.li-feed-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  background: #0a66c2;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--trans);
}

.li-feed-header:hover {
  background: #004182;
}

.li-feed-header>i {
  font-size: 22px;
  color: #fff;
  flex-shrink: 0;
}

.li-feed-company {
  font-size: 12.5px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.li-feed-desc {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.3;
}

.li-feed-scroll-wrap {
  height: 196px;
  overflow: hidden;
  position: relative;
}

.li-feed-scroll-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 44px;
  background: linear-gradient(transparent, rgba(13, 27, 62, 0.97));
  pointer-events: none;
  z-index: 1;
}

.li-feed-track {
  animation: liScroll 28s linear infinite;
}

.li-feed-track:hover {
  animation-play-state: paused;
}

@keyframes liScroll {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-50%);
  }
}

.li-post {
  padding: 11px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.li-post-text {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0 0 7px;
}

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

.li-post-footer span {
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.38);
}

.li-post-footer span i {
  color: #0a66c2;
  font-size: 10px;
}

.li-follow-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 14px;
  background: #0a66c2;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
  transition: background var(--trans);
  text-decoration: none;
}

.li-follow-btn:hover {
  background: #004182;
  color: #fff;
}

.li-follow-btn i {
  font-size: 14px;
}

/* ======================================================
   TESTIMONIALS SECTION
   ====================================================== */
.testimonials-sec {
  position: relative;
  padding: 90px 0 80px;
  background: url('../images/bg-image3.png') center center / cover no-repeat;
  overflow: hidden;
}

.testimonials-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  /* background: rgba(10, 20, 60, 0.82); */
  pointer-events: none;
  z-index: 1;
}

/* subtle grid overlay */
/* .testimonials-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(255,255,255,0.022) 59px, rgba(255,255,255,0.022) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(255,255,255,0.022) 59px, rgba(255,255,255,0.022) 60px);
  pointer-events: none;
} */

/* decorative Finnish cross shape, top-right */
.testimonials-sec::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 420px;
  height: 420px;
  background:
    linear-gradient(transparent 37%, rgba(0, 53, 128, 0.22) 37%, rgba(0, 53, 128, 0.22) 51%, transparent 51%),
    linear-gradient(90deg, transparent 27%, rgba(0, 53, 128, 0.22) 27%, rgba(0, 53, 128, 0.22) 41%, transparent 41%);
  border-radius: 50%;
  pointer-events: none;
}

/* top row: heading left, nav arrows right */
.testi-top-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.testi-heading {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}

.testi-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.50);
  max-width: 520px;
  line-height: 1.65;
}

.testi-nav-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

/* viewport left-aligned with heading */
.testi-viewport {
  overflow: hidden;
}

.testi-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── New card design ── */
.testi-card {
  flex: 0 0 calc(33.333% - 16px);
  border-radius: 4px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* .testi-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.22);
} */

/* top gradient accent bar */
/* .testi-card-accent {
  height: 4px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--blue1) 100%);
  flex-shrink: 0;
} */

/* quote body area */
.testi-card-body {
  padding: 26px 26px 22px;
  flex: 1;
  position: relative;
  overflow: hidden;
}

/* large decorative background quote mark */
/* .testi-bg-quote {
  position: absolute;
  top: -8px;
  right: 16px;
  font-size: 140px;
  line-height: 1;
  color: rgba(0, 0, 0, 0.04);
  font-family: Georgia, serif;
  pointer-events: none;
  user-select: none;
} */

.testi-quote-icon {
  font-size: 28px;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 14px;
  display: block;
  position: relative;
}

.testi-text {
  font-size: 14px;
  color: #4a5568;
  line-height: 1.78;
  font-style: italic;
  margin: 0;
  position: relative;
}

/* author strip at bottom */
.testi-card-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 24px;
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  letter-spacing: 0.5px;
}

.testi-author-info {
  flex: 1;
  min-width: 0;
}

.testi-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.testi-role {
  font-size: 11px;
  color: var(--grey);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.testi-flag {
  width: 30px;
  height: auto;
  border-radius: 2px;
  flex-shrink: 0;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
}

/* nav buttons */
.testi-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background var(--trans), color var(--trans), border-color var(--trans);
  font-size: 15px;
}

.testi-btn:hover {
  background: var(--blue1);
  color: #fff;
  border-color: var(--blue1);
}

/* dots */
.testi-dots {
  display: flex;
  gap: 8px;
  margin-top: 32px;
  justify-content: center;
}

.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: none;
  cursor: pointer;
  transition: background var(--trans), transform var(--trans), width var(--trans);
  padding: 0;
}

.testi-dot.active {
  background: var(--orange);
  transform: scale(1.3);
  width: 22px;
  border-radius: 4px;
}

@media (max-width: 991px) {
  .testi-card {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (max-width: 600px) {
  .testi-card {
    flex: 0 0 100%;
  }

  .testi-top-row {
    align-items: flex-start;
  }
}

/* ======================================================
   MOBILE — COMPREHENSIVE RESPONSIVE FIXES
   ====================================================== */

/* ── 1. Base font size: prevent Bootstrap rem inflation on mobile ── */
@media (max-width: 767px) {
  html {
    font-size: 16px;
  }
}

/* ── 2. Hero overlay: uniform dark tint on mobile so text stays readable ── */
@media (max-width: 767px) {
  .hero-slide {
    background-image: url('../images/bg-image3.png') !important;
    background-size: cover;
    background-position: center;
  }

  .hero-overlay {
    background: linear-gradient(180deg,
        rgba(10, 10, 20, 0.82) 0%,
        rgba(10, 10, 20, 0.70) 55%,
        rgba(10, 10, 20, 0.55) 100%) !important;
  }

  .hero {
    min-height: 70vh;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 100svh;
    min-height: 50vh;
  }

  .hero-content {
    padding-top: 80px;
    padding-bottom: 60px;
  }
}

/* ── 3. Benefits tab nav: 2×2 grid on mobile — all 4 tabs always visible ── */
@media (max-width: 767px) {
  .benfits-tab-nav {
    flex-wrap: wrap;
    overflow-x: visible;
    gap: 6px;
    border-bottom: none;
    margin-bottom: 36px;
    padding-bottom: 0;
  }

  /* 2 tabs per row */
  .benfits-tab {
    flex: 0 0 calc(50% - 3px);
    white-space: normal;
    font-size: 13px;
    padding: 12px 10px;
    margin-bottom: 0;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    text-align: center;
    line-height: 1.3;
  }

  /* active tab on mobile: orange border + subtle fill instead of the bottom-line trick */
  .benfits-tab.active {
    border-color: var(--orange);
    border-bottom-color: var(--orange);
    background: rgba(244, 121, 32, 0.12);
  }
}

@media (max-width: 400px) {
  .benfits-tab {
    font-size: 11px;
    padding: 10px 8px;
  }
}

/* ── 4. Stats bar: 2×2 on small screens ── */
@media (max-width: 575px) {
  .intro-stat-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro-stat .num {
    font-size: 26px;
  }

  .hero-stat-bar .intro-stat {
    padding: 20px 10px;
  }
}

/* ── 5. About section: reduce vertical rhythm ── */
@media (max-width: 575px) {
  .about-split-sec.sec {
    padding: 48px 0;
  }

  .about-entry {
    padding: 24px 0;
  }

  .about-split-heading {
    font-size: clamp(24px, 7vw, 32px);
  }

  .emb-img {
    height: 220px;
  }
}

/* ── 6. Benefits section: tighter on small screens ── */
@media (max-width: 575px) {
  .benfits-sec {
    padding: 56px 0 48px;
  }

  .benfits-header {
    margin-bottom: 32px;
  }

  .benfits-panel-inner {
    gap: 28px;
  }

  .benfits-item {
    padding: 16px 0;
    gap: 14px;
  }

  .benfits-item-title {
    font-size: 15px;
  }

  .benfits-panel-body {
    font-size: 15px;
    margin-bottom: 22px;
  }
}

/* ── 7. Testimonials: heading size + tighter padding ── */
@media (max-width: 600px) {
  .testimonials-sec {
    padding: 60px 0 56px;
  }

  .testi-heading {
    font-size: clamp(24px, 7vw, 34px);
  }

  .testi-nav-btns {
    align-self: flex-start;
  }
}

/* ── 8. Contact redesign: full-width form on small screens ── */
@media (max-width: 480px) {
  .contact-redesign {
    padding: 48px 0;
  }

  .cr-form-card {
    padding: 20px 14px;
  }

  .cr-wrap {
    gap: 28px;
  }
}

/* ── 9. Footer: column spacing on small screens ── */
@media (max-width: 575px) {
  .footer-top {
    padding: 32px 0 16px;
  }

  .f-col-title {
    margin-top: 20px;
    margin-bottom: 14px;
  }

  .footer-credit {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ── 10. Members / logo ticker: smaller logos on mobile ── */
@media (max-width: 575px) {
  .c-logo {
    width: 140px;
    height: 60px;
    padding: 0 16px;
  }

  .c-logo img {
    max-height: 40px;
    max-width: 100px;
  }

  .members-sec {
    padding: 56px 0 48px;
  }
}

/* ── 11. Nav logo: prevent logo overflowing on tiny screens ── */
@media (max-width: 375px) {
  .logo-img {
    height: 36px;
  }

  .nav-inner {
    height: 60px;
  }

  .mobile-menu {
    top: 60px;
  }
}

/* ── 12. General section padding on very small screens ── */
@media (max-width: 400px) {
  .sec {
    padding: 40px 0;
  }

  .hero-eyebrow {
    font-size: 9px;
    letter-spacing: 2px;
  }

  .hero-title {
    font-size: clamp(24px, 9vw, 36px);
  }

  .hero-sub {
    font-size: 13px;
  }
}

/* ── 13. Prevent horizontal scroll on body only ──
   Do NOT set overflow-x on html — doing so breaks position:sticky
   for all child elements. body { overflow-x: hidden } is sufficient
   and browsers handle it without disrupting sticky. */
body {
  overflow-x: hidden;
}

/* ── Footer: reset g-5 gutter on mobile so row doesn't overflow container ── */
@media (max-width: 991px) {
  .footer-top .row {
    --bs-gutter-x: 1.5rem;
  }
}

/* ── 14. Touch-friendly tap targets ── */
@media (max-width: 767px) {

  .benfits-tab,
  .testi-btn,
  .board-prev-btn,
  .board-next-btn,
  .btn-orange,
  .btn-white-outline,
  .btn-benfits,
  .cr-btn,
  .hamburger {
    min-height: 44px;
    margin-bottom: 10px;
  }

  .hamburger {
    min-width: 44px;
    justify-content: center;
  }
}

/* ── 15. Typography scale-down for mobile — whole site ── */
@media (max-width: 767px) {

  /* body text */
  .sec-sub {
    font-size: 15px;
  }

  .about-entry-body {
    font-size: 15px;
  }

  .benfits-panel-body {
    font-size: 15px;
  }

  .benfits-item-title {
    font-size: 15px;
  }

  .cr-desc {
    font-size: 15px;
  }

  .testi-text {
    font-size: 13px;
  }

  .testi-sub {
    font-size: 12px;
  }

  .f-links a {
    font-size: 14px;
  }

  .f-contact-item span {
    font-size: 14px;
  }

  .footer-about {
    font-size: 14px;
  }

  /* headings */
  .benfits-heading {
    font-size: clamp(26px, 7vw, 36px);
  }

  .benfits-panel-title {
    font-size: clamp(20px, 5vw, 26px);
  }

  .members-heading {
    font-size: clamp(24px, 6.5vw, 34px);
  }

  .cr-heading {
    font-size: clamp(22px, 6vw, 32px);
  }

  /* cards / form */
  .cr-form-title {
    font-size: 18px;
  }

  .cr-card-title {
    font-size: 15px;
  }

  .cr-card-body {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 15px;
  }

  /* body text */
  .sec-sub {
    font-size: 14px;
  }

  .about-entry-body {
    font-size: 14px;
  }

  .about-entry-title {
    font-size: clamp(16px, 4.5vw, 18px);
  }

  .benfits-panel-body {
    font-size: 14px;
  }

  .benfits-item-title {
    font-size: 14px;
  }

  .cr-desc {
    font-size: 14px;
  }

  .testi-text {
    font-size: 13px;
  }

  .f-links a {
    font-size: 13px;
  }

  .f-contact-item span {
    font-size: 13px;
  }

  .footer-about {
    font-size: 13px;
  }

  /* headings */
  .benfits-heading {
    font-size: clamp(22px, 7vw, 30px);
  }

  .benfits-panel-title {
    font-size: clamp(18px, 5vw, 22px);
  }

  .members-heading {
    font-size: clamp(22px, 6.5vw, 28px);
  }

  .testi-heading {
    font-size: clamp(20px, 6.5vw, 26px);
  }

  .cr-heading {
    font-size: clamp(20px, 6vw, 26px);
  }

  /* cards / form */
  .cr-form-title {
    font-size: 16px;
  }

  .cr-card-title {
    font-size: 14px;
  }

  .cr-card-body {
    font-size: 13px;
  }

  /* stats */
  .intro-stat .num {
    font-size: 22px;
  }

  .intro-stat .lbl {
    font-size: 11px;
  }

  /* footer misc */
  .f-col-title {
    font-size: 11px;
  }
}

/* ======================================================
   INNER PAGE — ABOUT US
   ====================================================== */

/* ── Page Banner ── */
.page-banner {
  position: relative;
  background: #2a385b url('../images/bg-image3.png') center / cover no-repeat;
  background-blend-mode: overlay;
  padding: 80px 0 72px;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 27, 62, 0.92) 0%, rgba(13, 27, 62, 0.65) 60%, rgba(13, 27, 62, 0.30) 100%);
}

.page-banner-inner {
  position: relative;
  z-index: 2;
}

.page-banner-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 12px;
}

.page-banner-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(32px, 5vw, 40px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
}

.breadcrumb-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 10px;
}

.breadcrumb-bar a {
  color: rgba(255, 255, 255, 0.7);
  transition: color .2s;
}

.breadcrumb-bar a:hover {
  color: var(--orange);
}

.breadcrumb-bar .sep {
  font-size: 10px;
}

.breadcrumb-bar .bc-current {
  color: var(--orange);
  font-weight: 600;
}

/* ── About Intro split ── */
.about-intro-sec {
  padding: 80px 0 64px;
  background: #fff;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-intro-heading {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(24px, 3.2vw, 38px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin: 10px 0 20px;
}

.about-intro-body {
  font-size: 16px;
  color: var(--grey);
  line-height: 1.85;
  margin-bottom: 0;
}

.about-intro-body+.about-intro-body {
  margin-top: 16px;
}

.about-intro-img {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(26, 111, 212, 0.14);
}

.about-intro-img img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.about-img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(13, 27, 62, 0.88);
  backdrop-filter: blur(6px);
  border-radius: 6px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-img-badge svg {
  width: 32px;
  height: auto;
  border-radius: 2px;
  flex-shrink: 0;
}

.about-img-badge span {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
}

/* Flag pill strip */
.flag-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding: 14px 20px;
  background: var(--grey-light);
  border-radius: 6px;
  width: fit-content;
}

.flag-pill-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.flag-pill-item svg {
  width: 34px;
  height: auto;
  border-radius: 2px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .15);
}

.flag-pill-item span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--dark);
}

.flag-pill-divider {
  font-size: 18px;
  color: var(--grey);
  font-weight: 300;
}

.flag-pill-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--dark);
  margin-left: 4px;
}

/* ── Primary Objects (numbered list + image) ── */
.about-objects-sec {
  background: var(--grey-light);
  padding: 80px 0 72px;
}

.about-objects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-objects-list {
  display: flex;
  flex-direction: column;
}

.ao-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid var(--grey-border);
}

.ao-item:first-of-type {
  border-top: 1px solid var(--grey-border);
}

.ao-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.ao-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 5px;
  line-height: 1.3;
}

.ao-body {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.75;
  margin: 0;
}

.about-objects-img {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(26, 111, 212, 0.12);
}

.about-objects-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* ── Vision / Mission / Values cards ── */
.vm-sec {
  padding: 80px 0 72px;
  background: #fff;
}

.vm-header {
  max-width: 600px;
  margin: 0 auto 48px;
  text-align: center;
}

.vm-header .sec-label {
  display: block;
}

.vm-header-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--dark);
  margin: 10px 0 12px;
  line-height: 1.15;
}

.vm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.vm-card {
  border: 1.5px solid var(--grey-border);
  border-radius: 8px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: box-shadow .3s, transform .3s;
  background: #fff;
}

.vm-card:hover {
  box-shadow: 0 12px 40px rgba(26, 111, 212, 0.12);
  transform: translateY(-4px);
}

.vm-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad);
}

.vm-card-orange::before {
  background: var(--grad-orange);
}

.vm-card-navy::before {
  background: linear-gradient(135deg, #0d1b3e 0%, #1a6fd4 100%);
}

.vm-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
}

.vm-icon-blue {
  background: #e8f2fd;
  color: var(--blue1);
}

.vm-icon-orange {
  background: #fff0e6;
  color: var(--orange);
}

.vm-icon-navy {
  background: #e8eef8;
  color: var(--navy);
}

.vm-card-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 8px;
}

.vm-card-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.25;
}

.vm-card-body {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.8;
  margin: 0;
}

/* ── Board section (dark) ── */
.about-board-sec {
  background: #2a385b url('../images/bg-image.png') center / cover no-repeat;
  background-blend-mode: overlay;
  padding: 80px 0 72px;
  position: relative;
}

.about-board-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 27, 62, 0.92) 0%, rgba(13, 27, 62, 0.82) 100%);
  pointer-events: none;
}

.about-board-sec .container {
  position: relative;
  z-index: 2;
}

.about-board-header {
  margin-bottom: 40px;
}

.about-board-label-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.about-board-label-dash {
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--orange);
  flex-shrink: 0;
}

.about-board-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: #fff;
  margin: 0 0 10px;
}

.about-board-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 520px;
  margin: 0;
}

.about-board-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(165px, 1fr));
  gap: 16px;
}

.about-board-grid .board-member-card {
  width: 100%;
}

/* ── CTA strip ── */
.about-cta-sec {
  background: var(--orange);
  padding: 60px 0;
}

.about-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.about-cta-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: #fff;
  margin: 0 0 6px;
}

.about-cta-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.btn-white-solid {
  display: inline-block;
  background: #fff;
  color: var(--orange);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: none;
  transition: var(--trans);
  white-space: nowrap;
}

.btn-white-solid:hover {
  background: var(--dark);
  color: #fff;
  transform: translateY(-2px);
}

/* ── About page responsive ── */
@media (max-width: 991px) {

  .about-intro-grid,
  .about-objects-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-objects-img {
    order: -1;
  }

  .vm-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-cta-inner {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .page-banner {
    padding: 64px 0 52px;
  }

  .about-intro-sec,
  .about-objects-sec,
  .vm-sec,
  .about-board-sec {
    padding: 56px 0;
  }

  .about-intro-img img {
    height: 260px;
  }

  .about-objects-img img {
    height: 240px;
  }
}

@media (max-width: 575px) {
  .vm-grid {
    grid-template-columns: 1fr;
  }

  .page-banner {
    padding: 52px 0 44px;
  }

  .about-cta-sec {
    padding: 48px 0;
  }
}


/* ======================================================
   ABOUT PAGE — scoped styles
   ====================================================== */

/* ── Hero Banner ── */
.ab-hero {
  position: relative;
  min-height: 240px;
  display: flex;
  align-items: center;
  background: var(--navy) url('../images/bg-image3.png') center / cover no-repeat;
  background-blend-mode: overlay;
  overflow: hidden;
}

.ab-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  /* background: linear-gradient(120deg, rgba(13, 27, 62, 0.97) 0%, rgba(13, 27, 62, 0.78) 55%, rgba(26, 111, 212, 0.30) 100%); */
}

.ab-hero-inner {
  position: relative;
  z-index: 2;
  padding: 80px 0 72px;
}

.ab-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 22px;
}

.ab-hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.ab-hero-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(36px, 5.5vw, 45px);
  font-weight: 400;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 22px;
  max-width: 700px;
}

.ab-hero-title em {
  font-style: italic;
  color: #a8c8ff;
}

.ab-hero-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 36px;
}

.ab-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

.ab-breadcrumb a {
  color: rgba(255, 255, 255, 0.65);
  transition: color .3s;
}

.ab-breadcrumb a:hover {
  color: var(--orange);
}

.ab-breadcrumb .sep {
  color: rgba(255, 255, 255, 0.3);
  font-size: 10px;
}

.ab-breadcrumb .curr {
  color: var(--orange);
  font-weight: 600;
}

.ab-hero-shape {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
}

/* ── Stats Strip ── */
.ab-stats {
  background: #fff;
  border-bottom: 1px solid var(--grey-border);
  padding: 0;
}

.ab-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.ab-stat-cell {
  padding: 40px 28px;
  text-align: center;
  border-right: 1px solid var(--grey-border);
  position: relative;
  transition: background .3s;
}

.ab-stat-cell:last-child {
  border-right: none;
}

.ab-stat-cell:hover {
  background: var(--grey-light);
}

.ab-stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 20px;
  color: var(--blue1);
}

.ab-stat-num {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 400;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 6px;
}

.ab-stat-num span {
  color: var(--orange);
}

.ab-stat-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--grey);
}

/* ── Story Section ── */
.ab-story {
  padding: 100px 0 80px;
  background: #fff;
}

.ab-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.ab-story-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-light);
  color: var(--blue1);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 22px;
}

.ab-story-heading {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 20px;
}

.ab-story-heading em {
  font-style: italic;
  color: var(--blue1);
}

.ab-story-body {
  font-size: 17px;
  color: var(--grey);
  line-height: 1.9;
  margin-bottom: 16px;
}

.ab-story-highlight {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--grey-light);
  border-left: 3px solid var(--orange);
  padding: 20px 22px;
  border-radius: 0 6px 6px 0;
  margin-top: 28px;
}

.ab-story-highlight-icon {
  font-size: 22px;
  color: var(--orange);
  margin-top: 1px;
  flex-shrink: 0;
}

.ab-story-highlight p {
  font-size: 14px;
  color: var(--dark);
  line-height: 1.75;
  margin: 0;
  font-weight: 500;
}

/* Image side */
.ab-story-img-wrap {
  position: relative;
}

.ab-story-img-wrap img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.ab-story-img-card {
  position: absolute;
  bottom: -28px;
  left: -28px;
  background: var(--navy);
  color: #fff;
  padding: 24px 28px;
  border-radius: 6px;
  min-width: 200px;
  box-shadow: 0 16px 48px rgba(13, 27, 62, 0.28);
}

.ab-story-img-card-year {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 42px;
  font-weight: 400;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 4px;
}

.ab-story-img-card-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.ab-story-img-deco {
  position: absolute;
  top: -24px;
  right: -24px;
  width: 100px;
  height: 100px;
  border: 2px solid var(--orange);
  border-radius: 4px;
  opacity: 0.2;
}

/* ── Vision & Mission ── */
.ab-vm {
  background: var(--grey-light);
  padding: 90px 0;
}

.ab-vm-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}

.ab-vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.ab-vm-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(26, 111, 212, 0.08);
  transition: transform .3s, box-shadow .3s;
}

.ab-vm-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(26, 111, 212, 0.15);
}

.ab-vm-card-top {
  padding: 36px 36px 28px;
  border-bottom: 1px solid var(--grey-border);
}

.ab-vm-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}

.ab-vm-card-icon.blue {
  background: var(--orange-light);
  color: var(--blue1);
}

.ab-vm-card-icon.orange {
  background: #fff3e8;
  color: var(--orange);
}

.ab-vm-card-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}

.ab-vm-card-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(20px, 2.5vw, 26px);
  color: var(--dark);
  line-height: 1.2;
}

.ab-vm-card-body {
  padding: 24px 36px 32px;
  font-size: 15px;
  color: var(--grey);
  line-height: 1.85;
}

/* ── Primary Objects ── */
.ab-objects {
  position: relative;
  padding: 100px 0 88px;
  background: url('../images/bg-image3.png') center / cover no-repeat;
  overflow: hidden;
}

.ab-objects::before {
  content: '';
  position: absolute;
  inset: 0;
  /* background: rgba(255, 255, 255, 0.85); */
}

.ab-objects .container {
  position: relative;
  z-index: 1;
}

.ab-objects-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.ab-objects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ab-obj-card {
  position: relative;
  padding: 40px 32px 36px;
  border: 1px solid var(--grey-border);
  border-radius: 8px;
  background: #fff;
  transition: border-color .3s, box-shadow .3s, transform .3s;
  overflow: hidden;
}

.ab-obj-card:hover::after {
  transform: scaleX(1);
}

.ab-obj-card:hover {
  border-color: transparent;
  box-shadow: 0 16px 48px rgba(26, 111, 212, 0.14);
  transform: translateY(-4px);
}

.ab-obj-num {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 72px;
  font-weight: 400;
  color: var(--grey-border);
  line-height: 1;
  position: absolute;
  top: 16px;
  right: 22px;
  transition: color .3s;
}

.ab-obj-card:hover .ab-obj-num {
  color: var(--orange-light);
}

.ab-obj-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: linear-gradient(135deg, #1a6fd4 0%, #38b6ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--blue1);
  margin-bottom: 22px;
  transition: background .3s, color .3s;
}

.ab-obj-icon img {
  width: 40px;
  height: 32px;
  object-fit: contain;
}

.ab-obj-card:hover .ab-obj-icon {
  background: var(--grad);
  color: #fff;
}

.ab-obj-title {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.ab-obj-body {
  font-size: 16px;
  color: var(--grey);
  line-height: 1.8;
  margin: 0;
}

/* ── Partnership Banner ── */
.ab-partner {
  position: relative;
  padding: 88px 0;
  overflow: hidden;
  background: url('../images/bg-image4.png') center / cover no-repeat;
}

.ab-partner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 21, 55, 0.82) 0%, rgba(0, 42, 90, 0.75) 100%);
}

.ab-partner-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 48px;
}

.ab-partner-flag-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.ab-partner-flag {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  width: 110px;
}

.ab-partner-flag-name {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.ab-partner-center {
  text-align: center;
}

.ab-partner-icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--orange);
  margin: 0 auto 20px;
}

.ab-partner-text {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(22px, 3vw, 32px);
  color: #fff;
  line-height: 1.25;
  margin-bottom: 12px;
}

.ab-partner-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  max-width: 400px;
  margin: 0 auto;
}

/* ── Values Grid ── */
.ab-values {
  padding: 90px 0;
  background: var(--grey-light);
}

.ab-values-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 56px;
}

.ab-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.ab-val-card {
  background: #fff;
  border-radius: 8px;
  padding: 36px 24px 32px;
  text-align: center;
  border: 1px solid var(--grey-border);
  transition: border-color .3s, box-shadow .3s, transform .3s;
}

.ab-val-card:hover {
  border-color: var(--blue1);
  box-shadow: 0 12px 36px rgba(26, 111, 212, 0.12);
  transform: translateY(-4px);
}

.ab-val-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--blue1);
  margin: 0 auto 18px;
  transition: background .3s, color .3s;
}

.ab-val-card:hover .ab-val-icon {
  background: var(--grad);
  color: #fff;
}

.ab-val-title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.ab-val-body {
  font-size: 13px;
  color: var(--grey);
  line-height: 1.75;
  margin: 0;
}

/* ── CTA Strip ── */
.ab-cta {
  /* background: var(--grad); */
  padding: 72px 0;
}

.ab-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.ab-cta-text .label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 10px;
}

.ab-cta-text h2 {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.15;
}

.ab-cta-actions {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
}

.ab-cta-actions .btn-orange,
.ab-cta-actions .btn-white-outline {
  font-size: 13px;
  padding: 13px 30px;
}

/* ── Section headings reused ── */
.ab-sec-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 10px;
}

.ab-sec-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 14px;
}

.ab-sec-sub {
  font-size: 16px;
  color: var(--grey);
  line-height: 1.8;
  margin-bottom: 0;
}

.ab-divider {
  width: 48px;
  height: 3px;
  background: var(--grad);
  border-radius: 2px;
  margin: 16px auto 0;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .ab-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ab-stat-cell:nth-child(2) {
    border-right: none;
  }

  .ab-stat-cell:nth-child(3),
  .ab-stat-cell:nth-child(4) {
    border-top: 1px solid var(--grey-border);
  }

  .ab-stat-cell:nth-child(4) {
    border-right: none;
  }

  .ab-story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ab-story-img-wrap img {
    height: 340px;
  }

  .ab-story-img-card {
    left: 16px;
    bottom: 16px;
  }

  .ab-vm-grid {
    grid-template-columns: 1fr;
  }

  .ab-objects-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ab-partner-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .ab-partner-flag-block {
    flex-direction: row;
    justify-content: center;
  }

  .ab-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ab-cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .ab-cta-actions {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .ab-hero {
    min-height: 360px;
  }

  .ab-stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ab-objects-grid {
    grid-template-columns: 1fr;
  }

  .ab-values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ab-story-img-card {
    position: static;
    margin-top: 16px;
  }

  .ab-story-img-deco {
    display: none;
  }

  .ab-partner-flag-block {
    flex-direction: column;
  }
}

/* ======================================================
   MEMBERSHIP PAGE — scoped styles
   ====================================================== */

/* ── Hero ── */
.ms-hero {
  position: relative;
  min-height: 330px;
  display: flex;
  align-items: center;
  background: var(--navy) url('../images/bg-image3.png') center / cover no-repeat;
  background-blend-mode: overlay;
  overflow: hidden;
}

.ms-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(13, 27, 62, 0.97) 0%, rgba(13, 27, 62, 0.80) 60%, rgba(26, 111, 212, 0.28) 100%);
}

.ms-hero-inner {
  position: relative;
  z-index: 2;
  padding: 72px 0 56px;
}

.ms-hero-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
  margin-top: 16px;
  margin-bottom: 0;
}

/* ── Section 1: Membership ── */
.ms-membership {
  background: var(--grey-light);
  padding: 88px 0 80px;
}

.ms-membership-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.ms-mem-heading {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(30px, 3.8vw, 46px);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 10px;
}

.ms-mem-body {
  font-size: 16px;
  color: var(--grey);
  line-height: 1.95;
  margin: 0;
}

/* Tiles grid */
.ms-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}

.ms-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  min-height: 140px;
  text-decoration: none;
  transition: transform .3s ease, box-shadow .3s ease, filter .3s ease;
  position: relative;
  overflow: hidden;
}

.ms-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  transition: background .3s;
}

.ms-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.ms-tile:hover::after {
  background: rgba(255, 255, 255, 0.08);
}

.ms-tile--members {
  background: linear-gradient(140deg, #d81b5e 0%, #f0306e 100%);
}

.ms-tile--benefits {
  background: linear-gradient(140deg, #3145d1 0%, #5c6fef 100%);
}

.ms-tile--join {
  grid-column: 1;
  grid-row: 2;
  background: linear-gradient(140deg, #6225d4 0%, #8b52f5 100%);
}

.ms-tile-label {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 400;
  color: #fff;
  position: relative;
  z-index: 1;
  text-align: center;
  letter-spacing: 0.2px;
}

/* ── Section 2: Benefits ── */
.ms-benefits {
  position: relative;
  background: url('../images/bg-image3.png') center center / cover no-repeat;
  padding: 60px 0 96px;
}

.ms-benefits::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(16, 30, 66, 0.88);
  pointer-events: none;
}

.ms-benefits > * {
  position: relative;
  z-index: 1;
}

.ms-benefits-header {
  margin-bottom: 56px;
  text-align: center;
}

.ms-benefits-heading {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(30px, 3.8vw, 46px);
  font-weight: 400;
  color: white;
  line-height: 1.15;
  margin-bottom: 16px;
}

.ms-benefits-sub {
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto;
}

/* 4-column icon card grid */
.ms-benefits-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.ms-ben-card {
  flex: 0 0 calc(25% - 18px);
}

.ms-ben-card {
  position: relative;
  padding: 25px 25px 25px;
  border: 1px solid var(--grey-border);
  border-radius: 8px;
  background: #fff;
  transition: border-color .3s, box-shadow .3s, transform .3s;
  overflow: hidden;
}

.ms-ben-card:hover {
  border-color: transparent;
  box-shadow: 0 16px 48px rgba(26, 111, 212, 0.14);
  transform: translateY(-4px);
}

.ms-ben-num {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 72px;
  font-weight: 400;
  color: var(--grey-border);
  line-height: 1;
  position: absolute;
  top: 16px;
  right: 22px;
  transition: color .3s;
}

.ms-ben-card:hover .ms-ben-num {
  color: var(--orange-light);
}

.ms-ben-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: linear-gradient(135deg, #1a6fd4 0%, #38b6ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: background .3s;
}

.ms-ben-icon-wrap img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.ms-ben-card:hover .ms-ben-icon-wrap {
  background: linear-gradient(135deg, var(--orange) 0%, #f7a849 100%);
}

.ms-ben-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.ms-ben-desc {
  font-size: 15px;
  color: var(--grey);
  line-height: 1.8;
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .ms-membership-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .ms-tiles {
    max-width: 480px;
  }

  .ms-benefits-grid .ms-ben-card {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (max-width: 767px) {
  .ms-hero-inner {
    padding: 64px 0 48px;
  }

  .ms-benefits-grid .ms-ben-card {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (max-width: 575px) {
  .ms-tiles {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .ms-tile {
    min-height: 110px;
  }

  .ms-membership {
    padding: 64px 0 56px;
  }

  .ms-benefits {
    padding: 64px 0 56px;
  }
}


/* ======================================================
   JOIN FINCHAM PAGE — scoped styles
   ====================================================== */

/* ── Hero Banner ── */
.jf-hero {
  position: relative;
  min-height: 330px;
  display: flex;
  align-items: center;
  background: var(--navy) url('../images/bg-image3.png') center / cover no-repeat;
  background-blend-mode: overlay;
  overflow: hidden;
}

.jf-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(13, 27, 62, 0.97) 0%, rgba(13, 27, 62, 0.78) 55%, rgba(26, 111, 212, 0.30) 100%);
}

.jf-hero-inner {
  position: relative;
  z-index: 2;
  padding: 80px 0 72px;
}

.jf-hero-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(36px, 5.5vw, 52px);
  font-weight: 400;
  color: #fff;
  line-height: 1.08;
  margin-top: 16px;
  margin-bottom: 12px;
}

.jf-hero-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.60);
  max-width: 460px;
  margin: 0;
}

/* ── Intro + Download ── */
.jf-intro {
  padding: 80px 0 72px;
  /* background: var(--grey-light); */
}

.jf-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.jf-intro-heading {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 20px;
}

.jf-intro-heading em {
  font-style: italic;
  color: var(--blue1);
}

.jf-intro-body {
  font-size: 17px;
  color: var(--grey);
  line-height: 1.85;
  margin-bottom: 14px;
}

.jf-dl-note {
  font-size: 13px;
  color: var(--grey);
  margin-bottom: 24px;
  line-height: 1.7;
}

.jf-dl-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--white);
  border: 1px solid var(--grey-border);
  /* border-left: 4px solid var(--blue1); */
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 16px;
  transition: box-shadow var(--trans), transform var(--trans), border-color var(--trans);
}

.jf-dl-card:last-child {
  margin-bottom: 0;
}

.jf-dl-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
  border-left-color: var(--orange);
}

.jf-dl-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--blue1);
}

.jf-dl-icon--alt {
  background: #fff3e8;
  color: var(--orange);
}

.jf-dl-info {
  flex: 1;
}

.jf-dl-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 4px;
}

.jf-dl-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  margin: 0;
  line-height: 1.3;
}

.jf-dl-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--grad);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: var(--radius);
  transition: var(--trans);
  white-space: nowrap;
}

.jf-dl-btn:hover {
  background: var(--grad-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(26, 111, 212, 0.30);
}

.jf-dl-btn--alt {
  background: var(--grad-orange);
}

.jf-dl-btn--alt:hover {
  background: var(--grad-orange-dark);
  box-shadow: 0 6px 18px rgba(244, 121, 32, 0.30);
}

/* ── Categories Section ── */
.jf-categories {
  padding: 88px 0 96px;
  background: var(--navy) url('../images/bg-image3.png') center / cover no-repeat;
}

.jf-cat-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 52px;
}

.jf-cat-heading {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 14px;
}

.jf-cat-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
}

.jf-eligibility {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: #ffffff00;
  border: 1px solid var(--grey-border);
  /* border-left: 4px solid var(--blue1); */
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 52px;
}

.jf-elig-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(26, 111, 212, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--blue1);
}

.jf-elig-text strong {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--orange);
  display: block;
  margin-bottom: 8px;
}

.jf-elig-text p {
  font-size: 16px;
  color: white;
  line-height: 1.8;
  margin: 0;
}

.jf-elig-hi {
  font-weight: 700;
  color: var(--blue1);
}

.jf-cat-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.jf-cat-card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow var(--trans), transform var(--trans);
}

.jf-cat-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.jf-cat-card--affiliate {
  grid-column: 1 / -1;
}

.jf-cat-card-head {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 30px;
  border-bottom: 1px solid var(--grey-border);
  background: var(--grey-light);
  flex-wrap: wrap;
}

.jf-cat-num {
font-family: 'DM Serif Display', Georgia, serif;
    font-size: 30px;
    font-weight: 400;
    color: rgb(244 128 40);
    line-height: 1;
    flex-shrink: 0;
    min-width: 58px;
}

.jf-cat-title-wrap {
  flex: 1;
}

.jf-cat-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 6px;
}

.jf-cat-badge--corporate {
  background: rgba(26, 111, 212, 0.12);
  color: var(--blue1);
}

.jf-cat-badge--honorary {
  background: rgba(212, 166, 26, 0.12);
  color: #b8860b;
}

.jf-cat-badge--affiliate {
  background: rgba(26, 160, 140, 0.12);
  color: #1a9080;
}

.jf-cat-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
  font-family: 'DM Serif Display', Georgia, serif;

}

.jf-cat-rights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-left: auto;
}

.jf-right-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 20px;
  background: rgba(26, 111, 212, 0.08);
  color: var(--blue1);
  white-space: nowrap;
}

.jf-right-tag i {
  font-size: 11px;
}

.jf-right-tag--exempt {
  background: rgba(184, 134, 11, 0.10);
  color: #b8860b;
}

.jf-right-tag--note {
  background: rgba(108, 117, 125, 0.10);
  color: var(--grey);
}

.jf-cat-card-body {
  padding: 28px 30px;
}

.jf-cat-card-body p {
  font-size: 15.5px;
  color: var(--grey);
  line-height: 1.85;
  margin-bottom: 12px;
}

.jf-cat-card-body p:last-child {
  margin-bottom: 0;
}

.jf-affiliate-intro {
  font-size: 15px;
  color: var(--dark);
  font-weight: 500;
  margin-bottom: 28px !important;
}

.jf-sub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.jf-sub-card {
  background: #fafafa;
  border: 1px solid var(--grey-border);
  border-radius: 6px;
  padding: 24px 24px 20px;
}

.jf-sub-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
}

.jf-sub-letter {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--grad);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.jf-sub-card p {
  font-size: 15.5px;
  color: var(--grey);
  line-height: 1.85;
  margin-bottom: 10px;
}

.jf-sub-card p:last-of-type {
  margin-bottom: 14px;
}

.jf-sub-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--blue1);
  background: rgba(26, 111, 212, 0.08);
  padding: 5px 12px;
  border-radius: 20px;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .jf-intro-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .jf-cat-list {
    grid-template-columns: 1fr;
  }

  .jf-cat-card--affiliate {
    grid-column: 1;
  }

  .jf-cat-rights {
    margin-left: 0;
    margin-top: 8px;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .jf-hero-inner {
    padding: 64px 0 48px;
  }

  .jf-sub-grid {
    grid-template-columns: 1fr;
  }

  .jf-cat-card-head {
    padding: 20px;
  }

  .jf-cat-card-body {
    padding: 20px;
  }

  .jf-dl-btn span {
    display: none;
  }

  .jf-dl-btn {
    padding: 10px 12px;
  }
}

@media (max-width: 575px) {
  .jf-cat-num {
    font-size: 36px;
    min-width: 44px;
  }

  .jf-cat-title {
    font-size: 17px;
  }

  .jf-eligibility {
    flex-direction: column;
  }
}

/* ======================================================
   INNER PAGES — FULL RESPONSIVE ADDITIONS
   ====================================================== */

/* ── ab-hero padding on small screens ── */
@media (max-width: 767px) {
  .ab-hero-inner {
    padding: 56px 0 48px;
  }

  .ab-hero-title {
    font-size: clamp(28px, 7vw, 38px);
    margin-bottom: 14px;
  }

  .ms-benefits-heading,
  .ms-ben-card {
    word-break: break-word;
  }

  .members-heading {
    font-size: clamp(22px, 5vw, 32px);
  }

  .members-header {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .jf-intro {
    padding: 56px 0 48px;
  }

  .jf-dl-card {
    flex-wrap: wrap;
    gap: 12px;
  }

  .jf-dl-card .jf-dl-btn {
    width: 100%;
    justify-content: center;
  }

  .jf-dl-btn span {
    display: inline;
  }

  .jf-categories {
    padding: 56px 0 64px;
  }

  .ab-cta-inner {
    gap: 28px;
  }

  .ab-cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .ab-cta-actions .btn-orange,
  .ab-cta-actions .btn-white-outline {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 575px) {
  .ab-hero {
    min-height: 260px;
  }

  .ab-hero-inner {
    padding: 48px 0 40px;
  }

  .ab-hero-title {
    font-size: clamp(24px, 7vw, 32px);
  }

  .ms-benefits {
    padding: 48px 0 40px;
  }

  .member-card {
    padding: 16px !important;
  }

  .member-card-logo {
    max-height: 56px;
  }

  .jf-intro {
    padding: 40px 0 36px;
  }

  .jf-dl-card {
    padding: 16px;
    gap: 12px;
  }

  .jf-dl-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .jf-categories {
    padding: 44px 0 52px;
  }

  .jf-cat-card-head {
    padding: 16px;
  }

  .jf-cat-card-body {
    padding: 16px;
  }

  .ab-story-grid {
    gap: 28px;
  }

  .ab-story-img-wrap img {
    height: 240px;
  }

  .ab-cta-inner {
    padding: 40px 20px;
  }
}

@media (max-width: 400px) {
  .ab-hero-title {
    font-size: clamp(22px, 8vw, 28px);
  }

  .ab-hero-inner {
    padding: 40px 0 36px;
  }

  .ms-benefits-grid .ms-ben-card {
    flex: 0 0 100%;
  }

  .jf-dl-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .jf-dl-btn {
    width: 100%;
    justify-content: center;
  }

  .jf-eligibility {
    padding: 16px;
  }

  .member-card {
    padding: 12px !important;
  }

  .members-sec .row {
    --bs-gutter-x: 12px;
    --bs-gutter-y: 12px;
  }
}


 /* ── Board Hero ── */
    .bd-hero {
      background: linear-gradient(135deg, #0d1b3e 0%, #1a6fd4 100%);
      padding: 90px 0 60px;
      position: relative;
      overflow: hidden;
    }

    .bd-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url('../images/bg-image2.png') center/cover no-repeat;
      opacity: 0.08;
    }

    .bd-hero-inner {
      position: relative;
      z-index: 2;
    }

    .bd-hero-title {
      font-size: clamp(32px, 5vw, 52px);
      font-weight: 800;
      color: #fff;
      margin-bottom: 14px;
    }

    .bd-breadcrumb {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: rgba(255, 255, 255, 0.7);
    }

    .bd-breadcrumb a {
      color: rgba(255, 255, 255, 0.7);
      transition: color .2s;
    }

    .bd-breadcrumb a:hover { color: #fff; }
    .bd-breadcrumb .curr { color: var(--orange); font-weight: 600; }

    .bd-hero-shape {
      position: absolute;
      bottom: -1px;
      left: 0;
      width: 100%;
      line-height: 0;
    }

    /* ── Intro strip ── */
    .bd-intro {
      padding: 70px 0 30px;
    }

    .bd-intro-inner {
      max-width: 700px;
      margin: 0 auto;
      text-align: center;
    }

    .bd-intro-inner h2 {
      font-size: clamp(26px, 3.5vw, 38px);
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 16px;
    }

    .bd-intro-inner p {
      font-size: 15px;
      color: var(--grey);
      line-height: 1.75;
    }

    /* ── Board grid ── */
    .bd-grid-sec {
      padding: 60px 0 90px;
    }

    .bd-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 28px;
    }

    .bd-card {
      flex: 0 0 calc(25% - 21px);
    }

    @media (max-width: 991px) {
      .bd-card { flex: 0 0 calc(50% - 14px); }
    }

    @media (max-width: 575px) {
      .bd-card { flex: 0 0 100%; }
      .bd-grid { gap: 24px; }
    }

    /* ── Board card ── */
    .bd-card {
      border-radius: 4px;
      overflow: hidden;
      box-shadow: 0 4px 24px rgba(13, 27, 62, 0.10);
      background: #fff;
      transition: transform .3s ease, box-shadow .3s ease;
      position: relative;
    }

    .bd-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 48px rgba(13, 27, 62, 0.18);
    }

    .bd-card-img-wrap {
      position: relative;
      aspect-ratio: 4/5;
      overflow: hidden;
      background: var(--grey-light);
    }

    .bd-card-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
      transition: transform .5s ease;
    }

    .bd-card:hover .bd-card-img-wrap img {
      transform: scale(1.05);
    }

    /* Gradient overlay on image bottom */
    .bd-card-img-wrap::after {
      content: '';
      position: absolute;
      inset: 0;
    background: linear-gradient(to top, rgb(0 0 0 / 88%) 0%, transparent 55%);
      pointer-events: none;
    }

    /* Name + role pinned inside image at bottom */
    .bd-card-caption {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 2;
      padding: 20px 20px 22px;
    }

    .bd-card-name {
      font-size: 18px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 4px;
      line-height: 1.2;
    }

    .bd-card-role {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.80);
      font-weight: 500;
      letter-spacing: 0.3px;
    }

    /* Orange accent bar on card hover */
    /* .bd-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 4px;
      height: 100%;
      background: var(--orange);
      opacity: 0;
      transition: opacity .3s ease;
      z-index: 3;
    } */

    .bd-card:hover::before { opacity: 1; }


    /* ── CTA strip ── */
    .bd-cta {
      background: linear-gradient(135deg, #0d1b3e 0%, #1a6fd4 100%);
      padding: 70px 0;
    }

    .bd-cta-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
    }

    @media (max-width: 767px) {
      .bd-cta-inner { flex-direction: column; text-align: center; }
    }

    .bd-cta-text h2 {
      font-size: clamp(22px, 3vw, 32px);
      font-weight: 700;
      color: #fff;
      margin-bottom: 8px;
    }

    .bd-cta-text p {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.75);
    }

    .bd-cta-actions {
      display: flex;
      gap: 14px;
      flex-shrink: 0;
    }

    @media (max-width: 575px) {
      .bd-cta-actions { flex-direction: column; }
    }

/* ======================================================
   SITE SEARCH
   ====================================================== */

.nav-search-btn {
  background: none;
  border: none;
  padding: 8px 10px;
  cursor: pointer;
  color: var(--dark);
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  transition: color var(--trans), background var(--trans);
  flex-shrink: 0;
}

.nav-search-btn:hover {
  color: var(--blue1);
  background: var(--grey-light);
}

/* ── Search Overlay ── */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 27, 62, 0.55);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
  backdrop-filter: blur(3px);
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-overlay-inner {
  background: #fff;
  padding: 20px 0 8px;
  box-shadow: 0 8px 32px rgba(13, 27, 62, 0.18);
  transform: translateY(-8px);
  transition: transform .25s ease;
}

.search-overlay.active .search-overlay-inner {
  transform: translateY(0);
}

.search-bar-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1.5px solid var(--grey-border);
}

.search-bar-icon {
  font-size: 20px;
  color: var(--blue1);
  flex-shrink: 0;
}

.search-bar-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 18px;
  font-family: var(--font-body);
  color: var(--dark);
  background: transparent;
  min-width: 0;
}

.search-bar-input::placeholder {
  color: var(--grey);
}

.search-bar-close {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: var(--grey);
  font-size: 16px;
  display: flex;
  align-items: center;
  border-radius: var(--radius);
  transition: color var(--trans), background var(--trans);
  flex-shrink: 0;
}

.search-bar-close:hover {
  color: var(--dark);
  background: var(--grey-light);
}

/* ── Results ── */
.search-results-wrap {
  padding-top: 8px;
  padding-bottom: 8px;
  max-height: 52vh;
  overflow-y: auto;
}

.search-result-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 11px 14px;
  border-radius: 6px;
  text-decoration: none;
  color: inherit;
  transition: background var(--trans);
  margin-bottom: 2px;
}

.search-result-item:hover,
.search-result-item:focus {
  background: var(--grey-light);
  outline: none;
}

.search-result-icon {
  width: 38px;
  height: 38px;
  background: var(--orange-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue1);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

.search-result-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 2px;
  line-height: 1.3;
}

.search-result-desc {
  font-size: 12px;
  color: var(--grey);
  line-height: 1.5;
  margin: 0;
}

.search-no-results,
.search-hint {
  text-align: center;
  padding: 20px 0 12px;
  color: var(--grey);
  font-size: 14px;
}

.search-hint {
  padding: 12px 0 4px;
}

@media (max-width: 575px) {
  .search-bar-input {
    font-size: 15px;
  }

  .search-bar-wrap {
    gap: 8px;
  }
}