/* ==========================================================================
   PLATINUM MANAGEMENT CONSULTANCIES - CORE CSS SYSTEM
   ========================================================================== */

/* Import Premium Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* CSS Custom Variables */
:root {
  /* Color System (Premium Light Theme based on PMC Logo) */
  --bg-primary: #ffffff;
  /* Pure White */
  --bg-secondary: #f4f7f5;
  /* Light Sage/Grey background */
  --bg-card: rgba(255, 255, 255, 0.7);
  /* Translucent White Card */
  --bg-card-hover: rgba(255, 255, 255, 0.95);
  --color-primary: #c49630;
  /* Logo PMC Deep Green */
  --color-secondary: #134c2f;
  /* Logo Gold/Bronze Accent */
  --color-accent: #0b2e21;
  /* Deepest Green for headings */
  --text-primary: #0b2e21;
  /* Deep Forest Green */
  --text-secondary: #4a5c54;
  /* Muted Slate Green-Grey */
  --text-highlight: #00828a;
  /* Teal Highlight (Darker for readability on light BG) */

  /* Gradients */
  --gradient-platinum: linear-gradient(135deg, #0b2e21 0%, #1c523c 50%, #c59b27 100%);
  --gradient-blue: linear-gradient(135deg, #13543d 0%, #c59b27 100%);
  --gradient-card: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
  --gradient-bg: radial-gradient(circle at 10% 20%, #ffffff 0%, #f4f7f5 90%);

  /* Borders and Shadows */
  --border-glass: 1px solid rgba(19, 84, 61, 0.08);
  --border-glass-hover: 1px solid rgba(197, 155, 39, 0.45);
  --shadow-glass: 0 8px 32px 0 rgba(19, 84, 61, 0.06);
  --shadow-glow: 0 0 25px rgba(197, 155, 39, 0.15);

  /* Typography */
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Structural variables */
  --header-height: 80px;
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-slow: 0.5s ease;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  max-width: 100%;
  width: 100%;
  touch-action: pan-y;
}

body {
  background: var(--gradient-bg);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: clip;
  max-width: 100%;
  width: 100%;
  min-height: 100vh;
  position: relative;
  touch-action: pan-y;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--bg-card-hover);
  border-radius: 5px;
  border: 2px solid var(--bg-primary);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-secondary);
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-title);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

/* Gradients text */
.text-gradient {
  background: var(--gradient-platinum);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-blue {
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--color-secondary);
  border-radius: 2px;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

/* Background blob decorations */
.glow-blob {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(0, 180, 216, 0.12);
  filter: blur(100px);
  z-index: 0;
  pointer-events: none;
}

.glow-blob-1 {
  top: 10%;
  left: -10%;
}

.glow-blob-2 {
  bottom: 10%;
  right: -10%;
}

.glow-blob-3 {
  top: 40%;
  left: 40%;
  background: rgba(197, 155, 39, 0.08);
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: var(--transition-normal);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: var(--border-glass);
  box-shadow: var(--shadow-glass);
}

header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(19, 84, 61, 0.08);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--gradient-platinum);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-sub {
  font-size: 0.65rem;
  color: var(--text-secondary);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 2px;
}

.logo-brand {
  display: flex;
  align-items: center;
  height: 68px;
}

.logo-img {
  height: 100%;
  max-height: 68px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 8px 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-secondary);
  transition: var(--transition-normal);
}

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

/* Header CTAs */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Mobile Toggle Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 1001;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: var(--text-primary);
  transition: var(--transition-normal);
}

/* Active Hamburger state */
.hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

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

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

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 28px;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: var(--transition-normal);
  gap: 8px;
  text-transform: capitalize;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--gradient-blue);
  color: #fff;
  border: none;
  box-shadow: 0 4px 14px rgba(197, 155, 39, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-secondary {
  background: rgb(255 255 255);
  color: var(--text-primary);
  border: var(--border-glass);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgb(255 255 255);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  background: var(--text-primary);
  color: var(--bg-primary);
  transform: translateY(-2px);
}

.btn-icon {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
}

/* ==========================================================================
   GLASS CARDS (PREMIUM DESIGN SYSTEM Element)
   ========================================================================== */
.glass-card {
  background: var(--bg-card);
  border: var(--border-glass);
  box-shadow: var(--shadow-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--border-radius-md);
  padding: 32px;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.4s ease, background 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-card);
  opacity: 0.5;
  z-index: -1;
  pointer-events: none;
}

