/* ==========================================================================
   DESIGN SYSTEM & CUSTOM PROPERTIES
   ========================================================================== */
:root {
  /* Fonts */
  --font-family-title: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-family-body: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Brand Colors */
  --color-primary: #0f172a;       /* Dark Slate */
  --color-accent-blue: #38bdf8;   /* Cyan 400 */
  --color-accent-indigo: #60a5fa; /* Blue 400 */
  --color-text-white: #ffffff;
  --color-text-light: #e2e8f0;    /* Slate 200 */
  --color-text-muted: #94a3b8;    /* Slate 400 */
  
  /* Glassmorphism Styles */
  --nav-glass-bg: rgba(255, 255, 255, 0.45);
  --nav-glass-border: rgba(255, 255, 255, 0.35);
  --nav-glass-blur: 14px;
  --nav-glass-shadow: 0 16px 50px -10px rgba(15, 23, 42, 0.22),
                      0 4px 15px -5px rgba(37, 99, 235, 0.12), 
                      0 1px 0 rgba(255, 255, 255, 0.6) inset;

  --hero-glass-bg: rgba(255, 255, 255, 0.22);
  --hero-glass-border: rgba(255, 255, 255, 0.38);
  --hero-glass-blur: 36px;
  --hero-glass-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.45), 
                       0 1px 0 rgba(255, 255, 255, 0.45) inset;
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

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

html {
  width: 100%;
  height: 100%;
  font-size: 16px;
}

body {
  width: 100%;
  min-height: 100%;
  font-family: var(--font-family-body);
  background-color: transparent; /* Set to transparent so the background video container is visible */
  color: var(--color-text-white);
  overflow-x: hidden;
}

/* ==========================================================================
   BACKGROUND VIDEO & FILTERS
   ========================================================================== */
.video-bg-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1; /* Change to -1 so it stays behind page content but in front of body canvas */
  overflow: hidden;
  background-color: var(--color-primary); /* Fallback background color */
}

.video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Visual enhancement: keep it bright and clear, let the video shine */
  filter: brightness(0.8) contrast(1.05) saturate(1.05);
  transform: scale(1.01); /* Prevent fine border artifacting due to object-fit */
}

.video-overlay {
  position: absolute;
  inset: 0;
  /* Light neutral dark overlay (no blue tint) for readability */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.22) 100%);
  z-index: 1;
}

/* ==========================================================================
   NAVIGATION BAR (GLASSMORPHIC & EQUIDISTANT)
   ========================================================================== */
.navbar-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 2rem;
  transition: var(--transition-smooth);
}

/* Scrolled state applied via JS */
.navbar-header.scrolled {
  padding: 0.8rem 2rem;
}

.navbar-wrapper {
  max-width: 1280px;
  margin: 0 auto;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 100px;
  padding: 0.65rem 2rem 0.65rem 1.75rem;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12), 
              inset 0 1px 0 rgba(255, 255, 255, 0.95), 
              inset 0 8px 12px rgba(255, 255, 255, 0.35), 
              inset 0 -4px 8px rgba(255, 255, 255, 0.08);
  transition: var(--transition-smooth);
  position: relative;
}

/* Background Layer carrying blur, gradient background and clip for waves */
.navbar-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.65) 100%);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-radius: 100px;
  overflow: hidden; /* Clips the waves inside the navbar boundaries */
  pointer-events: none;
  z-index: 0;
}

/* Horizontal Wave Currents - Smaller, Subtle, and Visible */
.navbar-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  /* Two distinct smaller waves with visible but soft peaks */
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.65) 20%,
    rgba(255, 255, 255, 0.92) 25%,
    rgba(255, 255, 255, 0.65) 30%,
    rgba(255, 255, 255, 0) 45%,
    rgba(255, 255, 255, 0) 55%,
    rgba(255, 255, 255, 0.65) 70%,
    rgba(255, 255, 255, 0.92) 75%,
    rgba(255, 255, 255, 0.65) 80%,
    rgba(255, 255, 255, 0) 100%
  );
  animation: waveCurrents 16s infinite ease-in-out; /* Slower, elegant movement */
  pointer-events: none;
  z-index: 1;
  opacity: 0.75; /* Subtle glossy look */
}

@keyframes waveCurrents {
  0% {
    left: -150%;
    transform: skewX(-15deg);
  }
  50% {
    transform: skewX(-10deg) scaleY(1.05);
  }
  100% {
    left: 150%;
    transform: skewX(-15deg);
  }
}

.logo-link {
  display: flex;
  align-items: center;
  padding: 0.25rem 0;
  position: relative;
  z-index: 2; /* Sit above flowing wave */
}

.navbar-logo {
  height: 60px; /* Increased logo size for better visibility */
  width: auto;
  object-contain: fit;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo-link:hover .navbar-logo {
  transform: scale(1.03);
}

/* Desktop Navigation Link Wrapper */
.nav-links-wrapper {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  margin-left: 2rem;
  position: relative;
  z-index: 2; /* Sit above flowing wave */
}

/* Page Names Equidistant Rules */
.nav-menu {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
  max-width: 620px; /* Adjusted from 820px to keep 5 items clustered but equidistant */
}

.nav-item {
  flex: 1; /* Distribute total width equally among 5 elements */
  display: flex;
  justify-content: center; /* Center each item inside its grid slice */
  position: relative;
}

.nav-link {
  display: inline-block;
  padding: 0.65rem 1.1rem;
  color: #1e293b; /* Dark Slate Gray for readability on light glass */
  text-decoration: none;
  font-family: var(--font-family-title);
  font-weight: 500;
  font-size: 0.92rem;
  border-radius: 100px;
  transition: var(--transition-smooth);
  width: 88%; /* Consistent click/interactive boundary */
  text-align: center;
  white-space: nowrap;
}

.nav-link.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  cursor: pointer;
}

.nav-link:hover {
  color: #1d4ed8; /* Vibrant Blue */
  background: rgba(37, 99, 235, 0.07);
}

.nav-link.active {
  background: #0f172a; /* Slate 900 */
  color: var(--color-text-white);
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.15);
}

/* NAVIGATION DROPDOWN MENU */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.65) 100%);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 1.25rem;
  padding: 0.6rem;
  min-width: 12.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12), 
              inset 0 1px 0 rgba(255, 255, 255, 0.95);
  z-index: 1000;
  list-style: none;
  margin: 0;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.82);
  border-left: 1px solid rgba(255, 255, 255, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.7);
}

.nav-item.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(6px);
}

.dropdown-chevron {
  width: 0.8rem;
  height: 0.8rem;
  transition: transform 0.3s ease;
  stroke-width: 2.5;
}

.nav-item.dropdown:hover .dropdown-chevron {
  transform: rotate(180deg);
}

.dropdown-item {
  padding: 0.65rem 1.1rem;
  border-radius: 0.75rem;
  color: #334155;
  font-family: var(--font-family-title);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s ease;
  display: block;
  text-decoration: none;
  text-align: left;
}

.dropdown-item:hover {
  background-color: rgba(37, 99, 235, 0.06);
  color: #1d4ed8;
}

.dropdown-item.active {
  background-color: #0f172a;
  color: #ffffff;
  font-weight: 600;
}

/* MOBILE DROPDOWN STYLING */
.mobile-dropdown {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.mobile-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.25rem;
  color: #1e293b;
  font-family: var(--font-family-title);
  font-weight: 500;
  font-size: 1.15rem;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.mobile-dropdown-toggle:hover {
  background: rgba(37, 99, 235, 0.05);
  color: #1d4ed8;
}

.mobile-chevron {
  width: 1.2rem;
  height: 1.2rem;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-dropdown.open .mobile-chevron {
  transform: rotate(180deg);
}

.mobile-dropdown-menu {
  display: none;
  list-style: none;
  padding-left: 1.5rem;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.25rem;
}

.mobile-dropdown.open .mobile-dropdown-menu {
  display: flex;
}

.mobile-nav-link.nested-link {
  font-size: 1.05rem;
  opacity: 0.85;
}

/* Mobile Toggle Button */
.mobile-toggle-btn {
  display: none; /* Hidden on desktop */
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: #1e293b;
  border-radius: 50%;
  transition: var(--transition-fast);
  position: relative;
  z-index: 2; /* Sit above flowing wave */
}

.mobile-toggle-btn:hover {
  background: rgba(15, 23, 42, 0.05);
}

.hamburger-icon {
  width: 24px;
  height: 24px;
}

/* ==========================================================================
   HERO / MAIN CONTENT (GLASSMOPHIC CARD OVERLAY)
   ========================================================================== */
.hero-container {
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column; /* Stack the Title Card and buttons vertically */
  align-items: center;
  justify-content: center;
  gap: 2.5rem; /* Space between Title Card and separate CTA buttons */
  padding: 8rem 2rem 4rem;
}

.hero-glass-card {
  position: relative;
  z-index: 10;
  background: var(--hero-glass-bg);
  backdrop-filter: blur(var(--hero-glass-blur)) saturate(120%);
  -webkit-backdrop-filter: blur(var(--hero-glass-blur)) saturate(120%);
  border: 1px solid var(--hero-glass-border);
  border-radius: 2.5rem;
  padding: 2.25rem 3.25rem; /* Shrunk padding vertically to reduce box height */
  max-width: 840px; /* Increased max-width to give text more breathing room */
  width: 100%;
  box-shadow: var(--hero-glass-shadow);
  text-align: center;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  will-change: transform, opacity;
  animation: heroCardCinematicIntro 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 2.8s; /* Cinematic delay to allow video to start playing */
}

.hero-glass-card:hover {
  transform: translateY(-4px) scale(1.005);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 45px 85px -10px rgba(0, 0, 0, 0.55), 
              0 1px 0 rgba(255, 255, 255, 0.15) inset;
}

.hero-title {
  font-family: var(--font-family-title);
  font-size: 4.5rem;
  font-weight: 800; /* Extra bold, modern corporate style */
  line-height: 1.3; /* Increased line-height for more breathing room */
  color: var(--color-text-white);
  margin-bottom: 1rem; /* Reduced margin to shrink box height */
  letter-spacing: -0.02em;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.35); /* Text shadow to pop on bright background */
  opacity: 0;
  will-change: transform, opacity;
  animation: heroTextCinematicIntro 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 3.3s; /* Staggered fade-in */
}

.highlight-gradient {
  font-weight: 800; /* Extra bold highlight */
  color: #1d4ed8; /* Vibrant Royal Blue solid color to stand out */
  display: inline-block;
  position: relative;
  padding-right: 8px;
}

.highlight-gradient::after {
  content: '';
  position: absolute;
  right: -2px;
  top: 15%;
  height: 70%;
  width: 3px;
  background: #1d4ed8;
  animation: blinkCursor 0.8s infinite;
  opacity: 1;
}

@keyframes blinkCursor {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

@keyframes intelligentWave {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 400% center;
  }
}

/* Elegant Accent Bars underneath Heading */
.accent-bar-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem; /* Reduced margin to shrink box height */
  opacity: 0;
  will-change: transform, opacity;
  animation: heroTextCinematicIntro 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 3.5s; /* Staggered fade-in */
}

.bar-long {
  width: 60px;
  height: 4px;
  background: linear-gradient(to right, var(--color-accent-blue), var(--color-accent-indigo));
  border-radius: 2px;
}

