/* =========================================================   SHREYA CONSULTANCY CORROSION SERVICES   style.css — global styles, variables, typography, header,   footer, and desktop layouts for all pages.   ========================================================= *//* -----------------------------   1. CSS VARIABLES------------------------------ */:root {
  --navy: #0D2F4A;
  --deep-navy: #08263D;
  --blue: #174D73;
  --industrial-blue: #1F5E8C;
  --light-blue-grey: #EAF1F5;
  --light-bg: #F7F9FA;
  --white: #FFFFFF;
  --text: #243B53;
  --text-light: #52616B;
  --border: #DCE4EA;
  --green: #4FAE63;
  --green-dark: #398A4A;
  --footer-bg: #08263D;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --container-width: 1240px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --shadow-sm: 0 2px 10px rgba(13, 47, 74, 0.06);
  --shadow-md: 0 6px 24px rgba(13, 47, 74, 0.10);
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-2xl: 96px;
}

/* ----------------------------- 2. RESET & BASE ------------------------------ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 19px;
  -webkit-font-smoothing: antialiased;
  padding-top: 0;
}

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

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

ul {
  list-style: none;
}

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

input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
}

:focus-visible {
  outline: 2px solid var(--industrial-blue);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.01ms !important;
  scroll-behavior: auto !important;
}

}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: var(--space-2xl) 0;
}

.section-padding-sm {
  padding: var(--space-xl) 0;
}

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

.bg-light-blue {
  background: var(--light-blue-grey);
  padding: 40px 0;
}

.bg-navy {
  background: var(--navy);
  color: var(--white);
}

.bg-deep-navy {
  background: var(--deep-navy);
  color: var(--white);
}

/* ----------------------------- 3. TYPOGRAPHY ------------------------------ */
h1, h2, h3, h4, h5 {
  color: var(--navy);
  font-weight: 700;
  line-height: 1.25;
}

.bg-navy h1, .bg-navy h2, .bg-navy h3,.bg-deep-navy h1, .bg-deep-navy h2, .bg-deep-navy h3 {
  color: var(--white);
}

h1 {
  font-size: 3.6rem;
  line-height: 1.15;
}

h2 {
  font-size: 2.85rem;
  line-height: 1.2;
}

h3 {
  font-size: 1.85rem;
  line-height: 1.25;
}

p {
  color: var(--text-light);
  font-size: 1.15rem;
}

.section-label {
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--industrial-blue);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-size: 2.85rem;
  color: var(--navy);
  margin-bottom: var(--space-sm);
  max-width: 820px;
  line-height: 1.2;
}

.section-intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.section-desc {
  color: var(--text-light);
  max-width: 600px;
  font-size: 1.1rem;
}

.script-font {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

/* ----------------------------- 4. BUTTONS ------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1.02rem;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.btn i {
  font-size: 16px;
  flex-shrink: 0;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--blue);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.btn-secondary {
  background: var(--green);
  color: var(--white);
  font-weight: 600;
  border: none;
}

.btn-secondary:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.55);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn-link {
  color: var(--industrial-blue);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.2s ease, gap 0.2s ease;
}

.btn-link:hover {
  border-color: var(--industrial-blue);
}

/* ----------------------------- 5. HEADER ------------------------------ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  border-bottom: none;
  box-shadow: none;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: 16px 0;
  transition: padding 0.35s ease;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand img {
  height: 64px;
  width: auto;
  max-width: 300px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter 0.35s ease, height 0.35s ease, max-width 0.35s ease;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.main-nav > ul {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Base header links at top (transparent header) */
.main-nav a.nav-link {
  font-size: 1.05rem;
  font-weight: 500;
  color: #ffffff;
  padding: 8px 2px;
  position: relative;
  white-space: nowrap;
  letter-spacing: 0.01em;
  transition: color 0.3s ease, font-weight 0.3s ease;
}

.main-nav a.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: #38bdf8;
  transition: width 0.25s ease, background 0.25s ease;
}

.main-nav a.nav-link:hover {
  color: #60a5fa;
}

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

.main-nav li.active a.nav-link {
  color: #38bdf8;
  font-weight: 700;
}

.has-dropdown {
  position: relative;
}

.has-dropdown > a.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.has-dropdown .caret {
  font-size: 0.72rem;
  margin-left: 2px;
  display: inline-block;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), color 0.25s ease;
  color: rgba(255, 255, 255, 0.85);
  transform-origin: center center;
}

.has-dropdown:hover .caret,
.has-dropdown:focus-within .caret {
  transform: rotate(180deg);
  color: #38bdf8;
}

.hamburger span {
  background: #ffffff;
  transition: background 0.3s ease;
}

/* -----------------------------
   SCROLLED HEADER STATE
------------------------------ */
.site-header.scrolled {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(13, 47, 74, 0.1);
}

.site-header.scrolled .header-inner {
  padding: 12px 0;
}

.site-header.scrolled .brand img {
  filter: none;
  height: 48px;
  max-width: 230px;
}

.site-header.scrolled .main-nav a.nav-link {
  color: var(--navy);
  font-weight: 600;
}

.site-header.scrolled .main-nav a.nav-link:hover {
  color: var(--industrial-blue);
}

.site-header.scrolled .main-nav a.nav-link::after {
  background: var(--industrial-blue);
}

.site-header.scrolled .main-nav li.active a.nav-link {
  color: var(--industrial-blue);
  font-weight: 700;
}

.site-header.scrolled .has-dropdown .caret {
  color: var(--navy);
}

.site-header.scrolled .has-dropdown:hover .caret,
.site-header.scrolled .has-dropdown:focus-within .caret {
  color: var(--industrial-blue);
}

.site-header.scrolled .hamburger span {
  background: var(--navy);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 250px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 32px rgba(13, 47, 74, 0.12);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.2s;
  z-index: 600;
}

.has-dropdown:hover .dropdown-menu,.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}

.dropdown-menu a:hover {
  background: var(--light-blue-grey);
  color: var(--industrial-blue);
  padding-left: 18px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  cursor: pointer;
  padding: 0;
  margin: 0;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  margin: 2.5px 0;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease;
  transform-origin: center;
}

.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);
}

/* -----------------------------   6. HERO (HOMEPAGE)------------------------------ */.hero {
  position: relative;
  overflow: hidden;
  background: var(--deep-navy);
  height: 100vh;
  height: 100dvh;
  min-height: 560px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: stretch;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  z-index: 1;
  pointer-events: none;
}

.hero-slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  z-index: 2;
  pointer-events: auto;
  height: 100%;
  width: 100%;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,38,61,0.96) 0%, rgba(8,38,61,0.88) 34%, rgba(8,38,61,0.35) 62%, rgba(8,38,61,0.05) 82%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: var(--container-width);
  margin: 0 auto;
  width: 100%;
  height: 100%;
  padding: 74px 24px 24px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

.hero-text {
  max-width: 780px;
  padding: var(--space-lg) 0;
}

.hero-eyebrow {
  color: #9FC3DD;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.hero-text h1 {
  color: var(--white);
  font-size: 4.2rem;
  line-height: 1.12;
  margin-bottom: var(--space-md);
}

