/* ============================================================
   ABCD Group — Global Stylesheet
   Edit CSS variables in :root to retheme the whole site
   ============================================================ */

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

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  --brand-primary:   #0057b8;    /* Primary blue */
  --brand-dark:      #003880;    /* Darker blue */
  --brand-accent:    #00b4e6;    /* Cyan accent */
  --brand-red:       #e63946;    /* Alert / highlight red */

  --bg-dark:         #07111f;  /* earlier version used: #07111f; other colors ;202A44*/
  --bg-mid:          #0d1e36;
  --bg-light:        #f4f6fa;
  --bg-white:        #ffffff;

  --text-primary:    #0d1f3c;
  --text-light:      #ffffff;
  --text-muted:      #6b7a99;

  --nav-height:      72px;
  --border:          1px solid rgba(255,255,255,0.10);
  --border-light:    1px solid #e0e6f0;

  --shadow-sm:       0 2px 12px rgba(0,87,184,0.10);
  --shadow-md:       0 8px 32px rgba(0,87,184,0.15);
  --shadow-lg:       0 20px 60px rgba(0,87,184,0.18);

  --radius:          4px;
  --radius-md:       8px;
  --radius-lg:       16px;

  --transition:      all 0.3s cubic-bezier(0.4,0,0.2,1);

  --font-display:    'Sora', sans-serif;
  --font-body:       'DM Sans', sans-serif;
}

/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; }

/* ── Utility Classes ───────────────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.container-wide { max-width: 1600px; margin: 0 auto; padding: 0 2rem; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.text-center { text-align: center; }
.text-white { color: var(--text-light); }
.mt-auto { margin-top: auto; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .7rem 1.6rem;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .03em;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--brand-primary);
  color: white;
}
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-outline {
  border: 2px solid var(--brand-primary);
  color: var(--brand-primary);
}
.btn-outline:hover { background: var(--brand-primary); color: white; }

.btn-ghost-white {
  border: 1.5px solid rgba(255,255,255,0.5);
  color: white;
  padding: .6rem 1.4rem;
}
.btn-ghost-white:hover { background: rgba(255,255,255,0.12); border-color: white; }

.btn-link {
  color: var(--brand-primary);
  font-weight: 600;
  font-size: .875rem;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
}
.btn-link::after { content: "→"; transition: transform .2s; }
.btn-link:hover::after { transform: translateX(4px); }

/* ── Section Headings ──────────────────────────────────────── */
.section-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--brand-accent);
  margin-bottom: .75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary);
}
.section-title--light { color: white; }
.section-desc {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 640px;
  margin-top: .75rem;
  line-height: 1.7;
}

/* ── Cards ─────────────────────────────────────────────────── */
.card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* ── Tag / Badge ───────────────────────────────────────────── */
.tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .25rem .7rem;
  border-radius: 100px;
  background: rgba(0,87,184,0.10);
  color: var(--brand-primary);
}

/* ════════════════════════════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════════════════════════════ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: var(--bg-dark);
  z-index: 1000;
  display: flex;
  align-items: center;
  border-bottom: var(--border);
  transition: var(--transition);
}

.site-nav.scrolled {
  background: rgba(7,17,31,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.4);
}

.nav-inner {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: white;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -.02em;
  flex-shrink: 0;
  margin-right: 1rem;
}
.nav-logo .logo-mark {
  width: 36px; height: 36px;
  background: var(--brand-primary);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  font-weight: 900;
  color: white;
}

/* Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: .25rem;
  flex: 1;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: rgba(255,255,255,.85);
  font-family: var(--font-display);
  font-size: .8125rem;
  font-weight: 500;
  padding: .55rem .9rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: .3rem;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: white; background: rgba(255,255,255,.08); }
.nav-link .chevron { font-size: .65rem; opacity: .7; transition: transform .2s; }
.nav-item:hover .chevron { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 2px;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 48px rgba(0,0,0,.18);
  min-width: 240px;
  padding: .5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition: var(--transition);
  border: var(--border-light);
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: .55rem 1rem;
  font-size: .85rem;
  color: var(--text-primary);
  border-radius: var(--radius);
  transition: background .15s;
}
.nav-dropdown a:hover { background: var(--bg-light); color: var(--brand-primary); }

/* Nav Right */
.nav-right {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-left: auto;
}
.nav-contact-btn {
  background: var(--brand-primary);
  color: white !important;
  padding: .5rem 1.2rem !important;
  border-radius: var(--radius) !important;
  font-weight: 600 !important;
}
.nav-contact-btn:hover { background: var(--brand-dark) !important; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .4rem;
  margin-left: auto;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}

