/* ===== LEOPARD SECURITY FORCE — MASTER STYLESHEET ===== */

/* ---------- Google Font ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800;900&family=Poppins:wght@400;500;600;700;800&display=swap');

/* ---------- Hide Scrollbars Globally across Mobile, Tablet, and Laptop ---------- */
html,
body {
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}

::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

::-webkit-scrollbar-track {
  display: none !important;
}

::-webkit-scrollbar-thumb {
  display: none !important;
}


:root {
  --bg: #0B0B0B;
  --bg-secondary: #111111;
  --card-bg: #181818;
  --accent: #E1441C;
  --accent-dark: #C63512;
  --white: #FFFFFF;
  --text-primary: #FFFFFF;
  --text-secondary: #BDBDBD;
  --gray-100: #F3F3F2;
  --gray-300: #BDBDBD;
  --gray-500: #8A8A8A;
  --gray-700: #5B5B5B;
  --border: rgba(255, 255, 255, 0.08);
  --divider: rgba(255, 255, 255, 0.06);
  --red: var(--accent);
  --orange: var(--accent);
  --red-deep: #EA580C;
  --red-glow: rgba(249, 115, 22, 0.22);
  --black: var(--bg);
  --black-light: var(--bg-secondary);
  --black-soft: var(--card-bg);
  --font-main: 'Poppins', sans-serif;
  --font-display: 'Poppins', sans-serif;
  --font-weight-700: 700;
  --font-weight-600: 600;
  --font-weight-500: 500;
  --font-weight-400: 400;
  --section-pad: 100px 0;
  --container: 1200px;
  --radius: 14px;
  --transition: .28s ease;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
  min-height: 100%;
}

body {
  margin: 0;
  padding: 0;
  padding-top: 72px;
  font-family: var(--font-main);
  font-size: 18px;
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

img {
  display: block;
  width: 100%;
  vertical-align: top;
}

.hero-image {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: top;
}

.navbar+section,
.navbar+div {
  margin-top: 0;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background-color: var(--bg);
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.08) 1px, transparent 0),
    radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 0),
    radial-gradient(circle, rgba(255, 255, 255, 0.03) 1px, transparent 0);
  background-size: 240px 240px, 180px 180px, 120px 120px;
  background-position: 28px 28px, 88px 118px, 150px 88px;
  background-repeat: repeat;
  opacity: 0.45;
  pointer-events: none;
  animation: bgTwinkle 10s ease-in-out infinite;
}

body.onboarding-open {
  overflow: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@keyframes bgTwinkle {

  0%,
  100% {
    opacity: 0.85;
  }

  50% {
    opacity: 0.95;
  }
}

section,
.hero,
.hero-bg,
.footer,
.subpage-hero,
.stats-banner,
.testimonials,
.journey,
.faq,
.cta-section,
.gallery,
.contact,
.industries,
.training,
.about,
.why-us,
.services {
  background: transparent !important;
  background-image: none !important;
  border: none !important;
  box-shadow: none !important;
}

.hero {
  background: transparent !important;
}

.hero-bg {
  display: none !important;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: 90%;
  max-width: var(--container);
  margin: 0 auto;
}

/* ---------- Utility ---------- */
.section-label {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  text-align: center;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.05;
  letter-spacing: 0.09em;
  margin-bottom: 24px;
}

.section-desc {
  color: var(--text-secondary);
  max-width: 680px;
  font-size: 1.05rem;
  line-height: 1.9;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  font-family: var(--font-main);
  font-size: .92rem;
  font-weight: 700;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  box-shadow: 0 18px 40px rgba(249, 115, 22, 0.22);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-dark), #bd570e);
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(249, 115, 22, 0.28);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.24);
}

.btn-outline:hover {
  background: rgba(249, 115, 22, 0.12);
  border-color: rgba(249, 115, 22, 0.45);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

/* ---------- Video Preloader ---------- */
#preloader {
  position: fixed;
  inset: 0;
  top: 0;
  left: 0;
  width: 100vw;
  width: 100dvw;
  height: 100vh;
  height: 100dvh;
  min-height: -webkit-fill-available;
  z-index: 10000;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  transition: opacity .8s cubic-bezier(0.4, 0, 0.2, 1), visibility .8s;
}

#preloader-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  min-width: 100vw;
  min-height: 100vh;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  /* Scale up to crop out watermark from the edges */
  transform: translate(-50%, -50%) scale(1.28);
  will-change: transform;
  pointer-events: none;
}

.preloader-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at center, transparent 20%, rgba(0, 0, 0, 0.65) 60%, rgba(0, 0, 0, 0.95) 95%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, transparent 25%, transparent 70%, rgba(0, 0, 0, 0.85) 100%);
  pointer-events: none;
}

.preloader-brand {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  animation: preloaderFadeIn 1s cubic-bezier(0.2, 0.9, 0.2, 1) 0.3s both;
}

.preloader-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 0 24px rgba(249, 115, 22, 0.6));
  animation: preloaderPulse 2.5s ease-in-out infinite;
}

.preloader-brand-name {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.1rem, 3vw, 1.8rem);
  font-weight: 800;
  letter-spacing: 0.28em;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 0 0 40px rgba(249, 115, 22, 0.5), 0 2px 12px rgba(0, 0, 0, 0.8);
}

.preloader-brand-tag {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.55rem, 1.5vw, 0.72rem);
  font-weight: 600;
  letter-spacing: 0.35em;
  color: #F97316;
  text-transform: uppercase;
  opacity: 0.9;
}

.preloader-progress-wrap {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: min(420px, 80vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: preloaderFadeIn 1s cubic-bezier(0.2, 0.9, 0.2, 1) 0.6s both;
}

.preloader-progress-bar {
  position: relative;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 99px;
  overflow: visible;
  backdrop-filter: blur(4px);
}

.preloader-progress-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  background: linear-gradient(90deg, #F97316, #FF5E00);
  border-radius: 99px;
  transition: width 0.3s ease;
  box-shadow: 0 0 12px rgba(249, 115, 22, 0.7);
}

.preloader-progress-glow {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.9) 0%, transparent 70%);
  border-radius: 50%;
  transition: left 0.3s ease;
  opacity: 0;
  pointer-events: none;
}

.preloader-percent {
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}

@keyframes preloaderFadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, calc(-50% + 16px));
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

@keyframes preloaderPulse {

  0%,
  100% {
    filter: drop-shadow(0 0 18px rgba(249, 115, 22, 0.5));
  }

  50% {
    filter: drop-shadow(0 0 36px rgba(249, 115, 22, 0.9));
  }
}

.onboarding-overlay {
  position: fixed;
  inset: 0;
  z-index: 11000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: radial-gradient(circle at top, rgba(0, 0, 0, 0.8), rgba(2, 12, 10, 0.96) 55%, rgba(0, 0, 0, 0.98));
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.onboarding-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.onboarding-overlay::before,
.onboarding-overlay::after {
  content: '';
  position: absolute;
  inset: -20%;
  pointer-events: none;
}

.onboarding-overlay::before {
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.85) 1px, transparent 1px), radial-gradient(circle, rgba(255, 255, 255, 0.35) 1px, transparent 1px);
  background-position: 0 0, 30px 40px;
  background-size: 110px 110px;
  animation: onboardingStars 9s linear infinite;
  opacity: 0.35;
}

.onboarding-overlay::after {
  background: radial-gradient(circle, rgba(212, 162, 78, 0.24) 0%, rgba(212, 162, 78, 0) 40%);
  filter: blur(60px);
  animation: pulseGlow 5s ease-in-out infinite;
}

.onboarding-shell {
  position: relative;
  width: min(980px, 100%);
  min-height: min(680px, 90vh);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background: rgba(9, 15, 20, 0.78);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.4s ease;
}

.onboarding-overlay.is-visible .onboarding-shell {
  transform: translateY(0) scale(1);
}

.onboarding-panel {
  position: relative;
  padding: 34px 34px 42px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.onboarding-panel--accent {
  background: linear-gradient(135deg, rgba(212, 162, 78, 0.18), rgba(41, 82, 68, 0.3));
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.onboarding-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #f8dec0;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
  width: fit-content;
}

.onboarding-brand {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: 0.16em;
  margin-top: 20px;
}

.onboarding-brand span {
  color: #ffce72;
}

.onboarding-copy {
  margin-top: 14px;
  color: rgba(244, 244, 244, 0.8);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 460px;
}

.onboarding-aisle {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.onboarding-pill {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #dce8e2;
  font-size: 0.87rem;
}

.onboarding-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.onboarding-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.onboarding-progress {
  flex: 1;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  overflow: hidden;
}

.onboarding-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ffce72, #26a96c);
  transition: width 0.3s ease;
}

.onboarding-skip-btn {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 600;
  cursor: pointer;
}

.onboarding-question {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.onboarding-question h2 {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  line-height: 1.25;
}

.onboarding-question p {
  color: rgba(255, 255, 255, 0.72);
}

.onboarding-option-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.onboarding-option {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  color: #f2f2f2;
  text-align: left;
  cursor: pointer;
  transition: all 0.25s ease;
}

.onboarding-option:hover,
.onboarding-option:focus-visible {
  border-color: rgba(212, 162, 78, 0.7);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.24);
}

.onboarding-option.is-selected {
  border-color: rgba(38, 169, 108, 0.9);
  background: rgba(38, 169, 108, 0.16);
}

.onboarding-form-grid {
  display: grid;
  gap: 12px;
}

.onboarding-input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font: inherit;
}

.onboarding-input:focus {
  outline: none;
  border-color: rgba(212, 162, 78, 0.85);
  box-shadow: 0 0 0 4px rgba(212, 162, 78, 0.14);
}

.onboarding-action-row {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 6px;
}

.onboarding-btn {
  border: 0;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.onboarding-btn:hover,
.onboarding-btn:focus-visible {
  transform: translateY(-1px);
}

.onboarding-btn:disabled {
  opacity: 0.6;
  cursor: wait;
  transform: none;
}

.onboarding-btn--primary {
  background: linear-gradient(135deg, #ffce72, #26a96c);
  color: #03140d;
  box-shadow: 0 12px 30px rgba(38, 169, 108, 0.22);
}

.onboarding-btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #f2f2f2;
}

.onboarding-loader {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.onboarding-loader::before {
  content: '';
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  animation: spin 0.8s linear infinite;
}

.onboarding-typing {
  display: grid;
  gap: 8px;
  min-height: 140px;
}

.onboarding-typing-line {
  font-size: 1.1rem;
  color: #f7e7c5;
  min-height: 28px;
}

.onboarding-typing-line::after {
  content: '|';
  color: #26a96c;
  animation: blink 1s step-end infinite;
}

.onboarding-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  gap: 16px;
}

.onboarding-success h3 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: #fff4cb;
}

.onboarding-success p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.8);
}

.onboarding-success .onboarding-btn--primary {
  margin-top: 12px;
  min-width: 220px;
}

.onboarding-error {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 117, 95, 0.35);
  background: rgba(255, 117, 95, 0.14);
  color: #ffd0c6;
}

@keyframes onboardingStars {
  from {
    transform: translateY(0px) translateX(0px);
  }

  to {
    transform: translateY(-50px) translateX(50px);
  }
}