.hero-text p {
  color: #D6E3EC;
  font-size: 1.45rem;
  line-height: 1.55;
  margin-bottom: var(--space-lg);
  max-width: 650px;
}

.hero-arrow {
  display: none !important;
}

.hero-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 8px;
}

.hero-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-dots button.active {
  background: var(--white);
  transform: scale(1.2);
}

/* -----------------------------   7. PAGE HERO (INNER PAGES)------------------------------ */.page-hero {
  position: relative;
  background: var(--deep-navy);
  min-height: 340px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 0;
}

.page-hero .hero-image {
  position: absolute;
  inset: 0;
}

.page-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(8,38,61,0.94) 20%, rgba(8,38,61,0.72) 100%);
}

.page-hero .hero-content {
  position: relative;
  z-index: 3;
  min-height: 340px;
  align-items: center;
  padding: 90px 24px var(--space-xl);
  width: 100%;
}

.page-hero .hero-text {
  max-width: 820px;
}

.page-hero h1 {
  font-size: 3.6rem;
  line-height: 1.15;
}

.breadcrumb {
  position: relative;
  z-index: 3;
  font-size: 0.95rem;
  color: #B9D0E0;
  margin-top: var(--space-md);
}

.breadcrumb a {
  color: #B9D0E0;
}

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

.breadcrumb span {
  margin: 0 6px;
}

/* -----------------------------   8. BENEFITS (4 COLUMN)------------------------------ */.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.benefit-item {
  padding: var(--space-xl) var(--space-md);
  text-align: center;
  border-right: 1px solid var(--border);
}

.benefit-item:last-child {
  border-right: none;
}

.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--light-blue-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-sm);
}

.icon-circle i {
  font-size: 26px;
  color: var(--navy);
}

.benefit-item h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.benefit-item p {
  font-size: 1rem;
  max-width: 240px;
  margin: 0 auto;
}

/* -----------------------------   9. SERVICES SECTION (HOME)------------------------------ */.services-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.4fr;
  gap: var(--space-2xl);
  align-items: start;
}

.services-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 var(--space-lg);
}

.service-row {
  display: flex;
  gap: 16px;
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--border);
}

.services-list .service-row:nth-last-child(1),.services-list .service-row:nth-last-child(2) {
  border-bottom: none;
}

.service-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--light-blue-grey);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon i {
  font-size: 20px;
  color: var(--industrial-blue);
}

.service-row h4 {
  font-size: 1.12rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.service-row p {
  font-size: 0.96rem;
}

/* -----------------------------   10. INDUSTRIES SECTION (HOME)------------------------------ */.industries-layout {
  display: grid;
  grid-template-columns: 0.65fr 1.85fr;
  gap: var(--space-xl);
  align-items: start;
}

.industries-intro {
}

.industries-title {
  font-size: 2.35rem;
  color: var(--industrial-blue);
  margin-bottom: var(--space-xs);
  max-width: none;
}

.industries-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.industry-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  position: relative;
}

.industry-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.industry-card .card-image {
  height: 175px;
  overflow: hidden;
}

.industry-card .card-image img {
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease;
}

.industry-card:hover .card-image img {
  transform: scale(1.04);
}

.industry-card .card-body {
  padding: var(--space-md) var(--space-sm) var(--space-md);
  position: relative;
}

.industry-card .icon-circle {
  position: absolute;
  top: -28px;
  left: var(--space-sm);
  margin: 0;
  background: var(--white);
  border: 1px solid var(--border);
  width: 50px;
  height: 50px;
}

.industry-card .card-body {
  padding-top: 30px;
}

.industry-card h3 {
  font-size: 1.18rem;
  margin-bottom: 6px;
}

.industry-card p {
  font-size: 0.95rem;
}

.industry-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: var(--space-sm);
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--industrial-blue);
}

/* Legacy industries-grid (used on other pages) */.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

/* -----------------------------   11. ABOUT PREVIEW (HOME)------------------------------ */.about-preview {
  display: grid;
  grid-template-columns: 0.75fr 1fr 0.65fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-image-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 400px;
}

.about-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
}

.about-image-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: var(--space-lg) var(--space-md);
  background: linear-gradient(0deg, rgba(8,38,61,0.85) 10%, rgba(8,38,61,0) 100%);
}

.about-image-caption p {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 600;
  font-style: italic;
  line-height: 1.35;
  margin: 0;
}

.about-text {
}

.about-text p {
  margin-bottom: 0;
}

.about-highlights-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm) var(--space-lg);
  margin: var(--space-lg) 0;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--navy);
}

.highlight-item .icon-circle {
  width: 40px;
  height: 40px;
  margin: 0;
  flex-shrink: 0;
}

.highlight-item .icon-circle i {
  font-size: 18px;
}

/* -----------------------------   12. WHY CHOOSE US------------------------------ */.why-section {
  border-top: 1px solid var(--border);
}

.why-row {
  display: grid;
  grid-template-columns: 0.85fr 2.2fr;
  gap: var(--space-xl);
  align-items: start;
}

.why-intro {
}

.why-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.why-item-inline {
  text-align: center;
  padding: var(--space-sm) var(--space-xs);
  border-left: 1px solid var(--border);
}

@media (min-width: 992px) {
  .why-item-inline:first-child {
    border-left: none;
  }
}

.why-item-inline .icon-circle {
  margin: 0 auto var(--space-xs);
  background: transparent;
  border: 1.5px solid var(--industrial-blue);
}

.why-item-inline .icon-circle i {
  color: var(--industrial-blue);
}

.why-item-inline h3 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.why-item-inline p {
  font-size: 0.84rem;
}

/* Legacy why styles (kept for other pages) */.why-choose-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

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

.why-item {
  background: var(--white);
  border: 1px solid rgba(13, 47, 74, 0.08);
  border-radius: 14px;
  padding: 26px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 18px rgba(13, 47, 74, 0.04);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  min-width: 0;
  box-sizing: border-box;
}

.why-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--industrial-blue), var(--accent-orange));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.why-item:hover {
  transform: translateY(-4px);
  border-color: rgba(224, 90, 43, 0.3);
  box-shadow: 0 14px 30px rgba(13, 47, 74, 0.1);
}

.why-item:hover::before {
  opacity: 1;
}

.why-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.why-item .icon-circle {
  margin: 0;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(31, 94, 140, 0.1) 0%, rgba(13, 47, 74, 0.05) 100%);
  color: var(--industrial-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: all 0.3s ease;
}

.why-item:hover .icon-circle {
  background: var(--industrial-blue);
  color: var(--white);
  transform: scale(1.05);
}

.why-num {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--navy);
  opacity: 0.3;
  font-family: monospace, sans-serif;
}

.why-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.why-item h3 {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.35;
}

.why-item p {
  font-size: 0.92rem;
  color: var(--slate);
  line-height: 1.55;
  margin: 0;
}

