@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ═══════════════════════════════════════════
   DESIGN TOKENS
   ═══════════════════════════════════════════ */
:root {
  /* Primary Navy */
  --primary-900: #001A3D;
  --primary-800: #00224F;
  --primary: #002F6C;
  --primary-600: #0A3D7A;
  --primary-500: #1A4F8C;
  --primary-400: #355F9A;
  --primary-300: #5A82B5;
  --primary-200: #8BAED0;
  --primary-100: #C5D9EC;
  --primary-50: #EBF1F8;

  /* Accent Orange */
  --accent: #FF6A00;
  --accent-hover: #E85D00;
  --accent-light: #FF8A33;
  --accent-dark: #CC5500;
  --accent-2: #e85d54;
  --accent-glow: rgba(255, 106, 0, 0.15);
  --accent-subtle: rgba(255, 106, 0, 0.06);

  /* Neutrals */
  --white: #FFFFFF;
  --gray-50: #F8F9FB;
  --gray-100: #F1F3F5;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;
  --black: #0C1220;

  /* Semantic */
  --success: #16a34a;
  --error: #dc2626;

  /* Typography */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Plus Jakarta Sans', 'Inter', sans-serif;

  /* Spacing (4px base) */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.10);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.12);
  --shadow-card: 0 1px 3px rgba(0,0,0,0.04), 0 8px 24px rgba(0,0,0,0.06);
  --shadow-card-hover: 0 16px 48px rgba(0,0,0,0.10);

  /* Radius */
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 50px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration: 0.3s;
  --duration-slow: 0.6s;

  /* Layout */
  --nav-height: 72px;
  --nav-height-scrolled: 64px;
  --container-max: 1200px;
  --container-wide: 1400px;
}

/* ═══════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary);
  font-weight: 700;
  line-height: 1.2;
}
a { text-decoration: none; color: inherit; transition: all var(--duration) var(--ease); }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: var(--font); }

/* ═══════════════════════════════════════════
   LAYOUT
   ═══════════════════════════════════════════ */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--space-8); }
.container-wide { max-width: var(--container-wide); margin: 0 auto; padding: 0 var(--space-8); }

/* ═══════════════════════════════════════════
   SCROLL PROGRESS BAR
   ═══════════════════════════════════════════ */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  z-index: 10001; transition: width 0.1s linear; border-radius: 0 2px 2px 0;
}

/* ═══════════════════════════════════════════
   TOP BAR
   ═══════════════════════════════════════════ */