.glass-card:hover {
  transform: translateY(-6px);
  border-color: rgba(197, 155, 39, 0.35);
  box-shadow: 0 12px 40px 0 rgba(19, 84, 61, 0.1), var(--shadow-glow);
  background: var(--bg-card-hover);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height) + 180px);
  padding-bottom: 0px;
  overflow: hidden;
  background: #051610;
}

/* Background Slides Container & Slides */
.hero-bg-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-bg-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  visibility: hidden;
  display: none;
  transform: translateX(100%);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease-in-out;
  z-index: 1;
}

.hero-bg-slide.active {
  opacity: 1;
  visibility: visible;
  display: block;
  transform: translateX(0);
  z-index: 2;
}

.hero-bg-slide.slide-left {
  opacity: 0;
  visibility: hidden;
  display: block;
  transform: translateX(-100%);
  z-index: 1;
}

.hero-bg-slide.slide-right {
  opacity: 0;
  visibility: hidden;
  display: block;
  transform: translateX(100%);
  z-index: 1;
}

/* Reduced Gradient Overlay for Vibrant Background Images */
.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(90deg, rgba(5, 22, 16, 0.72) 0%, rgba(5, 22, 16, 0.42) 50%, rgba(5, 22, 16, 0.2) 100%);
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 5;
  width: 100%;
}

.hero-content {
  z-index: 5;
  max-width: 820px;
}

.hero-tagline {
  color: var(--color-primary);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
  display: inline-block;
  background: rgba(197, 155, 39, 0.15);
  border: 1px solid rgba(197, 155, 39, 0.4);
  padding: 6px 18px;
  border-radius: 30px;
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.hero .text-gradient {
  background: linear-gradient(135deg, #ffe082 0%, #c59b27 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title {
  font-size: 3.6rem;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  font-family: var(--font-title);
  font-weight: 800;
}

.hero-subtitle {
  font-family: var(--font-title);
  font-size: 1.80rem;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-description {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.12rem;
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 680px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Slider Arrow Navigation Buttons */
.hero-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(11, 46, 33, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(197, 155, 39, 0.4);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.hero-slider-arrow:hover {
  background: var(--color-secondary);
  color: #0b2e21;
  border-color: #ffffff;
  transform: translateY(-50%) scale(1.12);
  box-shadow: 0 8px 25px rgba(197, 155, 39, 0.5);
}

.hero-slider-prev {
  left: 28px;
}

.hero-slider-next {
  right: 28px;
}

/* Pagination Dots */
.hero-slider-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
  align-items: center;
  background: rgba(5, 22, 16, 0.6);
  backdrop-filter: blur(8px);
  padding: 8px 18px;
  border-radius: 30px;
  border: 1px solid rgba(197, 155, 39, 0.3);
}

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

.hero-dot.active {
  width: 32px;
  border-radius: 12px;
  background: var(--color-primary);
  box-shadow: 0 0 10px rgba(197, 155, 39, 0.6);
}

/* Overlay glowing ring for hero visual */
.glow-ring {
  position: absolute;
  width: 110%;
  height: 110%;
  border-radius: 50%;
  border: 1px dashed rgba(0, 130, 138, 0.25);
  animation: spin 60s linear infinite;
  pointer-events: none;
  z-index: -1;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

/* ==========================================================================
   TRUST INDICATORS / STATS
   ========================================================================== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  position: relative;
  text-align: center;
  padding: 32px 20px 24px 20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(19, 84, 61, 0.12);
  border-top: 3px solid var(--color-secondary);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-glass);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(19, 84, 61, 0.12), var(--shadow-glow);
  border-color: rgba(197, 155, 39, 0.45);
}

.stat-icon-wrapper {
  width: 52px;
  height: 52px;
  margin-bottom: 10px;
  border-radius: 50%;
  background: rgba(197, 155, 39, 0.12);
  border: 1px solid rgba(197, 155, 39, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
  margin-bottom: 16px;
  transition: transform var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
}

.stat-card:hover .stat-icon-wrapper {
  transform: scale(1.1);
  background: var(--color-secondary);
  color: #FFF;
}

.stat-number {
  font-family: var(--font-title);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--color-accent);
  margin-bottom: 6px;
  line-height: 1;
  letter-spacing: -1px;
}

.stat-label {
  font-size: 0.88rem;
  color: var(--text-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
}

.stat-badge {
  font-size: 0.75rem;
  color: var(--text-secondary);
  background: rgba(19, 84, 61, 0.05);
  padding: 3px 10px;
  border-radius: 12px;
  font-weight: 500;
}

/* ==========================================================================
   TRUST INDICATORS CARD & GRID
   ========================================================================== */
.trust-indicators-card {
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--border-radius-md);
  padding: 24px 28px;
  margin-bottom: 24px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(196, 150, 48, 0.35);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.trust-indicators-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
  border-color: rgba(196, 150, 48, 0.6);
}

.trust-indicators-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #c49630 0%, #e5c158 50%, #134c2f 100%);
}

.trust-indicators-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(19, 84, 61, 0.12);
}

.trust-indicators-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #c49630;
  color: #ffffff;
  padding: 5px 14px;
  border-radius: 20px;
  font-family: var(--font-title);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(196, 150, 48, 0.3);
}

.trust-indicators-title {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  letter-spacing: 0.8px;
}

.trust-indicators-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: #f4f7f5;
  border-radius: 12px;
  border: 1px solid rgba(19, 84, 61, 0.08);
  transition: all var(--transition-fast);
}