/* ----------------------------- 13. CTA SECTION ------------------------------ */
.cta-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #08263d 0%, #0d2f4a 50%, #1f5e8c 100%);
  padding: 80px 0;
  text-align: center;
  border-top: 3px solid var(--industrial-blue);
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.25);
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(31, 94, 140, 0.35) 0%, rgba(13, 47, 74, 0) 70%);
  pointer-events: none;
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--space-sm);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  letter-spacing: -0.5px;
}

.cta-section p {
  color: #E2EBF2;
  font-size: 1.25rem;
  max-width: 660px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.cta-section .btn-secondary,
.cta-section .btn-primary {
  background: var(--green);
  color: var(--white);
  font-weight: 600;
  border: none;
  box-shadow: 0 4px 15px rgba(79, 174, 99, 0.3);
  transition: all 0.3s ease;
}

.cta-section .btn-secondary:hover,
.cta-section .btn-primary:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(57, 138, 74, 0.4);
}

.cta-section .btn-outline {
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  color: #ffffff;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}

.cta-section .btn-outline:hover {
  background: #ffffff;
  color: #0d2f4a;
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(255, 255, 255, 0.25);
}

/* ----------------------------- 14. FOOTER ------------------------------ */
.site-footer {
  background: var(--footer-bg);
  color: #C7D8E4;
}

.footer-top {
  padding: 48px 0 var(--space-xl);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr 1fr;
  gap: var(--space-lg);
}

.footer-brand .brand {
  margin-bottom: var(--space-sm);
}

.footer-brand .brand img {
  height: 64px;
  width: auto;
  max-width: 320px;
  filter: brightness(0) invert(1);
}

.footer-brand .brand-text .brand-name {
  color: var(--white);
}

.footer-brand .brand-text .brand-sub {
  color: #93AEC0;
}

.footer-brand p.footer-tagline {
  margin-top: var(--space-sm);
  font-size: 0.88rem;
  color: #93AEC0;
  max-width: 260px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 1.08rem;
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 0.98rem;
  color: #B4CBDC;
  transition: color 0.2s ease;
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.98rem;
  color: #B4CBDC;
  margin-bottom: 12px;
}

.footer-contact li i {
  font-size: 16px;
  margin-top: 3px;
  flex-shrink: 0;
  color: #7CA5C2;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: var(--space-sm);
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.footer-social a i {
  font-size: 16px;
  color: var(--white);
}

.footer-social a:hover {
  background: var(--industrial-blue);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: #8FA9BB;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-md);
  font-size: 0.85rem;
}

.footer-bottom-links a {
  font-size: 0.85rem;
}

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


/* -----------------------------   16. ALTERNATING CONTENT BLOCKS (about/inner pages)------------------------------ */.content-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.content-block.reverse .block-image {
  order: 2;
}

.content-block.reverse .block-text {
  order: 1;
}

.block-image img {
  border-radius: var(--radius-md);
  width: 100%;
  min-height: 360px;
  object-fit: cover;
}

.block-text h2 {
  margin-bottom: var(--space-sm);
}

.block-text p {
  margin-bottom: var(--space-sm);
}

.value-grid, .checklist-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.value-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: var(--space-md);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.value-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(13, 47, 74, 0.08);
}

.value-item .icon-circle {
  margin: 0;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
}

.value-item .icon-circle i {
  font-size: 18px;
}

.value-item h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: var(--navy);
}

.value-item p {
  font-size: 0.95rem;
}

.value-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: var(--space-md);
}

.value-feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 2px 10px rgba(13, 47, 74, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.value-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(13, 47, 74, 0.09);
  border-color: var(--industrial-blue);
}

.value-feature-card i {
  color: var(--green);
  font-size: 1.15rem;
  flex-shrink: 0;
}

.value-feature-card span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
}

/* -----------------------------   16B. ABOUT PAGE (ELEVATED)------------------------------ */
.about-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: -44px;
  position: relative;
  z-index: 10;
  margin-bottom: 56px;
}

.about-stat-card {
  background: var(--white);
  border: 1px solid rgba(13, 47, 74, 0.08);
  border-radius: var(--radius-md);
  padding: 26px 20px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(13, 47, 74, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  min-width: 0;
}

.about-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(13, 47, 74, 0.1);
  border-color: rgba(224, 90, 43, 0.3);
}

.about-stat-num {
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--industrial-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-stat-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Image with Trust Badge */
.about-image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(13, 47, 74, 0.1);
}

.about-image-wrapper img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  display: block;
}

.image-trust-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(8, 38, 61, 0.92);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.image-trust-badge i {
  font-size: 1.5rem;
  color: #ff7e47;
  flex-shrink: 0;
}

.image-trust-badge span {
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.4;
}

/* 2x2 Feature Highlights inside Corporate Overview */
.about-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 28px;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--light-bg);
  border: 1px solid rgba(13, 47, 74, 0.07);
  border-radius: 10px;
  transition: all 0.25s ease;
}

.about-feature-item:hover {
  background: #ffffff;
  border-color: rgba(31, 94, 140, 0.3);
  box-shadow: 0 6px 18px rgba(13, 47, 74, 0.06);
}

.about-feature-item i {
  font-size: 1.2rem;
  color: var(--industrial-blue);
  margin-top: 2px;
  flex-shrink: 0;
}

.about-feature-item h4 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}

.about-feature-item p {
  font-size: 0.84rem;
  color: var(--slate);
  margin: 0;
  line-height: 1.45;
}

/* Strategic Purpose (Mission, Vision, HSE Pledge) */
.purpose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: var(--space-xl);
}

.purpose-card {
  background: var(--white);
  border: 1px solid rgba(13, 47, 74, 0.09);
  border-radius: 16px;
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(13, 47, 74, 0.04);
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  min-width: 0;
}

.purpose-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--industrial-blue), var(--accent-orange));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.purpose-card:hover {
  transform: translateY(-5px);
  border-color: rgba(224, 90, 43, 0.35);
  box-shadow: 0 16px 36px rgba(13, 47, 74, 0.1);
}

.purpose-card:hover::before {
  opacity: 1;
}

.purpose-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.purpose-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(31, 94, 140, 0.1) 0%, rgba(13, 47, 74, 0.05) 100%);
  color: var(--industrial-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  transition: all 0.3s ease;
}

.purpose-card:hover .purpose-icon {
  background: var(--navy);
  color: var(--white);
  transform: scale(1.05);
}

.purpose-badge {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(13, 47, 74, 0.06);
  color: var(--navy);
}

.purpose-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.purpose-card p {
  font-size: 0.94rem;
  color: var(--slate);
  line-height: 1.6;
  margin: 0;
}

/* Company Milestones Track */
.milestones-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: var(--space-xl);
  position: relative;
}

.milestones-track::before {
  content: '';
  position: absolute;
  top: 26px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, rgba(31,94,140,0.2) 0%, rgba(224,90,43,0.3) 50%, rgba(31,94,140,0.2) 100%);
  z-index: 0;
}

.milestone-node {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.milestone-year {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--navy);
  color: var(--navy);
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 4px 14px rgba(13, 47, 74, 0.12);
  transition: all 0.3s ease;
}