.top-bar {
  background: var(--primary-900);
  color: rgba(255,255,255,0.7);
  font-size: 0.78rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  z-index: 1001;
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-bar-left {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}
.top-bar-left a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.65);
  font-size: 0.78rem;
  transition: color var(--duration) var(--ease);
}
.top-bar-left a:hover { color: var(--accent-light); }
.top-bar-right {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.top-bar-cert {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-full);
  padding: 0.25rem 0.85rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.3px;
}
.top-bar-cert .dot {
  width: 5px; height: 5px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

/* ═══════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: all 0.4s var(--ease);
  padding: 0;
}
.navbar.scrolled {
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
  border-bottom-color: transparent;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}
.logo-image {
  display: block;
  height: 38px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-links > a,
.nav-links > .nav-dropdown {
  position: relative;
}
.nav-links > a,
.nav-dropdown > .nav-dropdown-trigger {
  padding: 0.5rem 0.9rem;
  font-size: 0.855rem;
  font-weight: 500;
  color: var(--gray-600);
  border-radius: var(--radius-sm);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font);
  transition: all var(--duration) var(--ease);
}
.nav-links > a::after,
.nav-dropdown > .nav-dropdown-trigger::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: all var(--duration) var(--ease);
  transform: translateX(-50%);
  border-radius: 2px;
}
.nav-links > a:hover,
.nav-links > a.active,
.nav-dropdown:hover > .nav-dropdown-trigger,
.nav-dropdown > .nav-dropdown-trigger.active {
  color: var(--primary);
}
.nav-links > a:hover::after,
.nav-links > a.active::after,
.nav-dropdown:hover > .nav-dropdown-trigger::after,
.nav-dropdown > .nav-dropdown-trigger.active::after {
  width: 18px;
}
.nav-dropdown-arrow {
  font-size: 0.55rem;
  transition: transform var(--duration) var(--ease);
  opacity: 0.5;
}
.nav-dropdown:hover .nav-dropdown-arrow {
  transform: rotate(180deg);
  opacity: 1;
}
.nav-cta {
  background: var(--accent) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  padding: 0.55rem 1.35rem !important;
  border-radius: var(--radius-sm) !important;
  box-shadow: 0 2px 8px rgba(255,106,0,0.2) !important;
  margin-left: 0.5rem;
  font-size: 0.84rem !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--accent-hover) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255,106,0,0.3) !important;
}
.nav-group-logo {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 0 0 0 0.9rem !important;
  margin-left: 0.2rem;
}
.nav-group-logo::after { display: none !important; }
.nav-group-logo .logo-image {
  height: 34px;
}

/* ── Mega Menu ── */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 1px 3px rgba(0,0,0,0.06);
  border: 1px solid var(--gray-200);
  padding: var(--space-8);
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s var(--ease);
  pointer-events: none;
  min-width: 640px;
}
.nav-dropdown:hover > .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}
.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}
.mega-menu-grid.cols-2 {
  grid-template-columns: repeat(2, 1fr);
  min-width: 480px;
}
.mega-menu-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  transition: all var(--duration) var(--ease);
}
.mega-menu-item:hover {
  background: var(--gray-50);
}
.mega-menu-item img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background: var(--gray-100);
  flex-shrink: 0;
}
.mega-menu-item .mega-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--primary-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: all var(--duration) var(--ease);
}
.mega-menu-item:hover .mega-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-400));
  color: white;
}
.mega-menu-item-text h4 {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.1rem;
  line-height: 1.3;
}
.mega-menu-item-text p {
  font-size: 0.73rem;
  color: var(--gray-500);
  line-height: 1.4;
}
.mega-menu-header {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray-400);
  padding: 0 1rem;
  margin-bottom: var(--space-2);
}
.mega-menu-section {
  padding-top: var(--space-4);
  border-top: 1px solid var(--gray-100);
  margin-top: var(--space-4);
}
.mega-menu-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-4);
  border-top: 1px solid var(--gray-100);
  margin-top: var(--space-4);
}
.mega-menu-footer a {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.mega-menu-footer a:hover { gap: 0.6rem; }

/* ── Mobile Toggle ── */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1002;
}
.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--primary);
  margin: 5px 0;
  transition: all var(--duration) var(--ease);
  border-radius: 2px;
}
.mobile-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Menu ── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  flex-direction: column;
  padding: calc(var(--nav-height) + var(--space-8)) var(--space-8) var(--space-8);
  overflow-y: auto;
}
.mobile-menu.active { display: flex; }
.mobile-menu > a,
.mobile-menu .mobile-dropdown-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  padding: 1rem 0;
  border-bottom: 1px solid var(--gray-100);
  cursor: pointer;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  width: 100%;
  font-family: var(--font-heading);
  text-align: left;
}
.mobile-dropdown-content {
  display: none;
  padding: 0.5rem 0 0.5rem 1rem;
}
.mobile-dropdown-content.active { display: block; }
.mobile-dropdown-content a {
  display: block;
  padding: 0.6rem 0;
  font-size: 0.95rem;
  color: var(--gray-600);
  font-weight: 500;
}
.mobile-dropdown-content a:hover { color: var(--accent); }
.mobile-dropdown-arrow {
  font-size: 0.7rem;
  transition: transform var(--duration) var(--ease);
  color: var(--gray-400);
}
.mobile-dropdown-arrow.active { transform: rotate(180deg); }

/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  font-family: var(--font);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.2px;
}
.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  transition: all 0.5s var(--ease);
  transform: translate(-50%, -50%);
}
.btn:hover::before { width: 300px; height: 300px; }
.btn-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(255,106,0,0.25);
}
.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,106,0,0.35);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--gray-200);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--primary);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--primary-800);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.82rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }

/* ═══════════════════════════════════════════
   HERO — FULL (HOME)
   ═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--primary);
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  transform: scale(1.1);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,47,108,0.92) 0%, rgba(0,47,108,0.6) 50%, rgba(0,47,108,0.8) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: var(--space-24) 0 var(--space-16);
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-full);
  padding: 0.45rem 1.2rem;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}
.hero-tag .dot {
  width: 6px; height: 6px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
.hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
  line-height: 1.08;
}
.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.55);
  max-width: 540px;
  margin-bottom: 2.5rem;
  line-height: 1.85;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Particle canvas */
.particle-canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.hero .particle-canvas { pointer-events: all; }

/* ═══════════════════════════════════════════
   HERO — SHORT (INNER PAGES)
   ═══════════════════════════════════════════ */
.page-hero {
  position: relative;
  padding: 6rem 0 2.5rem;
  background: var(--primary);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(255,106,0,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.03) 0%, transparent 50%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--space-6);
}
.breadcrumb a {
  color: rgba(255,255,255,0.5);
  transition: color var(--duration) var(--ease);
}
.breadcrumb a:hover { color: var(--accent-light); }
.breadcrumb .sep { opacity: 0.3; }
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: -0.3px;
}
.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.5);
  max-width: 600px;
  line-height: 1.8;
}
.page-hero .hero-tag { margin-bottom: 1.5rem; }

/* ═══════════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════════ */
.stats {
  background: var(--white);
  padding: 0;
  position: relative;
  z-index: 3;
  margin-top: -3.5rem;
}
.stats-inner {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.04);
}