/* ── Page Offset ───────────────────────────────────────────── */
.page-wrapper { padding-top: var(--nav-height); }

/* ════════════════════════════════════════════════════════════
   HERO CAROUSEL
   ════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 520px;
  overflow: hidden;
}

.hero-track { display: flex; height: 100%; transition: transform .7s cubic-bezier(.4,0,.2,1); }

.hero-slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  padding: 4rem 2rem;
}

.hero-slide-content {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-slide-content .pre-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--brand-accent);
  margin-bottom: 1rem;
}

.hero-slide-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: white;
  max-width: 700px;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-slide-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.75);
  max-width: 500px;
  margin-bottom: 2rem;
}

/* Decorative overlay lines */
.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.1) 100%);
  z-index: 1;
}

.hero-slide-image::before {
  display: none;
}

/* Hero Controls */
.hero-controls {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: .75rem;
  z-index: 10;
}

.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  cursor: pointer;
  transition: var(--transition);
}
.hero-dot.active { background: white; width: 24px; border-radius: 4px; }

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.3);
  border-radius: 50%;
  color: white;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.hero-arrow:hover { background: rgba(255,255,255,.25); }
.hero-arrow.prev { left: 1.5rem; }
.hero-arrow.next { right: 1.5rem; }

/* ============================================
    FEATHER IMAGE OVERLAY (used in Home About section)
    ============================================ */
.feather-container {
  position: relative;
  display: inline-block;
  line-height: 0; /* Remove space under image */
}

.feather-container img {
  display: block;
}

.feather-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Radial gradient makes corners colored and fades to transparent in center */
  background: radial-gradient(circle at center, transparent 30%, white 100%);
  pointer-events: none; /* Allows clicking through the overlay */
}

/* ════════════════════════════════════════════════════════════
   SPOTLIGHT SECTION
   ════════════════════════════════════════════════════════════ */
.spotlight {
  background: var(--bg-mid);
  padding: 3rem 0;
  overflow: hidden;
}

.spotlight-track-wrap {
  overflow: hidden;
  position: relative;
}
.spotlight-track-wrap::before,
.spotlight-track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.spotlight-track-wrap::before { left: 0; background: linear-gradient(90deg, var(--bg-mid), transparent); }
.spotlight-track-wrap::after { right: 0; background: linear-gradient(-90deg, var(--bg-mid), transparent); }

.spotlight-track {
  display: flex;
  gap: 1rem;
  padding: .5rem 2rem;
  overflow-x: auto;
  scrollbar-width: none;
}
.spotlight-track::-webkit-scrollbar { display: none; }

.spotlight-card {
  flex-shrink: 0;
  width: 260px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.4rem;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.spotlight-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--card-accent, var(--brand-accent));
}
.spotlight-card:hover {
  background: rgba(255,255,255,.09);
  transform: translateY(-3px);
}
.spotlight-card .card-type {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--card-accent, var(--brand-accent));
  margin-bottom: .5rem;
}
.spotlight-card h4 {
  font-family: var(--font-display);
  font-size: .925rem;
  font-weight: 600;
  color: white;
  line-height: 1.35;
  margin-bottom: .75rem;
}
.spotlight-card .card-link {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  display: flex;
  align-items: center;
  gap: .3rem;
  transition: color .2s;
}
.spotlight-card:hover .card-link { color: rgba(255,255,255,.9); }

/* ════════════════════════════════════════════════════════════
   STATS BAR
   ════════════════════════════════════════════════════════════ */
.stats-bar {
  background: var(--brand-primary);
  padding: 2.5rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-item {
  padding: 1rem;
  border-right: 1px solid rgba(255,255,255,.2);
}
.stat-item:last-child { border-right: none; }
.stat-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: .3rem;
}
.stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.75);
  font-weight: 500;
  letter-spacing: .04em;
}

/* ════════════════════════════════════════════════════════════
   ABOUT SECTION (Home)
   ════════════════════════════════════════════════════════════ */