.bar-medium {
  width: 20px;
  height: 4px;
  background: var(--color-accent-indigo);
  border-radius: 2px;
  opacity: 0.6;
}

.bar-short {
  width: 8px;
  height: 4px;
  background: var(--color-accent-blue);
  border-radius: 2px;
  opacity: 0.3;
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--color-text-light);
  max-width: 680px;
  margin: 0 auto; /* Removed bottom margin as buttons are now outside card */
  font-weight: 400; /* Slightly heavier weight for high readability */
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
  opacity: 0;
  will-change: transform, opacity;
  animation: heroTextCinematicIntro 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 3.7s; /* Staggered fade-in */
}

.bold-highlight {
  font-weight: 600;
  color: var(--color-text-white);
  border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  opacity: 0;
  will-change: transform, opacity;
  animation: heroTextCinematicIntro 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 3.9s; /* Staggered fade-in */
}

/* PREMIUM ACTION BUTTONS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--color-text-white);
  color: #0f172a;
  padding: 1.1rem 2.2rem;
  border-radius: 100px;
  font-weight: 600;
  text-decoration: none;
  font-family: var(--font-family-title);
  font-size: 1rem;
  box-shadow: 0 10px 25px -5px rgba(255, 255, 255, 0.2);
  transition: var(--transition-smooth);
}

.btn-primary:hover {
  background: #f8fafc;
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -5px rgba(255, 255, 255, 0.35);
}

.btn-primary svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.btn-primary:hover svg {
  transform: translateX(3px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-text-white);
  padding: 1.1rem 2.2rem;
  border-radius: 100px;
  font-weight: 500;
  text-decoration: none;
  font-family: var(--font-family-title);
  font-size: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition-smooth);
  backdrop-filter: blur(4px);
}

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

.btn-secondary svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.btn-secondary:hover svg {
  transform: translateX(3px);
}

/* ==========================================================================
   MOBILE MENU OVERLAY & CARDS
   ========================================================================== */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-card {
  width: 100%;
  max-width: 420px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 2rem;
  padding: 2.5rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
  position: relative;
  transform: translateY(20px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  color: #0f172a;
}

.mobile-overlay.active .mobile-menu-card {
  transform: translateY(0) scale(1);
}

.mobile-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: #64748b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.mobile-close-btn:hover {
  background: rgba(0, 0, 0, 0.05);
  color: #0f172a;
}

.mobile-close-btn svg {
  width: 20px;
  height: 20px;
}

.mobile-menu-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.25rem;
}

