/* ═══════════════════════════════════════════════════════════════
   COMPANY NAME — CORPORATE WEBSITE STYLESHEET
   Brand: #0f2d3c (deep navy), #c9a84c (gold accent), #f4f6f8 (bg)
   Fonts: Libre Baskerville (headings), Source Sans 3 (body)
═══════════════════════════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --brand:        #1a3a8f;
  --brand-mid:    #1a4a63;
  --brand-light:  #2a6f96;
  --gold:         #c9a84c;
  --gold-light:   #e8d08a;
  --bg:           #f4f6f8;
  --bg-card:      #ffffff;
  --text:         #0d1f3c;
  --text-muted:   #5a6472;
  --border:       #dde2e8;
  --font-head:    'Libre Baskerville', Georgia, serif;
  --font-body:    'Source Sans 3', Arial, sans-serif;
  --nav-h:        110px;
  --radius:       12px;
  --transition:   0.35s ease;
}
.brand-icon {
  height: 100px;
  width: 150px;
  display: block;
}


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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.25;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── Skip link ── */
.skip-link {
  position: absolute;
  top: -999px;
  left: 1rem;
  background: var(--brand);
  color: #fff;
  padding: 8px 16px;
  border-radius: 0 0 var(--radius) var(--radius);
  font-size: 0.85rem;
  z-index: 9999;
}
.skip-link:focus { top: 0; }

/* ═══════════════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}

.nav-wrap {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 2rem;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand-mark {
  display: inline-block;
  width: 28px;
  height: 28px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  flex-shrink: 0;
}
.brand-mark.small {
  width: 18px;
  height: 18px;
}

/* Nav links */
.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.site-nav a {
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 6px 14px;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--brand);
  background: rgba(26, 58, 143, 0.06);
}

.site-nav a[aria-current="page"] {
  color: var(--brand);
}
/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: 2px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #0d1f3c;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1024px) {
  .nav-toggle { display: flex; }

  .site-header { height: 80px; }

  .brand-icon {
    height: 56px;
    width: auto;
  }

  .site-nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 1.5rem 2rem;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.3s ease;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    font-size: 1rem;
    color: var(--text);
  }

  .site-nav a:last-child { border-bottom: none; }
}
/* ═══════════════════════════════════════════════════════════════
   HERO CAROUSEL
═══════════════════════════════════════════════════════════════ */
.hero-carousel {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  overflow: hidden;
  margin-top: 0; /* full bleed under fixed nav */
}

/* Slides */
.hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

/* Background placeholder panels (replace with real images) */
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 6s ease;
}

.hero-slide.active .hero-bg {
  transform: scale(1);
}

/* Slide image placeholders — swapped for real images later */
.slide-1 { background-color: #0a1f2d; background-image: url('../images/index/future_ready_hero.webp'); }
.slide-2 { background-color: #0d2535; background-image: url('../images/index/end_to_end.webp'); }
.slide-3 { background-color: #091c2a; background-image: url('../images/index/from_vision_to_delivery.webp'); }

/* Dark gradient overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(8, 20, 28, 0.82) 0%,
    rgba(8, 20, 28, 0.55) 55%,
    rgba(8, 20, 28, 0.25) 100%
  );
}

/* Hero text content */
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
}

.hero-text {
  max-width: 640px;
  padding: 0 1rem;
}

.hero-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border-left: 3px solid var(--gold);
  padding-left: 10px;
  margin-bottom: 1.25rem;
}

.hero-heading {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 300;
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-cta {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--gold);
  padding: 13px 32px;
  border-radius: 4px;
  transition: background var(--transition), color var(--transition), transform 0.2s;
}

.hero-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* Dot indicators */
.hero-dots {
  position: absolute;
  bottom: 52px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

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

.hero-dot.active {
  background: var(--gold);
  transform: scale(1.35);
}

.hero-dot:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* Progress bar */
.hero-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255,255,255,0.1);
  z-index: 10;
}

.hero-progress-bar {
  height: 100%;
  background: var(--gold);
  width: 0%;
  transition: none;
}