@keyframes pulseGlow {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

@media (max-width: 900px) {
  .onboarding-shell {
    grid-template-columns: 1fr;
  }

  .onboarding-panel--accent {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
}

@media (max-width: 640px) {
  .onboarding-overlay {
    padding: 10px;
  }

  .onboarding-panel {
    padding: 22px 20px 26px;
  }

  .onboarding-option-grid {
    grid-template-columns: 1fr;
  }
}

#preloader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* --- Radar Ring Preloader (replaces video) --- */
.preloader-radar {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at center, #1a0a04 0%, #0B0B0B 70%);
}

.pr-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(225, 68, 28, 0.25);
  animation: prPulse 3s ease-in-out infinite;
}

.pr-ring-1 {
  width: 200px;
  height: 200px;
  animation-delay: 0s;
}

.pr-ring-2 {
  width: 360px;
  height: 360px;
  animation-delay: 0.6s;
  border-color: rgba(225, 68, 28, 0.15);
}

.pr-ring-3 {
  width: 520px;
  height: 520px;
  animation-delay: 1.2s;
  border-color: rgba(225, 68, 28, 0.08);
}

.pr-sweep {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: conic-gradient(from 0deg,
      transparent 85%,
      rgba(225, 68, 28, 0.4) 95%,
      rgba(225, 68, 28, 0.6) 100%);
  animation: prSpin 2.5s linear infinite;
}

@keyframes prPulse {

  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}

@keyframes prSpin {
  to {
    transform: rotate(360deg);
  }
}

/* Mobile: scale preloader radar rings for small screens */
@media (max-width: 480px) {
  .pr-ring-1 {
    width: 110px;
    height: 110px;
  }

  .pr-ring-2 {
    width: 200px;
    height: 200px;
  }

  .pr-ring-3 {
    width: 290px;
    height: 290px;
  }

  .pr-sweep {
    width: 290px;
    height: 290px;
  }

  .preloader-logo {
    width: 60px !important;
    height: 60px !important;
  }

  .preloader-brand-name {
    font-size: clamp(0.8rem, 4vw, 1.1rem) !important;
    letter-spacing: 0.15em !important;
  }

  .preloader-brand-tag {
    font-size: 0.48rem !important;
    letter-spacing: 0.2em !important;
  }

  .preloader-progress-wrap {
    bottom: 28px;
    width: 84vw;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: 72px;
  background: #000;
  /* pure black header */
  backdrop-filter: none;
  border-bottom: none;
}

.navbar.home-navbar {
  background: #000;
  height: 72px;
  border-bottom: none;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  height: 100%;
  padding: 0 52px;
  position: relative;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 72px;
}

.nav-logo .brand-circle {
  width: auto;
  height: auto;
  min-width: 48px;
  min-height: 48px;
  border-radius: 0;
  background: transparent;
  /* remove red circle */
  display: block;
  padding: 0;
  box-shadow: none;
}

.nav-logo .brand-circle img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  display: block;
  background: transparent;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo-text .brand-name {
  font-family: var(--font-display);
  color: var(--red);
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: 1px;
}

.nav-logo-text .brand-name {
  font-family: var(--font-display);
  background: linear-gradient(90deg, #ff8e1b 0%, #ff2a2a 60%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 900;
  font-size: 1.7rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.35);
}

.nav-logo-text .brand-sub {
  color: var(--white);
  font-size: 0.9rem;
  text-transform: uppercase;
  margin-top: 2px;
  letter-spacing: 1px;
}

.nav-logo-text span {
  color: var(--red);
}

.nav-links {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.nav-links li {
  list-style: none;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  padding: 6px 0;
  transition: color 0.25s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 3px;
  background: #F97316;
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(249, 115, 22, 0.6);
  transition: width 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: #ffffff !important;
  font-weight: 700;
}

.nav-cta {
  padding: 10px 22px !important;
  background: var(--red);
  border-radius: 999px;
  font-weight: 600;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--red-dark);
}

/* ---- Contact Us CTA ---- */
.nav-contact-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  min-height: 44px;
  background: linear-gradient(135deg, #ff3f28, #ff8e1b);
  color: var(--white) !important;
  font-family: var(--font-main);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.22), 0 2px 10px rgba(0, 0, 0, 0.18);
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
  flex-shrink: 0;
  margin-left: auto;
  position: relative;
  z-index: 2;
}

.nav-contact-cta::after {
  display: none !important;
}

.nav-contact-cta:hover {
  background: linear-gradient(135deg, #e70012, #ff7a1b);
  box-shadow: 0 10px 22px rgba(249, 115, 22, 0.3), 0 4px 14px rgba(0, 0, 0, 0.2);
  transform: translateY(-1px);
}

@media screen and (max-width: 980px) {

  .navbar,
  .navbar.home-navbar {
    height: 64px;
  }

  .navbar .container {
    padding: 0 30px;
  }

  .nav-logo img,
  .nav-logo .brand-mark {
    width: 40px;
    height: 40px;
  }

  .nav-logo-text {
    font-size: 1rem;
  }

  .nav-links {
    gap: 16px;
  }

  .nav-links a {
    font-size: 0.9rem;
  }

  .nav-contact-cta {
    padding: 10px 18px;
    min-height: 42px;
    font-size: 0.88rem;
  }
}

@media screen and (max-width: 720px) {

  .navbar,
  .navbar.home-navbar {
    height: 60px;
  }

  .navbar .container {
    padding: 0 20px;
  }

  .nav-logo img,
  .nav-logo .brand-mark {
    width: 38px;
    height: 38px;
  }

  .nav-logo-text {
    font-size: 0.95rem;
  }

  .nav-links {
    display: none;
  }

  .training-page-content .hero-frame {
    padding: 42px 20px 36px;
    border: 1px solid rgba(255, 255, 255, 0.55);
  }

  .training-page-content .hero-frame::before,
  .training-page-content .hero-frame::after,
  .training-page-content .hero-frame .br-tr,
  .training-page-content .hero-frame .br-bl {
    width: 22px;
    height: 22px;
  }

  .nav-contact-cta {
    min-height: 40px;
    padding: 10px 16px;
    font-size: 0.85rem;
  }

  .hamburger {
    display: flex;
  }
}

/* Mobile Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  background: transparent !important;
}

.hero-bg {
  display: none !important;
}

@media screen and (max-width: 980px) {
  .hero {
    min-height: 100vh;
    padding: 0;
  }
}

@media screen and (max-width: 720px) {
  .hero {
    min-height: 100vh;
    padding: 0;
  }
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  filter: brightness(.35);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(0, 0, 0, .9) 0%,
      rgba(0, 0, 0, .6) 40%,
      rgba(249, 115, 22, .15) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 auto;
  padding: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249, 115, 22, .15);
  border: 1px solid rgba(249, 115, 22, .4);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 28px;
  animation: fadeInDown .8s ease;
}

.hero-badge .pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .5;
    transform: scale(1.5);
  }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1;
  letter-spacing: 4px;
  margin: 0 0 18px;
  animation: fadeInUp .8s ease;
}

.hero h1 .highlight {
  color: var(--red);
  text-shadow: 0 0 12px rgba(249, 115, 22, 0.35);
}

.hero p {
  font-size: 1.15rem;
  color: var(--gray-300);
  max-width: 520px;
  margin: 0 0 24px;
  animation: fadeInUp .8s ease .2s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp .8s ease .4s both;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 50px;
  margin-top: 60px;
  animation: fadeInUp .8s ease .6s both;
}

.hero-stat h3 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  letter-spacing: 2px;
  color: var(--red);
}

.hero-stat p {
  font-size: .85rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: float 2s ease-in-out infinite;
}

.scroll-indicator .mouse {
  width: 26px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, .4);
  border-radius: 13px;
  position: relative;
}

.scroll-indicator .mouse::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--red);
  border-radius: 2px;
  animation: scrollWheel 1.5s infinite;
}

@keyframes scrollWheel {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(12px);
  }
}

.scroll-indicator span {
  font-size: .7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-500);
}

@keyframes float {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

/* ---------- Services ---------- */
.services {
  padding: var(--section-pad);
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-header .section-desc {
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--black-card);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: var(--radius);
  padding: 40px 35px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  opacity: 0;
  transition: var(--transition);
}

/* ============================
   ABOUT - PREMIUM LAYOUT
   ============================ */
.about-secondary-nav {
  position: sticky;
  top: 72px;
  z-index: 15;
  margin: 0 auto 1.5rem;
  padding: 0.9rem 0 0;
}

.about-secondary-nav-inner {
  width: min(100%, 1180px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0;
  background: transparent;
  border: none;
  backdrop-filter: none;
  box-shadow: none;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.about-secondary-nav-inner::-webkit-scrollbar {
  display: none;
}

.about-secondary-nav a {
  position: relative;
  flex: 0 0 auto;
  padding: 0.75rem 0.95rem;
  border-radius: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.93rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 300ms ease, transform 300ms ease;
  white-space: nowrap;
}

.about-secondary-nav a::after {
  content: '';
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.35rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(249, 115, 22, 0.98), rgba(249, 115, 22, 0.35));
  transform: scaleX(0);
  transform-origin: center;
  opacity: 0;
  transition: transform 300ms ease, opacity 300ms ease;
}

.about-secondary-nav a:hover,
.about-secondary-nav a.active {
  color: #ffffff;
  background: transparent;
}

.about-secondary-nav a:hover::after,
.about-secondary-nav a.active::after {
  transform: scaleX(1);
  opacity: 1;
}

.about-section-target {
  scroll-margin-top: 150px;
}

.about-hero-section {
  position: relative;
  padding: clamp(5.5rem, 8vw, 8rem) 0 clamp(4rem, 6vw, 6rem);
  background:
    radial-gradient(circle at top center, rgba(42, 84, 164, 0.4), transparent 48%),
    linear-gradient(180deg, #060813 0%, #0a1221 42%, #020304 100%);
}

.about-hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(212, 162, 78, 0.12), transparent 16%, transparent 84%, rgba(212, 162, 78, 0.08));
  pointer-events: none;
}

.about-hero-top {
  text-align: center;
  max-width: 980px;
  margin: 0 auto 3rem;
  position: relative;
  z-index: 1;
}

.about-subheadline {
  display: inline-block;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.about-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7vw, 5.4rem);
  line-height: 0.97;
  letter-spacing: 0.04em;
  margin-bottom: 1.25rem;
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 56%, #d4a24e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about-hero-body {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.08rem;
  line-height: 1.9;
  max-width: 900px;
  margin: 0 auto;
}

.about-label {
  display: inline-flex;
  color: #d9422f;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.about-hero-section {
  padding: 8rem 0 4rem;
}

.about-section-target {
  padding: 100px 0;
}

.section-padding {
  padding-top: 90px;
  padding-bottom: 90px;
}

.about-security-section,
.capabilities,
.about-commitment-section,
.locations {
  position: relative;
}

.locations-map-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  padding: 1.5rem;
}

.map-placeholder {
  width: 100%;
  min-height: 360px;
  padding: 2rem;
  border-radius: 24px;
  display: grid;
  place-items: center;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.who-we-are {
  max-width: 1100px;
  margin: 4rem auto 0;
}

.who-we-are-top {
  text-align: center;
  margin-bottom: 2.5rem;
}

.who-we-are-grid {
  display: grid;
  grid-template-columns: 1fr minmax(420px, 520px) 1fr;
  gap: 24px;
  align-items: stretch;
}

.who-card {
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.who-card-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(217, 66, 47, 0.12);
  color: #d99a3c;
  font-size: 1.15rem;
}

.who-card h4,
.capability-card h4,
.security-panel-card h3,
.location-card h4 {
  margin: 0;
  color: #ffffff;
  font-size: 1.4rem;
  line-height: 1.2;
}

.who-card p {
  color: #ccc;
  line-height: 1.85;
}

.who-image-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 560px;
}

.who-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.section-heading-block {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 2.5rem;
}

.security-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: start;
}

.security-copy p {
  color: #ccc;
  margin-bottom: 1.2rem;
  line-height: 1.9;
}

.security-list {
  list-style: none;
  margin-top: 1.75rem;
  display: grid;
  gap: 1rem;
}

.security-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.95rem;
  color: #ccc;
}

.security-bullet {
  width: 10px;
  height: 10px;
  margin-top: 0.75rem;
  border-radius: 50%;
  background: #d9422f;
  flex-shrink: 0;
}

.security-panel {
  display: grid;
  gap: 18px;
}

.security-panel-card,
.capability-card,
.location-card {
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
}

.panel-icon,
.capability-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(217, 66, 47, 0.12);
  color: #d99a3c;
  margin-bottom: 1rem;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.capability-card p,
.commitment-card p,
.lead-body,
.location-card p {
  color: #ccc;
  line-height: 1.85;
}

.locations-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 28px;
  align-items: start;
}

.location-copy p {
  color: #ccc;
  margin-bottom: 1.6rem;
}

.location-list {
  display: grid;
  gap: 1rem;
}

.location-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: flex-start;
}

.location-card i {
  color: #d99a3c;
  font-size: 1.05rem;
  margin-top: 0.2rem;
}

.locations-map-card {
  display: flex;
  align-items: center;
  justify-content: center;
}

.capabilities-grid article,
.security-panel-card,
.who-card,
.location-card {
  min-height: 100%;
}

@media screen and (max-width: 980px) {
  .who-we-are-grid {
    grid-template-columns: 1fr;
  }

  .who-image-frame {
    order: -1;
  }

  .security-layout {
    grid-template-columns: 1fr;
  }

  .capabilities-grid,
  .commitment-grid,
  .locations-grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 680px) {

  .who-card,
  .security-panel-card,
  .capability-card,
  .location-card {
    padding: 1.5rem;
  }
}

.about-content-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.about-panel,
.about-team-card {
  min-height: 100%;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

.about-panel {
  padding: 2rem;
}

.about-panel-title {
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.76rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.about-panel h3 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.1;
  color: var(--gold);
  margin-bottom: 1rem;
}

.about-panel p,
.about-values-list span:last-child {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.8;
}

.about-values-list {
  list-style: none;
  margin-top: 1.4rem;
  display: grid;
  gap: 1rem;
}

.about-values-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.about-values-list li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.about-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  min-width: 20px;
  color: var(--gold);
  margin-top: 0.2rem;
}

.about-team-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

.about-team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  display: block;
  filter: saturate(1.05) contrast(1.03);
}

.about-commitment-section {
  position: relative;
}

.about-commitment-section .section-title,
.leadership .section-title,
.vmv .section-title,
.locations .section-title {
  text-align: center;
}

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.commitment-card {
  padding: 1.35rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  transition: transform 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
}

.commitment-card:hover {
  transform: translateY(-4px);
  border-color: rgba(249, 115, 22, 0.45);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.35);
}

.commitment-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 0.7rem;
}

.commitment-card p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.75;
  font-size: 0.97rem;
}

@media screen and (max-width: 1100px) {
  .about-content-grid {
    grid-template-columns: 1fr;
  }

  .commitment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-hero-title {
    font-size: clamp(2.8rem, 9vw, 4.5rem);
  }
}

@media screen and (max-width: 760px) {
  .about-secondary-nav {
    top: 72px;
  }

  .about-secondary-nav-inner {
    padding: 0.35rem;
    gap: 0.25rem;
  }

  .about-secondary-nav a {
    padding: 0.75rem 0.9rem;
    font-size: 0.88rem;
  }

  .about-hero-section {
    padding: 5.5rem 0 4.5rem;
  }

  .about-hero-top {
    margin-bottom: 2rem;
  }

  .about-panel {
    padding: 1.4rem;
  }

  .about-hero-body {
    font-size: 0.98rem;
  }

  .commitment-grid {
    grid-template-columns: 1fr;
  }
}

/* Leadership */
.leadership {
  padding: 80px 0 100px;
}

.leadership .section-label,
.leadership .section-title,
.leadership .section-subtitle {
  text-align: left;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.leadership .section-title {
  font-size: clamp(3.4rem, 5.5vw, 5.6rem);
  line-height: 0.9;
  margin-top: 1rem;
  margin-bottom: 0.55rem;
  color: var(--gold);
}

.leadership .section-subtitle {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  text-transform: none;
  margin-bottom: 2.5rem;
}

.lead-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 40px;
  align-items: start;
}

.lead-profile {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lead-image-frame {
  position: relative;
  width: 100%;
  max-width: 620px;
  height: clamp(520px, 45vw, 560px);
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.25);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.24);
  transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
}

.lead-image-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
}

.lead-image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 25% 20%, rgba(212, 175, 55, 0.16), transparent 18%),
    radial-gradient(circle at 75% 80%, rgba(255, 255, 255, 0.12), transparent 15%);
}

.lead-image-frame:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow: 0 48px 110px rgba(0, 0, 0, 0.3);
}

.lead-profile .avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}

.lead-image-frame:hover .avatar {
  transform: scale(1.02);
}

.lead-message {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.8rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 44px;
  border-radius: 28px;
  color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.24);
}

.lead-body {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.03rem;
  line-height: 1.95;
}

.lead-quote-card {
  background: rgba(0, 0, 0, 0.32);
  border-left: 4px solid var(--gold);
  padding: 26px 26px 26px 24px;
  border-radius: 20px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.lead-quote-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.04rem;
  line-height: 1.9;
  font-style: italic;
}

.lead-message-name {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 2rem;
  letter-spacing: 0.04em;
  margin: 0;
}

.lead-message-role {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

@media screen and (max-width: 1100px) {
  .lead-grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 680px) {
  .leadership {
    padding: 60px 0 70px;
  }

  .lead-image-frame {
    height: 340px;
  }

  .lead-message {
    padding: 28px;
  }

  .leadership .section-title {
    font-size: clamp(2.8rem, 8vw, 3.8rem);
  }
}

.lead-quote {
  margin: 0 0 1.25rem;
  padding: 0;
  background: transparent;
  border-radius: 0;
  border-left: none;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.08rem;
  line-height: 1.9;
}

.lead-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.lead-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 16px;
  border-radius: 12px;
  display: flex;
  gap: 12px;
  align-items: center;
  transition: var(--transition);
}

.lead-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.lead-card i {
  color: var(--red);
  font-size: 1.2rem;
}

/* VISION • MISSION • VALUES */
.vmv {
  margin-top: 48px;
}

.vmv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.vmv-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 28px;
  border-radius: 16px;
  text-align: left;
}

.vmv-card .vmv-icon {
  font-size: 2.2rem;
  color: var(--red);
  margin-bottom: 12px;
}

/* LOCATIONS */
.locations-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 20px;
  align-items: start;
}

.loc-list {
  display: grid;
  gap: 12px;
}

.loc-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 14px 16px;
  border-radius: 12px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.loc-card .city {
  font-weight: 700;
}

.loc-card .status {
  color: var(--gray-300);
  font-size: .9rem;
}