.milestone-node:hover .milestone-year {
  background: var(--navy);
  color: var(--white);
  border-color: var(--accent-orange);
  transform: scale(1.1);
}

.milestone-card {
  background: var(--white);
  border: 1px solid rgba(13, 47, 74, 0.08);
  border-radius: 12px;
  padding: 20px 16px;
  box-shadow: 0 4px 16px rgba(13, 47, 74, 0.04);
  width: 100%;
  text-align: left;
  transition: all 0.25s ease;
}

.milestone-node:hover .milestone-card {
  transform: translateY(-4px);
  border-color: rgba(31, 94, 140, 0.3);
  box-shadow: 0 10px 24px rgba(13, 47, 74, 0.08);
}

.milestone-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.milestone-card p {
  font-size: 0.85rem;
  color: var(--slate);
  line-height: 1.45;
  margin: 0;
}


/* About Values 6-Card Grid */
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: var(--space-xl);
}

.about-value-card {
  background: var(--white);
  border: 1px solid rgba(13, 47, 74, 0.08);
  border-radius: 14px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 18px rgba(13, 47, 74, 0.04);
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  min-width: 0;
}

.about-value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--industrial-blue), var(--accent-orange));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about-value-card:hover {
  transform: translateY(-4px);
  border-color: rgba(224, 90, 43, 0.3);
  box-shadow: 0 14px 30px rgba(13, 47, 74, 0.1);
}

.about-value-card:hover::before {
  opacity: 1;
}

.about-value-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.about-value-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(31, 94, 140, 0.1) 0%, rgba(13, 47, 74, 0.05) 100%);
  color: var(--industrial-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: all 0.3s ease;
}

.about-value-card:hover .about-value-icon {
  background: var(--industrial-blue);
  color: var(--white);
  transform: scale(1.05);
}

.about-value-num {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--navy);
  opacity: 0.3;
  font-family: monospace, sans-serif;
}

.about-value-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.35;
}

.about-value-card p {
  font-size: 0.92rem;
  color: var(--slate);
  line-height: 1.55;
  margin: 0;
}

/* Accreditations & Affiliations */
.accreditations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: var(--space-xl);
}

.accreditation-card {
  background: var(--white);
  border: 1px solid rgba(13, 47, 74, 0.08);
  border-radius: 14px;
  padding: 26px 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: 0 4px 16px rgba(13, 47, 74, 0.04);
  transition: all 0.25s ease;
  min-width: 0;
}

.accreditation-card:hover {
  transform: translateY(-3px);
  border-color: rgba(31, 94, 140, 0.3);
  box-shadow: 0 10px 24px rgba(13, 47, 74, 0.08);
}

.accreditation-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(31, 94, 140, 0.08);
  color: var(--industrial-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.accreditation-card:hover .accreditation-icon {
  background: var(--navy);
  color: var(--white);
}

.accreditation-card h4 {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.accreditation-card span {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-orange);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.accreditation-card p {
  font-size: 0.86rem;
  color: var(--slate);
  line-height: 1.45;
  margin: 0;
}

/* -----------------------------   17. SERVICES PAGE DETAIL BLOCKS & CARDS------------------------------ */[id] {
  scroll-margin-top: 100px;
}

.service-pills-wrap {
  background: var(--light-bg);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  position: sticky;
  top: 73px;
  z-index: 400;
  box-shadow: 0 4px 16px rgba(13, 47, 74, 0.05);
}

.service-pills {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
}

.pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.pill-btn i {
  font-size: 0.85rem;
  color: var(--industrial-blue);
}

.pill-btn:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.pill-btn:hover i {
  color: var(--white);
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(13, 47, 74, 0.06);
  padding: 36px 40px;
  margin-bottom: 40px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:last-child {
  margin-bottom: 0;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(13, 47, 74, 0.12);
}

.service-card-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}

.service-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--light-blue-grey);
  color: var(--industrial-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(31, 94, 140, 0.12);
}

.service-title-wrap h3 {
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.service-title-wrap p {
  color: var(--text-light);
  font-size: 1.05rem;
  margin: 0;
}

.service-capabilities-label {
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--industrial-blue);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.capability-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.capability-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--navy);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.capability-card:hover {
  background: var(--white);
  border-color: var(--industrial-blue);
  transform: translateY(-2px);
}

.capability-card i {
  color: var(--green);
  font-size: 0.95rem;
  flex-shrink: 0;
}

/* -----------------------------   18. INDUSTRIES PAGE SECTIONS & CARDS------------------------------ */.industry-showcase-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(13, 47, 74, 0.07);
  overflow: hidden;
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.industry-showcase-card:last-child {
  margin-bottom: 0;
}

.industry-showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(13, 47, 74, 0.13);
}

.industry-showcase-card.reverse .industry-card-image {
  order: 2;
}

.industry-showcase-card.reverse .industry-card-body {
  order: 1;
}

.industry-card-image {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}

.industry-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.industry-showcase-card:hover .industry-card-image img {
  transform: scale(1.04);
}

.industry-card-body {
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}

.industry-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.industry-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--light-blue-grey);
  color: var(--industrial-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(31, 94, 140, 0.12);
}

.industry-header h2 {
  font-size: 2.05rem;
  color: var(--navy);
  margin: 0;
  line-height: 1.25;
}

.industry-desc {
  color: var(--text-light);
  font-size: 1.08rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.focus-title {
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--industrial-blue);
  margin-bottom: 14px;
}

.focus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
  margin-bottom: 28px;
  padding: 0;
  list-style: none;
}

.focus-grid li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1rem;
  color: var(--text);
  font-weight: 500;
}

.focus-grid li i {
  color: var(--green);
  font-size: 0.95rem;
  flex-shrink: 0;
}

.industry-action {
  margin-top: auto;
  padding-top: 10px;
}

.industry-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  padding: var(--space-2xl) 0;
  border-bottom: 1px solid var(--border);
}

.industry-section:last-child {
  border-bottom: none;
}

.industry-section.reverse .industry-section-image {
  order: 2;
}

.industry-section.reverse .industry-section-text {
  order: 1;
}

.industry-section-image img {
  border-radius: var(--radius-md);
  width: 100%;
  min-height: 340px;
  object-fit: cover;
}

.focus-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
  margin-top: var(--space-md);
}

.focus-list li {
  font-size: 0.92rem;
  color: var(--text);
  padding: 8px 0 8px 20px;
  position: relative;
  border-bottom: 1px dashed var(--border);
}

.focus-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--industrial-blue);
}

/* -----------------------------   19. APPROACH (ELEVATED)------------------------------ */
.approach-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: -44px;
  position: relative;
  z-index: 10;
  margin-bottom: 56px;
}

.approach-stat-card {
  background: var(--white);
  border: 1px solid rgba(13, 47, 74, 0.08);
  border-radius: var(--radius-md);
  padding: 26px 20px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(13, 47, 74, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  min-width: 0;
}

.approach-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(13, 47, 74, 0.1);
  border-color: rgba(224, 90, 43, 0.3);
}