.trust-item:hover {
  background: #ffffff;
  border-color: rgba(196, 150, 48, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(19, 84, 61, 0.1);
}

.trust-item-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #134c2f 0%, #0b2e21 100%);
  color: #c49630;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(19, 84, 61, 0.25);
  transition: transform var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
}

.trust-item:hover .trust-item-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, #c49630 0%, #9e7620 100%);
  color: #ffffff;
}

.trust-item-text {
  font-size: 0.92rem;
  font-weight: 700;
  color: #0b2e21;
  line-height: 1.4;
  font-family: var(--font-body);
}

@media (max-width: 600px) {
  .trust-indicators-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.services-grid.five-cols {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.service-card {
  display: flex;
  flex-direction: column;
  flex: 0 0 calc(33.333% - 20px);
  max-width: calc(33.333% - 20px);
  min-width: 280px;
  background: #FFF;
  border-radius: 16px;
  padding: 32px 28px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-6px);
  background: #FFF;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: #c5d8cc;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #134c2f;
}

.service-icon svg {
  width: 26px;
  height: 26px;
  stroke-width: 1.8px;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0b2e21;
  font-family: var(--font-title);
  margin-bottom: 12px;
}

.service-desc {
  color: #4b5d54;
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.88rem;
  color: #0b2e21;
  text-decoration: none;
}

.service-link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.service-card:hover .service-link svg {
  transform: translateX(4px);
}

/* ==========================================================================
   INDUSTRIES SECTION
   ========================================================================== */
.industries-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.industry-card {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
  border: var(--border-glass);
  flex: 0 0 calc(25% - 18px);
  max-width: calc(25% - 18px);
  min-width: 250px;
}

.industry-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: var(--transition-slow);
  z-index: 1;
}

/* CSS Illustrated backup overlay if image doesn't exist */
.industry-bg-fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0e3525 0%, #051610 100%);
  z-index: 1;
}

.industry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 12, 8, 0.95) 20%, rgba(3, 12, 8, 0.4) 70%, transparent 100%);
  z-index: 2;
  transition: var(--transition-normal);
}

.industry-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 24px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.industry-icon {
  color: var(--color-secondary);
  opacity: 0.8;
  margin-bottom: 8px;
}

.industry-icon svg {
  width: 32px;
  height: 32px;
}

.industry-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  /* Force white text for contrast on dark overlay */
}

.industry-card-desc {
  font-size: 0.85rem;
  color: #8da399;
  /* Force light minty text for contrast on dark overlay */
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: var(--transition-normal);
}

.industry-card-btn {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-secondary);
  /* Use gold accent for readability on dark BG */
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  opacity: 0.8;
}

.industry-card:hover .industry-bg {
  transform: scale(1.1);
}

.industry-card:hover .industry-overlay {
  background: linear-gradient(to top, rgba(3, 12, 8, 0.98) 30%, rgba(3, 12, 8, 0.6) 80%, rgba(3, 12, 8, 0.3) 100%);
}

.industry-card:hover .industry-card-desc {
  max-height: 100px;
  opacity: 1;
  margin-top: 4px;
}

.industry-card:hover {
  border-color: rgba(197, 155, 39, 0.5);
  box-shadow: var(--shadow-glow);
}

/* ==========================================================================
   RECRUITMENT PROCESS SECTION
   ========================================================================== */
.process-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 0;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgb(197 155 39);
  transform: translateX(-50%);
}

.process-step {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  position: relative;
}

.process-step:last-child {
  margin-bottom: 0;
}

.process-content {
  width: 44%;
  padding: 30px;
}

