:root {
  /* ── Color Palette (Light Powder Blue Theme) ─── */
  --navy: #0E639A;
  /* header, footer, accents (softened corporate blue) */
  --blue: #009FDF;
  /* primary interactive powder/electric blue */
  --blue-mid: #33B2EA;
  /* hover states */
  --blue-light: #E8F6FB;
  /* light blue tints on cards */
  --blue-accent: #C2EAF8;
  /* soft blue backgrounds */
  --dark-bg: #09446A;
  /* header / footer only */
  --dark-card: #12507B;
  --white: #FFFFFF;
  --grey-light: #F8FAFC;
  /* alternate section bg */
  --grey-mid: #E2E8F0;
  /* borders, dividers */
  --grey-text: #64748B;
  /* secondary text */
  --text: #1E293B;
  /* primary body text */
  --border: #CBD5E1;
  --success: #16A34A;
  --whatsapp: #25D366;
  --emergency: #DC2626;

  /* ── Typography ───────────────────────────────── */
  --font-heading: 'Space Grotesk', 'Inter', sans-serif;
  --font-body: 'DM Sans', 'Inter', sans-serif;

  /* ── Spacing ──────────────────────────────────── */
  --section-pad: 80px;
  --container: 1600px;
  --radius: 8px;
  --radius-lg: 14px;

  /* ── Transitions ──────────────────────────────── */
  --transition: 0.3s ease;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 6px 24px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.18);
}

/* ── Font Faces ───────────────────────────────────────────────────────────── */
@font-face {
  font-family: 'Space Grotesk';
  src: url('../fonts/SpaceGrotesk/SpaceGrotesk-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Space Grotesk';
  src: url('../fonts/SpaceGrotesk/SpaceGrotesk-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Space Grotesk';
  src: url('../fonts/SpaceGrotesk/SpaceGrotesk-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Space Grotesk';
  src: url('../fonts/SpaceGrotesk/SpaceGrotesk-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DMSans/DMSans_24pt-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DMSans/DMSans_24pt-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DMSans/DMSans_24pt-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DMSans/DMSans_24pt-SemiBoldItalic.ttf') format('truetype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DMSans/DMSans_36pt-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DMSans/DMSans_36pt-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

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

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  line-height: 1.45;
  overflow-x: hidden;
}

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

a {
  color: var(--blue);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--navy);
}

ul {
  list-style: none;
}

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

h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
}

h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
}

h4 {
  font-size: 1.125rem;
}

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

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

.section {
  padding: var(--section-pad) 0;
}

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

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

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

/* ── Section Title ───────────────────────────────────────────────────────── */
.section-title {
  margin-bottom: 48px;
}

.section-title.centered {
  text-align: center;
}

.section-title span {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--blue);
  margin-bottom: 10px;
}

.section-title h2 {
  position: relative;
  padding-bottom: 16px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 56px;
  height: 3px;
  background: var(--blue);
  border-radius: 2px;
}

.section-title.centered h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.section-title p {
  margin-top: 16px;
  color: var(--grey-text);
  max-width: 600px;
}

.section-title.centered p {
  margin: 16px auto 0;
}

/* ── Top Info Bar ────────────────────────────────────────────────────────── */
.top-bar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
  font-family: var(--font-body);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

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

.top-bar a {
  color: rgba(255, 255, 255, 0.85);
}

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

.top-bar i {
  color: #93C5FD;
  margin-right: 5px;
}

/* ── Header ──────────────────────────────────────────────────────────────── */
.site-header {
  background: var(--dark-bg);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo img {
  height: 110px;
  width: auto;
  max-height: none;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
  line-height: 1.1;
}

.logo-text span {
  color: var(--blue);
  display: block;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── Navigation ──────────────────────────────────────────────────────────── */
.main-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.main-nav>li>a {
  display: block;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
}

.main-nav>li>a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--blue);
  transform: translateX(-50%);
  transition: width var(--transition);
}

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

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

/* ── Dropdown ────────────────────────────────────────────────────────────── */
.has-dropdown {
  position: relative;
}

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

.has-dropdown>a .chevron {
  font-size: 0.65rem;
  transition: transform var(--transition);
}

.has-dropdown:hover>a .chevron {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  min-width: 240px;
  padding: 8px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
}