.brand-icon-wrapper {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.brand-icon-wrapper svg {
  width: 22px;
  height: 22px;
}

.brand-title {
  font-family: var(--font-family-title);
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
}

.brand-subtitle {
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 500;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-nav-link {
  display: block;
  padding: 0.9rem 1.5rem;
  border-radius: 1rem;
  color: #475569;
  text-decoration: none;
  font-family: var(--font-family-title);
  font-weight: 500;
  font-size: 1.05rem;
  transition: var(--transition-fast);
}

.mobile-nav-link:hover {
  color: #2563eb;
  background: rgba(37, 99, 235, 0.05);
}

.mobile-nav-link.active {
  background: rgba(37, 99, 235, 0.09);
  color: #2563eb;
  font-weight: 600;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes heroCardCinematicIntro {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    filter: blur(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes heroTextCinematicIntro {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */

/* Large screens: Adjust max-width of nav menu to enforce spacing */
@media (max-width: 1200px) {
  .nav-menu {
    max-width: 720px;
  }
  .nav-link {
    padding: 0.55rem 0.85rem;
    font-size: 0.88rem;
  }
}

/* Medium / Tablet screens (Hide desktop navbar, show mobile menu toggle) */
@media (max-width: 992px) {
  .navbar-header {
    padding: 1.25rem 1.5rem;
  }
  
  .navbar-header.scrolled {
    padding: 0.8rem 1.5rem;
  }

  .nav-links-wrapper {
    display: none; /* Hide desktop links */
  }

  .mobile-toggle-btn {
    display: block; /* Show hamburger button */
  }

  .navbar {
    padding: 0.5rem 1.5rem 0.5rem 1.25rem;
  }

  .navbar-logo {
    height: 38px;
  }

  .hero-glass-card {
    padding: 3.5rem 2.5rem;
    border-radius: 2rem;
  }

  .hero-title {
    font-size: 3.25rem;
  }

  .hero-subtitle {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
  }
}

/* Mobile Screens */
@media (max-width: 576px) {
  .hero-container {
    padding: 7rem 1rem 3rem;
  }

  .hero-glass-card {
    padding: 2.5rem 1.5rem;
    border-radius: 1.75rem;
  }

  .hero-title {
    font-size: 2.35rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.5;
  }

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

  .btn-primary, .btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
  }
}

/* ==========================================================================
   TRUSTED PARTNER SECTION (Ported from Old Website - Exact styling)
   ========================================================================== */
.trust-section {
  position: relative;
  z-index: 10;
  padding: 4.5rem 1.5rem; /* py-18 px-6 (Reduced from 6rem) */
  width: 100%;
  background: linear-gradient(135deg, #0f172a 0%, #0f2d59 50%, #0f172a 100%); /* bg-gradient-to-br from-slate-900 via-blue-900 to-slate-900 */
  color: #ffffff; /* text-white */
  overflow: hidden;
}

/* Background Pattern */
.trust-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 2px 2px, #60a5fa 1px, transparent 0);
  background-size: 50px 50px;
  opacity: 0.1; /* opacity-10 */
  pointer-events: none;
}

/* Decorative Blur Blobs */
.trust-blob-1 {
  position: absolute;
  top: 2.5rem; /* top-10 */
  right: 2.5rem; /* right-10 */
  width: 16rem; /* w-64 */
  height: 16rem; /* h-64 */
  background: #3b82f6; /* bg-blue-50 */
  border-radius: 9999px; /* rounded-full */
  filter: blur(64px); /* blur-3xl */
  opacity: 0.2; /* opacity-20 */
  pointer-events: none;
}

.trust-blob-2 {
  position: absolute;
  bottom: 2.5rem; /* bottom-10 */
  left: 2.5rem; /* left-10 */
  width: 16rem; /* w-64 */
  height: 16rem; /* h-64 */
  background: #06b6d4; /* bg-cyan-500 */
  border-radius: 9999px; /* rounded-full */
  filter: blur(64px); /* blur-3xl */
  opacity: 0.2; /* opacity-20 */
  pointer-events: none;
}

.trust-container {
  width: 100%;
  max-width: 80rem; /* max-w-7xl */
  margin: 0 auto;
  position: relative;
  z-index: 10; /* z-10 */
}

.trust-header {
  text-align: center; /* text-center */
  margin-bottom: 3.5rem; /* mb-14 */
}

.trust-badge {
  display: inline-flex; /* inline-flex */
  align-items: center; /* items-center */
  gap: 0.5rem; /* gap-2 */
  padding: 0.5rem 1.25rem; /* py-2 px-5 */
  background: rgba(29, 66, 216, 0.2); /* bg-blue-600/20 */
  border: 1px solid rgba(110, 148, 255, 0.3); /* border-blue-400/30 */
  border-radius: 9999px; /* rounded-full */
  margin-bottom: 1.25rem; /* mb-5 */
}

.trust-badge-icon {
  width: 1rem; /* w-4 */
  height: 1rem; /* h-4 */
  color: #6e94ff; /* text-blue-400 */
}

.trust-badge span {
  font-size: 0.8rem; /* text-sm reduced */
  font-weight: 600; /* font-semibold */
  color: #9cbaff; /* text-blue-300 */
  text-transform: uppercase; /* uppercase */
  letter-spacing: 0.05em; /* tracking-wider */
}

.trust-title {
  font-size: 1.3rem; /* text-2xl reduced from 1.5rem */
  color: #e2e8f0; /* text-slate-200 */
  max-width: 56rem; /* max-w-4xl */
  margin-left: auto;
  margin-right: auto;
  line-height: 1.625; /* leading-relaxed */
  font-weight: 300; /* font-light */
}

.trust-grid {
  display: grid; /* grid */
  grid-template-columns: repeat(3, 1fr); /* md:grid-cols-3 */
  gap: 1.5rem; /* gap-6 */
  width: 100%;
  max-width: 72rem; /* max-w-6xl */
  margin: 0 auto; /* mx-auto */
}

.trust-card {
  position: relative; /* relative */
  background: rgba(255, 255, 255, 0.05); /* bg-white/5 */
  backdrop-filter: blur(4px); /* backdrop-blur-sm */
  -webkit-backdrop-filter: blur(4px);
  padding: 2.25rem; /* p-9 reduced from 2.5rem */
  border: 2px solid rgba(255, 255, 255, 0.1); /* border-2 border-white/10 */
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); /* transition-all duration-300 */
  overflow: hidden; /* overflow-hidden */
}

.trust-card-overlay {
  position: absolute;
  top: 0; /* top-0 */
  right: 0; /* right-0 */
  width: 8rem; /* w-32 */
  height: 8rem; /* h-32 */
  background: linear-gradient(135deg, rgba(110, 148, 255, 0.2) 0%, transparent 100%); /* bg-gradient-to-br from-blue-500/20 to-transparent */
  border-bottom-left-radius: 9999px; /* rounded-bl-full */
}

.trust-card:nth-child(2) .trust-card-overlay {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.2) 0%, transparent 100%); /* from-cyan-500/20 to-transparent */
}

.trust-card:hover {
  border-color: rgba(110, 148, 255, 0.5); /* hover:border-blue-400/50 */
}

.trust-card:nth-child(2):hover {
  border-color: rgba(34, 211, 238, 0.5); /* hover:border-cyan-400/50 */
}

.trust-stat {
  font-size: 3.25rem; /* text-6xl reduced from 3.75rem */
  font-weight: 300; /* font-light */
  margin-bottom: 0.6rem; /* mb-2 */
  background: linear-gradient(to right, #6e94ff, #22d3ee); /* bg-gradient-to-r from-blue-400 to-cyan-400 */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.trust-heading-sm {
  font-size: 1.6rem; /* text-3xl reduced from 1.875rem */
  font-weight: 600; /* font-semibold */
  margin-bottom: 0.6rem; /* mb-2 */
  color: #67e8f9; /* text-cyan-300 */
}

.trust-label {
  color: #c2d7ff; /* text-blue-200 */
  text-transform: uppercase; /* uppercase */
  font-size: 0.8rem; /* text-sm reduced from 0.875rem */
  letter-spacing: 0.05em; /* tracking-wider */
  font-weight: 600; /* font-semibold */
}

.trust-card:nth-child(2) .trust-label {
  color: #a5f3fc; /* text-cyan-200 */
}

/* Responsive adjustment for Trust Strip */
@media (max-width: 768px) {
  .trust-grid {
    grid-template-columns: 1fr; /* 1 col on mobile */
    gap: 1.5rem;
    max-width: 500px;
  }
  
  .trust-section {
    padding: 4rem 1.5rem; /* Reduced from 6rem */
  }
}

/* ==========================================================================
   OUR CLIENTS LOGOS SECTION
   ========================================================================== */
.clients-section {
  padding: 4.5rem 1.5rem;
  background-color: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  width: 100%;
  position: relative;
  z-index: 10;
}

.clients-container {
  max-width: 80rem; /* max-w-7xl */
  margin: 0 auto;
}

.clients-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.clients-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  background-color: rgba(37, 99, 235, 0.06);
  border-radius: 9999px;
  margin-bottom: 0.75rem;
}

.clients-badge span {
  font-size: 0.725rem;
  font-weight: 600;
  color: #2563eb;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.clients-title {
  font-size: 1.5rem;
  font-weight: 400;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  align-items: center;
  justify-items: center;
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .clients-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.client-logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 6rem;
  width: 100%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.client-logo-wrapper:hover {
  transform: translateY(-2px);
  background: #ffffff;
  border-color: rgba(37, 99, 235, 0.2);
  box-shadow: 0 10px 25px -10px rgba(15, 23, 42, 0.06);
}

.client-logo {
  max-width: 100%;
  height: auto;
  max-height: 2.25rem; /* Standardized height to match the construction resources footprint */
  object-fit: contain;
  opacity: 0.9;
  filter: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.client-logo-wrapper:hover .client-logo {
  opacity: 1;
  transform: scale(1.04);
}

/* ==========================================================================
   OUR APPROACH SECTION (Ported from Old Website)
   ========================================================================== */
.approach-section {
  position: relative;
  z-index: 10;
  padding: 6rem 1.5rem; /* py-24 px-6 (Reduced from 8rem) */
  width: 100%;
  background-color: #ffffff; /* bg-white */
  color: #0f172a; /* text-slate-900 */
}

.approach-container {
  width: 100%;
  max-width: 80rem; /* max-w-7xl */
  margin: 0 auto;
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

.approach-sticky {
  position: static;
}

.approach-subtitle {
  font-size: 0.8rem; /* text-sm reduced from 0.875rem */
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em; /* tracking-wider */
  color: #64748b; /* text-slate-500 */
  margin-bottom: 1.25rem; /* mb-5 */
}

.approach-title {
  font-family: var(--font-family-title);
  font-size: 2.5rem; /* fallback for mobile reduced from 3rem */
  font-weight: 300; /* font-light */
  color: #0f172a; /* text-slate-900 */
  line-height: 1.25; /* leading-tight */
  margin-bottom: 1.5rem;
}

.approach-right {
  display: flex;
  flex-direction: column;
  gap: 2rem; /* space-y-8 reduced from 2.5rem */
}

.approach-highlight-box {
  border-left: 4px solid #0f172a; /* border-l-4 border-slate-900 */
  padding-left: 1.75rem; /* pl-7 */
}

.approach-lead-text {
  font-size: 1.2rem; /* fallback for mobile reduced from 1.35rem */
  color: #334155; /* text-slate-700 */
  line-height: 1.625; /* leading-relaxed */
  font-weight: 400;
}

.approach-body-text {
  font-size: 1.05rem; /* fallback for mobile reduced from 1.15rem */
  color: #475569; /* text-slate-600 */
  line-height: 1.625; /* leading-relaxed */
}

.approach-action {
  padding-top: 1.5rem; /* pt-6 */
}

.approach-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem; /* gap-3 */
  border-bottom: 2px solid #0f172a;
  padding-bottom: 0.5rem; /* pb-2 */
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.approach-link span {
  font-size: 1rem; /* text-lg reduced from 1.125rem */
  font-weight: 500;
  color: #0f172a;
}

.approach-link-icon {
  width: 1.125rem; /* w-4.5 reduced from 1.25rem */
  height: 1.125rem; /* h-4.5 */
  color: #0f172a;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hover effect */
.approach-link:hover {
  gap: 1.125rem; /* hover:gap-4.5 */
}

/* Responsive styles */
@media (min-width: 992px) {
  .approach-grid {
    grid-template-columns: repeat(5, 1fr); /* lg:grid-cols-5 */
    gap: 4.5rem; /* gap-18 reduced from 5rem */
  }
  
  .approach-left {
    grid-column: span 2 / span 2; /* lg:col-span-2 */
  }
  
  .approach-right {
    grid-column: span 3 / span 3; /* lg:col-span-3 */
  }
  
  .approach-sticky {
    position: sticky;
    top: 7rem; /* sticky top-28 */
  }
  
  .approach-title {
    font-size: 3rem; /* text-6xl reduced from 3.75rem */
  }
  
  .approach-lead-text {
    font-size: 1.35rem; /* text-2xl reduced from 1.5rem */
  }
  
  .approach-body-text {
    font-size: 1.125rem; /* text-xl reduced from 1.25rem */
  }
}

/* ==========================================================================
   VALUE PROPOSITION SECTION (Solutions Integrated)
   ========================================================================== */
/* ==========================================================================
   VALUE PROPOSITION SECTION (Solutions Integrated)
   ========================================================================== */
.val-prop-section {
  position: relative;
  z-index: 10;
  padding: 4.25rem 1.5rem; /* py-17 px-6 (Reduced from 6.5rem for more compactness) */
  width: 100%;
  background: linear-gradient(135deg, #0f172a 0%, #0f2d59 50%, #0f172a 100%); /* Same gradient as Trusted Partner */
  color: #ffffff; /* text-white */
  overflow: hidden;
}

.val-prop-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 2px 2px, #60a5fa 1px, transparent 0);
  background-size: 50px 50px;
  opacity: 0.1; /* Same pattern as Trusted Partner */
  pointer-events: none;
  z-index: 1;
}

.val-prop-container {
  width: 100%;
  max-width: 80rem; /* max-w-7xl */
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

.val-prop-content {
  width: 100%;
  max-width: 64rem; /* max-w-5xl */
  margin: 0 auto;
  text-align: center;
}

.val-prop-title {
  font-family: var(--font-family-title);
  font-size: 3.5rem; /* mobile text-7xl fallback reduced from 4.5rem */
  font-weight: 300; /* font-light */
  margin-bottom: 1.75rem; /* mb-7 reduced from 3rem */
  line-height: 1.25;
}

.val-prop-body-wrapper {
  width: 100%;
  max-width: 48rem; /* max-w-3xl */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem; /* reduced from 1.5rem */
}

.val-prop-lead-text {
  font-size: 1.3rem; /* text-2xl reduced from 1.5rem */
  color: #cbd5e1; /* text-slate-300 */
  line-height: 1.625; /* leading-relaxed */
  border-left: 2px solid #ffffff; /* border-l-2 border-white */
  padding-left: 1.75rem; /* pl-7 */
  text-align: left; /* text-left */
  font-weight: 300; /* font-light */
}

.val-prop-sub-text {
  font-size: 1.125rem; /* text-xl reduced from 1.25rem */
  color: #94a3b8; /* text-slate-400 */
  line-height: 1.625;
}

@media (min-width: 768px) {
  .val-prop-title {
    font-size: 4.5rem; /* text-8xl reduced from 6rem */
  }
}

/* ==========================================================================
   RESULTS / PROOF SECTION (Connected Systems)
   ========================================================================== */
.results-section {
  position: relative;
  z-index: 10;
  padding: 4rem 1.5rem; /* py-16 px-6 (Reduced from 5.5rem for more compactness) */
  width: 100%;
  background: linear-gradient(135deg, #0f172a 0%, #0f2d59 50%, #0f172a 100%); /* Same gradient as Trusted Partner */
  color: #ffffff; /* text-white */
  overflow: hidden;
}

.results-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 2px 2px, #60a5fa 1px, transparent 0);
  background-size: 50px 50px;
  opacity: 0.1; /* Same pattern as Trusted Partner */
  pointer-events: none;
  z-index: 1;
}

.results-container {
  width: 100%;
  max-width: 80rem; /* max-w-7xl */
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

.results-header {
  margin-bottom: 2.25rem; /* mb-9 reduced from 4rem */
}

.results-subtitle {
  font-size: 0.8rem; /* text-sm reduced from 0.875rem */
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em; /* tracking-wider */
  color: #94a3b8; /* text-slate-400 */
  margin-bottom: 1.25rem; /* mb-5 */
}

.results-title {
  font-family: var(--font-family-title);
  font-size: 3.5rem; /* mobile text-7xl fallback reduced from 4.5rem */
  font-weight: 300; /* font-light */
  color: #ffffff; /* text-white */
  line-height: 1.25;
}

.results-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem; /* gap-8 reduced from 3rem */
}

.results-left {
  display: flex;
  flex-direction: column;
}

.results-lead-text {
  font-size: 1.5rem; /* text-3xl reduced from 1.875rem */
  color: #cbd5e1; /* text-slate-300 */
  line-height: 1.625;
  margin-bottom: 2rem; /* mb-8 */
  font-weight: 300; /* font-light */
}

.results-body-text {
  font-size: 1.125rem; /* text-xl reduced from 1.25rem */
  color: #94a3b8; /* text-slate-400 */
  line-height: 1.625;
  padding-left: 1.75rem; /* pl-7 */
  border-left: 2px solid #ffffff; /* border-l-2 border-white */
}

.results-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem; /* gap-4 */
}

.results-card {
  border: 2px solid rgba(255, 255, 255, 0.1); /* transparent border for dark mode */
  padding: 2.25rem; /* p-9 reduced from 2.5rem */
  background-color: rgba(255, 255, 255, 0.02); /* subtle glass bg */
  transition: border-color 0.3s ease, background-color 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.results-card:hover {
  border-color: #ffffff; /* hover:border-white */
  background-color: rgba(255, 255, 255, 0.05);
}

.results-card-icon {
  width: 2.25rem; /* w-9 reduced from 2.5rem */
  height: 2.25rem; /* h-9 */
  margin-bottom: 1.25rem; /* mb-5 */
  color: #cbd5e1; /* text-slate-300 */
}

.results-card-title {
  font-family: var(--font-family-title);
  font-size: 1.35rem; /* text-2xl reduced from 1.5rem */
  font-weight: 300; /* font-light */
  margin-bottom: 0.5rem; /* mb-2 */
  color: #ffffff;
}

.results-card-label {
  font-size: 0.75rem; /* text-xs */
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em; /* tracking-wider */
  color: #94a3b8; /* text-slate-400 */
}

.results-card.full-width {
  grid-column: span 2 / span 2; /* col-span-2 */
}

.results-action {
  margin-top: 3.5rem; /* mt-14 reduced from 4rem */
}

.results-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem; /* gap-3 */
  border-bottom: 2px solid #0f172a; /* border-b-2 border-slate-900 */
  padding-bottom: 0.5rem; /* pb-2 */
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.results-link span {
  font-size: 1rem; /* text-lg reduced from 1.125rem */
  font-weight: 500;
  color: #0f172a;
}

.results-link-icon {
  width: 1.125rem; /* w-4.5 reduced from 1.25rem */
  height: 1.125rem; /* h-4.5 */
  color: #0f172a;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hover effect */
.results-link:hover {
  gap: 1.125rem; /* hover:gap-4.5 */
}

@media (min-width: 992px) {
  .results-grid {
    grid-template-columns: 1fr 1fr; /* lg:grid-cols-2 */
    gap: 5rem; /* gap-20 reduced from 6rem */
  }
  
  .results-title {
    font-size: 4.5rem; /* text-8xl reduced from 6rem */
  }
}

/* ==========================================================================
   WHAT WE DO SECTION (Core Capabilities)
   ========================================================================== */
.capabilities-section {
  position: relative;
  z-index: 10;
  padding: 6rem 1.5rem; /* py-24 px-6 (Reduced from 8rem) */
  width: 100%;
  background-color: #ffffff; /* pure white requested by user */
  color: #0f172a;
  overflow: hidden;
}

/* Background blur blobs */
.capabilities-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 24rem;
  height: 24rem;
  background-color: rgba(37, 99, 235, 0.05); /* blue-500/5 */
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

.capabilities-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24rem;
  height: 24rem;
  background-color: rgba(6, 182, 212, 0.05); /* cyan-500/5 */
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

.capabilities-container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 80rem; /* max-w-7xl */
  margin: 0 auto;
}

.capabilities-header {
  margin-bottom: 4rem; /* mb-16 reduced from 5rem */
}

.capabilities-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem; /* gap-2 */
  padding: 0.5rem 1.25rem; /* px-5 py-2 */
  background: linear-gradient(to right, #2563eb, #0891b2); /* bg-gradient-to-r from-blue-600 to-cyan-600 */
  color: #ffffff;
  border-radius: 9999px;
  margin-bottom: 1.25rem; /* mb-5 reduced from 1.5rem */
}

.capabilities-badge-icon {
  width: 1rem;
  height: 1rem;
}

.capabilities-badge-text {
  font-size: 0.8rem; /* text-sm reduced from 0.875rem */
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em; /* tracking-wider */
}

.capabilities-title {
  font-family: var(--font-family-title);
  font-size: 2.75rem; /* mobile fallback reduced from 3.25rem */
  font-weight: 300; /* font-light */
  color: #0f172a; /* text-slate-900 */
  margin-bottom: 1.25rem; /* mb-5 */
  line-height: 1.25;
}

.capabilities-lead-text {
  font-size: 1.2rem; /* mobile fallback reduced from 1.35rem */
  color: #475569; /* text-slate-600 */
  max-width: 48rem; /* max-w-3xl */
  font-weight: 300; /* font-light */
  line-height: 1.5;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem; /* gap-6 */
  margin-bottom: 3rem; /* mb-12 reduced from 4rem */
}

.service-card {
  position: relative;
  background-color: #ffffff;
  padding: 2.25rem; /* p-9 reduced from 2.5rem */
  cursor: pointer;
  overflow: hidden;
  border: 2px solid #e2e8f0; /* border-2 border-slate-200 */
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  color: #0f172a;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0f2d59, #0ea5e9);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 1;
}

.service-card-decor-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 8rem; /* w-32 */
  height: 8rem; /* h-32 */
  border-bottom-left-radius: 9999px; /* rounded-bl-full */
  background-color: #eff6ff; /* bg-blue-50 */
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 2;
}

.service-card-number {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-family: var(--font-family-title);
  font-size: 3.5rem; /* text-7xl reduced from 4.5rem */
  font-weight: 300; /* font-light */
  color: #0f172a;
  opacity: 0.1;
  user-select: none;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 2;
}

.service-card-icon-wrapper {
  display: inline-flex;
  padding: 1rem; /* p-4 */
  border-radius: 0.75rem; /* rounded-xl */
  background: linear-gradient(135deg, #dbeafe, #cffafe); /* bg-gradient-to-br from-blue-100 to-cyan-100 */
  margin-bottom: 1.25rem; /* mb-5 */
  position: relative;
  z-index: 10;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-card-icon {
  width: 1.75rem; /* w-7 reduced from 2rem */
  height: 1.75rem; /* h-7 */
  color: #1d4ed8; /* text-blue-700 */
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-card-title {
  font-size: 1.15rem; /* text-xl reduced from 1.25rem */
  font-weight: 600;
  margin-bottom: 0.75rem; /* mb-3 */
  color: #0f172a;
  position: relative;
  z-index: 10;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-card-description {
  font-size: 0.95rem; /* reduced from 1rem */
  line-height: 1.625;
  color: #475569; /* text-slate-600 */
  position: relative;
  z-index: 10;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Service Card Hover Overrides */
.service-card:hover {
  border-color: transparent;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(15, 45, 89, 0.18);
  color: #ffffff !important;
}

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

.service-card:hover .service-card-title,
.service-card:hover .service-card-description,
.service-card:hover .service-card-number {
  color: #ffffff !important;
}

.service-card:hover .service-card-number {
  opacity: 0.25;
}

.service-card:hover .service-card-decor-bg {
  background-color: rgba(255, 255, 255, 0.2) !important;
}

.service-card:hover .service-card-icon-wrapper {
  background: rgba(255, 255, 255, 0.2) !important;
}

.service-card:hover .service-card-icon {
  color: #ffffff !important;
}

/* Bottom Actions */
.capabilities-action {
  text-align: center;
}

.capabilities-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem; /* gap-3 */
  border: 2px solid #0f172a; /* border-2 border-slate-900 */
  padding: 1.1rem 2.5rem; /* py px reduced from 1.25rem 3rem */
  background-color: #ffffff;
  color: #0f172a;
  text-decoration: none;
  font-size: 1rem; /* text-lg reduced from 1.125rem */
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.capabilities-btn:hover {
  background-color: #0f172a;
  color: #ffffff;
}

.capabilities-btn-icon {
  width: 1.125rem; /* w-4.5 reduced from 1.25rem */
  height: 1.125rem; /* h-4.5 */
  transition: transform 0.3s ease;
}

.capabilities-btn:hover .capabilities-btn-icon {
  transform: translateX(4px);
}

@media (min-width: 768px) {
  .capabilities-grid {
    grid-template-columns: repeat(2, 1fr); /* md:grid-cols-2 */
  }
  
  .capabilities-title {
    font-size: 3.75rem; /* text-7xl reduced from 4.5rem */
  }
  
  .capabilities-lead-text {
    font-size: 1.3rem; /* text-2xl reduced from 1.5rem */
  }
}

@media (min-width: 992px) {
  .capabilities-grid {
    grid-template-columns: repeat(3, 1fr); /* lg:grid-cols-3 */
  }
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
  position: relative;
  padding: 5.5rem 1.5rem; /* py-22 px-6 (Reduced from 8rem) */
  width: 100%;
  background: linear-gradient(to bottom, #ffffff, #f8fafc);
  border-top: 1px solid #f1f5f9; /* border-t border-slate-100 */
  overflow: hidden;
}

/* Light Mode Decorative Blur Blobs */
.testimonials-blob-1 {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 25rem;
  height: 25rem;
  background-color: rgba(37, 99, 235, 0.05); /* very soft blue blob */
  filter: blur(120px);
  border-radius: 50%;
  pointer-events: none;
}

.testimonials-blob-2 {
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 25rem;
  height: 25rem;
  background-color: rgba(6, 182, 212, 0.05); /* very soft cyan blob */
  filter: blur(120px);
  border-radius: 50%;
  pointer-events: none;
}

.testimonials-container {
  width: 100%;
  max-width: 64rem; /* max-w-5xl */
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

.testimonials-header {
  margin-bottom: 3rem; /* mb-12 */
}

.testimonials-subtitle {
  font-size: 0.8rem; /* text-sm reduced from 0.875rem */
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em; /* tracking-wider */
  color: #2563eb; /* Match the active brand blue accent */
  margin-bottom: 1.25rem; /* mb-5 */
}

.testimonials-title {
  font-family: var(--font-family-title);
  font-size: 2.5rem; /* mobile text-6xl fallback reduced from 3rem */
  font-weight: 300; /* font-light */
  color: #0f172a; /* text-slate-900 */
  line-height: 1.25;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3.5rem;
}

@media (min-width: 992px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.testimonial-card {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(240, 246, 255, 0.72) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid rgba(110, 148, 255, 0.16);
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 0 10px 30px -15px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.testimonial-card-overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 8rem;
  height: 8rem;
  background: linear-gradient(135deg, rgba(110, 148, 255, 0.22) 0%, transparent 100%);
  border-bottom-left-radius: 9999px;
  pointer-events: none;
  z-index: 1;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(110, 148, 255, 0.55);
  box-shadow: 0 20px 40px -20px rgba(15, 23, 42, 0.08);
}

.testimonial-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.75rem;
  position: relative;
  z-index: 2;
}

.testimonial-brand-badge {
  display: inline-flex;
  align-items: center;
  background-color: rgba(37, 99, 235, 0.06);
  color: #2563eb;
  font-size: 0.725rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  letter-spacing: 0.02em;
  border: 1px solid rgba(37, 99, 235, 0.1);
}

.testimonial-quote-icon {
  display: flex;
  align-items: center;
}

.testimonial-quote-svg {
  width: 2.25rem;
  height: 2.25rem;
  color: #2563eb;
}

.testimonial-text {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-weight: 400;
  flex-grow: 1;
  position: relative;
  z-index: 2;
}

.testimonial-author-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border-top: 1px solid #f1f5f9;
  padding-top: 1.5rem;
  position: relative;
  z-index: 2;
}

.testimonial-author-avatar {
  width: 4.375rem; /* Enlarge to 70px */
  height: 4.375rem;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ffffff;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.testimonial-author-name {
  font-weight: 600;
  color: #0f172a;
  font-size: 1.2rem; /* Proportionally scaled up */
}

.testimonial-author-title {
  font-size: 1.0rem; /* Proportionally scaled up */
  color: #64748b;
  font-weight: 500;
}

/* ==========================================================================
   FINAL CTA SECTION
   ========================================================================== */
.final-cta-section {
  position: relative;
  padding: 6.5rem 1.5rem; /* py-26 px-6 (Reduced from 10rem) */
  width: 100%;
  background: #f8fafc; /* Fallback background */
  border-top: 1px solid #e2e8f0; /* border-t border-slate-200 */
  overflow: hidden;
}

.final-cta-video-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.final-cta-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9) contrast(1.05) saturate(1.02);
  transform: scale(1.01);
}

.final-cta-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.35) 100%);
  z-index: 2;
}

/* Grid background decoration */
.final-cta-grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: 
    linear-gradient(to right, #1e40af 1px, transparent 1px), 
    linear-gradient(to bottom, #1e40af 1px, transparent 1px);
  background-size: 100px 100px;
  pointer-events: none;
  z-index: 3;
}

/* Blur blobs using pseudo-elements */
.final-cta-section::before {
  content: "";
  position: absolute;
  top: -5rem;
  right: -5rem;
  width: 30rem;
  height: 30rem;
  background-color: rgba(37, 99, 235, 0.08); /* bg-blue-500/8 */
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.final-cta-section::after {
  content: "";
  position: absolute;
  bottom: -5rem;
  left: -5rem;
  width: 30rem;
  height: 30rem;
  background-color: rgba(6, 182, 212, 0.08); /* bg-cyan-500/8 */
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.final-cta-circle-decor {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border: 2px solid #bfdbfe; /* border-blue-200 */
  border-radius: 50%;
  opacity: 0.2;
  pointer-events: none;
}

.final-cta-container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 80rem; /* max-w-7xl */
  margin: 0 auto;
  text-align: center;
}

.final-cta-glass-card {
  max-width: 48rem; /* Shrunk from 56rem to make it smaller */
  margin: 0 auto 3rem auto; /* centered with margin-bottom */
  padding: 2.5rem 1.5rem; /* mobile padding reduced from 3rem */
  background: var(--hero-glass-bg); /* Similar to Title Card */
  backdrop-filter: blur(var(--hero-glass-blur)) saturate(120%);
  -webkit-backdrop-filter: blur(var(--hero-glass-blur)) saturate(120%);
  border: 1px solid var(--hero-glass-border);
  border-radius: 2.5rem; /* Matches Title Card border-radius */
  box-shadow: 0 40px 80px -15px rgba(15, 23, 42, 0.15), 
              0 1px 0 rgba(255, 255, 255, 0.45) inset;
}

@media (min-width: 768px) {
  .final-cta-glass-card {
    padding: 3.5rem 2.5rem; /* reduced from 5rem 4rem */
  }
}

.final-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem; /* gap-2 */
  padding: 0.5rem 1.25rem; /* px-5 py-2 */
  background: linear-gradient(to right, #2563eb, #0891b2); /* bg-gradient-to-r from-blue-600 to-cyan-600 */
  color: #ffffff;
  border-radius: 9999px;
  margin-bottom: 1.5rem; /* mb-6 reduced from 2rem */
}

.final-cta-badge-icon {
  width: 1rem;
  height: 1rem;
  color: #ffffff;
}

.final-cta-badge-text {
  font-size: 0.8rem; /* text-sm reduced from 0.875rem */
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em; /* tracking-wider */
}

.final-cta-title {
  font-family: var(--font-family-title);
  font-size: 2.5rem; /* mobile fallback reduced from 3rem */
  font-weight: 300; /* font-light */
  color: #0f172a; /* text-slate-900 */
  margin-bottom: 2rem; /* mb-8 reduced from 2.5rem */
  line-height: 1.25;
}

.final-cta-title-bold {
  font-weight: 600;
  background: linear-gradient(to right, #1d4ed8, #0891b2); /* bg-gradient-to-r from-blue-700 to-cyan-600 */
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.final-cta-lead {
  font-size: 1.1rem; /* mobile fallback reduced from 1.25rem */
  color: #334155; /* text-slate-700 */
  margin-bottom: 2.5rem; /* mb-10 reduced from 3rem */
  max-width: 44rem; /* reduced from 56rem */
  margin-left: auto;
  margin-right: auto;
  line-height: 1.625;
  font-weight: 300;
}

.final-cta-features {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem; /* reduced from 1rem */
  justify-content: center;
  margin-bottom: 2rem; /* space before buttons */
}

@media (min-width: 640px) {
  .final-cta-features {
    flex-direction: row;
  }
}

.final-cta-feature-tag {
  display: flex;
  align-items: center;
  gap: 0.5rem; /* gap-2 */
  padding: 0.4rem 0.8rem; /* px py reduced */
  background-color: #ffffff;
  border: 1px solid #bfdbfe; /* border-blue-200 */
  border-radius: 9999px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.final-cta-feature-icon {
  width: 0.875rem; /* w-4.5 reduced */
  height: 0.875rem;
  color: #2563eb; /* text-blue-600 */
}

.final-cta-feature-text {
  font-size: 0.8rem; /* text-sm reduced from 0.875rem */
  font-weight: 500;
  color: #475569; /* text-slate-600 */
}

.final-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem; /* gap-4 */
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .final-cta-actions {
    flex-direction: row;
    gap: 1.25rem;
  }
}

/* Medium & large screen typography overrides */
@media (min-width: 768px) {
  .final-cta-title {
    font-size: 3.25rem; /* reduced from 4rem */
  }
  
  .final-cta-lead {
    font-size: 1.4rem; /* reduced from 1.75rem */
  }
}

@media (min-width: 1024px) {
  .final-cta-title {
    font-size: 3.75rem; /* reduced from 4.5rem */
  }
}

@media (min-width: 1280px) {
  .final-cta-title {
    font-size: 4rem; /* reduced from 5rem */
  }
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.main-footer {
  border-top: 1px solid #e2e8f0; /* border-t border-gray-200 */
  background-color: #ffffff; /* bg-white */
  padding: 3.25rem 1.5rem; /* py px (Spaced out slightly from 2.25rem) */
  width: 100%;
  position: relative;
  z-index: 10;
  color: #0f172a;
}

.footer-container {
  max-width: 80rem; /* max-w-7xl */
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem; /* gap-8 (Spaced out from 1.5rem) */
  margin-bottom: 2.5rem; /* mb-10 (Spaced out from 1.75rem) */
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr); /* md:grid-cols-2 */
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(5, 1fr); /* lg:grid-cols-5 */
  }
  
  .footer-brand-col {
    grid-column: span 2 / span 2; /* lg:col-span-2 */
  }
}

.footer-logo {
  height: 2.5rem; /* Shrunk slightly for compactness */
  width: auto;
  object-fit: contain;
  margin-bottom: 0.85rem; /* mb-3.5 (Spaced out from 0.5rem) */
  display: inline-block;
}

.footer-brand-text {
  color: #4b5563; /* text-gray-600 */
  line-height: 1.5; /* tightened line-height */
  max-width: 24rem; /* max-w-sm */
  font-size: 0.875rem; /* shrunk text size slightly */
}

.footer-heading {
  font-size: 0.75rem; /* text-xs */
  text-transform: uppercase;
  letter-spacing: 0.05em; /* tracking-wider */
  color: #6b7280; /* text-gray-500 */
  margin-bottom: 0.85rem; /* mb-3.5 (Spaced out from 0.5rem) */
  font-weight: 600;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem; /* space-y (Spaced out from 0.35rem) */
}

.footer-link {
  color: #374151; /* text-gray-700 */
  text-decoration: none;
  font-size: 0.8125rem; /* reduced from 0.875rem */
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #111827; /* text-gray-900 */
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem; /* gap-4 (Reduced from 1.5rem) */
  padding-top: 1.75rem; /* pt-7 (Spaced out from 1.25rem) */
  border-top: 1px solid #e2e8f0; /* border-t border-gray-200 */
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-copyright {
  font-size: 0.8125rem; /* reduced from 0.875rem */
  color: #4b5563; /* text-gray-600 */
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 1.25rem; /* reduced from 1.5rem */
}

.footer-social-link {
  display: flex;
  align-items: center;
  gap: 0.4rem; /* reduced from 0.5rem */
  color: #374151; /* text-gray-700 */
  text-decoration: none;
  font-size: 0.8125rem; /* reduced from 0.875rem */
  transition: color 0.2s ease;
}

.footer-social-link:hover {
  color: #111827; /* text-gray-900 */
}

.footer-social-icon {
  width: 1rem; /* reduced from 1.125rem */
  height: 1rem;
}

/* ==========================================================================
   PAGE-SPECIFIC CARD & SECTION STYLES FOR ABOUT, CONSULTING & SUPPORT
   ========================================================================== */
.section-dark {
  position: relative;
  z-index: 10;
  padding: 6rem 1.5rem;
  width: 100%;
  background: linear-gradient(135deg, #0f172a 0%, #0f2d59 50%, #0f172a 100%); /* Same as Trusted Partner */
  color: #ffffff;
  overflow: hidden;
}
.section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 2px 2px, #60a5fa 1px, transparent 0);
  background-size: 50px 50px;
  opacity: 0.1;
  pointer-events: none;
  z-index: 1;
}

.card-light {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(240, 246, 255, 0.75) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid rgba(110, 148, 255, 0.16);
  border-radius: 1.5rem;
  padding: 2.5rem;
  color: #0f172a;
  box-shadow: 0 10px 30px -15px rgba(15, 23, 42, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.card-light:hover {
  transform: translateY(-4px);
  border-color: rgba(110, 148, 255, 0.55);
  box-shadow: 0 20px 40px -20px rgba(15, 23, 42, 0.08);
}

.card-dark {
  position: relative;
  background: linear-gradient(135deg, #0f172a 0%, #0f2d59 50%, #0f172a 100%); /* Trusted Partner background */
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 1.5rem;
  padding: 2.5rem;
  color: #ffffff;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  z-index: 1;
}

.card-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 2px 2px, #60a5fa 1px, transparent 0);
  background-size: 30px 30px;
  opacity: 0.1;
  pointer-events: none;
  z-index: -1;
}

.card-dark:hover {
  transform: translateY(-4px);
  border-color: rgba(110, 148, 255, 0.5);
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.45);
}

/* Icons inside new cards */
.card-icon-wrapper-light {
  display: inline-flex;
  padding: 1rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, #dbeafe, #cffafe);
  margin-bottom: 1.25rem;
  align-self: flex-start;
}
.card-icon-wrapper-light svg {
  width: 1.75rem;
  height: 1.75rem;
  color: #1d4ed8;
}

.card-icon-wrapper-dark {
  display: inline-flex;
  padding: 1rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 1.25rem;
  align-self: flex-start;
}
.card-icon-wrapper-dark svg {
  width: 1.75rem;
  height: 1.75rem;
  color: #38bdf8; /* Cyan 400 */
}

/* Card Title & Text styling to match scale */
.card-title-light {
  font-family: var(--font-family-title);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #0f172a;
}
.card-title-dark {
  font-family: var(--font-family-title);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #ffffff;
}

.card-desc-light {
  font-size: 1rem;
  line-height: 1.625;
  color: #475569; /* slate-600 */
}
.card-desc-dark {
  font-size: 1rem;
  line-height: 1.625;
  color: #cbd5e1; /* slate-300 */
}

/* Support page pricing specific card styling */
.support-price-wrapper {
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}
.support-price {
  font-family: var(--font-family-title);
  font-size: 2.75rem;
  font-weight: 700;
  color: inherit;
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}
.support-period {
  font-size: 0.9rem;
  font-weight: 400;
  opacity: 0.7;
}
.support-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.support-list-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
}
.support-list-item svg {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
}
.card-light .support-list-item svg {
  color: #2563eb;
}
.card-dark .support-list-item svg {
  color: #38bdf8;
}
.card-light .support-list-item {
  color: #334155;
}
.card-dark .support-list-item {
  color: #e2e8f0;
}

/* Heading/Subtitle styling for inner page headers */
.inner-header {
  text-align: center;
  margin-bottom: 4rem;
}
.inner-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background-color: rgba(37, 99, 235, 0.06);
  border-radius: 9999px;
  margin-bottom: 1.25rem;
}
.inner-badge-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(29, 66, 216, 0.2);
  border: 1px solid rgba(110, 148, 255, 0.3);
  border-radius: 9999px;
  margin-bottom: 1.25rem;
}
.inner-badge-dark span {
  font-size: 0.8rem;
  font-weight: 600;
  color: #9cbaff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.inner-badge span {
  font-size: 0.8rem;
  font-weight: 600;
  color: #2563eb;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.inner-title-light {
  font-family: var(--font-family-title);
  font-size: 2.75rem;
  font-weight: 300;
  color: #0f172a;
  margin-bottom: 1.25rem;
  line-height: 1.25;
}
.inner-title-dark {
  font-family: var(--font-family-title);
  font-size: 2.75rem;
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 1.25rem;
  line-height: 1.25;
}
.inner-lead-light {
  font-size: 1.2rem;
  color: #475569;
  max-width: 48rem;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.5;
}
.inner-lead-dark {
  font-size: 1.2rem;
  color: #cbd5e1;
  max-width: 48rem;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.5;
}

/* Team grid custom details */
.team-avatar-wrapper {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.5rem;
  border: 3px solid #ffffff;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}
.team-avatar-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-dark .team-avatar-wrapper {
  border-color: rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   ABOUT PAGE STYLES
   ========================================================================== */
body.about-page-body {
  background-color: var(--color-primary);
}

.about-hero-section {
  position: relative;
  padding-top: 13.5rem !important;
  padding-bottom: 9.5rem !important;
  background-image: linear-gradient(to bottom, rgba(11, 15, 25, 0.4) 0%, rgba(11, 15, 25, 0.65) 100%), url('ASAA Solutions Entrence.jpg');
  background-size: cover;
  background-position: 80% center;
  background-repeat: no-repeat;
  min-height: auto;
  display: flex;
  align-items: center;
}

.about-hero-section .trust-blob-1,
.about-hero-section .trust-blob-2 {
  display: none !important;
}

.about-hero-section .trust-header {
  text-align: left;
  max-width: 70rem;
  margin: 0;
}

.about-hero-section .trust-badge {
  margin-left: 0;
}

.about-hero-section .about-title {
  font-family: var(--font-family-title);
  font-size: 4.5rem; /* Increased from 4rem to make it more heroic */
  font-weight: 300;
  line-height: 1.2;
  color: var(--color-text-white);
  margin-top: 0; /* Removed top margin since badge is removed */
  margin-bottom: 1.25rem; /* Reduced from 2rem */
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.75);
}

.about-hero-section .about-lead {
  font-size: 1.45rem; /* Increased from 1.35rem */
  font-weight: 300;
  line-height: 1.55;
  color: var(--color-text-light);
  max-width: 70rem;
  margin: 0;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.75);
}

.about-hero-section .accent-bar-wrapper {
  justify-content: flex-start;
  margin-bottom: 1.5rem; /* Reduced from 2rem */
}

/* Responsive adjustments for About Page Hero */
@media (max-width: 992px) {
  .about-hero-section {
    padding-top: 9rem !important;
    padding-bottom: 3.5rem !important;
  }
  .about-hero-section .trust-header {
    padding: 2.25rem 1.75rem;
    border-radius: 1.5rem;
  }
  .about-hero-section .about-title {
    font-size: 3rem; /* Reduced from 3.75rem */
    margin-top: 0;
    margin-bottom: 1.25rem;
  }
  .about-hero-section .about-lead {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .about-hero-section {
    padding-top: 8rem !important; /* Clears mobile navigation header */
    padding-bottom: 3rem !important;
  }
  .about-hero-section .about-title {
    font-size: 2.5rem; /* Reduced from 3rem */
  }
  .about-hero-section .about-lead {
    font-size: 1.1rem;
  }
}

/* About Stats Grid & Section */
.about-stats-section {
  padding-top: 6rem !important;
  padding-bottom: 6rem !important;
}

.about-stats-grid {
  grid-template-columns: repeat(4, 1fr) !important;
  margin-top: 0 !important;
}

.about-stats-grid .trust-stat {
  font-size: 2.75rem; /* Adjusted down slightly for 4 column grid */
}

@media (max-width: 1200px) {
  .about-stats-grid .trust-stat {
    font-size: 2.25rem;
  }
}

@media (max-width: 992px) {
  .about-stats-section {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    margin-top: 0 !important;
  }
}

@media (max-width: 576px) {
  .about-stats-section {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .about-stats-grid {
    grid-template-columns: 1fr !important;
    margin-top: 0 !important;
  }
}

/* Core Values Section */
.values-section {
  padding: 8rem 1.5rem;
  background-color: #f8fafc; /* bg-slate-50 */
  position: relative;
  width: 100%;
}

.values-container {
  width: 100%;
  max-width: 80rem; /* max-w-7xl */
  margin: 0 auto;
}

.values-header {
  text-align: center;
  max-width: 42rem; /* max-w-2xl */
  margin: 0 auto 5rem auto;
}

.values-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(37, 99, 235, 0.15); /* blue-600 outline */
  background-color: rgba(37, 99, 235, 0.04);
  color: #2563eb; /* text-blue-600 */
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.values-badge-icon {
  width: 0.875rem;
  height: 0.875rem;
  stroke-width: 2.5px;
}

.values-title {
  font-family: var(--font-family-title);
  font-size: 3rem; /* text-5xl (3rem / 48px) */
  font-weight: 300;
  color: #0f172a; /* text-slate-900 */
  margin-bottom: 1.25rem;
  line-height: 1.25;
}

.values-lead {
  font-size: 1.125rem; /* text-lg */
  color: #475569; /* text-slate-600 */
  line-height: 1.6;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.value-card {
  position: relative;
  border-radius: 1.5rem; /* rounded-3xl (24px) */
  padding: 3rem 2.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.04), 0 10px 10px -5px rgba(0, 0, 0, 0.01);
}

.value-card-light {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.65) 100%);
  backdrop-filter: blur(12px) saturate(110%);
  -webkit-backdrop-filter: blur(12px) saturate(110%);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.04), 
              inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.value-card-light:hover {
  border-color: rgba(37, 99, 235, 0.25);
  box-shadow: 0 25px 45px rgba(15, 23, 42, 0.08), 
              inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.value-card-dark {
  background: linear-gradient(135deg, #0f172a 0%, #172554 100%); /* bg-gradient-to-br from-slate-900 to-blue-950 */
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.value-card-light .value-card-title {
  color: #0f172a;
}

.value-card-dark .value-card-title {
  color: #ffffff;
}

.value-card-light .value-card-desc {
  color: #475569;
}

.value-card-dark .value-card-desc {
  color: #94a3b8; /* text-slate-400 */
}

.value-icon-container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.875rem;
  margin-bottom: 2rem;
}

.value-card-light .value-icon-container {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(56, 189, 248, 0.08) 100%);
  color: #2563eb;
  border: 1px solid rgba(37, 99, 235, 0.15);
  transition: transform 0.3s ease;
}

.value-card-light:hover .value-icon-container {
  transform: scale(1.08);
}

.value-card-dark .value-icon-container {
  background-color: rgba(255, 255, 255, 0.07);
  color: #60a5fa; /* light blue icon */
}

.value-icon {
  width: 1.5rem;
  height: 1.5rem;
  stroke-width: 2px;
}

.value-card-title {
  font-family: var(--font-family-title);
  font-size: 1.5rem; /* text-2xl */
  font-weight: 500;
  margin-bottom: 1rem;
}

.value-card-desc {
  font-size: 1rem;
  line-height: 1.6;
}

.value-card-dot-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 1.5px 1.5px, rgba(255, 255, 255, 0.055) 1px, transparent 0);
  background-size: 16px 16px;
  pointer-events: none;
}

.value-card-light .value-card-dot-pattern {
  background-image: radial-gradient(circle at 1.5px 1.5px, rgba(15, 23, 42, 0.03) 1px, transparent 0);
}

/* Responsive adjustments for Core Values */
@media (max-width: 992px) {
  .values-section {
    padding: 6rem 1.5rem;
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .values-header {
    margin-bottom: 4rem;
  }
}

@media (max-width: 576px) {
  .values-section {
    padding: 4.5rem 1.25rem;
  }
  .values-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .values-title {
    font-size: 2.25rem; /* text-4xl */
  }
  .value-card {
    padding: 2.5rem 2rem;
  }
}

/* Leadership & Team Section */
.team-section {
  padding: 8rem 1.5rem;
  background-color: #ffffff;
  position: relative;
  width: 100%;
}

.team-container {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
}

.team-header {
  margin-bottom: 4.5rem;
  text-align: left;
}

.team-badge {
  color: #2563eb; /* blue-600 */
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.team-title {
  font-family: var(--font-family-title);
  font-size: 3rem;
  font-weight: 300;
  color: #0f172a;
  line-height: 1.25;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.team-card {
  position: relative;
  border-radius: 1.5rem;
  padding: 3.5rem 3rem;
  background-color: #ffffff;
  border: 1px solid rgba(219, 234, 254, 0.75); /* Subtle blue boundary */
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.01), 0 2px 4px -1px rgba(0, 0, 0, 0.005);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.04), 0 10px 10px -5px rgba(0, 0, 0, 0.01);
}

.team-card-blob {
  position: absolute;
  top: -4rem;
  right: -4rem;
  width: 12rem;
  height: 12rem;
  background-color: rgba(37, 99, 235, 0.035);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(10px);
}

.team-card-badge-wrapper {
  margin-bottom: 2rem;
}

.team-card-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background-color: rgba(37, 99, 235, 0.06);
  color: #2563eb;
  font-size: 0.8125rem;
  font-weight: 500;
}

.team-card-desc {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: #475569;
  margin-bottom: 3rem;
  flex-grow: 1;
}

.team-profile {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  border-top: 1px solid rgba(241, 245, 249, 0.8);
  padding-top: 1.75rem;
}

.team-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 50%;
  font-size: 1.125rem;
  font-weight: 600;
  flex-shrink: 0;
}

.team-avatar-text {
  background-color: #2563eb;
  color: #ffffff;
}

.team-avatar-icon {
  background-color: #0ea5e9; /* sky-500 */
  color: #ffffff;
}

.team-icon {
  width: 1.375rem;
  height: 1.375rem;
  stroke-width: 2px;
}

.team-profile-info {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.team-profile-name {
  font-family: var(--font-family-title);
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0;
}

.team-profile-title {
  font-size: 0.9375rem;
  color: #64748b;
  margin: 0;
}

/* Responsive adjustments for Team section */
@media (max-width: 992px) {
  .team-section {
    padding: 6rem 1.5rem;
  }
  .team-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .team-card {
    padding: 3rem 2rem;
  }
}

@media (max-width: 576px) {
  .team-section {
    padding: 4.5rem 1.25rem;
  }
  .team-header {
    margin-bottom: 3rem;
  }
  .team-title {
    font-size: 2.25rem;
  }
}

/* ==========================================================================
   OUR CORE VALUES MODERN ACCENTED STYLES
   ========================================================================== */
.values-header-split {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3rem;
  align-items: flex-end;
  margin-bottom: 4rem;
}

.values-header-left {
  grid-column: span 2 / span 2;
}

.values-header-right {
  grid-column: span 3 / span 3;
  padding-bottom: 0.5rem;
}

.values-title-split {
  font-family: var(--font-family-title);
  font-size: 3rem;
  font-weight: 300;
  color: #0f172a;
  line-height: 1.2;
  margin: 0;
}

.values-lead-split {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #475569;
  font-weight: 300;
  margin: 0;
}

.values-bordered-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  border-left: 1px solid rgba(15, 23, 42, 0.08);
  margin-top: 4rem;
  position: relative;
  z-index: 10;
}

.value-bordered-item {
  position: relative;
  padding: 4rem 2.5rem 3.5rem 2.5rem;
  border-right: 1px solid rgba(15, 23, 42, 0.08);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  background-color: transparent;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.value-bordered-item:hover {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px) saturate(110%);
  -webkit-backdrop-filter: blur(12px) saturate(110%);
  box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.1),
              0 20px 45px rgba(15, 23, 42, 0.05);
  z-index: 2;
}

.value-number {
  font-family: var(--font-family-title);
  font-size: 3.5rem;
  font-weight: 200;
  color: rgba(15, 23, 42, 0.05);
  position: absolute;
  top: 2rem;
  right: 2.25rem;
  transition: all 0.4s ease;
  line-height: 1;
  user-select: none;
}

.value-bordered-item:hover .value-number {
  color: rgba(37, 99, 235, 0.15);
  transform: translateY(-2px);
}

.value-bordered-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: rgba(37, 99, 235, 0.06);
  color: #2563eb;
  margin-bottom: 2rem;
  transition: all 0.4s ease;
  border: 1px solid rgba(37, 99, 235, 0.1);
}

.value-bordered-item:hover .value-bordered-icon-wrapper {
  background-color: #2563eb;
  color: #ffffff;
  transform: rotate(360deg);
  border-color: #2563eb;
}

.value-bordered-title {
  font-family: var(--font-family-title);
  font-size: 1.35rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.85rem;
  letter-spacing: -0.01em;
}

.value-bordered-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #475569;
  margin: 0;
}

@media (max-width: 992px) {
  .values-header-split {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }
  
  .values-header-left, .values-header-right {
    grid-column: span 1 / span 1;
  }
  
  .values-title-split {
    font-size: 2.5rem;
  }
  
  .values-bordered-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .values-title-split {
    font-size: 2.25rem;
  }
  
  .values-bordered-grid {
    grid-template-columns: 1fr;
  }
  
  .value-bordered-item {
    padding: 3rem 1.5rem 2.5rem 1.5rem;
  }
}

/* ==========================================================================
   ECOSYSTEMS SECTION (DARK MODE)
   ========================================================================== */
.ecosystems-section {
  padding: 8rem 1.5rem;
  background: linear-gradient(135deg, #0f172a 0%, #0f2d59 50%, #0f172a 100%);
  position: relative;
  width: 100%;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.ecosystems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
  position: relative;
  z-index: 10;
}

.ecosystem-card {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.45) 0%, rgba(15, 23, 42, 0.45) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1.5rem;
  padding: 3.5rem 2.5rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.ecosystem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #60a5fa, #22d3ee);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.ecosystem-card:hover {
  transform: translateY(-8px);
  border-color: rgba(96, 165, 250, 0.25);
  box-shadow: 0 30px 60px rgba(5, 7, 12, 0.45),
              inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

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

.ecosystem-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.03);
  color: #60a5fa;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.ecosystem-card:hover .ecosystem-icon-wrapper {
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
  transform: scale(1.05) rotate(360deg);
}

.ecosystem-card-title {
  font-family: var(--font-family-title);
  font-size: 1.5rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 1rem;
}

.ecosystem-card-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: #94a3b8;
}

@media (max-width: 992px) {
  .ecosystems-section {
    padding: 6rem 1.5rem;
  }
  
  .ecosystems-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ==========================================================================
   REDESIGNED LEADERSHIP & TEAM SECTION (LIGHT MODE - STAGGERED LAYOUT)
   ========================================================================== */
.team-section {
  padding: 8rem 1.5rem;
  background: #ffffff;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.team-container {
  max-width: 80rem;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.team-header {
  text-align: left;
  max-width: 50rem;
  margin-bottom: 4rem;
}

.team-badge {
  display: inline-block;
  color: #2563eb;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.team-title {
  font-family: var(--font-family-title);
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.2;
  color: #0f172a;
}

/* Leaders Grid (2 Columns) */
.leaders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}

.leader-card {
  background: linear-gradient(135deg, rgba(239, 246, 255, 0.45) 0%, rgba(219, 234, 254, 0.35) 100%);
  border: 1px solid rgba(37, 99, 235, 0.08);
  border-radius: 1.75rem;
  padding: 3.5rem 2.5rem;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.02);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.leader-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(37, 99, 235, 0.08);
  border-color: rgba(37, 99, 235, 0.25);
  background: linear-gradient(135deg, rgba(239, 246, 255, 0.6) 0%, rgba(219, 234, 254, 0.4) 100%);
}

.leader-card-blob {
  position: absolute;
  top: -2.5rem;
  right: -2.5rem;
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 75%);
  pointer-events: none;
}

.leader-badge {
  display: inline-block;
  align-self: flex-start;
  padding: 0.5rem 1.25rem;
  background-color: #eff6ff;
  color: #2563eb;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 2rem;
  border: 1px solid rgba(37, 99, 235, 0.06);
}

.leader-bio {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 2.5rem;
  flex-grow: 1;
}

.leader-footer {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.leader-avatar {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: #1e40af;
  color: #ffffff;
  font-weight: 600;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(30, 64, 175, 0.15);
  transition: all 0.4s ease;
}

.leader-avatar.avatar-purple {
  background: #6366f1;
  box-shadow: 0 4px 10px rgba(99, 102, 241, 0.15);
}

.leader-card:hover .leader-avatar {
  transform: scale(1.05);
}

.leader-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.leader-name {
  font-family: var(--font-family-title);
  font-size: 1.35rem;
  font-weight: 600;
  color: #0f172a;
}

.leader-role {
  font-size: 0.9rem;
  color: #64748b;
}

/* Team Wide Banner Card (Under Ajay and Ravikanth) */
.team-wide-card {
  background: linear-gradient(135deg, rgba(239, 246, 255, 0.3) 0%, rgba(241, 245, 249, 0.5) 100%);
  border: 1px solid rgba(15, 23, 42, 0.05);
  border-radius: 2rem;
  padding: 4rem;
  box-shadow: 0 4px 30px rgba(15, 23, 42, 0.01);
  display: flex;
  gap: 4rem;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.team-wide-card:hover {
  border-color: rgba(37, 99, 235, 0.15);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.04);
}

.team-wide-card-blob {
  position: absolute;
  bottom: -4rem;
  left: -4rem;
  width: 15rem;
  height: 15rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.team-wide-content {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.team-wide-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.5rem 1.25rem;
  background-color: rgba(14, 165, 233, 0.06);
  color: #0284c7;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(14, 165, 233, 0.15);
}

.team-wide-title {
  font-family: var(--font-family-title);
  font-size: 2.25rem;
  font-weight: 300;
  line-height: 1.25;
  color: #0f172a;
}

.team-wide-bio {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #475569;
}

.team-wide-sidebar {
  flex: 0.8;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 1.5rem;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.02);
  transition: all 0.4s ease;
  position: relative;
  z-index: 10;
}

.team-wide-card:hover .team-wide-sidebar {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.04);
  border-color: rgba(14, 165, 233, 0.2);
}

.team-wide-avatar-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.team-wide-avatar {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #0ea5e9;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(14, 165, 233, 0.2);
}

.team-wide-details {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.team-wide-name {
  font-family: var(--font-family-title);
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
}

.team-wide-role {
  font-size: 0.85rem;
  color: #64748b;
}

.team-wide-bullets {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  padding-top: 1.25rem;
}

.team-wide-bullet {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: #475569;
}

.team-wide-bullet i {
  color: #0ea5e9;
  flex-shrink: 0;
}

@media (max-width: 992px) {
  .leaders-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .team-wide-card {
    flex-direction: column;
    padding: 2.5rem;
    gap: 2.5rem;
  }
  
  .team-wide-sidebar {
    width: 100%;
  }
}

/* ==========================================================================
   OUR DIFFERENTIATORS SECTION (DARK MODE)
   ========================================================================== */
.differentiators-section {
  padding: 8rem 1.5rem;
  background: linear-gradient(135deg, #0b0f19 0%, #0f2d59 50%, #0b0f19 100%);
  position: relative;
  width: 100%;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.differentiators-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
  position: relative;
  z-index: 10;
}

.differentiator-card {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.45) 0%, rgba(15, 23, 42, 0.45) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1.75rem;
  padding: 3.5rem 2.5rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.differentiator-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #60a5fa, #22d3ee);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.differentiator-card:hover {
  transform: translateY(-8px);
  border-color: rgba(96, 165, 250, 0.25);
  box-shadow: 0 30px 60px rgba(5, 7, 12, 0.45),
              inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

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

.differentiator-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.03);
  color: #60a5fa;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.differentiator-card:hover .differentiator-icon-wrapper {
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
  transform: scale(1.05);
}

.differentiator-card-title {
  font-family: var(--font-family-title);
  font-size: 1.5rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 1rem;
  position: relative;
  z-index: 10;
}

.differentiator-card-desc {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #94a3b8;
  position: relative;
  z-index: 10;
}

.differentiator-number {
  font-family: var(--font-family-title);
  font-size: 8rem;
  font-weight: 800;
  color: rgba(96, 165, 250, 0.03);
  position: absolute;
  right: 1.5rem;
  bottom: -2rem;
  pointer-events: none;
  user-select: none;
  transition: all 0.4s ease;
}

.differentiator-card:hover .differentiator-number {
  color: rgba(96, 165, 250, 0.06);
  transform: translateY(-5px);
}

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

/* ==========================================================================
   CONSULTING PAGE STYLES
   ========================================================================== */
.consulting-hero-section {
  position: relative;
  padding-top: 13.5rem !important;
  padding-bottom: 9.5rem !important;
  background-image: linear-gradient(to bottom, rgba(11, 15, 25, 0.45) 0%, rgba(11, 15, 25, 0.7) 100%), url('Consulting Image Background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 39rem;
  display: flex;
  align-items: center;
}

.consulting-hero-section .trust-blob-1,
.consulting-hero-section .trust-blob-2 {
  display: none !important;
}

.consulting-hero-section .trust-header {
  text-align: left;
  max-width: 70rem;
  margin: 0;
}

.consulting-hero-section .trust-badge {
  margin-left: 0;
}

.consulting-hero-section .about-title {
  font-family: var(--font-family-title);
  font-size: 5.25rem; /* Standardized to match Support and Outsourcing size */
  font-weight: 300;
  line-height: 1.2;
  color: var(--color-text-white);
  margin-top: 0;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.75);
}

.consulting-hero-section .about-lead {
  font-size: 1.45rem;
  font-weight: 300;
  line-height: 1.55;
  color: var(--color-text-light);
  max-width: 70rem;
  margin: 0;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.75);
}

.consulting-hero-section .accent-bar-wrapper {
  justify-content: flex-start;
  margin-bottom: 1.5rem;
}

@media (max-width: 992px) {
  .consulting-hero-section {
    padding-top: 9rem !important;
    padding-bottom: 3.5rem !important;
    min-height: 28rem;
  }
  .consulting-hero-section .trust-header {
    padding: 2.25rem 1.75rem;
    border-radius: 1.5rem;
  }
  .consulting-hero-section .about-title {
    font-size: 3.5rem; /* Standardized to match Support and Outsourcing size */
    margin-top: 0;
    margin-bottom: 1.25rem;
  }
  .consulting-hero-section .about-lead {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .consulting-hero-section {
    padding-top: 8rem !important;
    padding-bottom: 3rem !important;
    min-height: 23rem;
  }
  .consulting-hero-section .about-title {
    font-size: 2.75rem; /* Standardized to match Support and Outsourcing size */
  }
  .consulting-hero-section .about-lead {
    font-size: 1.1rem;
  }
}

/* Light Mode CTA Section for Consulting */
.consulting-cta-section {
  position: relative;
  padding: 6.5rem 1.5rem;
  width: 100%;
  background: linear-gradient(to bottom, #ffffff, #f8fafc);
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.consulting-cta-section .cta-blob-1 {
  position: absolute;
  top: -5rem;
  right: -5rem;
  width: 30rem;
  height: 30rem;
  background-color: rgba(37, 99, 235, 0.04);
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.consulting-cta-section .cta-blob-2 {
  position: absolute;
  bottom: -5rem;
  left: -5rem;
  width: 30rem;
  height: 30rem;
  background-color: rgba(6, 182, 212, 0.04);
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.cta-container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  text-align: center;
}

.cta-card-light {
  max-width: 48rem;
  margin: 0 auto;
  padding: 3.5rem 2.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(240, 246, 255, 0.8) 100%);
  border: 1px solid rgba(37, 99, 235, 0.15);
  border-radius: 2.5rem;
  box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.08), 
              inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

@media (max-width: 768px) {
  .cta-card-light {
    padding: 2.5rem 1.5rem;
  }
}

.cta-badge-light {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background-color: rgba(37, 99, 235, 0.06);
  color: #2563eb;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(37, 99, 235, 0.1);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cta-badge-light .cta-badge-icon {
  width: 0.875rem;
  height: 0.875rem;
  stroke-width: 2.5;
}

.cta-title-light {
  font-family: var(--font-family-title);
  font-size: 3.25rem;
  font-weight: 300;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.25;
}

@media (max-width: 768px) {
  .cta-title-light {
    font-size: 2.25rem;
  }
}

.cta-lead-light {
  font-size: 1.25rem;
  color: #475569;
  margin-bottom: 2.5rem;
  max-width: 44rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.625;
  font-weight: 300;
}

@media (max-width: 768px) {
  .cta-lead-light {
    font-size: 1.1rem;
  }
}

.cta-actions-light {
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-primary-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #0f172a;
  color: #ffffff;
  padding: 1.1rem 2.2rem;
  border-radius: 100px;
  font-weight: 600;
  text-decoration: none;
  font-family: var(--font-family-title);
  font-size: 1rem;
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.2);
  transition: var(--transition-smooth);
}

.btn-primary-dark:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -5px rgba(37, 99, 235, 0.35);
}

.btn-primary-dark svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.btn-primary-dark:hover svg {
  transform: translateX(3px);
}

/* Consulting Services Grid (mirrors old website card layout) */
.consulting-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background-color: rgba(255, 255, 255, 0.08); /* bg-slate-800 / grid lines border */
  border-radius: 1.5rem;
  overflow: hidden;
  position: relative;
  z-index: 10;
  margin-top: 4rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.consulting-card {
  background: rgba(255, 255, 255, 0.05); /* Frosted translucent glass background */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12); /* Crisp, visible card outline */
  padding: 3rem 2.5rem;
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.consulting-card:hover {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.95) 0%, rgba(14, 165, 233, 0.95) 100%); /* Radiant blue-to-cyan hover */
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(37, 99, 235, 0.25);
}