.map-placeholder {
  height: 320px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  font-weight: 600;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(18px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .6s ease, transform .6s cubic-bezier(.25, .8, .25, 1);
}

@media screen and (max-width: 980px) {
  .about-layout {
    grid-template-columns: 1fr;
  }

  .lead-grid {
    grid-template-columns: 1fr;
  }

  .vmv-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .locations-grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 760px) {
  .about-hero-section {
    padding: 4.5rem 0;
  }

  .about-copy {
    padding: 18px;
  }

  .about-pill {
    font-size: 0.7rem;
    padding: 9px 14px;
  }

  .about-copy h2 {
    font-size: 2.2rem;
  }

  .about-highlights-grid {
    grid-template-columns: 1fr;
  }

  .about-actions {
    align-items: stretch;
  }
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(249, 115, 22, .3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: rgba(249, 115, 22, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--red);
  transform: scale(1.05);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.service-card p {
  color: var(--gray-300);
  font-size: .95rem;
  margin-bottom: 24px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.service-link svg {
  transition: var(--transition);
}

.service-card:hover .service-link svg {
  transform: translateX(5px);
}

/* Service card image variant */
.service-card-img {
  overflow: hidden;
  padding: 0;
}

.service-card-img .card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: var(--transition);
}

.service-card-img:hover .card-image {
  transform: scale(1.05);
}

.service-card-img .card-body {
  padding: 30px 35px 40px;
}

/* ---------- About ---------- */
.about {
  padding: var(--section-pad);
  background: var(--black-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-grid-centered {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 24px;
  align-items: center;
  text-align: center;
}

.about-grid-centered .about-text {
  margin: 0 auto;
  max-width: 520px;
}

.about-grid-centered .about-image,
.about-grid-centered .about-rotator {
  margin: 0 auto;
  width: min(100%, 360px);
}

.about-grid-centered .about-rotator {
  position: relative;
  min-height: 500px;
  height: 500px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #111;
}

.about-rotator .gallery-rotator-slide,
.about-rotator .gallery-item {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
}

.about-rotator .gallery-rotator-slide img,
.about-rotator .gallery-item img,
.about-rotator img {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

.about-grid-centered .about-rotator::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid rgba(249, 115, 22, .3);
  border-radius: var(--radius);
  pointer-events: none;
  z-index: 5;
}

.about-image-left,
.about-image-right {
  position: relative;
}

.about-image-left {
  transform: none;
}

.about-image-right {
  transform: none;
}

.about-text-middle {
  order: 0;
}

.about-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius);
}

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid rgba(249, 115, 22, .3);
  border-radius: var(--radius);
}

.about-experience {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--red);
  padding: 20px 28px;
  border-radius: var(--radius);
}

.about-experience h3 {
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 1;
  letter-spacing: 2px;
}

.about-experience span {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.about-text h2 {
  margin-bottom: 24px;
}

.about-text p {
  color: var(--gray-300);
  margin-bottom: 20px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 30px 0 36px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.about-feature .check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(249, 115, 22, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: .8rem;
  flex-shrink: 0;
}

/* ---------- Stats Banner ---------- */
.stats-banner {
  padding: 100px 0;
  background: var(--black-soft);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.stats-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(249, 115, 22, 0.24) 0%, transparent 62%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  position: relative;
  z-index: 2;
  text-align: center;
}

.stat-item {
  padding: 24px 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(249, 115, 22, 0.12), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(249, 115, 22, 0.38);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
  transition: all 0.35s ease;
}

.stat-item:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 69, 0, 0.85);
  box-shadow: 0 18px 55px rgba(249, 115, 22, 0.24);
}

.stat-circle {
  width: 124px;
  height: 124px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(249, 115, 22, 0.35), rgba(17, 17, 17, 0.98));
  border: 1px solid rgba(249, 115, 22, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 0 auto 18px;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  animation: firePulse 3s infinite ease-in-out;
}

/* Rotating fire-gradient ring */
.stat-circle::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #ff4500, #ff0000, #ff8c00, #ff4500);
  z-index: -1;
  animation: rotateFire 3s linear infinite;
  mask: radial-gradient(circle, transparent 67%, black 68%);
  -webkit-mask: radial-gradient(circle, transparent 67%, black 68%);
}

.stat-circle::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #ff4500, #ff0000, #ff8c00, #ff4500);
  z-index: -2;
  filter: blur(8px);
  opacity: 0.55;
  animation: rotateFire 3s linear infinite;
  transition: all 0.4s ease;
}

.stat-item:hover .stat-circle {
  transform: scale(1.08);
}

.stat-item:hover .stat-circle::after {
  opacity: 0.9;
  filter: blur(10px);
}