@media (max-width: 767px) {
  .hero-carousel {
    min-height: 520px;
    max-height: 700px;
  }
  .hero-heading { font-size: 2rem; }
  .hero-dots { bottom: 36px; }
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT SECTION
═══════════════════════════════════════════════════════════════ */
.about-section {
  padding: 80px 0;
}

.about-card {
  border: none !important;
  border-radius: var(--radius) !important;
  box-shadow: 0 4px 32px rgba(15, 45, 60, 0.10);
  overflow: hidden;
}

.about-left {
  background: var(--brand);
  color: #ffffff;
  padding: 52px 44px;
  min-height: 360px;
  position: relative;
  overflow: hidden;
}

.about-left::before {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}

.about-label-tag {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.about-heading {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.25;
}

.about-divider {
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 20px;
  border-radius: 2px;
}

.about-tagline {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.02em;
}

.about-right {
  background: var(--bg-card);
  padding: 52px 44px;
}

.about-right p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 0.975rem;
  line-height: 1.75;
}

.about-right p:last-of-type { margin-bottom: 0; }

.about-services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.about-service-item {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--brand);
  background: rgba(15, 45, 60, 0.07);
  border: 1px solid rgba(15, 45, 60, 0.12);
  border-radius: 4px;
  padding: 5px 12px;
}

@media (max-width: 767px) {
  .about-left,
  .about-right { padding: 36px 28px; }
  .about-left { min-height: auto; }
}

/* ═══════════════════════════════════════════════════════════════
   SOLUTIONS SECTION
═══════════════════════════════════════════════════════════════ */
.solutions-section { background: var(--bg); }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-light);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--brand);
  margin-bottom: 16px;
}

.section-text {
  color: var(--text-muted);
  font-size: 0.975rem;
  max-width: 640px;
  line-height: 1.75;
}

/* Accordion */
.custom-accordion .accordion-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius) !important;
  margin-bottom: 12px;
  overflow: hidden;
}

.custom-accordion .accordion-button {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand);
  background: var(--bg-card);
  padding: 20px 28px;
  border: none;
  box-shadow: none;
}

.custom-accordion .accordion-button:not(.collapsed) {
  background: var(--brand);
  color: #ffffff;
  box-shadow: none;
}

.custom-accordion .accordion-button::after {
  filter: none;
}

.custom-accordion .accordion-button:not(.collapsed)::after {
  filter: invert(1) brightness(2);
}

.custom-accordion .accordion-body {
  padding: 28px;
  border-top: 1px solid var(--border);
}

.custom-accordion .accordion-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.solution-points {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.solution-points li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 6px 0 6px 20px;
  position: relative;
  border-bottom: 1px solid var(--border);
}

.solution-points li:last-child { border-bottom: none; }

.solution-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

.read-more-btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  border: 1.5px solid var(--brand);
  border-radius: 4px;
  padding: 9px 22px;
  transition: background var(--transition), color var(--transition);
}

.read-more-btn:hover {
  background: var(--brand);
  color: #ffffff;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
.site-footer {
  background: #ffffff;
  border-top: 1px solid var(--border);
  color: var(--text);
  padding: 48px 0 32px;
  margin-top: 64px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--text);
  font-weight: 700;
}
.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  width: 100%;
}


.footer-tagline {
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  margin: 0;
  margin-left: 5px;
  text-align: center;
  width: 100%;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 16px;
  margin-top: 8px;
}

.footer-logo-icon {
  height: 80px;
  width: auto;
  display: block;
}
.footer-nav a {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--brand); }

.footer-copy {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0;
  margin-top: 8px;
}

/* ═══════════════════════════════════════════════════════════════
   INTERIOR PAGE SHARED STYLES
═══════════════════════════════════════════════════════════════ */
.page-hero {
  background: var(--brand);
  color: #ffffff;
  padding: calc(var(--nav-h) + 60px) 0 60px;
  margin-bottom: 0;
}

.page-hero-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #ffffff;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  max-width: 580px;
  line-height: 1.7;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-light);
  margin-bottom: 40px;
  transition: color var(--transition);
}