.process-badge {
  position: absolute;
  left: 50%;
  width: 50px;
  height: 50px;
  background: var(--bg-secondary);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%);
  z-index: 2;
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--color-secondary);
  transition: var(--transition-normal);
}

.process-step:hover .process-badge {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-secondary);
  box-shadow: var(--shadow-glow);
}

.process-step:nth-child(even) {
  flex-direction: row-reverse;
}

.process-step-title {
  font-size: 1.35rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.process-step-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.process-footer {
  text-align: center;
  margin-top: 50px;
}

/* ==========================================================================
   CLIENT TESTIMONIALS / CAROUSEL
   ========================================================================== */
.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform var(--transition-slow);
}

.testimonial-slide {
  min-width: 100%;
  padding: 20px;
  box-sizing: border-box;
}

.testimonial-quote {
  font-size: 1.4rem;
  font-style: italic;
  margin-bottom: 24px;
  color: var(--text-primary);
  line-height: 1.6;
  position: relative;
}

.testimonial-quote::before {
  content: '“';
  font-size: 5rem;
  position: absolute;
  top: -40px;
  left: -20px;
  color: rgba(197, 155, 39, 0.15);
  font-family: var(--font-title);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--bg-primary);
}

.author-name {
  font-weight: 600;
  color: var(--text-primary);
}

.author-role {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgb(147 147 147);
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.slider-dot.active {
  background: var(--color-secondary);
  width: 24px;
  border-radius: 5px;
}

/* ==========================================================================
   CALL TO ACTION BANNER
   ========================================================================== */
.cta-banner {
  background: linear-gradient(135deg, rgba(7, 25, 17, 0.9) 0%, rgba(3, 12, 8, 0.98) 100%);
  border: var(--border-glass);
  border-radius: var(--border-radius-lg);
  padding: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-glass);
}

.cta-banner::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(197, 155, 39, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.cta-global-bg {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 250px;
  max-width: 45%;
  height: auto;
  opacity: 0.35;
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 768px) {
  .cta-global-bg {
    width: 200px;
    opacity: 0.2;
  }
}

.cta-title {
  color: #ffffff;
  /* Force white title on dark background */
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.cta-desc {
  color: #8da399;
  /* Force light minty text on dark background */
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 32px auto;
}

/* ==========================================================================
   SUBPAGE TEMPLATE STYLES
   ========================================================================== */
.subpage-hero {
  padding-top: calc(var(--header-height) + 10px);
  padding-bottom: 80px;
  /* background: linear-gradient(to bottom, rgba(244, 247, 245, 0.8), transparent); */
  border-bottom: var(--border-glass);
  position: relative;
  overflow: hidden;
}

.subpage-hero-title {
  font-size: 3rem;
  margin-bottom: 16px;
}

.breadcrumbs {
  display: flex;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  list-style: none;
}

.breadcrumb-item::after {
  content: '/';
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.2);
}

.breadcrumb-item:last-child::after {
  content: '';
}

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

/* Info Details Grid */
.detail-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 48px;
}

.detail-main {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.detail-main p {
  margin-bottom: 24px;
}

.detail-main h3 {
  font-size: 1.6rem;
  color: var(--text-primary);
  margin: 40px 0 20px 0;
}

.detail-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.feature-list {
  list-style: none;
  margin: 24px 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--text-secondary);
}

.feature-item svg {
  color: var(--color-secondary);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-item strong {
  color: var(--text-primary);
}

/* ==========================================================================
   CONTACT FORM / INPUTS
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 48px;
}

.contact-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 32px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(7, 160, 146, 0.08);
  border: 1px solid rgba(7, 160, 146, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
}

.contact-info-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-info-value {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-top: 4px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.form-control {
  background: rgba(255, 255, 255, 0.8);
  border: var(--border-glass);
  border-radius: var(--border-radius-sm);
  padding: 14px 18px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-secondary);
  box-shadow: 0 0 10px rgba(197, 155, 39, 0.15);
  background: rgba(255, 255, 255, 0.95);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
footer {
  background: var(--bg-secondary);
  /* Light theme base background */
  border-top: var(--border-glass);
  padding: 80px 0 30px 0;
  position: relative;
  z-index: 2;
  color: var(--text-primary);
  /* Dark text for contrast */
}