@keyframes rotateFire {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes firePulse {

  0%,
  100% {
    box-shadow: 0 0 15px rgba(255, 69, 0, 0.4), inset 0 0 10px rgba(255, 69, 0, 0.3);
  }

  50% {
    box-shadow: 0 0 25px rgba(255, 69, 0, 0.6), inset 0 0 15px rgba(255, 69, 0, 0.4);
  }
}

.stat-item p {
  color: #ff4500;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}

/* ---------- Why Choose Us ---------- */
.why-us {
  padding: var(--section-pad);
}

.why-us-header {
  text-align: center;
  margin-bottom: 60px;
}

.why-us-header .section-desc {
  margin: 0 auto;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.why-card {
  text-align: center;
  padding: 40px 30px;
  border-radius: var(--radius);
  background: var(--black-card);
  border: 1px solid rgba(255, 255, 255, .06);
  transition: var(--transition);
}

.why-card:hover {
  border-color: rgba(249, 115, 22, .3);
  transform: translateY(-5px);
}

.why-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: rgba(249, 115, 22, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: var(--red);
  box-shadow: 0 0 30px var(--red-glow);
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.why-card p {
  color: var(--gray-300);
  font-size: .92rem;
}

/* ---------- Testimonials ---------- */
.testimonials {
  padding: var(--section-pad);
  background: var(--black-light);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}

/* ---------- Centered Section Headers ---------- */
.testimonials-header,
.journey-header,
.faq-header,
.why-us-header,
.gallery-header,
.contact-header,
.services-header,
.industries-header,
.training-header,
.stats-header {
  text-align: center;
  margin-bottom: 50px;
}

.testimonials-header .section-title,
.journey-header .section-title,
.faq-header .section-title,
.why-us-header .section-title,
.gallery-header .section-title,
.contact-header .section-title,
.services-header .section-title,
.industries-header .section-title,
.training-header .section-title,
.stats-header .section-title {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.testimonials-header .section-desc,
.journey-header .section-desc,
.faq-header .section-desc,
.why-us-header .section-desc,
.gallery-header .section-desc,
.contact-header .section-desc,
.services-header .section-desc,
.industries-header .section-desc,
.training-header .section-desc,
.stats-header .section-desc {
  margin: 0 auto;
  text-align: center;
}

/* Testimonials Carousel */
.testimonials-slider {
  display: flex !important;
  gap: 30px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 20px 10px 40px;
  scrollbar-width: none;
  /* Hide scrollbar for Firefox */
}

.testimonials-slider::-webkit-scrollbar {
  display: none;
  /* Hide scrollbar for Chrome, Safari, etc. */
}

.testimonial-card {
  flex: 0 0 380px;
  /* fixed size cards */
  scroll-snap-align: start;
  background: var(--black-card);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: var(--radius);
  padding: 40px;
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(249, 115, 22, .25);
  transform: translateY(-4px);
}

.testimonial-quote {
  font-size: 3rem;
  color: var(--red);
  opacity: .3;
  font-family: serif;
  line-height: 1;
  margin-bottom: 10px;
}

.testimonial-card p {
  color: var(--gray-300);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.testimonial-author h4 {
  font-size: .95rem;
}

.testimonial-author span {
  font-size: .8rem;
  color: var(--gray-500);
}

.testimonial-stars {
  color: var(--gold);
  font-size: .85rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

/* ---------- Gallery ---------- */
.gallery {
  padding: var(--section-pad);
}

.gallery-header {
  text-align: center;
  margin-bottom: 60px;
}

.gallery-header .section-desc {
  margin: 0 auto;
}

.gallery-rotator-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.gallery-rotator-box,
.about-rotator {
  position: relative !important;
  width: 100% !important;
  height: 500px !important;
  min-height: 500px !important;
  max-height: 500px !important;
  border-radius: var(--radius) !important;
  overflow: hidden !important;
  background: #111 !important;
}

.gallery-rotator-slide {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  pointer-events: none;
  z-index: 1;
  transform: none !important;
}

.gallery-rotator-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

/* Ensure rotator boxes show completely — no reveal/scroll animations */
.gallery-rotator-box,
.gallery-rotator-box.reveal,
.gallery-rotator-box.reveal.active,
.gallery-rotator-box.reveal.is-visible {
  transform: none !important;
  opacity: 1 !important;
  transition: none !important;
  animation: none !important;
}

.gallery-rotator-box img,
.about-rotator img,
.gallery-rotator-slide img,
.gallery-item img {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  /* Only animate opacity for gallery images to avoid any transform/scale effects */
  transition: opacity .35s cubic-bezier(.25, .8, .25, 1);
}

.gallery-rotator-slide img,
.gallery-rotator-slide.gallery-item img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  background: #000;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(0, 0, 0, .85));
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover img {
  /* Explicitly disable transforms on hover for gallery images */
  transform: none !important;
}

.gallery-overlay h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 2px;
}

/* ---------- CTA Section ---------- */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--black) 0%, var(--black-soft) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--red-glow) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-content .section-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  margin-bottom: 20px;
}

.cta-content .section-title .highlight {
  color: var(--red);
}

.cta-content p {
  color: var(--gray-300);
  max-width: 600px;
  margin: 0 auto 36px;
  font-size: 1.08rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---------- Contact Section ---------- */
.contact-section {
  background: #0a0a0a;
  padding: 4rem 1.5rem;
  display: flex;
  justify-content: center;
}

.contact-container {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.contact-badge {
  display: inline-block;
  background: rgba(217, 74, 47, 0.15);
  color: #e8825a;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: 999px;
  text-transform: uppercase;
}

.contact-heading {
  color: #ffffff;
  font-size: 34px;
  font-weight: 500;
  margin: 0;
  line-height: 1.3;
  letter-spacing: 0.2px;
}

.contact-subtext {
  color: #999999;
  font-size: 15px;
  margin: 0;
  max-width: 440px;
}

.contact-btn-link {
  text-decoration: none;
  margin-top: 12px;
}

.contact-btn {
  background: linear-gradient(135deg, #e8792c, #d9422f);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 16px 40px;
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.contact-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Contact ---------- */
.contact {
  padding: var(--section-pad);
  background: var(--black-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.contact-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(249, 115, 22, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.contact-item p,
.contact-item a {
  color: var(--gray-300);
  font-size: .95rem;
}

.contact-item a:hover {
  color: var(--red);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  position: relative;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 16px 20px;
  background: var(--black-card);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-main);
  font-size: .95rem;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-glow);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-500);
}

.contact-form .btn {
  align-self: flex-start;
}

/* ---------- Footer ---------- */
.footer {
  background: #0a0a0c;
  color: #cccccc;
  padding: 60px 0 20px 0;
  position: relative;
  overflow: hidden;
  border-top: 2px solid transparent;
  border-image: linear-gradient(90deg, transparent, #ff3b00, #ff7300, transparent) 1;
}

.footer::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 59, 0, 0.08) 0%, transparent 70%);
  pointer-events: none;
  animation: pulseGlow 6s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
  0% {
    opacity: 0.3;
    transform: translateX(-50%) scale(0.9);
  }

  100% {
    opacity: 0.9;
    transform: translateX(-50%) scale(1.1);
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1.2fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo-panel {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.footer-logo-mark {
  background: linear-gradient(135deg, #ff3b00, #ff7300);
  color: #ffffff;
  font-weight: 800;
  font-size: 1.1rem;
  padding: 8px 12px;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(255, 59, 0, 0.4);
}

.footer-logo-text span {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ff5500;
  letter-spacing: 0.5px;
}

.footer-description {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #a0a0a0;
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.social-icon:hover {
  transform: translateY(-5px) scale(1.1);
  background: linear-gradient(135deg, #ff3b00, #ff7300);
  border-color: transparent;
  color: #ffffff !important;
  box-shadow: 0 8px 18px rgba(255, 59, 0, 0.6);
}

.footer-heading {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-left: 12px;
}

.footer-heading::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 2px;
  width: 4px;
  background: linear-gradient(to bottom, #ff3b00, #ff7300);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #a0a0a0;
  text-decoration: none;
  font-size: 0.95rem;
  display: inline-block;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #ff7300;
  transform: translateX(6px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 16px;
}

.footer-contact-icon {
  width: 28px;
  min-width: 28px;
  margin-top: 4px;
  background: transparent;
  border: none;
  display: block;
  text-align: center;
  color: #ff5500 !important;
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.footer-contact-item:hover .footer-contact-icon {
  transform: scale(1.15) rotate(6deg);
  background: #ff3b00;
  color: #ffffff !important;
  box-shadow: 0 0 12px rgba(255, 59, 0, 0.6);
}

.footer-contact-item p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #a0a0a0;
}

.footer-contact-item a {
  color: #a0a0a0;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact-item a:hover {
  color: #ffffff;
}

.contact-label {
  font-weight: 700;
  color: #ffffff !important;
  margin-bottom: 2px;
}

.newsletter-text {
  font-size: 0.88rem;
  line-height: 1.5;
  color: #a0a0a0;
  margin-bottom: 15px;
}

.footer-newsletter {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-newsletter input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 12px 16px;
  border-radius: 25px;
  color: #ffffff;
  font-size: 0.9rem;
  outline: none;
  transition: all 0.3s ease;
}

.footer-newsletter input:focus {
  border-color: #ff5500;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 10px rgba(255, 59, 0, 0.3);
}

.footer-newsletter button {
  background: linear-gradient(135deg, #ff3b00, #ff7300);
  color: #ffffff;
  border: none;
  padding: 12px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 59, 0, 0.4);
}

.footer-newsletter button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 59, 0, 0.6);
  filter: brightness(1.1);
}

.footer-success {
  display: none;
  margin-top: 10px;
  font-size: 0.85rem;
  color: #2ed573;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 0.85rem;
  color: #777777;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: #777777;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: #ff7300;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 1fr 1.1fr;
  gap: 32px;
}

.footer-logo-panel {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.footer-logo-mark {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff3f28, #ff8e1b);
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 1px;
  font-size: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 0 0 6px rgba(255, 95, 0, 0.08);
}

.footer-logo-text span {
  display: block;
  color: #ff5500;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-description {
  color: #c8c9cc;
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 420px;
  margin-bottom: 24px;
}

.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  width: 100%;
}

.social-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff !important;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  flex-shrink: 0;
}

.social-icon i,
.social-icon svg {
  color: #ffffff !important;
  fill: currentColor;
}

.social-icon:hover {
  transform: translateY(-3px) scale(1.08);
  background: rgba(225, 68, 28, 0.3);
  border-color: rgba(225, 68, 28, 0.6);
  color: #ffffff !important;
  box-shadow: 0 6px 16px rgba(225, 68, 28, 0.35);
}

@media (max-width: 768px) {
  .social-icons {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .social-icon {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
}

.footer-col {
  padding-top: 4px;
}

.footer-col+.footer-col {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  padding-left: 30px;
}

.footer-heading {
  position: relative;
  font-size: 0.95rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  margin-bottom: 22px;
  padding-left: 14px;
}

.footer-heading::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 28px;
  background: linear-gradient(180deg, #ff8f4e, #ff3f28);
  border-radius: 4px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li a {
  color: #c8c9cc;
  font-size: 0.95rem;
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-links li a:hover {
  color: #ff8b49;
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
  color: #c9c9cc;
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-contact-icon {
  min-width: 28px;
  width: 28px;
  margin-top: 5px;
  display: block;
  text-align: center;
  background: transparent;
  border: none;
  color: #ff8f4f;
}


.footer-contact-icon i {
  font-size: 1rem;
}

.footer-contact-item p,
.footer-contact-item a {
  margin: 0;
  color: #c8c9cc;
}

.footer-contact-item a {
  text-decoration: none;
}

.footer-contact-item a:hover {
  color: #ff8b49;
}

.contact-label {
  margin: 0 0 6px;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.96rem;
}

.newsletter-text {
  color: #c8c9cc;
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 18px;
  max-width: 340px;
}

.footer-newsletter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.footer-newsletter input {
  flex: 1 1 240px;
  min-height: 52px;
  max-height: 52px;
  width: 100%;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.footer-newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.footer-newsletter input:focus {
  border-color: rgba(255, 138, 97, 0.65);
  box-shadow: 0 0 0 6px rgba(255, 120, 62, 0.12);
  background: rgba(255, 255, 255, 0.08);
}

.footer-newsletter button {
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #ff3f28 0%, #ff8e1b 100%);
  color: #ffffff;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.footer-newsletter button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(255, 111, 67, 0.26);
}

.footer-success {
  display: none;
  margin-top: 14px;
  color: #ffb58d;
  font-size: 0.92rem;
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 32px 0 22px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  color: #9fa3ae;
  font-size: 0.88rem;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.footer-bottom-links a {
  color: #9fa3ae;
  font-size: 0.88rem;
  transition: color 0.25s ease;
}

.footer-bottom-links a:hover {
  color: #ff8b49;
}

@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-col+.footer-col {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    margin-top: 16px;
  }
}

@media (max-width: 640px) {
  .footer {
    padding: 58px 14px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }

  .footer-newsletter {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-newsletter button {
    width: 100%;
  }
}

/* =====================================================
   AI FLOATING BUTTON / AI MODAL
   Positioned ABOVE the Back-to-Top button
===================================================== */

/* =====================================================
   RIGHT FLOATING CONTAINER & AI BUTTON
   Positioned cleanly above bottom navigation/Back-to-Top
===================================================== */

.widget-container,
#lsf-right-floaters {
  position: fixed !important;
  right: 24px !important;
  bottom: 95px !important;
  z-index: 9999 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-end !important;
}

.widget-container .lsf-floater-ai,
#lsf-right-floaters .lsf-floater-ai {
  z-index: 10002 !important;
}

.widget-container .lsf-chat-window,
#lsf-right-floaters .lsf-chat-window {
  position: fixed !important;
  right: 24px !important;
  bottom: 160px !important;
  width: 360px !important;
  max-width: calc(100vw - 32px) !important;
  max-height: 80vh !important;
  z-index: 10005 !important;
}

.ai-modal,
.ai-chat,
.ai-chat-widget,
.ai-assistant,
#ai-modal,
#ai-chat,
#ai-assistant {
  position: fixed !important;
  right: 24px !important;
  bottom: 95px !important;
  z-index: 9999 !important;
}

/* =====================================================
   AI CHAT POPUP
===================================================== */

.ai-popup,
.ai-chat-popup,
#ai-popup,
#ai-chat-popup {
  position: fixed !important;
  right: 24px !important;
  bottom: 160px !important;
  z-index: 10000 !important;
  max-width: calc(100vw - 32px) !important;
}

/* =====================================================
   BACK TO TOP BUTTON
===================================================== */

#backToTop,
.back-to-top,
.backToTop {
  position: fixed !important;
  right: 24px !important;
  bottom: 20px !important;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #ff3f28, #ff8e1b);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10001 !important;
  box-shadow:
    0 14px 32px rgba(255, 95, 0, 0.28),
    0 0 0 8px rgba(255, 95, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: scale(0.8);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    opacity 0.35s ease,
    visibility 0.35s ease;
}

#backToTop.visible,
.back-to-top.visible,
.backToTop.visible {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

#backToTop i,
.back-to-top i,
.backToTop i {
  font-size: 1.25rem;
}

/* =====================================================
   BACK TO TOP HOVER
===================================================== */

#backToTop:hover,
.back-to-top:hover,
.backToTop:hover {
  transform: translateY(-4px);
  box-shadow:
    0 18px 38px rgba(255, 95, 0, 0.45),
    0 0 0 10px rgba(255, 95, 0, 0.12);
}

/* =====================================================
   RESPONSIVE MOBILE & TABLET FLOATERS
===================================================== */

@media screen and (max-width: 768px) {

  #lsf-right-floaters,
  .widget-container {
    right: 16px !important;
    bottom: 86px !important;
  }

  .lsf-floater-ai {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    min-height: 48px !important;
  }

  .lsf-floater-ai .ai-btn-label {
    top: -10px !important;
    font-size: 0.55rem !important;
    padding: 2px 6px !important;
  }

  .widget-container .lsf-chat-window,
  #lsf-right-floaters .lsf-chat-window,
  .ai-popup,
  .ai-chat-popup,
  #ai-popup,
  #ai-chat-popup {
    right: 16px !important;
    left: 16px !important;
    bottom: 145px !important;
    width: auto !important;
    max-width: none !important;
    max-height: 75vh !important;
  }

  #backToTop,
  .back-to-top,
  .backToTop {
    right: 16px !important;
    bottom: 18px !important;
    width: 48px !important;
    height: 48px !important;
  }
}

@media screen and (max-width: 480px) {

  #lsf-right-floaters,
  .widget-container {
    right: 14px !important;
    bottom: 80px !important;
  }

  .lsf-floater-ai {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
  }

  .lsf-floater-ai .ai-btn-icon {
    width: 24px !important;
    height: 24px !important;
  }

  .lsf-floater-ai .ai-btn-icon i {
    font-size: 0.85rem !important;
  }

  .lsf-floater-ai .ai-btn-label {
    top: -9px !important;
    font-size: 0.50rem !important;
    padding: 1px 5px !important;
    letter-spacing: 0.05em !important;
  }

  .widget-container .lsf-chat-window,
  #lsf-right-floaters .lsf-chat-window,
  .ai-popup,
  .ai-chat-popup,
  #ai-popup,
  #ai-chat-popup {
    right: 12px !important;
    left: 12px !important;
    bottom: 135px !important;
    max-height: 72vh !important;
  }

  #backToTop,
  .back-to-top,
  .backToTop {
    right: 14px !important;
    bottom: 16px !important;
    width: 44px !important;
    height: 44px !important;
  }
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.active,
.reveal.is-visible,
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* === Global mobile fix: section headers always visible on small screens === */
@media (max-width: 1024px) {

  .section-head.reveal,
  .section-head {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
  }

  .section-head h2 {
    font-size: clamp(20px, 6vw, 32px);
    color: #ffffff;
    line-height: 1.2;
  }

  .section-head .eyebrow {
    opacity: 1 !important;
    visibility: visible !important;
  }
}

/* ---------- Mobile Menu Overlay ---------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .97);
  z-index: 998;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 4px;
  transition: var(--transition);
}

.mobile-menu a:hover {
  color: var(--red);
}

/* ---------- Horizontal Auto-Slider Timeline (TEDx Style) ---------- */
.journey {
  padding: 90px 0 100px;
  background: #030304;
  position: relative;
  overflow: hidden;
}

.timeline-horizontal-wrapper {
  position: relative;
  width: 100%;
  height: 640px;
  margin-top: 10px;
  display: flex;
  align-items: center;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}

.timeline-horizontal-wrapper::-webkit-scrollbar {
  display: none;
}

/* Center Horizontal Axis Line */
.timeline-center-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  min-width: 2700px;
  height: 2px;
  background: linear-gradient(90deg, rgba(225, 68, 28, 0.15) 0%, #E1441C 15%, #E1441C 85%, rgba(225, 68, 28, 0.15) 100%);
  box-shadow: 0 0 14px rgba(225, 68, 28, 0.7);
  transform: translateY(-50%);
  z-index: 1;
}

.journey-timeline-track {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-width: 2700px;
  width: 100%;
  height: 100%;
  padding: 0 240px;
  z-index: 2;
}

/* Timeline Column Item */
.timeline-item {
  position: relative;
  width: 320px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  opacity: 0.45;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.timeline-item:hover,
.timeline-item.active {
  opacity: 1;
}

/* Timeline Node Dot & Vertical Crosshair Ticks */
.timeline-node {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  pointer-events: none;
}

.node-tick {
  position: absolute;
  width: 2px;
  height: 30px;
  background: rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.node-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #E1441C;
  border: 2px solid #F07050;
  box-shadow: 0 0 10px rgba(225, 68, 28, 0.8);
  transition: all 0.35s ease;
  z-index: 2;
}

.timeline-item.active .node-tick {
  background: #E1441C;
  height: 48px;
  box-shadow: 0 0 12px #E1441C;
}

.timeline-item.active .node-dot {
  width: 24px;
  height: 24px;
  background: #E1441C;
  border: 2px solid #F0A090;
  box-shadow: 0 0 34px #E1441C, 0 0 16px rgba(225, 68, 28, 0.9);
}

/* Timeline Card — Premium Design */
.timeline-card {
  position: absolute;
  left: 50%;
  width: 330px;
  background: #0d0d0d;
  border: 2px solid #E1441C;
  border-radius: 16px;
  padding: 24px 26px 22px;
  box-shadow: 0 0 15px rgba(225, 68, 28, 0.4), 0 14px 40px rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(14px);
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  text-align: left;
}

.timeline-item.timeline-above .timeline-card {
  bottom: calc(50% + 32px);
  transform: translateX(-50%);
}

.timeline-item.timeline-below .timeline-card {
  top: calc(50% + 32px);
  transform: translateX(-50%);
}

/* Active Card Highlight State */
.timeline-item.active.timeline-above .timeline-card {
  border: 2px solid #E1441C;
  box-shadow: 0 0 22px rgba(225, 68, 28, 0.55), 0 18px 50px rgba(0, 0, 0, 0.95);
  transform: translateX(-50%) scale(1.03);
}

.timeline-item.active.timeline-below .timeline-card {
  border: 2px solid #E1441C;
  box-shadow: 0 0 22px rgba(225, 68, 28, 0.55), 0 18px 50px rgba(0, 0, 0, 0.95);
  transform: translateX(-50%) scale(1.03);
}

.timeline-badge-year {
  display: inline-block;
  background: #E1441C;
  color: #FFFFFF;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
  text-transform: uppercase;
  box-shadow: none;
}

.timeline-card h3 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin: 0 0 10px 0;
  line-height: 1.2;
}

.timeline-card p {
  font-family: 'Poppins', sans-serif;
  color: #B0B0B0;
  font-size: 0.85rem;
  line-height: 1.55;
  margin: 0 0 16px 0;
}

/* Bottom Accent Line inside Card */
.card-active-line {
  width: 90%;
  height: 3px;
  background: #E1441C;
  border-radius: 999px;
  box-shadow: none;
  margin: 0 auto;
  transition: all 0.3s ease;
}

/* ---------- Timeline Pagination Dots ---------- */
.timeline-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 35px;
}

.tl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.35s ease;
  padding: 0;
  outline: none;
}

.tl-dot:hover {
  background: rgba(225, 68, 28, 0.6);
}

.tl-dot.active {
  width: 28px;
  height: 10px;
  border-radius: 10px;
  background: #E1441C;
  box-shadow: 0 0 14px rgba(225, 68, 28, 0.8);
}

/* ---------- Hero Banner Stick to Header ---------- */
.hero-banner {
  width: 100%;
  margin-top: 72px;
  padding: 0;
  line-height: 0;
  display: block;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
  padding: 0;
}

/* ---------- Timeline Bottom Glow ---------- */
.timeline-bottom-glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 650px;
  height: 150px;
  background: radial-gradient(ellipse at center, rgba(255, 59, 29, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

/* ---------- NEW PREMIUM MATCHING FOOTER ---------- */
.footer-premium {
  background: #040404;
  position: relative;
  color: #FFFFFF;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
  border-top: 1px solid rgba(255, 59, 29, 0.2);
}

.footer-top-accent {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #FF3B1D 20%, #FF3B1D 80%, transparent 100%);
  box-shadow: 0 0 16px #FF3B1D;
}

/* Feature Highlights Bar (Matching Reference Photo #2) */
.footer-features-bar {
  background: rgba(10, 10, 12, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
}

.footer-features-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 220px;
  justify-content: center;
}

.ff-icon {
  font-size: 1.5rem;
  color: #FF3B1D;
  filter: drop-shadow(0 0 8px rgba(255, 59, 29, 0.6));
}

.ff-text {
  display: flex;
  flex-direction: column;
}

.ff-text strong {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FFFFFF;
}

.ff-text span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
}

.ff-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.12);
}

/* Main Footer Container */
.footer-main-container {
  padding: 70px 40px 50px;
}

.footer-grid-premium {
  display: grid;
  grid-template-columns: 2.2fr 1.2fr 1.4fr 1.8fr;
  gap: 40px;
}

.footer-col-brand {
  display: flex;
  flex-direction: column;
}

.footer-brand-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.footer-brand-logo img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(255, 59, 29, 0.4));
}

.footer-brand-titles {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.fbt-orange {
  font-size: 1.3rem;
  font-weight: 900;
  color: #FF3B1D;
  letter-spacing: 0.08em;
}

.fbt-sub {
  font-size: 0.68rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.16em;
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 22px;
  max-width: 380px;
}

.footer-social-glow {
  display: flex;
  gap: 12px;
}

.footer-social-glow a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social-glow a:hover {
  background: #FF3B1D;
  border-color: #FF3B1D;
  color: #FFFFFF;
  box-shadow: 0 0 16px rgba(255, 59, 29, 0.7);
  transform: translateY(-2px);
}

.footer-col-links h4,
.footer-col-contact h4 {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 22px;
  position: relative;
}

.footer-col-links h4::after,
.footer-col-contact h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 28px;
  height: 2px;
  background: #FF3B1D;
}

.footer-col-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.footer-col-links a:hover {
  color: #FF3B1D;
  padding-left: 4px;
}

.footer-info-row {
  display: flex;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
  margin-bottom: 16px;
}

.footer-info-row i {
  color: #FF3B1D;
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-info-row a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-info-row a:hover {
  color: #FF3B1D;
}

/* Bottom Bar */
.footer-bottom-bar {
  background: #020202;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 40px;
}

.footer-bottom-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-legal-links {
  display: flex;
  gap: 24px;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal-links a:hover {
  color: #FF3B1D;
}

@media (max-width: 1024px) {
  .footer-grid-premium {
    grid-template-columns: 1fr 1fr;
  }

  .ff-divider {
    display: none;
  }
}

@media (max-width: 640px) {
  .footer-grid-premium {
    grid-template-columns: 1fr;
  }

  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
  }
}

/* ---------- Timeline Responsive ---------- */
@media (max-width: 1024px) {
  .journey {
    padding: 60px 16px;
  }

  .timeline-horizontal-wrapper {
    height: auto !important;
    min-height: auto !important;
    overflow: visible !important;
  }

  .timeline-center-line {
    display: none !important;
  }

  .journey-timeline-track {
    min-width: 100% !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 28px !important;
    padding: 0 0 0 45px !important;
    position: relative !important;
    transform: none !important;
    box-sizing: border-box !important;
  }

  /* Vertical Timeline Spine Line — Positioned neatly to the left */
  .journey-timeline-track::before {
    content: '' !important;
    display: block !important;
    position: absolute !important;
    top: 20px !important;
    bottom: 20px !important;
    left: 18px !important;
    width: 3px !important;
    background: linear-gradient(180deg, #E1441C 0%, #E1441C 75%, rgba(225, 68, 28, 0.2) 100%) !important;
    box-shadow: 0 0 10px rgba(225, 68, 28, 0.7) !important;
    z-index: 1 !important;
  }

  .journey .timeline-item,
  .journey .timeline-item.timeline-above,
  .journey .timeline-item.timeline-below {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    opacity: 1 !important;
    transform: none !important;
    display: block !important;
    position: relative !important;
  }

  /* Node Dot centered on the vertical line */
  .journey .timeline-node,
  .timeline-node {
    display: flex !important;
    position: absolute !important;
    top: 28px !important;
    left: -27px !important;
    transform: translate(-50%, -50%) !important;
    z-index: 5 !important;
    width: 22px !important;
    height: 22px !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .node-tick {
    display: none !important;
  }

  .node-dot {
    width: 16px !important;
    height: 16px !important;
    background: #E1441C !important;
    border: 3px solid #030304 !important;
    border-radius: 50% !important;
    box-shadow: 0 0 14px #E1441C, 0 0 6px rgba(225, 68, 28, 0.9) !important;
  }

  .journey .timeline-card {
    width: 100% !important;
    max-width: 100% !important;
    padding: 20px 22px !important;
    margin: 0 !important;
    position: relative !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    box-sizing: border-box !important;
    background: rgba(13, 13, 13, 0.95) !important;
    border: 1px solid rgba(225, 68, 28, 0.4) !important;
    border-radius: 14px !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.7) !important;
  }

  .timeline-item.active .timeline-card,
  .timeline-item:hover .timeline-card {
    border-color: #E1441C !important;
    box-shadow: 0 0 20px rgba(225, 68, 28, 0.35), 0 10px 35px rgba(0, 0, 0, 0.8) !important;
  }

  .timeline-badge-year {
    font-size: 0.75rem !important;
    padding: 4px 12px !important;
    margin-bottom: 10px !important;
  }

  .journey .timeline-card h3 {
    font-size: 1.2rem !important;
    margin-bottom: 8px !important;
    line-height: 1.25 !important;
  }

  .journey .timeline-card p {
    font-size: 0.86rem !important;
    line-height: 1.55 !important;
    margin-bottom: 12px !important;
    color: #C5C5C5 !important;
  }

  .card-active-line {
    width: 100% !important;
    height: 2px !important;
  }

  .timeline-dots,
  #timelineDots {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .journey {
    padding: 45px 12px;
  }

  .journey-timeline-track {
    padding-left: 36px !important;
    gap: 22px !important;
  }

  .journey-timeline-track::before {
    left: 14px;
    top: 16px;
    bottom: 16px;
  }

  .timeline-node {
    left: -22px !important;
    top: 24px !important;
  }

  .node-dot {
    width: 14px !important;
    height: 14px !important;
    border-width: 2px !important;
  }

  .journey .timeline-card {
    padding: 16px 18px !important;
    border-radius: 12px !important;
  }

  .journey .timeline-card h3 {
    font-size: 1.05rem !important;
  }

  .journey .timeline-card p {
    font-size: 0.82rem !important;
  }
}

/* ---------- FAQ Accordion ---------- */
.faq {
  padding: var(--section-pad);
  background: var(--black);
}

.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-header .section-desc {
  margin: 0 auto;
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--black-card);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover,
.faq-item.active {
  border-color: rgba(249, 115, 22, .3);
}

.faq-question {
  width: 100%;
  padding: 24px;
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  font-family: var(--font-main);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--red);
  transition: transform .3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 24px;
  color: var(--gray-300);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 250px;
  padding-bottom: 24px;
}

/* ---------- Subpage Elements ---------- */
.subpage-hero {
  padding: 160px 0 80px;
  background: linear-gradient(180deg, var(--black-light) 0%, var(--black) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.subpage-hero .section-label {
  display: block !important;
  width: 100% !important;
  text-align: center !important;
  font-family: var(--font-display) !important;
  font-size: 1rem !important;
  font-weight: 400 !important;
  letter-spacing: 3px !important;
  text-transform: uppercase !important;
  color: var(--red) !important;
  margin-bottom: 10px !important;
}

.subpage-hero .section-label::before {
  display: none !important;
  content: none !important;
}

.subpage-hero .section-title {
  display: block !important;
  text-align: center !important;
  margin: 0 auto 18px !important;
  max-width: 900px !important;
  color: var(--white) !important;
  font-family: var(--font-display) !important;
  font-size: clamp(2.2rem, 5.5vw, 4rem) !important;
  line-height: 1.08 !important;
  letter-spacing: 3px !important;
}

.subpage-hero .section-desc {
  margin: 0 auto;
  max-width: 720px;
}

.grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.info-card {
  background: var(--black-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 30px;
  transition: var(--transition);
}

.info-card:hover {
  border-color: rgba(249, 115, 22, 0.3);
  transform: translateY(-5px);
}

/* ---------- Photo Slideshow ---------- */
.photo-slideshow {
  position: relative;
  min-height: 400px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.photo-slideshow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
}

.photo-slideshow img.active {
  opacity: 1;
}

/* ---------- Careers Page ---------- */
.career-hero {
  padding: 120px 0 80px;
}

.career-hero-panel {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 60px 50px;
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(18px);
}

.career-hero-panel h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4rem);
  line-height: 1.02;
  margin: 18px 0 22px;
  color: var(--white);
}

.career-hero-panel p {
  max-width: 760px;
  color: var(--gray-300);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.metric-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 24px;
  text-align: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.metric-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 10px;
}

.metric-card span {
  color: var(--gray-300);
  font-size: 0.95rem;
  line-height: 1.6;
}

.why-join {
  padding-top: 40px;
}

.why-join-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.why-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 30px 28px;
  transition: var(--transition);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.why-card:hover {
  border-color: rgba(255, 51, 0, 0.3);
  transform: translateY(-4px);
}

.why-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: rgba(255, 51, 0, 0.12);
  color: var(--red);
  font-size: 1.3rem;
  margin-bottom: 18px;
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--white);
}

.why-card p {
  color: var(--gray-300);
  line-height: 1.8;
}

.requirements {
  padding-top: 40px;
}

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.requirement-list {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 28px;
  display: grid;
  gap: 16px;
}

.requirement-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--gray-300);
  font-size: 0.98rem;
  line-height: 1.8;
}

.checkmark {
  color: var(--red);
  font-size: 1.2rem;
  line-height: 1;
  margin-top: 3px;
  flex-shrink: 0;
}

.open-positions {
  padding-top: 40px;
}

.positions-list {
  display: grid;
  gap: 18px;
  margin-top: 40px;
}

.position-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.45);
  transition: var(--transition);
}

.position-card:hover {
  border-color: rgba(255, 51, 0, 0.25);
}

.position-card summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 28px;
  cursor: pointer;
  list-style: none;
}

.position-card summary::-webkit-details-marker {
  display: none;
}

.position-summary {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.position-summary h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 8px;
}

.position-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.position-tags span {
  background: rgba(255, 255, 255, 0.04);
  color: var(--gray-100);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.position-card .btn-small {
  padding: 10px 18px;
  font-size: 0.78rem;
}

.position-details {
  padding: 0 28px 24px;
  color: var(--gray-300);
  font-size: 0.95rem;
  line-height: 1.7;
}

.quick-apply {
  padding-top: 40px;
}

.application-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
}

.application-panel {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  padding: 40px;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

.application-panel h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin-bottom: 24px;
  color: var(--white);
}

.career-form {
  display: grid;
  gap: 18px;
}

.career-form label {
  display: block;
  color: var(--gray-100);
  font-size: 0.9rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.career-form input,
.career-form select {
  width: 100%;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
  color: var(--white);
  font-size: 0.95rem;
  outline: none;
  transition: border-color .25s ease, box-shadow .25s ease;
}

.career-form input:focus,
.career-form select:focus {
  border-color: rgba(255, 51, 0, 0.6);
  box-shadow: 0 0 0 4px rgba(255, 51, 0, 0.12);
}

.career-form input[type="file"] {
  padding: 14px 18px;
}

.submit-btn {
  margin-top: 10px;
  width: fit-content;
}

@media (max-width: 980px) {
  .career-hero-panel {
    padding: 50px 32px;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .why-join-grid,
  .requirements-grid {
    grid-template-columns: 1fr;
  }

  .position-summary {
    flex-direction: column;
    align-items: flex-start;
  }

  .position-card summary {
    padding: 24px;
  }
}

@media (max-width: 720px) {
  .career-hero {
    padding: 80px 0 50px;
  }

  .career-hero-panel {
    border-radius: 20px;
    padding: 34px 22px;
  }

  .career-hero-panel h1 {
    font-size: 2.4rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .metric-card {
    padding: 20px;
  }

  .application-panel {
    padding: 28px;
  }
}

/* ---------- Industries Page ---------- */
.industry-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 350px;
  cursor: pointer;
  transition: var(--transition);
}

.industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
  transition: var(--transition);
}

.industry-card:hover img {
  filter: brightness(0.2) scale(1.05);
}

.industry-content {
  position: absolute;
  inset: 0;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, transparent 60%);
  z-index: 2;
}

.industry-icon {
  font-size: 2.2rem;
  margin-bottom: 15px;
  transition: var(--transition);
}

.industry-card:hover .industry-icon {
  transform: scale(1.1);
}

.industry-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.industry-card p {
  color: var(--gray-300);
  font-size: 0.88rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}

.industry-card:hover p {
  max-height: 100px;
  opacity: 1;
  margin-top: 6px;
}

/* ---------- Training Page ---------- */
.training-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: flex-start;
  margin-bottom: 60px;
}