.about-home {
  padding: 6rem 0;
  background: white;
}
.about-home-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-home-text .overline {
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 1rem;
}
.about-home-text h2 {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}
.about-home-text p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.about-tiles {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.about-tile {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--brand-primary);
  transition: var(--transition);
  cursor: pointer;
}
.about-tile:hover { background: white; box-shadow: var(--shadow-md); transform: translateX(4px); }
.about-tile .tile-icon { font-size: 1.3rem; width: 36px; text-align: center; }
.about-tile .tile-text {
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}
.about-tile .tile-arrow { color: var(--brand-primary); opacity: .6; font-size: .85rem; }

/* Visual accent block */
.about-visual {
  position: relative;
  height: 420px;
}
.about-visual-block {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-visual-block.main {
  width: 78%; height: 75%;
  top: 0; right: 0;
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--bg-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-visual-block.accent {
  width: 55%; height: 50%;
  bottom: 0; left: 0;
  background: linear-gradient(135deg, var(--brand-accent) 0%, var(--brand-primary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}
.about-visual-block.main .big-number {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 900;
  color: rgba(255,255,255,.15);
  line-height: 1;
  text-align: center;
}
.about-visual-badge {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
  z-index: 2;
}
.about-visual-badge .badge-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand-primary);
}
.about-visual-badge .badge-text { font-size: .75rem; color: var(--text-muted); font-weight: 500; }

/* ═══════════════════════════════════════════════
  INDUSTRIES (HOME)
 ═══════════════════════════════════════════════ */

/* ════════════════════════════════════════════════════════════
   MISSION SECTION
   ════════════════════════════════════════════════════════════ */
.mission-section {
  background: var(--bg-dark);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.mission-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,87,184,.3) 0%, transparent 70%);
  pointer-events: none;
}
.mission-section .mission-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--brand-accent);
  margin-bottom: 1.5rem;
}
.mission-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.75rem);
  color: white;
  font-weight: 800;
  max-width: 800px;
  margin: 0 auto 2rem;
  line-height: 1.3;
}
.mission-section blockquote {
  font-size: 1.05rem;
  color: rgba(255,255,255,.65);
  max-width: 680px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
  font-style: italic;
  border-left: 3px solid var(--brand-accent);
  padding-left: 1.5rem;
  text-align: left;
}
.mission-text  {
  font-size: 1.05rem;
  color: rgba(255,255,255,.65);
  max-width: 680px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
  font-style: italic;
  padding-left: 1.5rem;
  text-align: left;
}

/* ════════════════════════════════════════════════════════════
   INITIATIVES GRID
   ════════════════════════════════════════════════════════════ */
.initiatives {
  background: var(--bg-light);
  padding: 6rem 0;
}
.initiatives h2 {
  text-align: center;
  margin-bottom: .5rem;
}
.initiatives .section-desc { margin: 0 auto 3rem; text-align: center; }
.initiatives-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}
.initiative-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
  border: var(--border-light);
  position: relative;
  overflow: hidden;
}
.initiative-card::after {
  content: '→';
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  color: var(--brand-primary);
  opacity: 0;
  transform: translateX(-8px);
  transition: var(--transition);
  font-size: 1.1rem;
}
.initiative-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.initiative-card:hover::after { opacity: 1; transform: translateX(0); }
.initiative-icon { font-size: 2rem; margin-bottom: .25rem; }
.initiative-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

/* ════════════════════════════════════════════════════════════
   INNER PAGE HERO
   ════════════════════════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-mid) 100%);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-accent), var(--brand-primary), transparent);
}
.page-hero-inner { max-width: 800px; }
.page-hero .breadcrumb {
  font-size: .75rem;
  color: rgba(255,255,255,.45);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.page-hero .breadcrumb a { color: rgba(255,255,255,.45); }
.page-hero .breadcrumb a:hover { color: rgba(255,255,255,.8); }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
}
.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.65);
  max-width: 600px;
  line-height: 1.75;
}

/* ════════════════════════════════════════════════════════════
   SERVICES / INDUSTRIES GRIDS
   ════════════════════════════════════════════════════════════ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: white;
  border: var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--brand-primary);
  transform: scaleX(0);
  transition: transform .3s;
  transform-origin: left;
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { font-size: 1.75rem; }
.service-card h3 {
  font-family: var(--font-display);
  font-size: .975rem;
  font-weight: 700;
  color: var(--text-primary);
}
.service-card p { font-size: .85rem; color: var(--text-muted); line-height: 1.6; flex: 1; }

/* Industry cards use background images, so they have a different style 
and are implemented as links instead of divs in Industries.html page*/
*/

/* ── Industry Cards ─────────────────────────────────────── */
#industriesGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  position: relative;
  z-index: 0;
  margin-top: 1rem;
}