.approach-stat-num {
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--industrial-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.approach-stat-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Methodology Pillars */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: var(--space-xl);
}

.pillar-card {
  background: var(--white);
  border: 1px solid rgba(13, 47, 74, 0.08);
  border-radius: 14px;
  padding: 30px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 18px rgba(13, 47, 74, 0.04);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  min-width: 0;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--industrial-blue), var(--accent-orange));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pillar-card:hover {
  transform: translateY(-4px);
  border-color: rgba(224, 90, 43, 0.3);
  box-shadow: 0 14px 30px rgba(13, 47, 74, 0.1);
}

.pillar-card:hover::before {
  opacity: 1;
}

.pillar-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(31, 94, 140, 0.1) 0%, rgba(13, 47, 74, 0.05) 100%);
  color: var(--industrial-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.pillar-card:hover .pillar-icon {
  background: var(--industrial-blue);
  color: var(--white);
  transform: scale(1.05);
}

.pillar-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.35;
}

.pillar-card p {
  font-size: 0.92rem;
  color: var(--slate);
  line-height: 1.55;
  margin: 0;
}

/* 7-Step Lifecycle Roadmap */
.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: var(--space-xl);
}

.roadmap-card {
  background: var(--white);
  border: 1px solid rgba(13, 47, 74, 0.09);
  border-radius: 16px;
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(13, 47, 74, 0.04);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  min-width: 0;
}

.roadmap-card:hover {
  transform: translateY(-5px);
  border-color: rgba(31, 94, 140, 0.3);
  box-shadow: 0 16px 36px rgba(13, 47, 74, 0.09);
}

.roadmap-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.roadmap-step-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 20px;
  background: rgba(13, 47, 74, 0.06);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.roadmap-step-badge.highlight {
  background: rgba(224, 90, 43, 0.12);
  color: var(--accent-orange);
}

.roadmap-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(31, 94, 140, 0.08);
  color: var(--industrial-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transition: all 0.3s ease;
}

.roadmap-card:hover .roadmap-card-icon {
  background: var(--navy);
  color: var(--white);
}

.roadmap-card h3 {
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.35;
}

.roadmap-card p {
  font-size: 0.93rem;
  color: var(--slate);
  line-height: 1.55;
  margin-bottom: 20px;
}

.roadmap-activities {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.roadmap-activities li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.45;
}

.roadmap-activities li i {
  color: var(--industrial-blue);
  font-size: 0.82rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.roadmap-deliverable {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(13, 47, 74, 0.07);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--industrial-blue);
}

.roadmap-deliverable i {
  color: var(--accent-orange);
  font-size: 0.9rem;
}

/* Strategic Comparison (Reactive vs Proactive) */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-top: calc(var(--space-xl) + 20px);
}

.comparison-card {
  position: relative;
  border-radius: 16px;
  padding: 42px 32px 36px 32px;
  min-width: 0;
  box-shadow: 0 8px 30px rgba(13, 47, 74, 0.05);
}

.comparison-card.reactive {
  background: #fdfaf8;
  border: 1.5px solid rgba(220, 53, 69, 0.22);
}

.comparison-card.proactive {
  background: var(--white);
  border: 2px solid rgba(31, 94, 140, 0.4);
  box-shadow: 0 12px 36px rgba(31, 94, 140, 0.1);
}

.comparison-pill-badge {
  position: absolute;
  top: 0;
  left: 28px;
  transform: translateY(-50%);
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  box-sizing: border-box;
}

.comparison-pill-badge.reactive-pill {
  background: #fff5f5;
  color: #dc2626;
  border: 1.5px solid #fca5a5;
  box-shadow: 0 3px 12px rgba(220, 38, 38, 0.12);
}

.comparison-pill-badge.reactive-pill i {
  font-size: 0.85rem;
  color: #dc2626;
}

.comparison-pill-badge.proactive-pill {
  background: linear-gradient(135deg, #051826 0%, #0d2f4a 45%, #18507a 100%);
  color: #ffffff;
  border: 1.5px solid #2b6cb0;
  box-shadow: 0 4px 16px rgba(13, 47, 74, 0.28);
}

.comparison-pill-badge.proactive-pill i {
  color: #ff763b;
  font-size: 0.92rem;
}

.comparison-subtitle {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-top: 2px;
}

.comparison-subtitle.reactive {
  color: #dc3545;
}

.comparison-subtitle.proactive {
  color: var(--industrial-blue);
}

.proactive-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--industrial-blue), var(--accent-orange));
  color: var(--white);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(224, 90, 43, 0.3);
  margin-bottom: 16px;
}

.comparison-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(13, 47, 74, 0.08);
}

.comparison-header-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.comparison-card.reactive .comparison-header-icon {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
}

.comparison-card.proactive .comparison-header-icon {
  background: rgba(31, 94, 140, 0.1);
  color: var(--industrial-blue);
}

.comparison-header h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0;
  color: var(--navy);
}

.comparison-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.94rem;
  line-height: 1.5;
}

.comparison-list li i {
  font-size: 1rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.comparison-card.reactive .comparison-list li i {
  color: #dc3545;
}

.comparison-card.proactive .comparison-list li i {
  color: #198754;
}

.comparison-list strong {
  display: block;
  font-size: 0.98rem;
  color: var(--navy);
  margin-bottom: 2px;
}

/* Codes & Standards Matrix */
.standards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: var(--space-xl);
}

.standard-card {
  background: var(--white);
  border: 1px solid rgba(13, 47, 74, 0.08);
  border-radius: 14px;
  padding: 26px 20px;
  box-shadow: 0 4px 16px rgba(13, 47, 74, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  min-width: 0;
}

.standard-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(13, 47, 74, 0.08);
  border-color: rgba(31, 94, 140, 0.3);
}

.standard-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(31, 94, 140, 0.08);
  color: var(--industrial-blue);
  font-weight: 700;
  font-size: 0.8rem;
  margin-bottom: 12px;
}

.standard-card h4 {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.standard-card p {
  font-size: 0.88rem;
  color: var(--slate);
  line-height: 1.5;
  margin-bottom: 14px;
}

.standard-codes {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.standard-code-pill {
  font-size: 0.76rem;
  font-weight: 600;
  background: var(--light-bg);
  color: var(--navy);
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid var(--border);
}

/* Client Deliverables Grid */
.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: var(--space-xl);
}

.deliverable-card {
  background: var(--white);
  border: 1px solid rgba(13, 47, 74, 0.08);
  border-radius: 14px;
  padding: 26px 22px;
  box-shadow: 0 4px 16px rgba(13, 47, 74, 0.04);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.deliverable-card:hover {
  transform: translateY(-4px);
  border-color: rgba(224, 90, 43, 0.3);
  box-shadow: 0 12px 28px rgba(13, 47, 74, 0.09);
}

.deliverable-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(31, 94, 140, 0.1) 0%, rgba(13, 47, 74, 0.05) 100%);
  color: var(--industrial-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.deliverable-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.deliverable-card p {
  font-size: 0.88rem;
  color: var(--slate);
  line-height: 1.5;
  margin: 0;
}

/* Fallback timeline styles */
.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-lg);
  position: relative;
  margin-top: var(--space-lg);
}