.training-image img {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.training-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.training-step {
  background: var(--black-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px;
  border-radius: var(--radius);
  display: flex;
  gap: 20px;
  transition: var(--transition);
}

.training-step:hover {
  border-color: rgba(249, 115, 22, 0.25);
  transform: translateX(4px);
}

.step-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--red);
  line-height: 1;
}

.step-info h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.step-info p {
  color: var(--gray-300);
  font-size: 0.92rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-grid-centered {
    display: flex !important;
    flex-direction: column !important;
  }

  .about-image img {
    height: 350px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .grid-3col {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .gallery-rotator-layout {
    grid-template-columns: 1fr;
  }

  .gallery-rotator-box {
    min-height: 420px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-slider {
    grid-template-columns: 1fr;
  }

  .grid-2col,
  .grid-3col,
  .training-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .training-image img {
    height: 300px;
  }

  .job-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

/* ========== About Us Page Enhanced Styles ========== */

/* Overview Section Adjustments */
.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: stretch;
  margin-top: 40px;
}

.overview-card {
  background: var(--black-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 45px 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.overview-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  opacity: 0;
  transition: var(--transition);
}

.overview-card:hover {
  transform: translateY(-8px);
  border-color: rgba(249, 115, 22, 0.25);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.overview-card:hover::before {
  opacity: 1;
}

.overview-card h3 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.overview-card p {
  color: var(--gray-300);
  font-size: 0.98rem;
  line-height: 1.8;
}

/* CEO Message / Team Section */
.leadership-section {
  padding: var(--section-pad);
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.ceo-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: center;
}

.ceo-img-container {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ceo-img-container img {
  width: 100%;
  height: auto;
  min-height: 420px;
  object-fit: cover;
  transition: var(--transition);
}

.ceo-img-container:hover img {
  transform: scale(1.03);
}

.ceo-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--red);
  padding: 8px 16px;
  border-radius: 4px;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 1.5px;
  color: var(--white);
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
}

.ceo-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ceo-quote-block {
  font-size: 1.18rem;
  line-height: 1.7;
  color: var(--white);
  font-style: italic;
  padding: 20px 24px;
  border-left: 4px solid var(--red);
  background: linear-gradient(90deg, rgba(249, 115, 22, 0.06) 0%, transparent 100%);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.ceo-message-text p {
  color: var(--gray-300);
  font-size: 0.98rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.ceo-message-text p:last-child {
  margin-bottom: 0;
}

.ceo-signature-block {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
}

.ceo-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 1.5px;
  color: var(--red);
  margin-bottom: 2px;
}

.ceo-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--gray-500);
  letter-spacing: 2px;
  font-weight: 600;
}

/* Our Commitments Section */
.commitment-section {
  padding: var(--section-pad);
  background: var(--black-light);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.commitment-card {
  background: var(--black-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 40px 25px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.commitment-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: var(--transition);
}

.commitment-card:hover {
  transform: translateY(-8px);
  border-color: rgba(249, 115, 22, 0.25);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.commitment-card:hover::after {
  transform: scaleX(1);
}

.commitment-icon-box {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin: 0 auto 24px;
  transition: var(--transition);
}

.commitment-card:hover .commitment-icon-box {
  background: var(--red);
  transform: scale(1.08);
  box-shadow: 0 0 18px var(--red-glow);
}

.commitment-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 1.5px;
  color: var(--white);
  margin-bottom: 14px;
}

.commitment-card p {
  color: var(--gray-300);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Locations Network Section */
.locations-section {
  padding: var(--section-pad);
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 45px;
}

.location-card {
  background: var(--black-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 40px 35px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.location-card:hover {
  transform: translateY(-8px);
  border-color: rgba(249, 115, 22, 0.25);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
}

.location-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.3);
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 50px;
  text-transform: uppercase;
}

.location-city {
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--white);
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.location-ops-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.location-ops-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--gray-300);
}

.location-ops-item span.loc-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  display: inline-block;
  box-shadow: 0 0 6px var(--red);
}

/* Responsive Overrides */
@media (max-width: 1024px) {
  .commitment-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ceo-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ceo-img-container {
    max-width: 450px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .overview-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .commitment-grid {
    grid-template-columns: 1fr;
  }

  .locations-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== Navbar Dropdown Styling ========== */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-dropdown-menu {
  display: block;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  background: var(--black-card);
  border: 1px solid rgba(249, 115, 22, 0.25);
  border-radius: var(--radius);
  min-width: 220px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  z-index: 1000;
  padding: 10px 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 8px;
  border-style: solid;
  border-color: transparent transparent var(--black-card) transparent;
}

.nav-dropdown-menu a {
  display: block !important;
  color: var(--gray-300) !important;
  padding: 12px 24px !important;
  font-size: 0.85rem !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03) !important;
  font-weight: 500 !important;
}

.nav-dropdown-menu a::after {
  display: none !important;
}

.nav-dropdown-menu a:last-child {
  border-bottom: none !important;
}

.nav-dropdown-menu a:hover {
  color: var(--white) !important;
  background: rgba(249, 115, 22, 0.1) !important;
  padding-left: 30px !important;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}



/* --- PREMIUM HERO DESIGN --- */
.hero-container {
  font-family: var(--font-main);
  color: #cfd6dc;
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(rgba(18, 22, 25, 0.75), rgba(18, 22, 25, 0.85)),
    url('mainherobanner.png') center/cover no-repeat;
  padding: 24px 40px 40px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Override global body defaults in this container */
.hero-container * {
  box-sizing: border-box;
}

/* --- TOP NAVBAR --- */
.hero-container .navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  letter-spacing: 1px;
  padding: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
  position: relative;
  top: 0;
  width: 100%;
}

.hero-container .brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-container .orange-dot {
  width: 8px;
  height: 8px;
  background-color: #e59d28;
  border-radius: 50%;
}

.hero-container .brand-title {
  font-weight: bold;
  color: #ffffff;
  font-size: 20px;
  letter-spacing: 1.5px;
}

.hero-container .brand-sub {
  font-size: 9px;
  color: #8a939b;
  margin-top: 2px;
}

.hero-container .nav-links {
  display: flex;
  gap: 25px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-direction: row;
}

.hero-container .nav-links a {
  color: #a0aab2;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 13px;
  text-transform: uppercase;
}

.hero-container .nav-links a:hover,
.hero-container .nav-links a.active {
  color: #ffffff;
  border: none;
}

.hero-container .nav-links a:after {
  display: none;
}

.hero-container .nav-num {
  font-size: 10px;
  color: #6a737d;
  margin-right: 4px;
}

.hero-container .btn-request-top {
  border: 1px solid #5a636a;
  background: rgba(0, 0, 0, 0.2);
  color: #ffffff;
  padding: 8px 16px;
  font-family: inherit;
  font-size: 11px;
  letter-spacing: 1.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-container .btn-request-top::before {
  content: '';
  width: 6px;
  height: 6px;
  background-color: #28a745;
  border-radius: 50%;
}

/* --- SUB-HEADER INFO BAR --- */
.hero-container .info-bar {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #7a838b;
  letter-spacing: 1px;
  margin-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 15px;
}

/* --- MAIN HERO CONTENT GRID --- */
.hero-container .hero-content {
  margin-top: auto;
  padding-top: 40px;
}

.hero-container .tagline {
  font-size: 12px;
  color: #8a939b;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.hero-container .square-ic {
  width: 6px;
  height: 6px;
  background-color: #e59d28;
}

/* Bottom section layout */
.hero-container .hero-body {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
}

/* --- TYPOGRAPHY --- */
.hero-container .typography-group {
  line-height: 0.82;
  text-transform: uppercase;
}

.hero-container .big-bold-text {
  font-family: var(--font-main);
  font-size: 110px;
  color: #ffffff;
  letter-spacing: 1px;
  display: block;
}

.hero-container .middle-line {
  display: flex;
  align-items: baseline;
}

.hero-container .script-text {
  font-family: var(--font-main);
  font-style: italic;
  font-size: 65px;
  color: #cfd6dc;
  text-transform: lowercase;
  margin-right: 15px;
  font-weight: 400;
}

.hero-container .yellow-square {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: #e59d28;
  margin-left: 8px;
}

/* --- LOWER RIGHT DETAILS & BUTTONS --- */
.hero-container .hero-details {
  max-width: 480px;
  margin-bottom: 10px;
}

.hero-container .hero-description {
  font-family: var(--font-main);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.6;
  color: #a0aab2;
  margin-bottom: 25px;
}

.hero-container .action-group {
  display: flex;
  align-items: center;
  gap: 25px;
}

.hero-container .btn-request-bottom {
  border: 1px solid #4a525a;
  background: rgba(0, 0, 0, 0.4);
  color: #ffffff;
  padding: 12px 20px;
  font-family: var(--font-main);
  font-size: 11px;
  letter-spacing: 2px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
}

.hero-container .btn-request-bottom:hover {
  border-color: #e59d28;
  background: rgba(229, 157, 40, 0.1);
}

.hero-container .btn-request-bottom .dot {
  width: 6px;
  height: 6px;
  background-color: #e59d28;
  border-radius: 50%;
}

.hero-container .link-capabilities {
  color: #a0aab2;
  font-family: var(--font-main);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-decoration: none;
  transition: color 0.3s;
}

.hero-container .link-capabilities:hover {
  color: #ffffff;
}

@media (max-width: 900px) {
  .hero-container .big-bold-text {
    font-size: 70px;
  }

  .hero-container .script-text {
    font-size: 45px;
  }

  .hero-container .hero-body {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-container .nav-links {
    display: none;
  }
}

/* ============================================================
   PREMIUM EXECUTIVE "ABOUT US" REDESIGN SYSTEM (.about-pro-*)
   ============================================================ */

/* --- Main Section Styling --- */
.about-pro-section {
  padding: 100px 0;
  position: relative;
  background: radial-gradient(circle at 10% 20%, rgba(249, 115, 22, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(212, 162, 78, 0.05) 0%, transparent 45%);
}

.about-pro-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 50px;
  align-items: center;
}

/* --- Visual Frame Column (Left) --- */
.about-pro-visual {
  position: relative;
}

.about-pro-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  background: #0f141d;
}

.about-pro-image-wrapper img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.about-pro-image-wrapper:hover img {
  transform: scale(1.04);
}

.about-pro-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 9, 15, 0.1) 0%, rgba(8, 9, 15, 0.75) 100%);
  pointer-events: none;
}

/* Floating Glassmorphism Badges */
.about-pro-badge-floating {
  position: absolute;
  background: rgba(15, 20, 29, 0.85);
  border: 1px solid rgba(249, 115, 22, 0.35);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 16px 22px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 5;
  transition: all 0.35s ease;
}

.about-pro-badge-floating:hover {
  transform: translateY(-4px);
  border-color: rgba(249, 115, 22, 0.7);
  box-shadow: 0 25px 50px rgba(249, 115, 22, 0.25);
}

.about-pro-badge-top {
  top: -24px;
  right: -20px;
}

.about-pro-badge-bottom {
  bottom: 24px;
  left: -24px;
}

.about-pro-badge-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.3), rgba(249, 115, 22, 0.08));
  border: 1px solid rgba(249, 115, 22, 0.5);
  color: #ff3b30;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.about-pro-badge-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  line-height: 1;
  color: #ffffff;
  letter-spacing: 1px;
}