.footer-grid {
  display: grid;
  grid-template-columns: 4fr 2.5fr 2.5fr 3fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-desc {
  color: var(--text-secondary);
  /* Muted text */
  font-size: 0.95rem;
  margin: 20px 0 24px 0;
  max-width: 320px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(19, 84, 61, 0.05);
  border: var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  color: var(--text-secondary);
}

.social-icon:hover {
  background: var(--color-secondary);
  color: #fff;
  border-color: var(--color-secondary);
  transform: translateY(-2px);
}

.social-icon svg {
  width: 18px;
  height: 18px;
}

.footer-title {
  font-size: 1.1rem;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-primary);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.footer-link:hover {
  color: var(--color-secondary);
  padding-left: 4px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.newsletter-form .form-control {
  padding: 10px 14px;
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-primary);
  border: var(--border-glass);
}

.newsletter-form .form-control:focus {
  background: #ffffff;
  border-color: var(--color-secondary);
}

.footer-bottom {
  border-top: var(--border-glass);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

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

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

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

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

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVE STYLING)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.8rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid,
  .services-grid.five-cols,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .industry-card {
    flex: 0 0 calc(33.333% - 16px);
    max-width: calc(33.333% - 16px);
  }

  .service-card {
    flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
  }

  .detail-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .detail-sidebar {
    position: relative;
    top: 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

select.form-control {
  color: var(--text-primary);
  background-color: rgba(255, 255, 255, 0.9);
}

select.form-control option {
  background-color: #ffffff;
  color: #0b2e21;
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }

  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.85rem;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 30px);
    padding-bottom: 70px;
    overflow: hidden;
  }

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

  .hero-content {
    text-align: center;
  }

  .hero-title {
    font-size: 2.1rem;
    line-height: 1.25;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
    font-size: 0.95rem;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-slider-arrow {
    width: 38px;
    height: 38px;
    top: auto;
    bottom: 16px;
    transform: none;
  }

  .hero-slider-arrow:hover {
    transform: scale(1.05);
  }

  .hero-slider-prev {
    left: 14px;
  }

  .hero-slider-next {
    right: 14px;
  }

  .hero-slider-dots {
    bottom: 22px;
  }

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

  .glow-blob {
    display: none !important;
  }

  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 40px 24px;
    align-items: center;
    gap: 24px;
    transition: var(--transition-normal);
    z-index: 999;
    border-top: var(--border-glass);
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    display: none;
  }

  .nav-menu.open {
    left: 0;
    visibility: visible;
    opacity: 1;
    display: flex;
  }

  .nav-cta {
    display: flex;
    align-items: center;
  }

  .nav-cta .btn {
    display: none;
  }

  .services-grid,
  .services-grid.five-cols,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .industry-card,
  .service-card {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .industry-why-us ul {
    grid-template-columns: 1fr;
  }

  .process-timeline::before {
    left: 20px;
  }

  .process-step {
    flex-direction: row !important;
    align-items: flex-start;
    margin-bottom: 40px;
  }

  .process-content {
    width: calc(100% - 60px);
    margin-left: 60px;
    padding: 16px;
  }

  .process-badge {
    left: 20px;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.75rem;
  }

  .subpage-hero-title {
    font-size: 1.6rem;
  }

  .logo-img {
    max-height: 54px;
  }

  .container {
    padding: 0 16px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

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

  .cta-banner {
    padding: 24px 16px;
  }

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

/* ==========================================================================
   DYNAMIC SCROLL REVEAL & FLOATING ANIMATIONS
   ========================================================================== */

/* Keyframe animations */
@keyframes float-blob {
  0% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -50px) scale(1.05);
  }

  66% {
    transform: translate(-20px, 20px) scale(0.95);
  }

  100% {
    transform: translate(0, 0) scale(1);
  }
}

@keyframes fade-down {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-up-entrance {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Apply floating behavior to background blobs */
.glow-blob-1 {
  animation: float-blob 20s infinite ease-in-out;
}

.glow-blob-2 {
  animation: float-blob 25s infinite ease-in-out 2s;
}

.glow-blob-3 {
  animation: float-blob 22s infinite ease-in-out 4s;
}

/* Apply page load entrances */
header {
  animation: fade-down 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.hero-content h1 {
  animation: fade-up-entrance 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.1s forwards;
}

.hero-content p {
  animation: fade-up-entrance 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s forwards;
}

.hero-actions {
  animation: fade-up-entrance 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.3s forwards;
}

/* Scroll Progress indicator styling */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
  width: 0%;
  z-index: 1002;
  transition: width 0.1s ease;
}

/* ==========================================================================
   STICKY CTAs & NEW COMPONENT EXTENSIONS
   ========================================================================== */

/* Sticky Floating Action Bar */
.sticky-cta-bar {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.sticky-cta-trigger {
  background: var(--gradient-platinum);
  color: #fff;
  padding: 12px 20px;
  border-radius: 30px;
  box-shadow: 0 8px 25px rgba(19, 84, 61, 0.35);
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  border: 1px solid rgba(197, 155, 39, 0.4);
  transition: var(--transition-normal);
}

.sticky-cta-trigger:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 30px rgba(19, 84, 61, 0.45);
}

.sticky-cta-list {
  background: rgba(11, 46, 33, 0.95);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(197, 155, 39, 0.3);
  border-radius: 16px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform-origin: bottom right;
}

.sticky-cta-list.hidden {
  display: none;
}

.sticky-cta-item {
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition-fast);
  cursor: pointer;
}

.sticky-cta-item:hover {
  background: rgba(197, 155, 39, 0.25);
  border-color: var(--color-secondary);
  color: #fff;
  transform: translateX(-4px);
}

/* Category Cards Grid */
.category-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.category-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(19, 84, 61, 0.12);
  border-radius: var(--border-radius-md);
  padding: 28px;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-platinum);
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(19, 84, 61, 0.12);
  border-color: var(--color-secondary);
}