.timeline-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.timeline-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 auto var(--space-sm);
  border: 4px solid var(--light-bg);
}

.timeline-step h4 {
  font-size: 1.08rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.timeline-step p {
  font-size: 0.94rem;
}

/* -----------------------------   20. CAREERS (ELEVATED)------------------------------ */
.career-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: -44px;
  position: relative;
  z-index: 10;
  margin-bottom: 56px;
}

.career-stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(13, 47, 74, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.career-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(13, 47, 74, 0.12);
  border-color: var(--industrial-blue);
}

.career-stat-num {
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--industrial-blue);
  line-height: 1.1;
  margin-bottom: 4px;
}

.career-stat-label {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 600;
}

.jobs-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.job-card-elevated {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  box-shadow: 0 4px 20px rgba(13, 47, 74, 0.05);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.25s ease;
}

.job-card-elevated:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(13, 47, 74, 0.12);
  border-color: var(--industrial-blue);
}

.job-card-main {
  flex: 1;
  min-width: 0;
}

.job-card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.job-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  background: var(--light-blue-grey);
  color: var(--navy);
}

.job-badge.badge-highlight {
  background: rgba(79, 174, 99, 0.15);
  color: var(--green-dark);
}

.job-card-main h3 {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.job-card-desc {
  font-size: 0.96rem;
  color: var(--text-light);
  line-height: 1.55;
  margin-bottom: 14px;
}

.job-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.job-tag {
  font-size: 0.8rem;
  color: var(--industrial-blue);
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  padding: 3px 10px;
  border-radius: 6px;
  font-weight: 500;
}

.job-card-action {
  flex-shrink: 0;
}

/* Hiring Process Section */
.hiring-process-section {
  background: #f8fafc;
  border-top: 1px solid var(--border);
  padding: 72px 0;
}

.hiring-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.hiring-step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  position: relative;
  box-shadow: 0 4px 16px rgba(13, 47, 74, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.hiring-step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(13, 47, 74, 0.09);
  border-color: var(--industrial-blue);
}

.hiring-step-num {
  font-size: 2.4rem;
  font-weight: 800;
  color: rgba(31, 94, 140, 0.18);
  line-height: 1;
  margin-bottom: 12px;
}

.hiring-step-card h4 {
  font-size: 1.12rem;
  color: var(--navy);
  margin-bottom: 8px;
  font-weight: 700;
}

.hiring-step-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
  margin: 0;
}

/* Talent Network Card */
.talent-network-card {
  background: linear-gradient(135deg, #08263d 0%, #0d2f4a 100%);
  border-radius: 16px;
  padding: 44px 48px;
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 36px;
  margin-top: 48px;
  box-shadow: 0 12px 36px rgba(8, 38, 61, 0.2);
}

.talent-network-card h3 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.talent-network-card p {
  color: #c7d8e4;
  font-size: 1.05rem;
  max-width: 620px;
  margin: 0;
  line-height: 1.6;
}

/* -----------------------------   21. FORMS & CONTACT PAGE------------------------------ */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 36px;
  box-shadow: 0 8px 30px rgba(13, 47, 74, 0.06);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 0;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.form-group.full {
  grid-column: 1 / -1;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  white-space: normal;
  word-break: break-word;
}

.form-group label .required {
  color: #C0392B;
  margin-left: 2px;
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--light-bg);
  color: var(--text);
  font-size: 0.95rem;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  text-overflow: ellipsis;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--industrial-blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(31, 94, 140, 0.12);
  outline: none;
}

.form-group textarea {
  resize: vertical;
  min-height: 95px;
}

.form-error {
  font-size: 0.8rem;
  color: #C0392B;
  min-height: 14px;
  margin-top: 1px;
}

/* Contact Info Cards (3-Column Top Grid) */
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
  width: 100%;
  max-width: 100%;
}

.contact-card-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: 0 4px 18px rgba(13, 47, 74, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.contact-card-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(13, 47, 74, 0.09);
  border-color: var(--industrial-blue);
}

.contact-card-item .icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--light-blue-grey);
  color: var(--industrial-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  margin: 0;
}

.contact-card-item > div:last-child {
  min-width: 0;
  flex: 1;
}

.contact-card-item h4 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 4px;
  word-break: break-word;
}

.contact-card-item p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 4px;
  line-height: 1.4;
}

.contact-card-item .contact-value {
  color: var(--text);
  font-weight: 500;
  display: inline-block;
  transition: color 0.2s ease;
}

.contact-card-item a.contact-value:hover {
  color: var(--industrial-blue);
}

.contact-card-item .contact-email {
  font-size: 0.88rem;
  white-space: nowrap;
}

.contact-card-item .contact-subtext {
  font-size: 0.82rem;
  color: var(--industrial-blue);
  font-weight: 600;
  display: block;
  line-height: 1.35;
}

/* FAQ Accordion Section (Dropdown Format) */
.faq-section {
  background: var(--light-bg);
  border-top: 1px solid var(--border);
  padding: 64px 0;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 880px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  min-width: 0;
}

.faq-item.active,
.faq-item:hover {
  border-color: var(--industrial-blue);
  box-shadow: 0 4px 16px rgba(13, 47, 74, 0.07);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  background: transparent;
  border: none;
  text-align: left;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  box-sizing: border-box;
  transition: color 0.2s ease, background 0.2s ease;
}

.faq-question:hover {
  color: var(--industrial-blue);
  background: rgba(234, 241, 245, 0.5);
}

.faq-question span {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex: 1;
  min-width: 0;
  word-break: break-word;
  overflow-wrap: break-word;
}

.faq-question span i {
  color: var(--industrial-blue);
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 3px;
}

.faq-icon {
  font-size: 0.88rem;
  color: var(--text-light);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.25s ease;
  flex-shrink: 0;
  margin-top: 4px;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--industrial-blue);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease;
  padding: 0 20px;
  box-sizing: border-box;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding: 0 20px 16px 20px;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
  padding-left: 0;
  word-break: break-word;
  overflow-wrap: break-word;
}

.form-group.error input,.form-group.error select,.form-group.error textarea {
  border-color: #C0392B;
}

.form-success {
  display: none;
  background: #EAF7ED;
  border: 1px solid #BFE3C6;
  color: var(--green-dark);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  margin-bottom: var(--space-md);
  box-shadow: 0 4px 14px rgba(46, 125, 50, 0.08);
}

.form-success.show {
  display: block;
  animation: fadeIn 0.3s ease;
}

.btn-success-state {
  background: #2e7d32 !important;
  border-color: #2e7d32 !important;
  color: #ffffff !important;
  cursor: default !important;
  box-shadow: 0 4px 14px rgba(46, 125, 50, 0.25) !important;
}