.consulting-card-number {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-family: var(--font-family-title);
  font-size: 4.5rem;
  font-weight: 200;
  color: rgba(255, 255, 255, 0.05); /* Soft background numbering */
  line-height: 1;
  transition: color 0.4s ease;
  user-select: none;
}

.consulting-card:hover .consulting-card-number {
  color: rgba(255, 255, 255, 0.2); /* Brighter white on hover */
}

.consulting-card-icon-wrapper {
  color: #38bdf8; /* Bright sky-blue icon */
  margin-bottom: 1.75rem;
  transition: color 0.4s ease;
  display: inline-flex;
}

.consulting-card-icon-wrapper svg {
  width: 2.75rem;
  height: 2.75rem;
}

.consulting-card:hover .consulting-card-icon-wrapper {
  color: #ffffff;
}

.consulting-card-title {
  font-family: var(--font-family-title);
  font-size: 1.3rem;
  font-weight: 500;
  color: #ffffff; /* High contrast pure white */
  margin-bottom: 1rem;
  transition: color 0.4s ease;
  line-height: 1.35;
}

.consulting-card:hover .consulting-card-title {
  color: #ffffff;
}

.consulting-card-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: #e2e8f0; /* Crisp slate-200 text for high legibility */
  transition: color 0.4s ease;
  margin: 0;
}