/* Responsive: collapse stats into fewer columns on small screens */
@media (max-width: 900px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .stats-inner { grid-template-columns: 1fr; }
  .stat-item { text-align: left; padding-left: 1.25rem; padding-right: 1.25rem; }
}
.stat-item {
  padding: 2.25rem 1.5rem;
  text-align: center;
  border-right: 1px solid var(--gray-200);
  transition: all var(--duration) var(--ease);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: all 0.4s var(--ease);
  transform: translateX(-50%);
  border-radius: 2px;
}
.stat-item:hover { background: var(--gray-50); }
.stat-item:hover::after { width: 40px; }
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.3rem;
  letter-spacing: -1px;
}
.stat-number span { color: var(--accent); }
.stat-label {
  font-size: 0.72rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

/* ═══════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════ */
.section { padding: var(--space-24) 0; }
.section-sm { padding: var(--space-16) 0; }
.section-alt { background: var(--gray-50); }
.section-dark {
  background: var(--primary);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 90%, rgba(255,106,0,0.05) 0%, transparent 50%),
    radial-gradient(circle at 90% 10%, rgba(255,255,255,0.02) 0%, transparent 50%);
  pointer-events: none;
}

/* Section headers */
.section-header { margin-bottom: var(--space-12); }
.section-header.center { text-align: center; }
.section-header.center .section-desc { margin-left: auto; margin-right: auto; }
.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.section-header.center .section-label { justify-content: center; }
.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.section-dark .section-label { color: rgba(255,255,255,0.4); }
.section-dark .section-label::before { background: rgba(255,255,255,0.2); }
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  letter-spacing: -0.3px;
  margin-bottom: 0.75rem;
}
.section-dark .section-title { color: var(--white); }
.section-desc {
  color: var(--gray-500);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 600px;
}
.section-dark .section-desc { color: rgba(255,255,255,0.45); }

/* Two column section top */
.section-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--space-12);
  gap: var(--space-8);
}
.section-top .left { max-width: 600px; }

/* ═══════════════════════════════════════════
   TEXT REVEAL ANIMATION
   ═══════════════════════════════════════════ */
.text-reveal .word-wrap { display: inline-block; overflow: hidden; vertical-align: top; }
.text-reveal .word { display: inline-block; transform: translateY(100%); transition: transform 0.6s var(--ease); }
.text-reveal.revealed .word { transform: translateY(0); }

/* ═══════════════════════════════════════════
   ABOUT / WELCOME
   ═══════════════════════════════════════════ */
.welcome-block {
  text-align: center;
  margin-bottom: var(--space-16);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.welcome-title {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--primary);
  margin-bottom: 1rem;
}
.welcome-subtitle {
  font-size: 1rem;
  color: var(--gray-500);
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.welcome-text {
  font-size: 0.98rem;
  color: var(--gray-600);
  line-height: 1.9;
  text-align: justify;
}

/* About grid */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}
.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.about-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.about-img:hover img { transform: scale(1.03); }
.about-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}
.about-text p {
  margin-bottom: 1.25rem;
  color: var(--gray-600);
  font-size: 0.95rem;
}
.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.1rem;
  background: var(--gray-50);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  transition: all var(--duration) var(--ease);
}
.highlight-item:hover {
  border-color: var(--accent);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.highlight-item .hi-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--primary), var(--primary-400));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.highlight-item h4 { font-size: 0.85rem; color: var(--primary); margin-bottom: 0.15rem; }
.highlight-item p { font-size: 0.78rem; color: var(--gray-500); line-height: 1.5; }

/* ═══════════════════════════════════════════
   CEO / MD SECTION
   ═══════════════════════════════════════════ */
.ceo-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: var(--space-12);
  align-items: center;
}
.ceo-img { border-radius: var(--radius-lg); overflow: hidden; position: relative; }
.ceo-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.ceo-img:hover img { transform: scale(1.03); }
.ceo-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}
.ceo-quote {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--gray-700);
  line-height: 1.85;
  margin-bottom: 1.75rem;
  padding-left: 1.5rem;
  border-left: 3px solid var(--accent);
}
.ceo-name { font-family: var(--font-heading); font-weight: 700; font-size: 1.05rem; color: var(--primary); }
.ceo-title { font-size: 0.85rem; color: var(--gray-500); margin-top: 0.2rem; }

/* ═══════════════════════════════════════════
   JBM GROUP LEADERSHIP
   ═══════════════════════════════════════════ */