.back-link:hover { color: var(--brand); }

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  height: 100%;
}

.service-card h3 {
  font-size: 1.05rem;
  color: var(--brand);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.content-block {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 40px 44px;
  margin-bottom: 24px;
  border: 1px solid var(--border);
}

.content-block h2 {
  font-size: 1.4rem;
  color: var(--brand);
  margin-bottom: 16px;
}

.content-block p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ═══════════════════════════════════════════════════════════════
   AI & INNOVATION PAGE
═══════════════════════════════════════════════════════════════ */

/* Page hero override for AI page */
.ai-hero {
  position: relative;
  padding: calc(var(--nav-h) + 80px) 0 72px;
  overflow: hidden;
  background: var(--brand);
}

.ai-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/ai-innovation-hero.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.22;
}

.ai-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(8,20,28,0.75) 0%, rgba(15,45,60,0.4) 100%);
}

.page-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  max-width: 580px;
  line-height: 1.75;
  margin-top: 1rem;
  margin-bottom: 2.5rem;
}

/* Stats row in hero */
.hero-stats-row {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  margin-top: 2rem;
  row-gap: 1rem;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  padding: 0 2.5rem 0 0;
}

.hero-stat-number {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.18);
  margin-right: 2.5rem;
}

/* Section spacing */
.py-section { padding: 72px 0; }
.bg-light-section { background: var(--bg); }
.mb-section-head { margin-bottom: 3rem; }

/* Intro block */
.intro-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 52px 48px;
}

.body-copy {
  color: var(--text-muted);
  font-size: 0.975rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.body-copy:last-child { margin-bottom: 0; }

/* Service cards (interior page variant) */
.svc-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px 28px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.svc-card:hover {
  border-color: rgba(15, 45, 60, 0.25);
  box-shadow: 0 6px 28px rgba(15,45,60,0.07);
}

.svc-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(15,45,60,0.07);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--brand);
}

.svc-card-title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 10px;
  line-height: 1.3;
}

.svc-card-body {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.svc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.svc-list li {
  font-size: 0.83rem;
  color: var(--text-muted);
  padding: 5px 0 5px 16px;
  position: relative;
  line-height: 1.5;
}

.svc-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

/* Process steps */
.process-steps {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-step {
  display: flex;
  gap: 2rem;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.process-step:last-child { border-bottom: none; }

.process-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: rgba(15,45,60,0.12);
  line-height: 1;
  min-width: 52px;
  padding-top: 2px;
}

.process-title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 8px;
}

.process-desc {
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
}

/* Integration callout */
.integration-callout {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.integration-callout-left {
  background: var(--brand);
  padding: 52px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.integration-callout-heading {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 16px;
  margin-top: 12px;
}

.integration-callout-sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin: 0;
}

.integration-callout-right {
  background: var(--bg-card);
  padding: 0;
}

.integration-item {
  padding: 32px 40px;
  border-bottom: 1px solid var(--border);
}
.integration-item.last { border-bottom: none; }

.integration-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-light);
  background: rgba(42, 111, 150, 0.1);
  border-radius: 4px;
  padding: 3px 10px;
  margin-bottom: 10px;
}

.integration-item h5 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 8px;
}

.integration-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* Page CTA block */
.page-cta-block {
  background: var(--brand);
  border-radius: var(--radius);
  padding: 52px 52px;
}

.page-cta-heading {
  font-size: 1.7rem;
  color: #ffffff;
  margin-bottom: 12px;
}

.page-cta-body {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin: 0;
}

.btn-primary-brand {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--gold);
  padding: 13px 30px;
  border-radius: 4px;
  transition: background var(--transition), transform 0.2s;
  white-space: nowrap;
}
.btn-primary-brand:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  color: var(--brand);
}

.btn-outline-brand {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.35);
  padding: 12px 28px;
  border-radius: 4px;
  transition: border-color var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn-outline-brand:hover {
  border-color: rgba(255,255,255,0.7);
  color: #ffffff;
}