.consulting-card:hover .consulting-card-desc {
  color: #ffffff; /* pure white description on hover */
}

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

@media (max-width: 768px) {
  .consulting-grid {
    grid-template-columns: 1fr;
  }
  
  .consulting-card {
    padding: 2.5rem 2rem;
  }
}

/* ==========================================================================
   SUPPORT PAGE STYLES
   ========================================================================== */
.support-hero-section {
  position: relative;
  padding-top: 13.5rem !important;
  padding-bottom: 9.5rem !important;
  background-image: linear-gradient(to bottom, rgba(11, 15, 25, 0.45) 0%, rgba(11, 15, 25, 0.7) 100%), url('Support Image Background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 39rem; /* Standardized min-height */
  display: flex;
  align-items: center;
}

.support-hero-section .trust-blob-1,
.support-hero-section .trust-blob-2 {
  display: none !important;
}

.support-hero-section .trust-header {
  text-align: left;
  max-width: 70rem;
  margin: 0;
}

.support-hero-section .about-title {
  font-family: var(--font-family-title);
  font-size: 5.25rem; /* Increased size for a heroic, clean presence */
  font-weight: 300;
  line-height: 1.2;
  color: var(--color-text-white);
  margin-top: 0;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.75);
}

.support-hero-section .about-lead {
  font-size: 1.45rem;
  font-weight: 300;
  line-height: 1.55;
  color: var(--color-text-light);
  max-width: 70rem;
  margin: 0;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.75);
}