.contact-info-list {
  display: grid;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-info-item .icon-circle {
  margin: 0;
  flex-shrink: 0;
}

.contact-info-item h4 {
  font-size: 0.95rem;
  margin-bottom: 2px;
  color: var(--navy);
}

.contact-info-item p {
  font-size: 0.92rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: var(--space-2xl);
  align-items: start;
}

/* -----------------------------   22. SCROLL REVEAL------------------------------ */.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* -----------------------------   23. MISC UTILITIES------------------------------ */.text-center {
  text-align: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.divider {
  height: 1px;
  background: var(--border);
  width: 100%;
}

/* ----------------------------- 24. SERVICES PAGE ELEVATED STYLES ------------------------------ */
[id] {
  scroll-margin-top: 110px;
}

.service-pills-wrap {
  position: sticky;
  top: 75px;
  z-index: 90;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border, #e2e8f0);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 14px 0;
  margin-bottom: 40px;
}

.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 30px;
  background: var(--light-blue-grey, #f1f5f9);
  color: var(--navy, #0f172a);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  border: 1px solid transparent;
}

.pill-btn:hover {
  background: var(--navy, #0a2540);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(10, 37, 64, 0.15);
}

.pill-btn i {
  color: var(--amber-gold, #c89524);
}

.pill-btn:hover i {
  color: #fbbf24;
}

.services-container {
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.service-card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(10, 37, 64, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--navy, #0a2540) 0%, var(--amber-gold, #c89524) 100%);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 16px 40px rgba(10, 37, 64, 0.1);
  transform: translateY(-4px);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card-header {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 992px) {
  .service-card-header {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.service-card-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  background: rgba(10, 37, 64, 0.06);
  color: var(--navy, #0a2540);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 4px;
  width: fit-content;
}

.service-badge i {
  color: var(--amber-gold, #c89524);
}

.service-card-info h3 {
  font-size: 1.6rem;
  color: var(--navy, #0a2540);
  line-height: 1.3;
  margin: 0;
}

.service-card-info p {
  color: var(--slate-muted, #475569);
  font-size: 1rem;
  line-height: 1.65;
  margin: 0;
}

.service-card-cta {
  margin-top: 8px;
}

.capability-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

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

.capability-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.capability-card:hover {
  background: #ffffff;
  border-color: var(--amber-gold, #c89524);
  box-shadow: 0 4px 12px rgba(200, 149, 36, 0.12);
  transform: translateX(4px);
}

.capability-card i {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(200, 149, 36, 0.15);
  color: var(--amber-gold, #c89524);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.capability-card span {
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--navy, #0f172a);
}

/* ----------------------------- 17. LEADERSHIP TEAM SECTION ------------------------------ */
.team-section {
  background: var(--white);
}

.team-container {
  max-width: 960px;
  margin: 0 auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1140px;
  margin: 0 auto;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(13, 47, 74, 0.05);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(13, 47, 74, 0.12);
}

.team-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--light-blue-grey);
}

.team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s ease;
}

.team-card:hover .team-card-image img {
  transform: scale(1.04);
}

.team-social-overlay {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: flex;
  gap: 6px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.team-card:hover .team-social-overlay {
  opacity: 1;
  transform: translateY(0);
}

.team-social-overlay a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.22);
  transition: background 0.2s ease, transform 0.2s ease;
}

.team-social-overlay a:hover {
  background: var(--green);
  transform: scale(1.1);
}

.team-card-body {
  padding: 18px 18px 20px;
  text-align: left;
}

.team-card-body h3 {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}

.team-role {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.team-bio {
  font-size: 0.86rem;
  color: var(--text-light);
  line-height: 1.45;
  margin: 0;
}

/* -----------------------------
   25. QUOTE MODAL POPUP
------------------------------ */
.quote-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(8, 38, 61, 0.75);
  backdrop-filter: blur(5px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow-x: hidden !important;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.quote-modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.quote-modal-dialog {
  background: var(--white);
  border-radius: 16px;
  width: min(800px, calc(100vw - 40px));
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden !important;
  box-shadow: 0 24px 60px rgba(8, 38, 61, 0.35);
  transform: translateY(24px) scale(0.96);
  transition: transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1);
  position: relative;
  padding: 34px 34px 36px 34px;
  box-sizing: border-box;
  scrollbar-width: thin;
  scrollbar-color: rgba(31, 94, 140, 0.3) transparent;
}

.quote-modal-dialog * {
  box-sizing: border-box;
}

.quote-modal-dialog .form-card,
.quote-modal-dialog form {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  overflow-x: hidden;
}

.quote-modal-dialog .form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.quote-modal-dialog .form-group {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.quote-modal-dialog .form-group input,
.quote-modal-dialog .form-group select,
.quote-modal-dialog .form-group textarea {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  text-overflow: ellipsis;
}

.quote-modal-dialog::-webkit-scrollbar {
  width: 6px;
}

.quote-modal-dialog::-webkit-scrollbar-thumb {
  background: rgba(31, 94, 140, 0.3);
  border-radius: 999px;
}

.quote-modal-backdrop.open .quote-modal-dialog {
  transform: translateY(0) scale(1);
}

.quote-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--light-bg);
  border: 1px solid var(--border);
  color: var(--navy);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.quote-modal-close:hover {
  background: var(--navy);
  color: var(--white);
  transform: rotate(90deg);
}

.quote-modal-header {
  margin-bottom: 24px;
  padding-right: 44px;
}

.quote-modal-header .section-label {
  margin-bottom: 4px;
}

.quote-modal-header h3 {
  font-size: 1.85rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.quote-modal-header p {
  color: var(--text-light);
  font-size: 1.02rem;
}

/* =========================================================
   26. EXECUTIVE & LEADERSHIP PROFILE PAGES
   ========================================================= */
.hero.profile-hero {
  position: relative;
  overflow: hidden;
  background: var(--deep-navy);
  height: 100vh;
  height: 100dvh;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.profile-hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 85% 20%;
}

.hero-overlay.profile-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, 
    rgba(8, 38, 61, 1) 0%, 
    rgba(8, 38, 61, 0.98) 32%, 
    rgba(8, 38, 61, 0.88) 44%, 
    rgba(8, 38, 61, 0.35) 54%, 
    rgba(8, 38, 61, 0.08) 64%, 
    rgba(8, 38, 61, 0) 72%, 
    rgba(8, 38, 61, 0) 100%);
  z-index: 2;
}

.profile-hero-content {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  position: relative;
  z-index: 3;
  padding: 90px 24px 30px;
  box-sizing: border-box;
}

.profile-hero-text {
  max-width: 740px;
  padding: 0;
  width: 100%;
}

.profile-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #9FC3DD;
  margin-bottom: 20px;
}

.profile-hero-breadcrumb a {
  color: #D6E3EC;
  transition: color 0.2s ease;
}

.profile-hero-breadcrumb a:hover {
  color: var(--white);
}

.profile-hero-breadcrumb span {
  opacity: 0.5;
}

.profile-hero-text .hero-eyebrow {
  margin-bottom: 8px;
  color: var(--green);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
}

.profile-hero-text h1 {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 12px;
  color: var(--white);
  font-weight: 800;
  letter-spacing: -0.5px;
}

.profile-hero-role {
  font-size: 1.28rem;
  font-weight: 600;
  color: #C0D8EB;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.profile-hero-desc {
  color: #E2ECF3;
  font-size: 1.18rem;
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 650px;
}

.profile-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.profile-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: rgba(13, 47, 74, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--white);
  backdrop-filter: blur(8px);
}

.profile-hero-badge i {
  color: var(--green);
}

.profile-hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* -----------------------------
   Profile Overview (Editorial Bio + Dossier)
------------------------------ */
.profile-overview-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 54px;
  align-items: start;
}

.profile-prose {
  font-size: 1.06rem;
  line-height: 1.85;
  color: var(--text);
}

.profile-prose p {
  margin-bottom: 20px;
}

.profile-prose p:last-child {
  margin-bottom: 0;
}

.profile-dossier-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 30px;
  box-shadow: var(--shadow-sm);
}

.profile-dossier-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--light-blue-grey);
  display: flex;
  align-items: center;
  gap: 10px;
}

.profile-dossier-card h3 i {
  color: var(--industrial-blue);
}

.profile-dossier-row {
  display: grid;
  grid-template-columns: 135px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.94rem;
  line-height: 1.5;
}

.profile-dossier-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.profile-dossier-label {
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.5px;
}

.profile-dossier-value {
  color: var(--navy);
  font-weight: 600;
}

/* -----------------------------
   Core Expertise Columns
------------------------------ */
.profile-expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.profile-expertise-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: 0 4px 16px rgba(13, 47, 74, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
}

.profile-expertise-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--industrial-blue);
}

.profile-expertise-num {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--industrial-blue);
  margin-bottom: 14px;
  display: inline-block;
  letter-spacing: -0.5px;
}

.profile-expertise-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.35;
}