.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;
  gap: 10px;
  padding: 10px 14px;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.dropdown-menu a i {
  color: var(--blue);
  width: 18px;
  text-align: center;
}

.dropdown-menu a:hover {
  background: var(--grey-light);
  color: var(--navy);
}

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

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

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

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

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

.mobile-nav {
  display: none;
  background: var(--dark-card);
  padding: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav.open {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 12px 16px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.mobile-nav .mobile-sub {
  padding-left: 20px;
}

.mobile-nav .mobile-sub a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}

.mobile-sub-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  cursor: pointer;
  border-radius: var(--radius);
}

.mobile-sub-toggle:hover {
  background: rgba(255, 255, 255, 0.06);
}

.mobile-sub {
  display: none;
}

.mobile-sub.open {
  display: block;
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: #1d4ed8;
  border-color: #1d4ed8;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

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

.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}

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

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  border-color: var(--whatsapp);
}

.btn-whatsapp:hover {
  background: #1da750;
  border-color: #1da750;
  color: var(--white);
}

/* ── Hero (Home Slideshow) ───────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

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

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 27, 42, 0.85) 0%, rgba(26, 58, 107, 0.65) 100%);
  display: flex;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero-tagline {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #93C5FD;
  margin-bottom: 16px;
  padding: 6px 16px;
  border: 1px solid rgba(147, 197, 253, 0.4);
  border-radius: 100px;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero h1 em {
  color: #93C5FD;
  font-style: normal;
}

.hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 560px;
}

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

/* Hero Slide Dots */
.hero-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all var(--transition);
}

.hero-dot.active {
  background: var(--blue);
  transform: scale(1.3);
}

/* ── Page Banner ─────────────────────────────────────────────────────────── */
.page-banner {
  width: 100%;
  height: auto;
  min-height: 250px;
  position: relative;
  overflow: hidden;
  background: var(--navy);
}

.page-banner img {
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
  display: block;
}

.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(10, 27, 60, 0.75), rgba(10, 27, 60, 0.55));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding-top: 80px;
}

.page-banner h1 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* ── Breadcrumb ──────────────────────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  z-index: 2;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
}

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

.breadcrumb .sep {
  color: rgba(255, 255, 255, 0.4);
}

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

/* ── Stats Bar ───────────────────────────────────────────────────────────── */
.stats-bar {
  background: var(--blue-accent);
  border-top: 1px solid #BFDBFE;
  border-bottom: 1px solid #BFDBFE;
  padding: 36px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  text-align: center;
}

.stat-item {
  color: var(--navy);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--grey-text);
  margin-top: 6px;
  font-weight: 500;
}

/* ── Service Cards ───────────────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform var(--transition);
}

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

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card-icon {
  width: 56px;
  height: 56px;
  background: var(--blue-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background var(--transition);
}

.service-card:hover .service-card-icon {
  background: var(--blue);
}

.service-card-icon i {
  font-size: 1.4rem;
  color: var(--blue);
  transition: color var(--transition);
}

.service-card:hover .service-card-icon i {
  color: var(--white);
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.service-card p {
  color: var(--grey-text);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.service-card .learn-more {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}

.service-card:hover .learn-more {
  gap: 10px;
}

/* ── Info Cards (Vision/Mission/Values) ──────────────────────────────────── */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  border-top: 4px solid var(--blue);
  transition: all var(--transition);
}

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

.info-card i {
  font-size: 2rem;
  color: var(--blue);
  margin-bottom: 16px;
  background: var(--blue-light);
  width: 60px;
  height: 60px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-card h3 {
  margin-bottom: 12px;
}

.info-card p {
  color: var(--grey-text);
  font-size: 0.95rem;
}

/* ── Check List ──────────────────────────────────────────────────────────── */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.5;
}

.check-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--blue);
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 4px;
}

/* ── Cert Bar ────────────────────────────────────────────────────────────── */
.cert-bar {
  background: var(--navy);
  padding: 22px 0;
}

.cert-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.cert-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-heading);
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
}

.cert-badge i {
  color: #93C5FD;
  font-size: 1rem;
}

/* ── Client Logos Strip ──────────────────────────────────────────────────── */
.clients-strip {
  overflow: hidden;
  padding: 40px 0;
  background: var(--white);
}