.category-card-badge {
  display: inline-block;
  background: rgba(19, 84, 61, 0.08);
  color: var(--color-primary);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.category-card-title {
  font-size: 1.25rem;
  color: var(--color-accent);
  margin-bottom: 10px;
}

.category-card-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Industry Detailed Cards with Why Us list */
.industry-detail-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(19, 84, 61, 0.1);
  border-radius: var(--border-radius-lg);
  padding: 32px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-glass);
  transition: var(--transition-normal);
}

.industry-detail-card:hover {
  /* border-color: var(--color-secondary); */
  box-shadow: 0 12px 30px rgba(19, 84, 61, 0.1);
}

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

.industry-detail-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--gradient-platinum);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.industry-detail-title {
  font-size: 1.4rem;
  color: var(--color-accent);
}

.industry-detail-subtitle {
  font-size: 0.95rem;
  color: var(--color-secondary);
  font-weight: 600;
}

.industry-why-us {
  margin-top: 20px;
  background: rgba(19, 84, 61, 0.04);
  border-left: 3px solid var(--color-secondary);
  padding: 20px;
  border-radius: 0 12px 12px 0;
}

.industry-why-us h5 {
  font-size: 1rem;
  color: var(--color-accent);
  margin-bottom: 12px;
  font-family: var(--font-title);
}

.industry-why-us ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 12px 24px;
}

.industry-why-us li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.6;
}

.industry-why-us li::before {
  content: "•";
  color: var(--color-secondary);
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 1;
}

/* Solutions & Engagement Models Grid */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.solution-card {
  background: #ffffff;
  border: 1px solid rgba(19, 84, 61, 0.1);
  border-radius: var(--border-radius-md);
  padding: 24px;
  transition: var(--transition-normal);
}

.solution-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-secondary);
  box-shadow: 0 10px 25px rgba(19, 84, 61, 0.08);
}

.solution-card-title {
  font-size: 1.1rem;
  color: var(--color-accent);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.solution-card-title::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-secondary);
}

.solution-card-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ==========================================================================
   LEADERSHIP CAROUSEL SECTION
   ========================================================================== */
.leadership-carousel-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

.leadership-carousel-track-container {
  overflow: hidden;
  position: relative;
  padding: 20px 0 30px 0;
}

.leadership-carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

/* Individual Leadership Card (3D Flip / View Switch) */
.leadership-carousel-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 310px;
  height: 470px;
  perspective: 1000px;
  cursor: pointer;
  position: relative;
}

@media (max-width: 1024px) {
  .leadership-carousel-card {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (max-width: 640px) {
  .leadership-carousel-card {
    flex: 0 0 100%;
    min-width: 280px;
  }
}

.leadership-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: left;
  transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-style: preserve-3d;
  border-radius: 24px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
}

.leadership-carousel-card.is-flipped .leadership-card-inner,
.leadership-carousel-card:hover .leadership-card-inner {
  transform: rotateY(180deg);
}

/* Card Front (Photo View) */
.leadership-card-front,
.leadership-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 24px;
  overflow: hidden;
}

.leadership-card-front {
  background: #0b2e21;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.leadership-card-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s ease;
}

.leadership-carousel-card:hover .leadership-card-front img {
  transform: scale(1.05);
}

.leadership-card-front-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 46, 33, 0.05) 0%, rgba(11, 46, 33, 0.45) 55%, rgba(11, 46, 33, 0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
  color: #ffffff;
}