.profile-expertise-card p {
  font-size: 0.93rem;
  line-height: 1.65;
  color: var(--text-light);
  margin: 0;
}

/* -----------------------------
   Professional Career Timeline
------------------------------ */
.profile-timeline-wrap {
  position: relative;
  max-width: 920px;
  margin: 44px auto 0;
  padding-left: 38px;
}

.profile-timeline-wrap::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: #CBDCE7;
}

.timeline-milestone {
  position: relative;
  margin-bottom: 40px;
}

.timeline-milestone:last-child {
  margin-bottom: 0;
}

.timeline-node {
  position: absolute;
  left: -38px;
  top: 8px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--industrial-blue);
  box-shadow: 0 0 0 4px var(--light-blue-grey);
}

.timeline-milestone:first-child .timeline-node {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(79, 174, 99, 0.2);
}

.timeline-body-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 30px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.timeline-body-card:hover {
  border-color: #B4CADB;
  box-shadow: var(--shadow-md);
}

.timeline-topline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 10px;
}

.timeline-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}

.timeline-org {
  font-size: 1rem;
  font-weight: 600;
  color: var(--industrial-blue);
}

.timeline-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  background: var(--light-blue-grey);
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
}

.timeline-loc {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 14px;
}

.timeline-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
}

.timeline-text p {
  margin-bottom: 10px;
}

.timeline-text p:last-child {
  margin-bottom: 0;
}

.timeline-points {
  margin-top: 14px;
  padding-left: 20px;
}

.timeline-points li {
  list-style: disc;
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 6px;
}

.timeline-points li:last-child {
  margin-bottom: 0;
}

/* -----------------------------
   Capabilities & Credentials Grids
------------------------------ */
.profile-matrix-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 26px;
  margin-top: 36px;
}

.profile-matrix-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
}

.profile-matrix-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 10px;
}

.profile-matrix-card h3 i {
  color: var(--industrial-blue);
}

.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.profile-tag {
  display: inline-block;
  padding: 6px 12px;
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.3;
}

.profile-credentials-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-top: 36px;
}

.profile-credential-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
}

.profile-credential-box h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 2px solid var(--border);
  padding-bottom: 12px;
}

.profile-credential-box h3 i {
  color: var(--industrial-blue);
}

.profile-entry {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--border);
}

.profile-entry:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.profile-entry-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.profile-entry-org {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--industrial-blue);
  margin-bottom: 4px;
}

.profile-entry-meta {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* -----------------------------
   Selected Historical Projects
------------------------------ */
.profile-projects-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.profile-project-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--industrial-blue);
  border-radius: var(--radius-sm);
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
}

.profile-project-card h4 {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.profile-project-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.55;
  margin: 0;
}

.profile-project-attribution {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--industrial-blue);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* -----------------------------
   Executive Perspective
------------------------------ */
.profile-quote-section {
  background: var(--light-blue-grey);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 0;
}

.profile-quote-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.profile-quote-eyebrow {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--industrial-blue);
  margin-bottom: 16px;
}

.profile-quote-text {
  font-size: 1.3rem;
  line-height: 1.75;
  color: var(--navy);
  font-style: italic;
  margin-bottom: 18px;
}

.profile-quote-author {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

/* Team Profile Button in about.html */
.team-card .team-profile-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 8px 16px;
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--navy);
  transition: all 0.25s ease;
  width: 100%;
  justify-content: center;
}

.team-card .team-profile-btn:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.team-card .team-profile-btn i {
  font-size: 0.8rem;
  transition: transform 0.2s ease;
}

.team-card .team-profile-btn:hover i {
  transform: translateX(4px);
}

.team-card-name-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.team-card-name-link:hover {
  color: var(--industrial-blue);
}

/* =========================================================
   27. LEGAL & COMPLIANCE PAGES (PRIVACY & TERMS)
   ========================================================= */
.legal-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}

.legal-sidebar {
  position: sticky;
  top: 100px;
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
}

.legal-sidebar h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.legal-toc-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.legal-toc-list a {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.4;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  display: block;
}

.legal-toc-list a:hover {
  background: var(--light-blue-grey);
  color: var(--industrial-blue);
  font-weight: 600;
  padding-left: 14px;
}

.legal-content {
  background: var(--white);
  color: var(--text);
}

.legal-section {
  margin-bottom: 44px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.legal-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.legal-section h2 {
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.3;
}

.legal-section h3 {
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--navy);
  margin: 20px 0 10px;
}

.legal-section p {
  font-size: 0.98rem;
  line-height: 1.8;
  color: #334e68;
  margin-bottom: 16px;
}

.legal-section ul, .legal-section ol {
  margin: 14px 0 20px 22px;
}

.legal-section li {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #334e68;
  margin-bottom: 8px;
  list-style: disc;
}

.legal-notice-box {
  background: rgba(31, 94, 140, 0.06);
  border-left: 4px solid var(--industrial-blue);
  border-radius: 4px;
  padding: 18px 20px;
  margin: 20px 0;
}

.legal-notice-box p {
  font-size: 0.94rem;
  margin-bottom: 0;
  font-weight: 600;
  color: var(--navy);
}

.legal-badge-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  font-size: 0.85rem;
  color: #D6E3EC;
  margin-top: 14px;
}