.support-hero-section .accent-bar-wrapper {
  justify-content: flex-start;
  margin-bottom: 1.5rem;
}

@media (max-width: 992px) {
  .support-hero-section {
    padding-top: 9rem !important;
    padding-bottom: 3.5rem !important;
    min-height: 28rem;
  }
  .support-hero-section .trust-header {
    padding: 2.25rem 1.75rem;
    border-radius: 1.5rem;
  }
  .support-hero-section .about-title {
    font-size: 3.5rem;
    margin-top: 0;
    margin-bottom: 1.25rem;
  }
  .support-hero-section .about-lead {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .support-hero-section {
    padding-top: 8rem !important;
    padding-bottom: 3rem !important;
    min-height: 23rem;
  }
  .support-hero-section .about-title {
    font-size: 2.75rem;
  }
  .support-hero-section .about-lead {
    font-size: 1.1rem;
  }
}

/* ==========================================================================
   OUTSOURCING PAGE STYLES
   ========================================================================== */
.outsourcing-hero-section {
  position: relative;
  padding-top: 13.5rem !important;
  padding-bottom: 9.5rem !important;
  background-image: linear-gradient(to bottom, rgba(11, 15, 25, 0.45) 0%, rgba(11, 15, 25, 0.7) 100%), url('Outsourcing Image Background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 39rem; /* Standardized min-height */
  display: flex;
  align-items: center;
}

.outsourcing-hero-section .trust-blob-1,
.outsourcing-hero-section .trust-blob-2 {
  display: none !important;
}

.outsourcing-hero-section .trust-header {
  text-align: left;
  max-width: 70rem;
  margin: 0;
}

.outsourcing-hero-section .about-title {
  font-family: var(--font-family-title);
  font-size: 5.25rem;
  font-weight: 300;
  line-height: 1.2;
  color: var(--color-text-white);
  margin-top: 0;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.75);
}

.outsourcing-hero-section .about-lead {
  font-size: 1.45rem;
  font-weight: 300;
  line-height: 1.55;
  color: var(--color-text-light);
  max-width: 70rem;
  margin: 0;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.75);
}