#industriesGrid .industry-card {
  display: block;
  min-height: 240px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  color: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

#industriesGrid .industry-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

#industriesGrid .industry-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.22);
  mix-blend-mode: multiply;
}

#industriesGrid .industry-content {
  position: relative;
  z-index: 1;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 240px;
}

#industriesGrid .industry-content h3 {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
}

#industriesGrid .industry-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}
/* ════════════════════════════════════════════════════════════
   ABOUT PAGE SPECIFICS
   ════════════════════════════════════════════════════════════ */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
}
.leader-card {
  background: white;
  border: var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: var(--transition);
}
.leader-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.leader-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin: 0 auto 1rem;
}
.leader-card h4 {
  font-family: var(--font-display);
  font-size: .925rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: .3rem;
}
.leader-card span { font-size: .8rem; color: var(--text-muted); }

.partners-row {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: center;
}
.partner-chip {
  background: var(--bg-light);
  border: var(--border-light);
  border-radius: 100px;
  padding: .6rem 1.4rem;
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: var(--transition);
}
.partner-chip:hover { background: var(--brand-primary); color: white; border-color: var(--brand-primary); }

/* ════════════════════════════════════════════════════════════
   CAREERS PAGE
   ════════════════════════════════════════════════════════════ */
.job-list { display: flex; flex-direction: column; gap: .75rem; }
.job-card {
  background: white;
  border: var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: var(--transition);
  cursor: pointer;
}
.job-card:hover { box-shadow: var(--shadow-md); border-color: var(--brand-primary); }
.job-info h4 {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: .25rem;
}
.job-meta { display: flex; gap: .75rem; align-items: center; flex-wrap: wrap; }
.job-meta span { font-size: .8rem; color: var(--text-muted); display: flex; align-items: center; gap: .25rem; }

.tiles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  padding: 20px;
  margin-bottom: 10px;
}

.tile {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}

.tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.tile h3 {
  margin: 0;
  font-size: 16px;
  color: #333;
}