.leadership-card-front-name {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.leadership-card-front-role {
  font-size: 0.92rem;
  font-weight: 700;
  color: #c49630;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.leadership-card-front-hint {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  padding: 4px 10px;
  border-radius: 12px;
  text-transform: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Card Back (Bio View) */
.leadership-card-back {
  background: linear-gradient(145deg, #0b2e21 0%, #134c2f 60%, #0d3824 100%);
  color: #ffffff;
  transform: rotateY(180deg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(196, 150, 48, 0.4);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  position: relative;
}

.leadership-card-back::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(196, 150, 48, 0.15) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.5;
  pointer-events: none;
}

.leadership-card-back-header {
  position: relative;
  z-index: 2;
}

.leadership-card-back-name {
  font-family: var(--font-title);
  font-size: 1.55rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
  line-height: 1.25;
}

.leadership-card-back-role {
  font-size: 0.88rem;
  font-weight: 700;
  color: #c49630;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(196, 150, 48, 0.3);
}

.leadership-card-back-bio {
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.65;
  font-family: var(--font-body);
  position: relative;
  z-index: 2;
}

.leadership-card-back-footer {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.leadership-card-back-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(196, 150, 48, 0.2);
  color: #c49630;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
}

/* Floating Navigation Buttons */
.leadership-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(19, 84, 61, 0.15);
  color: #134c2f;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.leadership-carousel-btn:hover {
  background: #c49630;
  color: #ffffff;
  border-color: #c49630;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 12px 28px rgba(196, 150, 48, 0.4);
}

.leadership-carousel-btn.prev-btn {
  left: -20px;
}

.leadership-carousel-btn.next-btn {
  right: -20px;
}

@media (max-width: 768px) {
  .leadership-carousel-wrapper {
    padding: 0 10px;
  }

  .leadership-carousel-btn.prev-btn {
    left: -10px;
  }

  .leadership-carousel-btn.next-btn {
    right: -10px;
  }
}

/* Carousel Dots Indicator */
.leadership-carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.leadership-carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(19, 84, 61, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.leadership-carousel-dot.active {
  background: #c49630;
  width: 32px;
  border-radius: 12px;
}

/* Modal Popup System */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 46, 33, 0.75);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  background: #ffffff;
  border-radius: var(--border-radius-lg);
  padding: 36px;
  max-width: 540px;
  width: 90%;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  position: relative;
  transform: translateY(30px);
  transition: transform 0.3s ease;
  border: 1px solid var(--color-secondary);
}

.modal-overlay.active .modal-box {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(19, 84, 61, 0.08);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.modal-close:hover {
  background: var(--color-secondary);
  color: #fff;
}

.employer-top-bar {
  background: #0b2e21;
  color: #ffffff;
  padding: 8px 0;
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(197, 155, 39, 0.3);
}

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

.employer-links-list {
  display: flex;
  gap: 16px;
  list-style: none;
  align-items: center;
}

.employer-link-item {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition-fast);
  cursor: pointer;
}

.employer-link-item:hover {
  color: var(--color-secondary);
}

@media (max-width: 768px) {
  .leadership-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 24px;
  }

  .sticky-cta-bar {
    bottom: 15px;
    right: 15px;
  }
}

/* Smooth anchor scrolling and offset for sticky header */
html {
  scroll-behavior: smooth;
}

.industry-detail-card {
  scroll-margin-top: 120px;
}

/* ==========================================================================
   WHY PLATINUM SECTION
   ========================================================================== */
.why-platinum-section {
  background: var(--bg-secondary);
  border-top: var(--border-glass);
  border-bottom: var(--border-glass);
  position: relative;
  overflow: hidden;
}

.why-platinum-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.why-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 36px;
  background: rgba(255, 255, 255, 0.85);
  border: var(--border-glass);
  border-radius: var(--border-radius-md);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(197, 155, 39, 0.45);
  box-shadow: 0 12px 36px rgba(19, 84, 61, 0.08), 0 0 25px rgba(197, 155, 39, 0.15);
  background: #ffffff;
}

.why-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: rgba(19, 84, 61, 0.07);
  border: 1px solid rgba(19, 84, 61, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
  margin-bottom: 22px;
  transition: var(--transition-normal);
}

.why-card:hover .why-icon {
  background: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-secondary);
}

.why-title {
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 12px;
  font-family: var(--font-title);
  font-weight: 700;
}

.why-desc {
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.65;
  flex-grow: 1;
}

.reveal-delay-4 {
  transition-delay: 0.6s;
}