.clients-track {
  display: flex;
  gap: 48px;
  animation: scrollClients 20s linear infinite;
  width: max-content;
}

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

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  padding: 0 28px;
  background: var(--white);
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  white-space: nowrap;
  min-width: 160px;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

@keyframes scrollClients {
  0% {
    transform: translateX(0);
  }

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

/* ── Emergency CTA ───────────────────────────────────────────────────────── */
.emergency-cta {
  background: linear-gradient(135deg, var(--blue) 0%, #1d4ed8 100%);
  padding: 60px 0;
}

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

.emergency-cta h2 {
  color: var(--white);
  margin-bottom: 8px;
}

.emergency-cta p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.emergency-cta-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── Two-Column Layout ───────────────────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.two-col.align-center {
  align-items: center;
}

.two-col-60 {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 48px;
  align-items: start;
}

/* ── Content Panel / Sidebar ─────────────────────────────────────────────── */
.content-panel {}

.sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  background: var(--grey-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 24px;
  border: 1px solid var(--border);
}

.sidebar-widget h4 {
  font-size: 1rem;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--blue);
  color: var(--navy);
}

.sidebar-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sidebar-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition);
}

.sidebar-links a:hover,
.sidebar-links a.active {
  background: var(--blue);
  color: var(--white);
}

.sidebar-links a i {
  color: var(--blue);
  width: 16px;
  transition: color var(--transition);
}

.sidebar-links a:hover i,
.sidebar-links a.active i {
  color: var(--white);
}

/* ── Quick Contact Form (Sidebar) ────────────────────────────────────────── */
.quick-contact-form {}

.quick-contact-form .form-group {
  margin-bottom: 14px;
}

.quick-contact-form input,
.quick-contact-form textarea,
.quick-contact-form select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
}

.quick-contact-form input:focus,
.quick-contact-form textarea:focus,
.quick-contact-form select:focus {
  outline: none;
  border-color: var(--blue);
}

.quick-contact-form textarea {
  resize: vertical;
  min-height: 90px;
}

/* ── Full Contact Form ───────────────────────────────────────────────────── */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-grid .full {
  grid-column: 1 / -1;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: all var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 6px;
  color: var(--navy);
}

.form-group {
  margin-bottom: 0;
}

.field-error {
  color: var(--emergency);
  font-size: 0.8rem;
  margin-top: 4px;
  display: none;
}

.field-error.show {
  display: block;
}

/* ── Industries Grid ─────────────────────────────────────────────────────── */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.industry-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  transition: all var(--transition);
}

.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
  background: var(--blue-light);
}

.industry-card i {
  font-size: 2.2rem;
  color: var(--blue);
  margin-bottom: 14px;
  background: var(--blue-light);
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  transition: background var(--transition);
}

.industry-card:hover i {
  background: var(--blue);
  color: var(--white);
}

.industry-card h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.industry-card p {
  font-size: 0.875rem;
  color: var(--grey-text);
  margin: 0;
}

/* ── Cert Cards ──────────────────────────────────────────────────────────── */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.cert-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  text-align: center;
  border-top: 4px solid var(--blue);
}

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