.about-pro-badge-text {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #a0aab2;
  margin-top: 2px;
}

/* --- Content Column (Right) --- */
.about-pro-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-pro-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  border-radius: 50px;
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.3);
  color: #F97316;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  width: fit-content;
}

.about-pro-kicker i {
  font-size: 0.7rem;
}

.about-pro-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: 2px;
  color: #ffffff;
  margin: 0;
}

.about-pro-title span {
  background: linear-gradient(90deg, #ffffff 30%, #d4a24e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about-pro-lead {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* Core Security Pillars Grid */
.about-pro-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 10px;
}

.about-pillar-card {
  background: rgba(15, 20, 29, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 20px 18px;
  transition: all 0.35s ease;
  backdrop-filter: blur(10px);
}

.about-pillar-card:hover {
  border-color: rgba(249, 115, 22, 0.4);
  background: rgba(15, 20, 29, 0.9);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.about-pillar-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.about-pillar-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(249, 115, 22, 0.12);
  color: #F97316;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.about-pillar-title {
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.about-pillar-desc {
  font-size: 0.84rem;
  line-height: 1.5;
  color: #a0aab2;
  margin: 0;
}

/* Action Group */
.about-pro-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 10px;
  flex-wrap: wrap;
}

/* Trust Stats Banner */
.about-pro-stats-banner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.about-pro-stat-item {
  text-align: center;
  padding: 20px 14px;
  background: rgba(15, 20, 29, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.about-pro-stat-item:hover {
  border-color: rgba(212, 162, 78, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.about-pro-stat-val {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: #d4a24e;
  line-height: 1;
  margin-bottom: 6px;
}

.about-pro-stat-lbl {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #a0aab2;
  font-weight: 600;
}

/* --- Subpage About Enhancements (about.html) --- */
.about-hero-subpage {
  padding: 150px 0 70px;
  text-align: center;
  position: relative;
  background: linear-gradient(180deg, rgba(8, 9, 15, 0.95) 0%, rgba(15, 20, 29, 0.9) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ceo-pro-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
  align-items: center;
}

.ceo-image-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid rgba(212, 162, 78, 0.35);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
}

.ceo-image-card img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}

.ceo-badge-floating {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(8, 9, 15, 0.88);
  border: 1px solid rgba(212, 162, 78, 0.4);
  backdrop-filter: blur(12px);
  padding: 14px 20px;
  border-radius: 14px;
  text-align: center;
}

.ceo-badge-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: #ffffff;
  letter-spacing: 1px;
}

.ceo-badge-role {
  font-size: 0.78rem;
  color: #d4a24e;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}

.ceo-quote-box {
  background: rgba(15, 20, 29, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 4px solid #F97316;
  border-radius: 20px;
  padding: 40px 36px;
  backdrop-filter: blur(12px);
}

.ceo-quote-icon {
  font-size: 2.2rem;
  color: rgba(249, 115, 22, 0.5);
  margin-bottom: 16px;
}

.ceo-quote-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #ffffff;
  font-style: italic;
  margin-bottom: 24px;
}

.ceo-desc-text {
  font-size: 0.96rem;
  line-height: 1.8;
  color: #a0aab2;
}

.about-pro-badge-top {
  top: 16px;
  right: 16px;
}

.about-pro-badge-bottom {
  bottom: 16px;
  left: 16px;
}

.about-pro-stats-banner {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 640px) {
  .about-pro-pillars {
    grid-template-columns: 1fr;
  }

  .about-pro-stats-banner {
    grid-template-columns: 1fr;
  }

  .about-pro-badge-floating {
    padding: 12px 16px;
  }

  .about-pro-badge-number {
    font-size: 1.4rem;
  }

  .about-pro-image-wrapper img {
    height: 380px;
  }
}


/* ============================
   Space Divider
   ============================ */
.space-divider {
  position: relative;
  height: 20px;
  display: flex;
  align-items: center;
  width: 100%;
  margin: 1.5rem auto;
}

.space-divider .divider-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e8792c 20%, #e8792c 80%, transparent);
}

.space-divider .glow-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f0a34f;
  box-shadow: 0 0 14px 4px rgba(249, 115, 22, 0.9);
}

/* ============================
   CTA Banner Section
   ============================ */
.cta-banner {
  position: relative;
  padding: 85px 0;
  background: #08090f;
  overflow: hidden;
  text-align: center;
}

.cta-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 121, 44, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-badge {
  display: inline-block;
  padding: 10px 24px;
  background: rgba(225, 68, 28, 0.08);
  border: 1px solid rgba(225, 68, 28, 0.15);
  color: #E1441C;
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 28px;
}

.cta-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
  line-height: 1.22;
  max-width: 780px;
}

.cta-desc {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 620px;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-btn-modern {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 44px;
  background: #E1441C;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(184, 51, 15, 0.3);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  cursor: pointer;
}

.cta-btn-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(184, 51, 15, 0.5);
  background: #B8330F;
}

.cta-btn-modern:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .cta-banner {
    padding: 60px 0;
  }
}

/* ============================================================
   NEW ABOUT US PAGE REDESIGN SYSTEM (.ab-*)
   ============================================================ */

/* Hero Header */
.ab-hero {
  position: relative;
  padding: 140px 0 80px;
  background: radial-gradient(circle at 50% 20%, rgba(249, 115, 22, 0.08) 0%, transparent 60%), #08090f;
  text-align: center;
  overflow: hidden;
}

.ab-hero-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(232, 121, 44, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.ab-hero-subtitle {
  color: #e8792c;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.ab-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -0.01em;
  max-width: 900px;
  margin: 0 auto 24px;
}

.ab-title span {
  color: #e8792c;
}

.ab-lead {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  max-width: 760px;
  margin: 0 auto 50px;
}

/* Metric Counter Grid */
.ab-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.ab-stat-card {
  background: rgba(15, 20, 29, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 28px 20px;
  text-align: center;
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

.ab-stat-card:hover {
  border-color: rgba(249, 115, 22, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.4);
}

.ab-stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: #F97316;
  line-height: 1;
  margin-bottom: 8px;
}

.ab-stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Story & Pillars Section */
.ab-section {
  padding: 90px 0;
  position: relative;
}

.ab-section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.ab-section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.ab-section-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

.ab-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.ab-grid-3 {
  display: grid;
  grid-template-columns: 1fr 1.05fr 1fr;
  gap: 28px;
  align-items: center;
}

@media (max-width: 992px) {
  .ab-grid-3 {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.ab-feature-card {
  background: rgba(15, 20, 29, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 36px;
  margin-bottom: 24px;
  backdrop-filter: blur(12px);
  transition: all 0.35s ease;
  text-align: center;
}

.ab-feature-card:last-child {
  margin-bottom: 0;
}

.ab-feature-card:hover {
  border-color: rgba(249, 115, 22, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
}

.ab-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.25);
  color: #F97316;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.ab-feature-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.ab-feature-card p {
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.ab-image-box {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
}

.ab-image-box img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.ab-image-caption {
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #e8792c;
  margin-top: 18px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.ab-highlights-row {
  margin-top: 65px;
  padding: 0 15px;
}

.ab-hr-header {
  text-align: center;
  margin-bottom: 45px;
}

.ab-hr-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.ab-hr-desc {
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.65;
}

.ab-hr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.ab-hr-col {
  padding: 0 40px;
  text-align: center;
  position: relative;
}

/* Vertical dividers between columns */
.ab-hr-col:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(249, 115, 22, 0.3), transparent);
}

.ab-hr-indicator {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.ab-hr-dot {
  width: 10px;
  height: 10px;
  background-color: #F97316;
  border-radius: 50%;
  box-shadow: 0 0 12px #F97316, 0 0 24px #F97316;
}

.ab-hr-col strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  color: #ffffff;
  margin-bottom: 10px;
  font-weight: 700;
}

.ab-hr-col p {
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 991px) {
  .ab-hr-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ab-hr-col {
    padding: 0 15px;
  }

  .ab-hr-col:not(:last-child)::after {
    display: none;
  }
}

/* ============================================================
   VISION, MISSION & VALUES — Premium Numbered Layout
   ============================================================ */
.vmv-two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}

.vmv-block {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 40px 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.35s ease;
}

.vmv-block:hover {
  background: rgba(249, 115, 22, 0.03);
}

.vmv-block-number {
  font-family: 'Poppins', sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: rgba(249, 115, 22, 0.2);
  line-height: 1;
  flex-shrink: 0;
  min-width: 64px;
  letter-spacing: -2px;
}

.vmv-block-content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 14px;
  letter-spacing: 0.3px;
}

.vmv-block-content p {
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  margin: 0;
}

/* Values Strip */
.vmv-values-strip {
  padding: 45px 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.vmv-values-label {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 35px;
}

.vmv-values-num {
  font-family: 'Poppins', sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: rgba(249, 115, 22, 0.2);
  line-height: 1;
  letter-spacing: -2px;
}

.vmv-values-label h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
}

.vmv-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.vmv-value-item {
  padding: 0 30px;
  position: relative;
}

.vmv-val-line {
  width: 32px;
  height: 2px;
  background: #F97316;
  margin-bottom: 18px;
  border-radius: 2px;
}

.vmv-value-item strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.vmv-value-item p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin: 0;
}

/* Vertical dividers between value items */
.vmv-value-item:not(:first-child)::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 1px;
  background: rgba(255, 255, 255, 0.06);
}

@media (max-width: 992px) {
  .vmv-two-col {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .vmv-values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .vmv-value-item:not(:first-child)::before {
    display: none;
  }
}

@media (max-width: 576px) {
  .vmv-values-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* Leadership Highlight */
.ab-ceo-card {
  background: linear-gradient(135deg, rgba(15, 20, 29, 0.8) 0%, rgba(20, 10, 10, 0.9) 100%);
  border: 1px solid rgba(232, 121, 44, 0.25);
  border-radius: 28px;
  padding: 50px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 45px;
  align-items: center;
  backdrop-filter: blur(16px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6);
}

.ab-ceo-avatar {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(249, 115, 22, 0.4);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5);
}

.ab-ceo-avatar img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.ab-ceo-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ab-quote-mark {
  font-size: 2.4rem;
  color: #F97316;
  line-height: 1;
}

.ab-ceo-quote {
  font-size: 1.18rem;
  font-style: italic;
  color: #ffffff;
  line-height: 1.7;
}

.ab-ceo-text {
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.ab-ceo-meta {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 18px;
  margin-top: 6px;
}

.ab-ceo-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffffff;
}

.ab-ceo-role {
  font-size: 0.85rem;
  color: #F97316;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Locations Grid */
/* Unified Horizontal Card System (.ab-loc-card, .ab-why-card, .ab-feature-card) */
.ab-card-header,
.ab-loc-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.ab-card-header h3,
.ab-loc-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
}

.ab-loc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ab-loc-card,
.ab-why-card,
.ab-feature-card {
  background: #08090b;
  background: linear-gradient(145deg, #0d0e12 0%, #050507 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 30px 26px;
  backdrop-filter: blur(14px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.ab-loc-card:hover,
.ab-why-card:hover,
.ab-feature-card:hover {
  border-color: rgba(249, 115, 22, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.8);
  background: linear-gradient(145deg, #14151a 0%, #07080a 100%);
}

.ab-loc-ic,
.ab-why-icon,
.ab-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(249, 115, 22, 0.16);
  border: 1px solid rgba(249, 115, 22, 0.25);
  color: #F97316;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  margin: 0;
}

.ab-loc-card p,
.ab-why-card p,
.ab-feature-card p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
  margin: 0;
  font-weight: 300;
}

@media (max-width: 992px) {
  .ab-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ab-grid-2 {
    grid-template-columns: 1fr;
  }

  .ab-ceo-card {
    grid-template-columns: 1fr;
    padding: 32px;
  }

  .ab-ceo-avatar img {
    height: 280px;
  }

  .ab-loc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .ab-hero {
    padding: 110px 0 60px;
  }

  .ab-stats-grid {
    grid-template-columns: 1fr;
  }

  .ab-loc-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   EXACT CEO LEADERSHIP SECTION STYLING (.ceo-exact-*)
   ============================================================ */
.ceo-exact-section {
  padding: 90px 0;
  background: #080706;
}

.ceo-exact-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 60px;
  align-items: stretch;
}

.ceo-exact-image-col {
  position: relative;
  display: flex;
}

.ceo-exact-image-col img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  max-height: 640px;
  object-fit: cover;
  object-position: top center;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
  display: block;
}

.ceo-exact-text-col {
  display: flex;
  flex-direction: column;
}

.ceo-exact-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.8rem, 4.5vw, 3.8rem);
  font-weight: 400;
  color: #e57224;
  line-height: 1.1;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.ceo-exact-subtitle {
  font-family: 'Poppins', sans-serif;
  font-style: italic;
  font-size: 1.2rem;
  color: #8c837b;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ceo-exact-subtitle span {
  color: #F97316;
  font-style: normal;
  font-weight: bold;
}

.ceo-exact-para {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  margin-bottom: 28px;
  font-weight: 300;
}

.ceo-exact-quote-box {
  background: rgba(23, 11, 7, 0.85);
  border-left: 3px solid #F97316;
  border-radius: 6px;
  padding: 24px 30px;
  margin-bottom: 28px;
  border-top: 1px solid rgba(249, 115, 22, 0.1);
  border-right: 1px solid rgba(249, 115, 22, 0.1);
  border-bottom: 1px solid rgba(249, 115, 22, 0.1);
}

.ceo-exact-quote-box p {
  font-family: 'Poppins', sans-serif;
  font-style: italic;
  font-size: 1.12rem;
  color: #e6dfd9;
  line-height: 1.7;
  margin: 0;
}

.ceo-exact-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  margin-top: 10px;
}

.ceo-exact-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}