@media (max-width: 992px) {
  .why-platinum-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ==========================================================================
   CLIENT TESTIMONIALS SECTION (MATCHING ATTACHED DESIGN)
   ========================================================================== */
.testimonials-section {
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.testimonials-main-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: #134c2f;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  font-family: var(--font-title), sans-serif;
}

.testimonials-main-subtitle {
  color: #667085;
  font-size: 1.08rem;
  font-weight: 400;
  margin: 0 auto;
  max-width: 600px;
}

.testimonials-slider-wrapper {
  position: relative;
  width: 100%;
}

.testimonials-cards-container {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 12px 4px 24px 4px;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE and Edge */
}

.testimonials-cards-container::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 300px;
  background: #ffffff;
  border: 1px solid #eaecf0;
  border-radius: 18px;
  padding: 40px 32px 32px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0px 4px 12px rgba(16, 24, 40, 0.03);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: #d0d5dd;
  box-shadow: 0px 16px 32px rgba(16, 24, 40, 0.08);
}

.testimonial-quote-mark {
  font-family: Georgia, serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #101828;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1;
}

.testimonial-body {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #344054;
  text-align: center;
  font-weight: 400;
  margin-bottom: 32px;
  flex-grow: 1;
}

.testimonial-client-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  border-top: 1px solid #f2f4f7;
  padding-top: 20px;
}

.client-avatar-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #eaecf0;
  flex-shrink: 0;
}

.client-info {
  display: flex;
  flex-direction: column;
}

.client-name {
  font-size: 0.94rem;
  font-weight: 700;
  color: #101828;
  margin: 0 0 2px 0;
  font-family: var(--font-body), sans-serif;
}

.client-role {
  font-size: 0.8rem;
  color: #667085;
  margin: 0;
  font-weight: 400;
}

.testimonial-nav-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.testimonial-nav-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #eaecf0;
  color: #344054;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
}

.testimonial-nav-btn:hover {
  background: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
  transform: translateY(-1px);
  box-shadow: 0px 4px 8px rgba(19, 84, 61, 0.2);
}

.testimonial-nav-btn:active {
  transform: translateY(0);
}

@media (max-width: 992px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 12px);
  }

  .testimonials-main-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 640px) {
  .testimonial-card {
    flex: 0 0 100%;
  }

  .testimonials-main-title {
    font-size: 1.8rem;
  }

  .testimonial-card {
    padding: 28px 20px 24px 20px;
  }
}

/* ==========================================================================
   GLOBAL FOOTER STYLES (MATCHING ATTACHED DESIGN)
   ========================================================================== */
footer {
  background: radial-gradient(circle at 20% 30%, rgba(201, 162, 74, .25), transparent 40%), radial-gradient(circle at 80% 70%, rgba(201, 162, 74, .2), transparent 40%);
  border-top: 1px solid rgba(19, 84, 61, 0.08);
  padding: 64px 0 0 0;
  color: #4a5568;
  position: relative;
  width: 100%;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-desc {
  font-size: 0.92rem;
  color: #4a5568;
  line-height: 1.65;
  margin: 16px 0 24px 0;
  max-width: 330px;
}

.social-links {
  display: flex;
  gap: 12px;
  align-items: center;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e2e8f0;
  color: #475569;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.social-icon svg {
  width: 18px;
  height: 18px;
}

.social-icon:hover {
  background: var(--color-primary);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(19, 84, 61, 0.2);
}

.footer-title {
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #0d281e;
  margin-bottom: 20px;
  font-family: var(--font-title), sans-serif;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  color: #4a5568;
  text-decoration: none;
  font-size: 0.92rem;
  transition: all 0.2s ease;
  display: inline-block;
}

.footer-link:hover {
  color: var(--color-primary);
  transform: translateX(3px);
}

.newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.newsletter-form .form-control {
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  font-size: 0.88rem;
  background: #ffffff;
  color: #1e293b;
  outline: none;
  transition: border-color 0.2s;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.03);
}

.newsletter-form .form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(19, 84, 61, 0.1);
}

.newsletter-form .btn-primary {
  padding: 10px 22px;
  border-radius: 8px;
  background: linear-gradient(135deg, #8c6e1c 0%, #c59b27 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.85rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.newsletter-form .btn-primary:hover {
  background: linear-gradient(135deg, #13543d 0%, #1a6b4e 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(19, 84, 61, 0.25);
}

.footer-bottom-wrapper {
  width: 100%;
  background: #134c2f;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-bottom {
  padding: 24px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.88rem;
  color: #ffffff;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-bottom-links a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}

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

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .footer-bottom-links {
    justify-content: center;
  }
}