.jbm-leadership-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(0, 26, 61, 0.98) 0%, rgba(0, 47, 108, 0.94) 45%, rgba(10, 61, 122, 0.98) 100%);
  color: var(--white);
}
.jbm-leadership-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.08) 0%, transparent 30%),
    radial-gradient(circle at 85% 85%, rgba(255, 106, 0, 0.14) 0%, transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(0,0,0,0));
  pointer-events: none;
}
.jbm-leadership-section .container {
  position: relative;
  z-index: 1;
}
.leadership-shell {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(4, 16, 38, 0.22);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(0,0,0,0.22);
}
.leadership-header {
  max-width: 760px;
  margin-bottom: var(--space-10);
}
.leadership-header h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  margin-bottom: 0.85rem;
}
.leadership-header p {
  color: rgba(255,255,255,0.68);
  font-size: 0.98rem;
  line-height: 1.8;
  max-width: 680px;
}
.jbm-leadership-section .section-label {
  color: rgba(255,255,255,0.65);
}
.jbm-leadership-section .section-label::before {
  background: rgba(255,255,255,0.35);
}
.leadership-stage {
  display: grid;
  grid-template-columns: minmax(210px, 280px) minmax(0, 1fr) minmax(210px, 280px);
  grid-template-rows: auto auto;
  column-gap: clamp(1.25rem, 3vw, 3rem);
  row-gap: clamp(1.25rem, 3vw, 2.25rem);
  align-items: center;
  min-height: 560px;
}
.leader-portrait {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: 0 18px 45px rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.leader-portrait:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.32);
}
.leader-portrait img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease);
}
.leader-portrait:hover img {
  transform: scale(1.02);
}
.leader-portrait-chairman {
  grid-column: 1;
  grid-row: 1;
  width: min(100%, 285px);
  justify-self: start;
}
.leader-portrait-vice {
  grid-column: 3;
  grid-row: 2;
  width: min(100%, 285px);
  justify-self: end;
}
.leader-message {
  position: relative;
  max-width: 700px;
  color: var(--white);
  font-style: italic;
  line-height: 1.75;
  letter-spacing: 0.1px;
  text-shadow: 0 8px 24px rgba(0,0,0,0.24);
}
.leader-message-top {
  grid-column: 2 / 4;
  grid-row: 1;
  align-self: start;
  padding-top: 1rem;
}
.leader-message-bottom {
  grid-column: 1 / 3;
  grid-row: 2;
  align-self: end;
  justify-self: end;
  padding-bottom: 0.5rem;
  text-align: right;
}
.leader-quote-text {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  margin-bottom: 0.85rem;
}
.leader-signature,
.leader-title {
  font-size: 1.02rem;
  line-height: 1.4;
}
.leader-signature {
  margin-bottom: 0.3rem;
}
.leader-title {
  opacity: 0.95;
}

@media (max-width: 1024px) {
  .leadership-stage {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto auto;
    min-height: auto;
  }
  .leader-portrait-chairman,
  .leader-portrait-vice,
  .leader-message-top,
  .leader-message-bottom {
    grid-column: auto;
    grid-row: auto;
    justify-self: stretch;
    max-width: none;
  }
  .leader-portrait-chairman { width: 100%; }
  .leader-portrait-vice { width: 100%; }
  .leader-message-top,
  .leader-message-bottom {
    align-self: start;
    padding: 0;
  }
}

@media (max-width: 768px) {
  .leadership-shell {
    padding: 1.25rem;
  }
  .leadership-stage {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .leader-portrait-chairman,
  .leader-portrait-vice,
  .leader-message-top,
  .leader-message-bottom {
    grid-column: 1;
  }
  .leader-portrait img {
    min-height: 240px;
  }
}

/* ═══════════════════════════════════════════
   PRODUCTS
   ═══════════════════════════════════════════ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s var(--ease);
  cursor: pointer;
  position: relative;
  text-decoration: none;
  display: block;
}
.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at var(--shine-x, 50%) var(--shine-y, 50%), rgba(255,106,0,0.04) 0%, transparent 60%);
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity var(--duration);
}
.product-card:hover::before { opacity: 1; }
.product-card:hover {
  border-color: rgba(255,106,0,0.15);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}
.product-thumb {
  height: 200px;
  background: var(--gray-50);
  overflow: hidden;
  position: relative;
}
.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: all 0.5s var(--ease);
}
.product-card:hover .product-thumb img {
  opacity: 1;
  transform: scale(1.05);
}
.product-body {
  padding: 1.5rem;
  position: relative;
  z-index: 3;
}
.product-body h3 {
  font-size: 1.02rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.product-body p {
  font-size: 0.84rem;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.product-link {
  font-size: 0.82rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--accent);
  transition: all var(--duration);
}
.product-link:hover { gap: 0.7rem; color: var(--accent-hover); }

/* Product filter tabs */
.product-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: var(--space-10);
}
.product-filter-btn {
  padding: 0.55rem 1.3rem;
  font-size: 0.84rem;
  font-weight: 500;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-full);
  color: var(--gray-600);
  background: var(--white);
  cursor: pointer;
  transition: all var(--duration) var(--ease);
}
.product-filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.product-filter-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* ═══════════════════════════════════════════
   PRODUCT DETAIL
   ═══════════════════════════════════════════ */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: start;
}
.product-detail-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
}
.product-detail-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}
.product-detail-info h2 {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}
.product-detail-desc {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: var(--space-8);
}
.product-specs {
  margin-bottom: var(--space-8);
}
.product-specs h3 {
  font-size: 1.1rem;
  margin-bottom: var(--space-4);
}
.specs-table {
  width: 100%;
  border-collapse: collapse;
}
.specs-table tr { border-bottom: 1px solid var(--gray-100); }
.specs-table td {
  padding: 0.85rem 0;
  font-size: 0.9rem;
  vertical-align: top;
}
.specs-table td:first-child {
  font-weight: 600;
  color: var(--primary);
  width: 40%;
  padding-right: var(--space-4);
}
.specs-table td:last-child { color: var(--gray-600); }
.product-features {
  margin-bottom: var(--space-8);
}
.product-features h3 { font-size: 1.1rem; margin-bottom: var(--space-4); }
.feature-list { display: flex; flex-direction: column; gap: 0.6rem; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--gray-600);
}
.feature-list li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.product-cta-box {
  background: linear-gradient(135deg, var(--primary), var(--primary-600));
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  color: var(--white);
  text-align: center;
}
.product-cta-box h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.product-cta-box p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-bottom: var(--space-6);
}
.related-products { margin-top: var(--space-24); }
.related-products h2 { font-size: 1.5rem; margin-bottom: var(--space-8); }