.ceo-exact-role {
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #e57224;
  text-transform: uppercase;
  margin: 0;
}

@media (max-width: 992px) {
  .ceo-exact-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .ceo-exact-image-col img {
    height: 400px;
  }
}

/* ============================================================
   VISION, MISSION, VALUES & COMMITMENT STYLES (.ab-vmv-*, .ab-commitment-*)
   ============================================================ */

/* ==========================================
   OUR COMMITMENT — Premium Step Row Design
   ========================================== */
.ab-commitment-wrapper {
  margin-top: 60px;
}

.ab-commitment-header {
  text-align: center;
  margin-bottom: 40px;
}

.ab-commitment-header h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.65rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  letter-spacing: 0.5px;
}

.ab-commitment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

/* Connecting line between cards */
.ab-commitment-grid::before {
  content: '';
  position: absolute;
  top: 42px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 121, 44, 0.4), rgba(232, 121, 44, 0.4), transparent);
  z-index: 0;
}

.ab-commitment-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px 30px;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.ab-commitment-card:hover {
  transform: translateY(-5px);
}

.ab-commitment-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(232, 121, 44, 0.12);
  border: 2px solid rgba(232, 121, 44, 0.5);
  color: #e8792c;
  font-family: 'Poppins', sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(232, 121, 44, 0.12);
}

.ab-commitment-card:hover .ab-commitment-num {
  background: rgba(232, 121, 44, 0.25);
  border-color: #e8792c;
  box-shadow: 0 0 28px rgba(232, 121, 44, 0.3);
}

.ab-commitment-card h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.3;
}

.ab-commitment-card p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.6;
  margin: 0;
  font-weight: 300;
}

@media (max-width: 992px) {
  .ab-commitment-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .ab-commitment-grid::before {
    display: none;
  }
}

@media (max-width: 576px) {
  .ab-commitment-grid {
    grid-template-columns: 1fr;
  }
}

/* Vision, Mission & Values Section */
.ab-vmv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.ab-vmv-card {
  background: linear-gradient(145deg, rgba(15, 20, 29, 0.75) 0%, rgba(20, 25, 36, 0.6) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 40px 32px;
  backdrop-filter: blur(14px);
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.ab-vmv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #e8792c, transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.ab-vmv-card:hover {
  border-color: rgba(232, 121, 44, 0.35);
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
}

.ab-vmv-card:hover::before {
  opacity: 1;
}

.ab-vmv-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: rgba(232, 121, 44, 0.12);
  border: 1px solid rgba(232, 121, 44, 0.25);
  color: #e8792c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.ab-vmv-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.ab-vmv-card p {
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 20px;
}

.ab-vmv-values-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  align-self: center;
  max-width: 100%;
}

.ab-vmv-values-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.ab-vmv-values-list li i {
  color: #e8792c;
  font-size: 0.85rem;
  margin-top: 4px;
}

.ab-vmv-values-list li strong {
  color: #ffffff;
}

@media (max-width: 992px) {
  .ab-vmv-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   WHY LEOPARD / WHY CHOOSE US DESIGN SYSTEM & COLOR PALETTE
   ============================================================ */

/* Red accent sub-badge & typography */
.ab-sub-badge-red {
  display: inline-block;
  color: #ff1e27;
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.ab-title-bold-white {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 1px;
  line-height: 1.1;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.ab-desc-light-grey {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  max-width: 840px;
  margin: 0 auto;
  font-weight: 300;
}

/* Star dust particle background container */
.ab-why-choose-section {
  position: relative;
  padding: 100px 0;
  background: #06070a;
  background-image:
    radial-gradient(1.5px 1.5px at 10% 15%, rgba(255, 255, 255, 0.4), transparent),
    radial-gradient(1.5px 1.5px at 25% 65%, rgba(255, 255, 255, 0.5), transparent),
    radial-gradient(1.5px 1.5px at 40% 30%, rgba(255, 255, 255, 0.3), transparent),
    radial-gradient(2px 2px at 60% 80%, rgba(255, 255, 255, 0.6), transparent),
    radial-gradient(1.5px 1.5px at 75% 20%, rgba(255, 255, 255, 0.4), transparent),
    radial-gradient(2px 2px at 90% 50%, rgba(255, 255, 255, 0.5), transparent),
    radial-gradient(1px 1px at 50% 90%, rgba(255, 255, 255, 0.3), transparent),
    radial-gradient(circle at 50% 50%, rgba(255, 30, 39, 0.05) 0%, transparent 65%);
  overflow: hidden;
  text-align: center;
}

.ab-why-choose-header {
  max-width: 880px;
  margin: 0 auto 60px;
}

.ab-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: left;
}

.ab-why-card {
  background: rgba(13, 15, 22, 0.8);
  border: 1px solid rgba(255, 30, 39, 0.2);
  border-radius: 20px;
  padding: 36px 30px;
  backdrop-filter: blur(14px);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.ab-why-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ff1e27, transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.ab-why-card:hover {
  border-color: rgba(255, 30, 39, 0.5);
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(255, 30, 39, 0.15);
}

.ab-why-card:hover::after {
  opacity: 1;
}

.ab-why-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 30, 39, 0.12);
  border: 1px solid rgba(255, 30, 39, 0.3);
  color: #ff1e27;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.ab-why-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}

.ab-why-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 992px) {
  .ab-why-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   HUMANIZED DESIGN SYSTEM FOR VISION/MISSION/VALUES & LOCATIONS
   ============================================================ */

/* ---------- Vision, Mission & Core Values Grid ---------- */
.human-vmv-section {
  position: relative;
  padding: 90px 0;
}

.human-vmv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  align-items: stretch;
  max-width: 1050px;
  margin: 0 auto;
}

.human-vmv-card {
  background: #08090c;
  background: linear-gradient(165deg, #0d0e12 0%, #050507 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 22px 20px;
  min-height: auto;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.human-vmv-card:hover {
  transform: translateY(-4px);
  border-color: rgba(249, 115, 22, 0.45);
  box-shadow: 0 14px 30px rgba(249, 115, 22, 0.14), 0 6px 16px rgba(0, 0, 0, 0.8);
  background: linear-gradient(165deg, #14151a 0%, #08090b 100%);
}

.human-vmv-card.highlight-card {
  border-color: rgba(249, 115, 22, 0.3);
}

.human-vmv-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.human-vmv-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.22), rgba(249, 115, 22, 0.06));
  border: 1px solid rgba(249, 115, 22, 0.35);
  color: #F97316;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.15);
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.human-vmv-card:hover .human-vmv-icon {
  transform: scale(1.06) rotate(3deg);
  background: linear-gradient(135deg, #F97316, #b3000f);
  color: #ffffff;
  border-color: #F97316;
  box-shadow: 0 6px 16px rgba(249, 115, 22, 0.35);
}

.human-vmv-badge {
  font-family: var(--font-main);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3px 8px;
  border-radius: 50px;
}

.human-vmv-title {
  font-family: var(--font-main);
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
  letter-spacing: 0.2px;
}

.human-vmv-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
  margin: 0;
  font-weight: 300;
}

.human-values-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.human-values-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.45;
}

.human-values-list li strong {
  color: #ffffff;
  font-weight: 700;
}

.val-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.15);
  border: 1px solid rgba(249, 115, 22, 0.4);
  color: #F97316;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.human-card-footer-glow {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #F97316, transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.human-vmv-card:hover .human-card-footer-glow {
  opacity: 1;
}

@media (max-width: 992px) {
  .human-vmv-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .human-vmv-card {
    padding: 18px 16px;
  }

  .human-vmv-title {
    font-size: 1.05rem;
    margin-bottom: 8px;
  }

  .human-values-list li {
    font-size: 0.82rem;
  }
}

/* ---------- Humanized Operational Locations Grid ---------- */
.human-locations-section {
  padding: 70px 0;
}

.human-loc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.human-loc-card {
  background: #08090c;
  background: linear-gradient(145deg, #0d0e12 0%, #050507 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 20px 20px;
  backdrop-filter: blur(14px);
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
}

.human-loc-card:hover {
  transform: translateY(-4px);
  border-color: rgba(249, 115, 22, 0.45);
  box-shadow: 0 16px 36px rgba(249, 115, 22, 0.14), 0 6px 16px rgba(0, 0, 0, 0.8);
  background: linear-gradient(145deg, #14151a 0%, #07080a 100%);
}

.human-loc-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.human-loc-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.18), rgba(249, 115, 22, 0.05));
  border: 1px solid rgba(249, 115, 22, 0.3);
  color: #F97316;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.human-loc-card:hover .human-loc-icon {
  background: #F97316;
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(249, 115, 22, 0.4);
  transform: scale(1.05);
}

.human-loc-title-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.human-loc-title-group h4 {
  font-family: var(--font-main);
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.25;
}

.human-loc-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pulse-dot-green {
  width: 7px;
  height: 7px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10b981;
}

.pulse-dot-red {
  width: 7px;
  height: 7px;
  background: #F97316;
  border-radius: 50%;
  box-shadow: 0 0 8px #F97316;
}

.human-loc-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.55;
  margin: 0;
  font-weight: 300;
}

@media (max-width: 992px) {
  .human-loc-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .human-loc-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   SERVICES PAGE — PREMIUM DESIGN SYSTEM
   ========================================================================== */

/* ---------- Services Subpage Hero ---------- */
.srv-hero-section {
  position: relative;
  padding: clamp(7rem, 10vw, 10rem) 0 clamp(4rem, 6vw, 6rem);
  background: radial-gradient(circle at top center, rgba(249, 115, 22, 0.15), transparent 60%),
    linear-gradient(180deg, #06070c 0%, #0a0c14 100%);
  text-align: center;
  overflow: hidden;
}

.srv-hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(1.5px 1.5px at 40px 60px, rgba(255, 255, 255, 0.8), transparent),
    radial-gradient(1.5px 1.5px at 120px 150px, rgba(255, 255, 255, 0.5), transparent);
  background-size: 200px 200px;
  opacity: 0.6;
  pointer-events: none;
}

.srv-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.srv-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.35);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #F97316;
  margin-bottom: 20px;
}

.srv-badge-dot {
  width: 8px;
  height: 8px;
  background: #F97316;
  border-radius: 50%;
  box-shadow: 0 0 10px #F97316;
}

.srv-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.2rem);
  line-height: 1;
  letter-spacing: 2px;
  color: #ffffff;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.srv-hero-title span {
  color: #F97316;
  text-shadow: 0 0 20px rgba(249, 115, 22, 0.4);
}

.srv-hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 760px;
  margin: 0 auto 30px;
  line-height: 1.8;
  font-weight: 300;
}

/* ---------- Sticky Sub-Navigation Filter Bar ---------- */
.srv-subnav {
  position: sticky;
  top: 72px;
  z-index: 99;
  background: rgba(8, 9, 15, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 0;
  transition: all 0.3s ease;
}

.srv-subnav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0 10px;
}

.srv-subnav-inner::-webkit-scrollbar {
  display: none;
}

.srv-subnav-link {
  flex: 0 0 auto;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.25s ease;
  white-space: nowrap;
}

.srv-subnav-link:hover,
.srv-subnav-link.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}

/* ---------- Main Services Grid ---------- */
.srv-main-section {
  padding: 80px 0;
  position: relative;
}

.srv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.srv-card {
  background: linear-gradient(145deg, #0e1017 0%, #07080d 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  scroll-margin-top: 140px;
}

.srv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #F97316, transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.srv-card:hover {
  transform: translateY(-8px);
  border-color: rgba(249, 115, 22, 0.45);
  box-shadow: 0 20px 40px rgba(249, 115, 22, 0.15), 0 8px 24px rgba(0, 0, 0, 0.8);
  background: linear-gradient(145deg, #131622 0%, #0a0b12 100%);
}

.srv-card:hover::before {
  opacity: 1;
}

.srv-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.srv-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.22), rgba(249, 115, 22, 0.06));
  border: 1px solid rgba(249, 115, 22, 0.35);
  color: #F97316;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: all 0.35s ease;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(249, 115, 22, 0.15);
}

.srv-card:hover .srv-card-icon {
  background: linear-gradient(135deg, #F97316, #b3000f);
  color: #ffffff;
  border-color: #F97316;
  transform: scale(1.08) rotate(3deg);
  box-shadow: 0 8px 22px rgba(249, 115, 22, 0.4);
}

.srv-card-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4px 10px;
  border-radius: 50px;
}

.srv-card-body h3 {
  font-family: var(--font-main);
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: 0.2px;
}

.srv-card-body p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
  margin-bottom: 22px;
  font-weight: 300;
}

.srv-card-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 26px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.srv-card-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.85);
}

.srv-bullet-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.15);
  border: 1px solid rgba(249, 115, 22, 0.4);
  color: #F97316;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
}

.srv-card-footer {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.srv-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #F97316;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.25s ease;
}

.srv-card-cta i {
  font-size: 0.8rem;
  transition: transform 0.25s ease;
}

.srv-card:hover .srv-card-cta {
  color: #ffffff;
}