.cert-card i {
  font-size: 2rem;
  color: var(--blue);
  margin-bottom: 16px;
  background: var(--blue-light);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.cert-card .cert-name {
  display: inline-block;
  background: var(--blue-accent);
  color: var(--navy);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  padding: 4px 18px;
  border-radius: 100px;
  margin-bottom: 10px;
  border: 1px solid #BFDBFE;
}

.cert-card h4 {
  margin-bottom: 12px;
  color: var(--navy);
}

.cert-card p {
  color: var(--grey-text);
  font-size: 0.9rem;
  margin: 0;
}

/* ── Table (iTIG comparison) ─────────────────────────────────────────────── */
.table-wrapper {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

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

thead th {
  padding: 14px 16px;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
}

tbody tr:nth-child(even) {
  background: var(--grey-light);
}

tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.tag-include {
  color: var(--success);
  font-weight: 600;
}

.tag-optional {
  color: var(--blue);
  font-weight: 600;
}

.tag-not {
  color: var(--grey-text);
}

/* ── Project Cards ───────────────────────────────────────────────────────── */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.project-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

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

.project-card-img {
  height: 200px;
  background: var(--grey-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-text);
  font-size: 0.875rem;
}

.project-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.project-tag {
  display: inline-block;
  background: var(--blue-accent);
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid #BFDBFE;
}

.project-card h4 {
  margin-bottom: 8px;
}

.project-card p {
  font-size: 0.9rem;
  color: var(--grey-text);
  margin: 0;
}

/* ── Testimonials ────────────────────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-size: 5rem;
  color: rgba(37, 99, 235, 0.1);
  position: absolute;
  top: 8px;
  left: 24px;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-text {
  font-style: italic;
  color: var(--grey-text);
  margin-bottom: 20px;
  position: relative;
}

.testimonial-author strong {
  font-family: var(--font-heading);
  font-weight: 600;
}

.testimonial-author span {
  display: block;
  font-size: 0.85rem;
  color: var(--blue);
}

/* ── Footer ──────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--dark-bg);
  color: rgba(255, 255, 255, 0.75);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--blue);
}

.footer-col p {
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: #93C5FD;
}

.footer-links a i {
  font-size: 0.7rem;
  color: var(--blue);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.9rem;
}

.footer-contact-item i {
  color: var(--blue);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.75);
}

.footer-contact-item a:hover {
  color: var(--white);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo img {
  height: 90px;
  width: auto;
  max-height: none;
}

.footer-logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--white);
}

.footer-logo-text span {
  color: var(--blue);
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}

.footer-certs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-cert {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 3px 10px;
  border-radius: 100px;
  font-family: var(--font-heading);
}

/* ── Floating Buttons ────────────────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--whatsapp);
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  z-index: 9999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
  color: var(--white);
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: var(--navy);
  color: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  z-index: 9999;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: all var(--transition);
  opacity: 0;
  visibility: hidden;
  border: none;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--blue);
  transform: translateY(-3px);
}

/* ── Reveal Animation ────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* ── Placeholder Image ───────────────────────────────────────────────────── */
.placeholder-img {
  background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #94a3b8;
  font-size: 0.8rem;
  font-family: var(--font-body);
  text-align: center;
}

.placeholder-img i {
  font-size: 2.5rem;
  opacity: 0.5;
}

/* ── Custom Lists ────────────────────────────────────────────────────────── */
ul.custom-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

ul.custom-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--navy);
  line-height: 1.5;
}