@media (max-width: 767px) {
  .intro-block { padding: 32px 24px; }
  .integration-callout-left { padding: 36px 28px; }
  .integration-item { padding: 24px 24px; }
  .page-cta-block { padding: 36px 28px; }
  .hero-stats-row { gap: 1.5rem; flex-direction: column; }
  .hero-stat-divider { display: none; }
  .hero-stat { padding: 0; }
  .btn-outline-brand { margin-left: 0 !important; margin-top: 12px; }
}

/* ── About consult label ── */
.about-consult-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--brand);
  text-transform: uppercase;
  margin-bottom: 10px;
  margin-top: 20px;
}

/* ═══════════════════════════════════════════════════════════════
   DROPDOWN NAVBAR
═══════════════════════════════════════════════════════════════ */

.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
 color: var(--text);
   font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  padding: 6px 14px;
  border-radius: 6px;
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

.nav-dropdown-trigger:hover,
.nav-dropdown-trigger.is-active {
   color: var(--brand);
  background: rgba(26, 58, 143, 0.06);
}

.nav-dropdown-trigger.is-active {
  color: var(--gold-light);
}

.nav-dropdown-arrow {
  transition: transform 0.25s ease;
  flex-shrink: 0;
  opacity: 0.7;
}

.nav-dropdown-trigger[aria-expanded="true"] .nav-dropdown-arrow {
  transform: rotate(180deg);
}

/* Dropdown menu */
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  background: rgba(8, 22, 32, 0.97);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 6px;
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 100;
}

.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 14px;
  border-radius: 7px;
  text-decoration: none;
  transition: background 0.2s;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-dropdown-menu a:last-child {
  border-bottom: none;
}

.nav-dropdown-menu a:hover {
  background: rgba(255,255,255,0.07);
}

.nav-dropdown-label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.01em;
}

.nav-dropdown-desc {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.4;
}

/* ── Mobile dropdown ── */
/* ── Mobile dropdown ── */
@media (max-width: 1024px) {
  .nav-dropdown-trigger {
    width: 100%;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    font-size: 1rem;
    color: var(--text);
    font-weight: 600;
  }

  .nav-dropdown-menu {
    position: static;
    transform: none;
    width: 100%;
    background: var(--bg);
    border: none;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    padding: 0;
    opacity: 1;
    pointer-events: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    pointer-events: auto;
    max-height: 300px;
    transform: none;
  }

  .nav-dropdown-menu a {
    padding: 10px 16px;
    border-radius: 0;
    border-bottom: 1px solid var(--border);
  }

  .nav-dropdown-menu a:last-child { border-bottom: none; }

  .nav-dropdown-label {
    color: var(--text);
  }

  .nav-dropdown-trigger[aria-expanded="true"] {
    border-bottom-color: transparent;
  }
}

/* ═══════════════════════════════════════════════════════════════
   PARTNERS SECTION — Homepage
═══════════════════════════════════════════════════════════════ */

.partners-section {
  padding: 80px 0;
  background: var(--brand);
}

.partners-section .section-label {
  color: var(--gold);
}

.partners-section .section-title {
  color: #ffffff;
}

.partners-section .section-text {
  color: rgba(255,255,255,0.62);
}

.partners-grid-home {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.partner-card-home {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: background 0.3s, border-color 0.3s, transform 0.25s;
}

.partner-card-home:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(201,168,76,0.35);
  transform: translateY(-3px);
}

.partner-logo-area {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: #ffffff;
  padding: 20px;
  border-radius: var(--radius) var(--radius) 0 0;
}

.partner-logo-ph {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.2);
}

.partner-logo {
  max-height: 56px;
  max-width: 140px;
  width: auto;
  object-fit: contain;
  opacity: 1;
  transition: opacity 0.3s;
}

.partner-card-home:hover .partner-logo {
  opacity: 0.85;
}

.partner-card-body {
  padding: 20px;
  text-align: center;
}

.partner-card-name {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
  line-height: 1.3;
  
}

.partner-card-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 3px;
  padding: 3px 8px;
  margin-bottom: 10px;
}

.partner-card-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin: 0;
}

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

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

#serviceVerticals{
  font-size: 1.5rem;
}