.outsourcing-hero-section .accent-bar-wrapper {
  justify-content: flex-start;
  margin-bottom: 1.5rem;
}

@media (max-width: 992px) {
  .outsourcing-hero-section {
    padding-top: 9rem !important;
    padding-bottom: 3.5rem !important;
    min-height: 28rem;
  }
  .outsourcing-hero-section .trust-header {
    padding: 2.25rem 1.75rem;
    border-radius: 1.5rem;
  }
  .outsourcing-hero-section .about-title {
    font-size: 3.5rem;
    margin-top: 0;
    margin-bottom: 1.25rem;
  }
  .outsourcing-hero-section .about-lead {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .outsourcing-hero-section {
    padding-top: 8rem !important;
    padding-bottom: 3rem !important;
    min-height: 23rem;
  }
  .outsourcing-hero-section .about-title {
    font-size: 2.75rem;
  }
  .outsourcing-hero-section .about-lead {
    font-size: 1.1rem;
  }
}

/* Outsourcing Services Grid */
.outsourcing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  overflow: hidden;
  position: relative;
  z-index: 10;
  margin-top: 4rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

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

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

/* Three Column Grid for Differentiators */
.three-column-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

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

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

/* ==========================================================================
   INDUSTRIES PAGE STYLES
   ========================================================================== */
.industries-hero-section {
  position: relative;
  padding-top: 13.5rem !important;
  padding-bottom: 9.5rem !important;
  min-height: 39rem; /* Standardized min-height */
  display: flex;
  align-items: center;
  overflow: hidden;
}

.industries-hero-section .hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.industries-hero-section .hero-video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.industries-hero-section .hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(11, 15, 25, 0.45) 0%, rgba(11, 15, 25, 0.7) 100%);
  z-index: 2;
}