/* ═══════════════════════════════════════════
   TECHNOLOGY / CAPABILITIES
   ═══════════════════════════════════════════ */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.tech-card {
  text-align: center;
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.4s var(--ease);
}
.tech-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.15);
  box-shadow: 0 16px 48px rgba(0,0,0,0.2);
}
.tech-icon { font-size: 2.5rem; margin-bottom: 1.25rem; }
.tech-card h3 { color: var(--white); font-size: 1.15rem; margin-bottom: 0.75rem; }
.tech-card p { color: rgba(255,255,255,0.5); font-size: 0.88rem; line-height: 1.7; }

/* Override for mission/vision section on light backgrounds */
#mission-vision .tech-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
}
#mission-vision .tech-card h3 { color: var(--primary); }
#mission-vision .tech-card p { color: var(--gray-700); }
#mission-vision .tech-icon { background: var(--primary-50); color: var(--primary); }

/* Commitment banner: increase vertical space and center content */
.commitment-banner {
  padding: 7rem 0;
}
.commitment-banner .container {
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.commitment-banner .commitment-text {
  color: var(--white);
  font-size: 1.25rem;
  line-height: 1.6;
  text-align: center;
}

/* Quality page: ensure Quality Gates tech-cards are readable on light backgrounds */
#quality-processes .tech-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
}
#quality-processes .tech-card h3 { color: var(--primary); }
#quality-processes .tech-card p { color: var(--gray-700); }
#quality-processes .tech-icon { background: var(--primary-50); color: var(--primary); }

/* Commitment banner: force dark background + white text to ensure readability */
.commitment-banner { background: var(--primary); color: var(--white); }
.commitment-banner .commitment-text { color: var(--white); font-size: 1.4rem; text-align: center; }

/* Capability cards (light version) */
.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.capability-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.capability-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transition: transform 0.4s var(--ease);
  transform-origin: left;
}
.capability-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(255,106,0,0.15);
}
.capability-card:hover::after { transform: scaleX(1); }
.capability-card .cap-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: var(--primary-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  transition: all var(--duration) var(--ease);
}
.capability-card:hover .cap-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-400));
  transform: scale(1.05);
}
.capability-card:hover .cap-icon span { filter: brightness(10); }
.capability-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.capability-card p { font-size: 0.85rem; color: var(--gray-500); line-height: 1.65; }

/* Process flow */
.process-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: var(--space-10) 0;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}
.process-step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  box-shadow: 0 4px 12px rgba(255,106,0,0.25);
}
.process-step h4 { font-size: 0.9rem; margin-bottom: 0.25rem; }
.process-step p { font-size: 0.78rem; color: var(--gray-500); }
.process-arrow {
  font-size: 1.2rem;
  color: var(--gray-300);
  flex-shrink: 0;
  margin-bottom: 2rem;
}

/* ═══════════════════════════════════════════
   INFRASTRUCTURE
   ═══════════════════════════════════════════ */
.infra-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.infra-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all 0.4s var(--ease);
}
.infra-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: all 0.6s var(--ease);
}
.infra-card:hover img { transform: scale(1.08); }
.infra-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  z-index: 2;
}
.infra-overlay h4 { color: var(--white); font-size: 0.95rem; font-weight: 600; }
.infra-overlay p { color: rgba(255,255,255,0.7); font-size: 0.8rem; margin-top: 0.25rem; }