.srv-card:hover .srv-card-cta i {
  transform: translateX(4px);
  color: #F97316;
}

/* ---------- Operational Deployment Process ---------- */
.srv-process-section {
  padding: 80px 0;
  background: linear-gradient(180deg, rgba(13, 14, 22, 0.4) 0%, rgba(6, 7, 12, 0.8) 100%);
  position: relative;
}

.srv-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.srv-process-card {
  background: transparent;
  border: none;
  border-top: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  padding: 24px 12px 12px 0;
  position: relative;
  transition: all 0.3s ease;
}

.srv-process-card:hover {
  transform: translateY(-5px);
  border-top-color: #F97316;
  background: transparent;
}

.srv-process-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  color: rgba(249, 115, 22, 0.3);
  line-height: 1;
  margin-bottom: 14px;
  transition: color 0.3s ease;
}

.srv-process-card:hover .srv-process-num {
  color: #F97316;
}

.srv-process-card h4 {
  font-family: var(--font-main);
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.srv-process-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0;
  font-weight: 300;
}

/* ---------- Compliance & Guarantee Banner ---------- */
.srv-guarantee-section {
  padding: 60px 0;
}

.srv-guarantee-box {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.12) 0%, rgba(10, 12, 20, 0.8) 100%);
  border: 1px solid rgba(249, 115, 22, 0.3);
  border-radius: 20px;
  padding: 40px 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.srv-guarantee-left h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 1px;
  color: #ffffff;
  margin-bottom: 8px;
}

.srv-guarantee-left p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.98rem;
  margin: 0;
  max-width: 650px;
}

.srv-guarantee-stats {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-shrink: 0;
}

.srv-guarantee-stat-item {
  text-align: center;
}

.srv-guarantee-stat-item .stat-val {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: #F97316;
  line-height: 1;
}

.srv-guarantee-stat-item .stat-lbl {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 4px;
}

/* ---------- Responsive Breakpoints for Services Page ---------- */
@media (max-width: 1100px) {
  .srv-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .srv-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 850px) {
  .srv-guarantee-box {
    flex-direction: column;
    text-align: center;
    padding: 30px 25px;
  }

  .srv-guarantee-stats {
    justify-content: center;
    width: 100%;
  }

  .srv-subnav {
    top: 64px;
  }
}

@media (max-width: 650px) {
  .srv-grid {
    grid-template-columns: 1fr;
  }

  .srv-process-grid {
    grid-template-columns: 1fr;
  }

  .srv-guarantee-stats {
    flex-direction: column;
    gap: 16px;
  }
}

/* ==========================================================================
   TRAINING & ACADEMY PAGE — STYLES
   ========================================================================== */
.trn-hero-section {
  position: relative;
  padding: clamp(7rem, 10vw, 10rem) 0 clamp(4rem, 6vw, 6rem);
  background: radial-gradient(circle at top center, rgba(249, 115, 22, 0.15), transparent 65%),
    linear-gradient(180deg, #06070c 0%, #090b12 100%);
  text-align: center;
  overflow: hidden;
}

.trn-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.trn-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.35);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #F97316;
  margin-bottom: 20px;
}

.trn-badge-dot {
  width: 8px;
  height: 8px;
  background: #F97316;
  border-radius: 50%;
  box-shadow: 0 0 10px #F97316;
}

.trn-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.2rem);
  line-height: 1;
  letter-spacing: 2px;
  color: #ffffff;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.trn-hero-title span {
  color: #F97316;
  text-shadow: 0 0 20px rgba(249, 115, 22, 0.4);
}

.trn-hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 760px;
  margin: 0 auto 30px;
  line-height: 1.8;
  font-weight: 300;
}

/* Academy Grid */
.trn-modules-section {
  padding: 85px 0;
}

.trn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.trn-card {
  background: linear-gradient(145deg, #0e1017 0%, #07080d 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.trn-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #F97316, transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.trn-card:hover {
  transform: translateY(-8px);
  border-color: rgba(249, 115, 22, 0.45);
  box-shadow: 0 20px 40px rgba(249, 115, 22, 0.15), 0 8px 24px rgba(0, 0, 0, 0.8);
  background: linear-gradient(145deg, #131622 0%, #0a0b12 100%);
}

.trn-card:hover::before {
  opacity: 1;
}

.trn-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.22), rgba(249, 115, 22, 0.06));
  border: 1px solid rgba(249, 115, 22, 0.35);
  color: #F97316;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: all 0.35s ease;
  margin-bottom: 22px;
  box-shadow: 0 6px 16px rgba(249, 115, 22, 0.15);
}

.trn-card:hover .trn-card-icon {
  background: linear-gradient(135deg, #F97316, #b3000f);
  color: #ffffff;
  border-color: #F97316;
  transform: scale(1.08) rotate(3deg);
}

.trn-card h3 {
  font-family: var(--font-main);
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}

.trn-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
  margin: 0;
  font-weight: 300;
}

/* Academy Pillars */
.trn-pillars-section {
  padding: 80px 0;
  background: #06070c;
}

.trn-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.trn-pillar-card {
  background: rgba(18, 20, 30, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 30px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.trn-pillar-card:hover {
  transform: translateY(-5px);
  border-color: rgba(249, 115, 22, 0.4);
  background: rgba(26, 29, 44, 0.8);
}

.trn-pillar-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  color: rgba(249, 115, 22, 0.25);
  line-height: 1;
  margin-bottom: 14px;
  transition: color 0.3s ease;
}

.trn-pillar-card:hover .trn-pillar-num {
  color: #F97316;
}

.trn-pillar-card h4 {
  font-family: var(--font-main);
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.trn-pillar-card p {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.55;
  margin: 0;
  font-weight: 300;
}

/* ==========================================================================
   TRAINING PAGE — NEW SECTION STYLES
   ========================================================================== */
.training-page-content {
  background: #050505;
  color: #ffffff;
  padding-top: 72px;
}

.training-page-content .hero {
  border-bottom: 2px solid #ffffff;
  padding: 52px 40px 70px;
  position: relative;
  z-index: 1;
}

.training-page-content .hero-frame {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 56px 40px 48px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
  text-align: center;
  background: #050505;
}

.training-page-content .hero-frame::before,
.training-page-content .hero-frame::after,
.training-page-content .hero-frame .br-tr,
.training-page-content .hero-frame .br-bl {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  border: #F97316 solid;
  z-index: 3;
  box-sizing: border-box;
}

.training-page-content .hero-frame::before {
  top: -1px;
  left: -1px;
  border-width: 2px 0 0 2px;
}

.training-page-content .hero-frame::after {
  bottom: -1px;
  right: -1px;
  border-width: 0 2px 2px 0;
}

.training-page-content .hero-frame .br-tr {
  top: -1px;
  right: -1px;
  border-width: 2px 2px 0 0;
}

.training-page-content .hero-frame .br-bl {
  bottom: -1px;
  left: -1px;
  border-width: 0 0 2px 2px;
}

.training-page-content .doc-id {
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  color: #F97316;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.training-page-content .hero-frame h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4.6vw, 3.6rem);
  line-height: 1.08;
  margin: 0 auto;
  max-width: 17ch;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.training-page-content .hero-frame .lede {
  margin: 22px auto 0;
  color: #9b9b9b;
  max-width: 50ch;
  font-size: 1rem;
}

.training-page-content .hero-actions {
  display: flex;
  gap: 0;
  margin-top: 34px;
  flex-wrap: wrap;
  justify-content: center;
}

.training-page-content .btn {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 50px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.training-page-content .btn-fill {
  background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.35);
}

.training-page-content .btn-fill:hover {
  background: linear-gradient(135deg, #EA580C 0%, #DC3B0C 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(249, 115, 22, 0.45);
  color: #ffffff;
}

.training-page-content .btn-outline {
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  border: 2px solid rgba(249, 115, 22, 0.5);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.training-page-content .btn-outline:hover {
  background: #F97316;
  border-color: #F97316;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.4);
}

.training-page-content section {
  border-bottom: 2px solid #ffffff;
  padding: 70px 0;
}

.training-page-content .sec-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  margin-bottom: 50px;
}

.training-page-content .sec-head .idx {
  font-family: 'Poppins', sans-serif;
  color: #F97316;
  font-size: 0.85rem;
}

.training-page-content .sec-head h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.training-page-content .sec-head p {
  color: #9b9b9b;
  max-width: 52ch;
  font-size: 0.92rem;
  margin: 0;
}

.training-page-content .filmstrip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.training-page-content .phase-card {
  position: relative;
  padding: 24px 22px 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  overflow: hidden;
  min-height: auto;
  background: rgba(255, 255, 255, 0.02);
}

@media (max-width: 992px) {
  .training-page-content .filmstrip {
    grid-template-columns: repeat(2, 1fr);
  }

  .training-page-content .phase-card {
    min-height: auto;
    padding: 20px 18px;
  }
}

@media (max-width: 640px) {
  .training-page-content .filmstrip {
    grid-template-columns: 1fr;
    border-left: none;
    border-top: none;
  }

  .training-page-content .phase-card {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 16px 14px;
    margin-bottom: 12px;
    min-height: auto;
  }

  .training-page-content .phase-card .ghost {
    font-size: 4.5rem;
    top: -15px;
    right: 5px;
  }

  .training-page-content .phase-card h3 {
    font-size: 1rem;
    margin: 8px 0;
  }

  .training-page-content .phase-card p {
    font-size: 0.82rem;
    line-height: 1.45;
  }
}

.training-page-content .phase-card .ghost {
  position: absolute;
  top: -30px;
  right: -10px;
  font-family: 'Poppins', sans-serif;
  font-size: 7rem;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.09);
  line-height: 1;
  pointer-events: none;
}

.training-page-content .phase-card .dur {
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  color: #F97316;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.training-page-content .phase-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  margin: 14px 0 14px;
  line-height: 1.15;
  position: relative;
  text-transform: uppercase;
}

.training-page-content .phase-card p {
  color: #9b9b9b;
  font-size: 0.86rem;
  margin: 0;
  position: relative;
}

.training-page-content .triad {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.training-page-content .triad-col {
  padding: 0 36px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.training-page-content .triad-col:first-child {
  padding-left: 0;
  border-left: none;
}

.training-page-content .triad-col h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.training-page-content .triad-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.training-page-content .triad-col li {
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.88rem;
  color: #9b9b9b;
}

.training-page-content .triad-col li:first-of-type {
  border-top: none;
}

.training-page-content .triad-col li b {
  color: #ffffff;
  font-weight: 600;
}

.training-page-content .track-list {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.training-page-content .track-row {
  display: grid;
  grid-template-columns: 90px 1fr 1.4fr;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  align-items: baseline;
}

.training-page-content .track-row .tid {
  font-family: 'Poppins', sans-serif;
  color: #F97316;
  font-size: 0.82rem;
}

.training-page-content .track-row h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.02rem;
  text-transform: uppercase;
}

.training-page-content .track-row p {
  color: #9b9b9b;
  font-size: 0.88rem;
  margin: 0;
}

.training-page-content .ticker {
  display: flex;
  flex-wrap: wrap;
}

.training-page-content .tick {
  flex: 1;
  min-width: 200px;
  padding: 10px 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  text-align: left;
}

.training-page-content .tick:first-child {
  border-left: none;
  padding-left: 0;
}

.training-page-content .tick .num {
  font-family: 'Poppins', sans-serif;
  font-size: 2.4rem;
  color: #F97316;
}

.training-page-content .tick .label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  color: #9b9b9b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 8px;
}

.training-page-content .cta {
  border-bottom: none;
  padding: 90px 40px;
  text-align: center;
  position: relative;
}

.training-page-content .cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #F97316;
}

.training-page-content .cta .idx {
  font-family: 'Poppins', sans-serif;
  color: #F97316;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

.training-page-content .cta h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  max-width: 18ch;
  margin: 16px auto 20px;
  text-transform: uppercase;
}

.training-page-content .cta p {
  color: #9b9b9b;
  max-width: 56ch;
  margin: 0 auto 36px;
}

.training-page-content .cta-actions {
  display: inline-flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.training-page-content .hero-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 26px;
}

.training-page-content .hero-stats .hs {
  padding: 0 26px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  text-align: left;
}

.training-page-content .hero-stats .hs:first-child {
  border-left: none;
  padding-left: 0;
}

.training-page-content .hero-stats .hs dt {
  font-family: 'Poppins', sans-serif;
  font-size: 0.62rem;
  color: #5a5a5a;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0;
}

.training-page-content .hero-stats .hs dd {
  margin: 4px 0 0;
  font-family: 'Poppins', sans-serif;
  font-size: 0.86rem;
  color: #ffffff;
}

.training-page-content .hero-stats .hs dd.alert {
  color: #F97316;
}

@media (max-width: 920px) {
  .training-page-content .filmstrip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 880px) {
  .training-page-content .triad {
    grid-template-columns: 1fr;
  }

  .training-page-content .triad-col {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding: 30px 0 0;
    margin-top: 30px;
  }

  .training-page-content .triad-col:first-child {
    border-top: none;
    margin-top: 0;
    padding-top: 0;
  }
}

@media (max-width: 760px) {
  .training-page-content .hero-stats .hs {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding: 14px 0;
    width: 100%;
  }

  .training-page-content .track-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .training-page-content .tick {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding: 20px 0;
  }

  .training-page-content .tick:first-child {
    border-top: none;
    padding-top: 0;
  }
}

@media (max-width: 560px) {
  .training-page-content .filmstrip {
    grid-template-columns: 1fr;
  }

  .training-page-content .hero {
    padding: 60px 20px 70px;
  }

  .training-page-content .hero-frame {
    padding: 42px 20px 36px;
  }
}

/* ==========================================================================
   GALLERY PAGE — STYLES
   ========================================================================== */
.gal-hero-section {
  position: relative;
  padding: clamp(7rem, 10vw, 10rem) 0 clamp(4rem, 6vw, 6rem);
  background: radial-gradient(circle at top center, rgba(249, 115, 22, 0.15), transparent 65%),
    linear-gradient(180deg, #06070c 0%, #090b12 100%);
  text-align: center;
  overflow: hidden;
}

.gal-grid-section {
  padding: 80px 0;
}

.gal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.gal-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  aspect-ratio: 4 / 3;
  cursor: pointer;
  background: #111;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gal-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6, 7, 12, 0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.gal-card:hover {
  transform: translateY(-5px);
  border-color: rgba(249, 115, 22, 0.4);
  box-shadow: 0 15px 35px rgba(249, 115, 22, 0.15), 0 5px 15px rgba(0, 0, 0, 0.6);
}

.gal-card:hover img {
  transform: scale(1.08);
}

.gal-card:hover .gal-overlay {
  opacity: 1;
}

.gal-overlay h3 {
  font-family: var(--font-main);
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.gal-overlay p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* Lightbox overlay */
.gal-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(4, 5, 8, 0.96);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
  padding: 20px;
}

.gal-lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 85%;
}

.gal-lightbox-img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 80vh;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9);
}

.gal-lightbox-caption {
  color: #fff;
  text-align: center;
  margin-top: 15px;
  font-size: 1.1rem;
  font-weight: 600;
}

.gal-lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.8rem;
  cursor: pointer;
  transition: color 0.3s;
}

.gal-lightbox-close:hover {
  color: #F97316;
}

/* ---------- Responsive Breakpoints for Training & Gallery ---------- */
@media (max-width: 992px) {
  .trn-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trn-pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .trn-grid {
    grid-template-columns: 1fr;
  }

  .trn-pillars-grid {
    grid-template-columns: 1fr;
  }

  .gal-grid {
    grid-template-columns: 1fr;
  }
}