.industries-hero-section .trust-container {
  position: relative;
  z-index: 3;
}

.industries-hero-section .trust-header {
  text-align: left;
  max-width: 70rem;
  margin: 0;
}

.industries-hero-section .about-title {
  font-family: var(--font-family-title);
  font-size: 5.25rem;
  font-weight: 300;
  line-height: 1.2;
  color: var(--color-text-white);
  margin-top: 0;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.75);
}

.industries-hero-section .about-lead {
  font-size: 1.45rem;
  font-weight: 300;
  line-height: 1.55;
  color: var(--color-text-light);
  max-width: 70rem;
  margin: 0;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.75);
}

.industries-hero-section .accent-bar-wrapper {
  justify-content: flex-start;
  margin-bottom: 1.5rem;
}

@media (max-width: 992px) {
  .industries-hero-section {
    padding-top: 9rem !important;
    padding-bottom: 3.5rem !important;
    min-height: 28rem;
  }
  .industries-hero-section .about-title {
    font-size: 3.5rem;
    margin-top: 0;
    margin-bottom: 1.25rem;
  }
  .industries-hero-section .about-lead {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .industries-hero-section {
    padding-top: 8rem !important;
    padding-bottom: 3rem !important;
    min-height: 23rem;
  }
  .industries-hero-section .about-title {
    font-size: 2.75rem;
  }
  .industries-hero-section .about-lead {
    font-size: 1.1rem;
  }
}

/* ==========================================================================
   CONTACT PAGE STYLES
   ========================================================================== */
@media (max-width: 992px) {
  .contact-grid-layout {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
  }
}

@media (max-width: 576px) {
  .contact-form-card {
    padding: 2.5rem 1.5rem !important;
  }
  .contact-form-row {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
}

@media (max-width: 768px) {
  .careers-contact-banner {
    flex-direction: column !important;
    text-align: center !important;
  }
}