ul.custom-list li i {
  color: var(--blue);
  font-size: 0.85rem;
  margin-top: 4px;
  background: rgba(37, 99, 235, 0.1);
  min-width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .two-col,
  .two-col-60 {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 56px;
  }

  .main-nav,
  .hamburger-area {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .header-inner {
    padding: 14px 0;
  }

  .hero {
    height: 90vh;
    min-height: 520px;
  }

  .hero-btns {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-banner {
    height: 280px;
  }

  .page-banner h1 {
    font-size: 1.6rem;
  }

  .emergency-cta .container {
    flex-direction: column;
    text-align: center;
  }

  .emergency-cta-btns {
    justify-content: center;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .top-bar {
    display: none;
  }

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

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

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

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

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

  .info-grid {
    grid-template-columns: 1fr;
  }
}
/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER CSS CLASSES  (desktop — matches original inline styles exactly)
   ═══════════════════════════════════════════════════════════════════════════ */
.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  text-align: center;
}
.footer-logo-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  width: 100%;
}
.footer-logo-img  { height: 500px; width: auto; }
.footer-logo-name { height: 65px; width: auto; max-width: 320px; object-fit: contain; margin-top: -100px; }
.footer-brand-desc    { color: rgba(255,255,255,0.65); font-size: 0.9rem; line-height: 1.7; text-align: center; }
.footer-brand-tagline { color: rgba(255,255,255,0.4); font-size: 0.85rem; text-align: center; }
.footer-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  padding: 24px 0;
}
.footer-right-top {
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding-bottom: 16px;
}
.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Clients 4-col grid (index.php inline replacement) */
.clients-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.clients-grid-4 > div {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.clients-grid-4 img {
  width: 100%;
  height: 100px;
  object-fit: contain;
}

/* Mobile-single-col (alternator columns:2 replacement) */
.mobile-single-col { columns: 2; }

/* ═══════════════════════════════════════════════════════════════════════════
   MOBILE — 768px and below. ZERO impact on desktop.
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── Header ── */
  .site-header { overflow: visible; }

  /* Logo — make it bigger & visible on mobile */
  .site-header .logo { margin-right: 0; gap: 8px; }

  /* The floating white badge: bigger on mobile */
  .site-header .logo > a > div,
  .site-header .logo > div:not([style*="width: 120px"]) {
    /* target the badge div specifically via its inline styles */
  }

  /* Override the badge image size inline */
  .site-header .logo [style*="top:-30px"] img,
  .site-header .logo [style*="top: -30px"] img {
    height: 70px !important;
    transform: scale(1.6) !important;
  }

  /* Override the wordmark */
  .site-header .logo > img,
  .site-header .logo img[alt="Voltforge Solutions"] {
    height: 30px !important;
    max-width: 150px !important;
  }

  /* Spacer div — shrink it */
  .site-header .logo > div[style*="width: 120px"] {
    width: 80px !important;
  }

  /* Header height */
  .header-inner { height: 72px; padding: 0; }

  /* Hamburger z-index */
  .hamburger { position: relative; z-index: 1010; }

  /* Mobile nav overlay */
  .mobile-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1005;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  }

  /* ── Hero ── */
  .hero { height: auto !important; min-height: 70vh; }
  .hero > div > img { height: 70vh !important; min-height: 320px; }
  .hero-content { padding: 0 4px; }
  .hero h1 { font-size: clamp(1.7rem, 6vw, 2.4rem); }
  .hero p { font-size: 0.95rem; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-btns .btn { text-align: center; justify-content: center; }

  /* ── Stats bar ── */
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .stat-number { font-size: 2rem; }

  /* ── Section titles ── */
  .section-title h2 { font-size: clamp(1.4rem, 5vw, 2rem); }

  /* ── Two-col: already handled but reinforce ── */
  .two-col, .two-col-60 { grid-template-columns: 1fr; gap: 28px; }
  .two-col img, .two-col-60 img { height: 240px !important; }

  /* ── Services grid ── */
  .services-grid { grid-template-columns: 1fr; }

  /* ── Industries grid ── */
  .industries-grid { grid-template-columns: 1fr 1fr; }

  /* ── Clients grid ── */
  .clients-grid-4 { grid-template-columns: 1fr 1fr; }

  /* ── Cert bar ── */
  .cert-bar .container { gap: 10px; }
  .cert-badge { font-size: 0.75rem; padding: 5px 10px; }

  /* ── Emergency CTA ── */
  .emergency-cta .container { flex-direction: column; text-align: center; }
  .emergency-cta-btns { justify-content: center; flex-direction: column; align-items: center; }
  .emergency-cta-btns .btn { width: 100%; max-width: 280px; justify-content: center; }

  /* ── Page banner ── */
  .page-banner { height: 200px !important; }
  .page-banner h1 { font-size: 1.5rem !important; }

  /* ── Contact page ── */
  .two-col .sidebar { position: static; }

  /* ── columns:2 list fix ── */
  .mobile-single-col { columns: 1 !important; }

  /* ── Footer ── */
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .footer-logo-img  { height: 200px; }
  .footer-logo-name { height: 45px; margin-top: -30px; }
  .footer-right-top { display: none; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 20px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 14px; }
  .footer-certs { justify-content: center; flex-wrap: wrap; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   SMALL PHONES — 480px and below
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .header-inner { height: 64px; }

  .site-header .logo > div[style*="width: 120px"] { width: 70px !important; }
  .site-header .logo [style*="top:-30px"] img,
  .site-header .logo [style*="top: -30px"] img {
    height: 56px !important;
    transform: scale(1.4) !important;
  }
  .site-header .logo img[alt="Voltforge Solutions"] { height: 24px !important; max-width: 120px !important; }

  .stats-grid { grid-template-columns: 1fr 1fr; }
  .clients-grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-cols { grid-template-columns: 1fr; gap: 24px; }
  .industries-grid { grid-template-columns: 1fr; }

  .hero-btns .btn { font-size: 0.9rem; padding: 12px 20px; }
}