/* ════════════════════════════════════════════════════════════
   INSIGHTS PAGE
   ════════════════════════════════════════════════════════════ */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.insight-card {
  background: white;
  border: var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.insight-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.insight-thumb {
  height: 160px;
  background: linear-gradient(135deg, var(--brand-primary), var(--bg-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.insight-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; gap: .5rem; }
.insight-card h4 {
  font-family: var(--font-display);
  font-size: .925rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.4;
}
.insight-date { font-size: .78rem; color: var(--text-muted); margin-top: auto; }

/* ════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--bg-dark);
  color: white;
  padding: 4rem 0 2rem;
  border-top: var(--border);
}
.footer-top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: var(--border);
  margin-bottom: 2rem;
}
.footer-brand .nav-logo { margin-bottom: 1rem; font-size: 1.3rem; }
.footer-brand p { font-size: .85rem; color: rgba(255,255,255,.5); line-height: 1.7; margin-bottom: 1.5rem; }
.footer-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.footer-col h5 {
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col a {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  transition: color .2s;
}
.footer-col a:hover { color: white; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.25rem;
}
.footer-links a { font-size: .75rem; color: rgba(255,255,255,.4); transition: color .2s; }
.footer-links a:hover { color: rgba(255,255,255,.7); }
.footer-social { display: flex; gap: .6rem; }
.social-btn {
  width: 34px; height: 34px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
  text-decoration: none;
}
.social-btn:hover { background: var(--brand-primary); border-color: var(--brand-primary); color: white; }
.footer-copy { font-size: .75rem; color: rgba(255,255,255,.3); }

/* ════════════════════════════════════════════════════════════
   CTA BAND
   ════════════════════════════════════════════════════════════ */
.cta-band {
  background: var(--brand-primary);
  padding: 3rem 0;
  text-align: center;
}
.cta-band .container {
  max-width: 1280px;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: white;
  margin-bottom: .75rem;
}
.cta-band p { color: rgba(255,255,255,.75); font-size: .95rem; margin-bottom: 1.75rem; }

/* ════════════════════════════════════════════════════════════
   SECTION SPACING
   ════════════════════════════════════════════════════════════ */
.section { padding: 5rem 0; }
.section-sm { padding: 2rem 0; }

/* ════════════════════════════════════════════════════════════
   PAGE FADE-IN
   ════════════════════════════════════════════════════════════ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible { opacity: 1; transform: none; }

/* =================================================================
Accordion (used in FAQ section on About page)
================================================================= */
    .acc-item {
      border-top: 0.5px solid rgba(0,0,0,0.12);
      overflow: hidden;
    }
    .acc-item:last-child {
      border-bottom: 0.5px solid rgba(0,0,0,0.12);
    }

    .acc-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.1rem 0;
      cursor: pointer;
      user-select: none;
      background: none;
      border: none;
      width: 100%;
      text-align: left;
      gap: 1rem;
    }

    .acc-header:hover .acc-label {
      opacity: 0.75;
    }

    .acc-meta {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    .acc-num {
      font-size: 11px;
      font-weight: 500;
      color: #aaa;
      letter-spacing: 0.08em;
      min-width: 20px;
    }

    .acc-label {
      font-family: 'DM Serif Display', serif;
      font-size: 19px;
      color: #1a1a19;
      transition: opacity 0.2s;
    }

    .acc-tag {
      font-size: 11px;
      font-weight: 500;
      padding: 3px 10px;
      border-radius: 20px;
      letter-spacing: 0.04em;
    }

    .acc-icon {
      width: 26px;
      height: 26px;
      border-radius: 50%;
      border: 0.5px solid rgba(0,0,0,0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: transform 0.35s cubic-bezier(.4,0,.2,1), background 0.2s;
    }

    .acc-icon svg {
      width: 12px;
      height: 12px;
      transition: transform 0.35s cubic-bezier(.4,0,.2,1);
    }

    .acc-item.open .acc-icon {
      background: #f1efe8;
    }

    .acc-item.open .acc-icon svg {
      transform: rotate(45deg);
    }

    .acc-body {
      display: grid;
      grid-template-rows: 0fr;
      transition: grid-template-rows 0.38s cubic-bezier(.4,0,.2,1);
    }

    .acc-item.open .acc-body {
      grid-template-rows: 1fr;
    }

    .acc-inner {
      overflow: hidden;
    }

    .acc-content {
      padding: 0 0 1.5rem 34px;
      font-size: 15px;
      color: #5f5e5a;
      line-height: 1.7;
      max-width: 560px;
    }

    .acc-content p {
      margin: 0 0 0.8rem;
    }

    .acc-content p:last-of-type {
      margin-bottom: 0.6rem;
    }

    .acc-pill {
      display: inline-block;
      font-size: 12px;
      font-weight: 500;
      padding: 4px 10px;
      border-radius: 20px;
      margin-top: 0.6rem;
      border: 0.5px solid rgba(0,0,0,0.15);
      color: #888780;
    }

    @media (prefers-color-scheme: dark) {
      body { background: #1a1a19; color: #f1efe8; }
      .page-header h1 { color: #f1efe8; }
      .page-header p { color: #5f5e5a; }
      :root { --services-title-color: #f1efe8; }
      .acc-item { border-top-color: rgba(255,255,255,0.1); }
      .acc-item:last-child { border-bottom-color: rgba(255,255,255,0.1); }
      .acc-label { color: #f1efe8; }
      .acc-icon { border-color: rgba(255,255,255,0.2); }
      .acc-item.open .acc-icon { background: #2c2c2a; }
      .acc-icon svg { color: #f1efe8; }
      .acc-content { color: #888780; }
      .acc-pill { border-color: rgba(255,255,255,0.12); color: #5f5e5a; }
      .accordion-section-title { color: #f1efe8; }
    }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-nav { grid-template-columns: repeat(2, 1fr); }
  .about-home-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-industries-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { height: 280px; }
}

@media (max-width: 768px) {
  .service-grid { grid-template-columns: 1fr; gap: 1rem; }
  .nav-menu, .nav-right { display: none; }
  .nav-toggle { display: flex; }
  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-height);
    left: 0; right: 0;
    background: var(--bg-dark);
    padding: 1rem;
    border-bottom: var(--border);
    gap: .25rem;
    max-height: 85vh;
    overflow-y: auto;
  }
  .nav-dropdown {
    position: static;
    opacity: 1;
    pointer-events: all;
    transform: none;
    box-shadow: none;
    background: rgba(255,255,255,.05);
    display: none;
    margin-top: .25rem;
  }
  .nav-item.open .nav-dropdown { display: block; }
  .nav-dropdown a { color: rgba(255,255,255,.7); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-nav { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-arrow { display: none; }
  .hero { 
    height: 100vh;
    max-height: none;
    min-height: 400px;
  }
}