/* ═══════════════════════════════════════════
   QUALITY
   ═══════════════════════════════════════════ */
.quality-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.quality-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: all var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
}
.quality-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255,106,0,0.15);
}
.q-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.25rem;
  background: var(--gray-50);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all var(--duration) var(--ease);
}
.quality-card:hover .q-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-400));
  transform: scale(1.05);
}
.quality-card h4 { font-size: 0.95rem; color: var(--primary); margin-bottom: 0.5rem; }
.quality-card p { font-size: 0.82rem; color: var(--gray-500); line-height: 1.6; }

/* Cert badges */
.cert-badges {
  display: flex;
  gap: var(--space-6);
  justify-content: center;
  flex-wrap: wrap;
}
.cert-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 2rem 2.5rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  transition: all var(--duration) var(--ease);
  min-width: 180px;
}
.cert-badge:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}
.cert-badge .cert-icon { font-size: 2.2rem; }
.cert-badge h4 { color: var(--white); font-size: 0.95rem; font-weight: 700; }
.cert-badge p { color: rgba(255,255,255,0.5); font-size: 0.78rem; text-align: center; line-height: 1.5; }

/* ═══════════════════════════════════════════
   INDUSTRIES
   ═══════════════════════════════════════════ */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.industry-card {
  padding: 2rem 1.5rem;
  text-align: center;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  background: var(--white);
  transition: all var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
}
.industry-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transition: transform var(--duration) var(--ease);
}
.industry-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.industry-card:hover::after { transform: scaleX(1); }
.industry-card .ind-icon {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
  transition: all var(--duration) var(--ease);
}
.industry-card:hover .ind-icon { transform: scale(1.15); }
.industry-card h4 { font-size: 0.92rem; color: var(--primary); font-weight: 600; margin-bottom: 0.5rem; }
.industry-card p { font-size: 0.82rem; color: var(--gray-500); line-height: 1.6; }

/* ═══════════════════════════════════════════
   AWARDS
   ═══════════════════════════════════════════ */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.award-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: all var(--duration) var(--ease);
}
.award-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255,106,0,0.15);
}
.award-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.award-card h4 { font-size: 0.95rem; color: var(--primary); margin-bottom: 0.5rem; }
.award-card p { font-size: 0.82rem; color: var(--gray-500); line-height: 1.6; }

/* ═══════════════════════════════════════════
   COMMITMENT / CTA BANNER
   ═══════════════════════════════════════════ */
.cta-banner {
  padding: var(--space-20) 0;
  text-align: center;
}
.cta-banner h2 {
  color: var(--white) !important;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto var(--space-8);
  font-weight: 700;
}
.cta-banner p {
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
  margin-bottom: var(--space-8);
}

/* ═══════════════════════════════════════════
   MARQUEE / CLIENT LOGOS
   ═══════════════════════════════════════════ */
.marquee-section { padding: var(--space-16) 0; text-align: center; overflow: hidden; }
.marquee-title {
  font-size: 0.78rem;
  color: var(--gray-400);
  margin-bottom: var(--space-8);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.marquee { width: 100%; overflow: hidden; position: relative; }
.marquee::before, .marquee::after {
  content: '';
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: transparent; }
.marquee::after { right: 0; background: transparent; }
/* Make clients marquee edges transparent on section-alt instead of gray */
.section-alt .marquee::before { background: transparent; }
.section-alt .marquee::after { background: transparent; }
.marquee-content {
  display: flex;
  width: fit-content;
}
.marquee-content:hover { animation-play-state: paused; }
.marquee-item {
  flex-shrink: 0;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration) var(--ease);
}
.marquee-item img {
  height: 44px;
  max-height: 44px;
  display: block;
  object-fit: contain;
  opacity: 1;
  transition: transform var(--duration) var(--ease), filter var(--duration) var(--ease);
  filter: none;
}
.marquee-item:hover img {
  transform: scale(1.05);
}

.certificate-card {
  cursor: pointer;
}

.certificate-preview {
  appearance: none;
  border: 1px solid var(--gray-200);
  background: var(--white);
  border-radius: var(--radius-lg);
  font: inherit;
  color: inherit;
  padding: 1rem 1.1rem;
  width: 220px;
  flex-direction: column;
  gap: 0.85rem;
  box-shadow: var(--shadow-sm);
}
.certificate-preview:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.certificate-preview img {
  width: 100%;
  height: 150px;
  max-height: none;
  border-radius: var(--radius-md);
  object-fit: cover;
  opacity: 1;
  filter: none;
}
.certificate-preview span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.4;
}

.certificate-strip-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: var(--space-6);
}

.certificate-lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(0, 18, 43, 0.78);
  backdrop-filter: blur(8px);
}
.certificate-lightbox.active { display: flex; }
.certificate-lightbox-dialog {
  position: relative;
  width: min(960px, 100%);
  max-height: 90vh;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}
.certificate-lightbox-image {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: #f7f7f7;
  display: block;
}
.certificate-lightbox-caption {
  padding: 1rem 1.25rem 1.25rem;
  border-top: 1px solid var(--gray-100);
}
.certificate-lightbox-title {
  font-size: 1rem;
  color: var(--primary);
}
.certificate-lightbox-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  color: var(--primary);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  z-index: 1;
  box-shadow: var(--shadow-sm);
}
.certificate-lightbox-close:hover { background: var(--white); transform: scale(1.05); }
.no-scroll { overflow: hidden; }

/* ═══════════════════════════════════════════
   CONTACT / FORMS
   ═══════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.9rem;
  transition: all var(--duration) var(--ease);
  background: var(--white);
  outline: none;
  color: var(--gray-700);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-subtle);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.contact-info-card {
  background: linear-gradient(135deg, var(--primary), var(--primary-400));
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.contact-info-card::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255,106,0,0.12), transparent 70%);
  border-radius: 50%;
}
.contact-info-card::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,0.04), transparent 70%);
  border-radius: 50%;
}
.contact-info-card h3 {
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 2rem;
  position: relative;
}
.c-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  position: relative;
}
.c-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: all var(--duration) var(--ease);
}
.c-item:hover .c-icon { background: rgba(255,106,0,0.2); }
.c-item h4 { font-size: 0.85rem; color: var(--white); margin-bottom: 0.2rem; }
.c-item p { font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.5; }

/* Override: use darker text when contact info sits on a light background */
.contact-info .c-item h4 { color: var(--primary-900); }
.contact-info .c-item p { color: var(--gray-700); }
.contact-info .c-icon { background: rgba(0,0,0,0.04); color: var(--primary-700); }

/* ═══════════════════════════════════════════
   TIMELINE
   ═══════════════════════════════════════════ */
.timeline {
  position: relative;
  padding-left: var(--space-10);
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gray-200);
}
.timeline-item {
  position: relative;
  padding-bottom: var(--space-10);
  padding-left: var(--space-10);
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--space-10) - 5px);
  top: 0.3rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--accent);
}
.timeline-item .year {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--accent);
  margin-bottom: 0.35rem;
}
.timeline-item h4 { font-size: 1rem; margin-bottom: 0.25rem; }
.timeline-item p { font-size: 0.88rem; color: var(--gray-500); }

/* ═══════════════════════════════════════════
   VALUES / MISSION GRID
   ═══════════════════════════════════════════ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.value-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  background: var(--white);
  transition: all var(--duration) var(--ease);
  text-align: center;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255,106,0,0.15);
}
.value-card .value-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: var(--primary-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
  transition: all var(--duration) var(--ease);
}
.value-card:hover .value-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-400));
}
.value-card h4 { font-size: 1rem; margin-bottom: 0.5rem; }
.value-card p { font-size: 0.85rem; color: var(--gray-500); line-height: 1.6; }

/* ═══════════════════════════════════════════
   CAREERS
   ═══════════════════════════════════════════ */
.job-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--duration) var(--ease);
  margin-bottom: 1rem;
}
.job-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(255,106,0,0.15);
}
.job-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.job-meta {
  display: flex;
  gap: var(--space-4);
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.job-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.82rem;
  color: var(--gray-500);
}
.job-card p { font-size: 0.88rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 1rem; }

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
  background: var(--black);
  padding: var(--space-20) 0 0;
  color: var(--gray-400);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-10);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer h4 {
  color: var(--white);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.25rem;
}
.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 280px;
}
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.footer-brand .footer-logo .logo-image { filter: brightness(0) invert(1); }
.footer-col a {
  display: block;
  font-size: 0.875rem;
  padding: 0.35rem 0;
  color: var(--gray-500);
  transition: all var(--duration) var(--ease);
}
.footer-col a:hover { color: var(--accent); padding-left: 6px; }
.footer-certs {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  padding: var(--space-8) 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  justify-content: center;
}
.footer-cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}
.footer-cert-badge span { font-size: 1rem; }
.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--gray-600);
}
.footer-bottom-links {
  display: flex;
  gap: var(--space-6);
}
.footer-bottom-links a { color: var(--gray-600); }
.footer-bottom-links a:hover { color: var(--accent); }

/* ═══════════════════════════════════════════
   WHATSAPP FAB
   ═══════════════════════════════════════════ */
.whatsapp-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
  transition: all var(--duration) var(--ease);
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.whatsapp-fab:hover {
  transform: scale(1.12) translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.4);
}

/* ═══════════════════════════════════════════
   BACK TO TOP
   ═══════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 5rem;
  z-index: 999;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--duration) var(--ease);
  box-shadow: var(--shadow-md);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--accent); transform: translateY(-3px); }

/* ═══════════════════════════════════════════
   PRELOADER
   ═══════════════════════════════════════════ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s, visibility 0.6s;
}
.preloader.loaded { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-logo {
  width: auto;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  animation: loaderPulse 1.2s ease infinite;
}
.loader-logo img { height: 100%; width: auto; object-fit: contain; }
.loader-bar {
  width: 180px;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  overflow: hidden;
  margin: 0 auto 1rem;
}
.loader-fill {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 3px;
  animation: loaderFill 1.2s ease forwards;
}
.loader-text {
  color: rgba(255,255,255,0.4);
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
}
body:not(.page-loaded) { overflow: hidden; }

/* ═══════════════════════════════════════════
   MOUSE / GLOW
   ═══════════════════════════════════════════ */
.mouse-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,106,0,0.08) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: opacity 0.4s;
  opacity: 0;
  z-index: 1;
}

/* Loader spinner */
.btn-loader {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

/* ═══════════════════════════════════════════
   REVEAL ANIMATION
   ═══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.active { opacity: 1; transform: translateY(0); }

/* Floating shapes */
.has-floats { position: relative; overflow: hidden; }
.float-shape {
  position: absolute;
  border: 1px solid rgba(255,106,0,0.06);
  border-radius: 50%;
  pointer-events: none;
  animation: floatShape 8s ease-in-out infinite alternate;
}

/* Cursor trail */
.trail-dot {
  position: fixed;
  border-radius: 50%;
  background: var(--accent);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s;
}

/* ═══════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════ */
@keyframes pulse-dot { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(1.3); } }
@keyframes loaderPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.08); } }
@keyframes loaderFill { 0% { width: 0; } 100% { width: 100%; } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes floatShape { 0% { transform: translateY(0) rotate(0deg); } 100% { transform: translateY(-30px) rotate(180deg); } }
@keyframes scrollMarquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ═══════════════════════════════════════════
   RESPONSIVE — LARGE
   ═══════════════════════════════════════════ */
@media (min-width: 1400px) {
  .container { max-width: var(--container-wide); }
  .products-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — TABLET
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .top-bar { display: none; }
  .products-grid, .infra-grid { grid-template-columns: repeat(2, 1fr); }
  .quality-grid, .awards-grid { grid-template-columns: repeat(2, 1fr); }
  .capability-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .tech-grid { grid-template-columns: repeat(3, 1fr); }
  .about-grid, .ceo-grid, .contact-grid, .product-detail-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .mega-menu { display: none !important; }
  .process-flow { flex-wrap: wrap; gap: 0.5rem; }
  .process-arrow { display: none; }
  .process-step { min-width: 120px; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — MOBILE
   ═══════════════════════════════════════════ */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .hero { min-height: 85vh; }
  .products-grid, .infra-grid, .quality-grid, .awards-grid { grid-template-columns: 1fr; }
  .capability-grid, .values-grid { grid-template-columns: 1fr; }
  .tech-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--gray-200); }
  .stat-item:last-child { border-bottom: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  .footer-bottom-links { justify-content: center; }
  .footer-certs { flex-wrap: wrap; gap: 0.75rem; }
  .section { padding: var(--space-16) 0; }
  .about-highlights { grid-template-columns: 1fr; }
  .back-to-top { right: 4.5rem; }
  .page-hero { padding: 5rem 0 2rem; }
  .cert-badges { flex-direction: column; align-items: center; }
  .product-detail-image img { height: 300px; }

  /* Awards grid styles */
  .awards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    margin-top: var(--space-6);
  }
  .award-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
    padding: 1.25rem;
    box-shadow: var(--shadow-sm);
    text-align: left;
  }
  .award-year {
    font-weight: 800;
    color: var(--accent);
    font-size: 1.15rem;
    margin-bottom: 0.35rem;
  }
  .award-card h4 { color: var(--primary); margin-bottom: 0.25rem; }
  .award-card .muted { color: var(--gray-500); font-size: 0.95rem; }

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

  @media (max-width: 480px) {
    .awards-grid { grid-template-columns: 1fr; }
  }
  .ceo-grid { gap: var(--space-8); }
  .hero-btns { flex-direction: column; align-items: flex-start; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE
   ═══════════════════════════════════════════ */
@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .nav-inner { height: 64px; }
  .logo-image { height: 32px; }
  .hero-content { padding: 4rem 0 2rem; max-width: 100%; }
  .hero p { font-size: 0.95rem; max-width: 100%; }
  .hero-tag { padding: 0.35rem 0.9rem; font-size: 0.65rem; }
  .hero h1 { font-size: clamp(1.8rem, 6vw, 2.6rem); }
  .btn { padding: 0.7rem 1.4rem; font-size: 0.85rem; }
  .industries-grid { grid-template-columns: 1fr; }
  .footer-brand p { max-width: none; }
  .particle-canvas { display: none; }
  .trail-dot { display: none !important; }
  .page-hero h1 { font-size: 1.7rem; }
}
