/* AIMS Force — Page Styles (extracted from inline <style> blocks) */

 /* ========================================
 PREMIUM ANIMATIONS
 ======================================== */
 @keyframes fadeInUp { from { opacity:0; transform:translateY(60px); } to { opacity:1; transform:translateY(0); } }
 @keyframes fadeInLeft { from { opacity:0; transform:translateX(-60px); } to { opacity:1; transform:translateX(0); } }
 @keyframes fadeInRight { from { opacity:0; transform:translateX(60px); } to { opacity:1; transform:translateX(0); } }
 @keyframes scaleIn { from { opacity:0; transform:scale(0.85); } to { opacity:1; transform:scale(1); } }
 @keyframes float { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-12px); } }
 @keyframes tileRipple { 0% { transform:scale(0); opacity:0.3; } 100% { transform:scale(2.5); opacity:0; } }
 @keyframes tileFloat { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-3px); } }
 @keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:0.6; } }
 @keyframes gradientShift { 0% { background-position:0% 50%; } 50% { background-position:100% 50%; } 100% { background-position:0% 50%; } }
 @keyframes rotateSlow { from { transform:rotate(0deg); } to { transform:rotate(360deg); } }
 @keyframes morphBlob { 0%,100% { border-radius:60% 40% 30% 70%/60% 30% 70% 40%; } 50% { border-radius:30% 60% 70% 40%/50% 60% 30% 60%; } }
 @keyframes slideInTicket { from { transform:translateX(100%); } to { transform:translateX(-100%); } }
 @keyframes glowPulse { 0%,100% { box-shadow:0 0 20px rgba(0,180,216,0.3); } 50% { box-shadow:0 0 40px rgba(0,180,216,0.6); } }
 @keyframes typewriter { from { width:0; } to { width:100%; } }
 @keyframes blink { 50% { border-color:transparent; } }
 @keyframes countUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
 @keyframes ripple { 0% { transform:scale(1); opacity:0.4; } 100% { transform:scale(2.5); opacity:0; } }
 @keyframes marquee { 0% { transform:translateX(0); } 100% { transform:translateX(-50%); } }
 @keyframes orbitalSpin { from { transform:rotate(0deg) translateX(160px) rotate(0deg); } to { transform:rotate(360deg) translateX(160px) rotate(-360deg); } }
 @keyframes shimmer { 0% { background-position:-200% 0; } 100% { background-position:200% 0; } }
 @keyframes agencyFloat { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-8px); } }
 @keyframes agencyGlow { 0%, 100% { box-shadow: 0 4px 12px rgba(0,180,216,0.2); } 50% { box-shadow: 0 6px 20px rgba(0,180,216,0.4); } }
 @keyframes dhaGlowPulse { 0%, 100% { box-shadow: 0 0 20px rgba(0,180,216,0.4), 0 8px 24px rgba(0,180,216,0.2); } 50% { box-shadow: 0 0 35px rgba(0,180,216,0.7), 0 8px 30px rgba(0,180,216,0.4); } }

 /* ========================================
 TOP INFO BAR
 ======================================== */
 .top-bar {
 background: #0B1D3A;
 color: rgba(255,255,255,0.8);
 font-size: 0.8rem;
 padding: 8px 0;
 border-bottom: 1px solid rgba(255,255,255,0.1);
 position: relative;
 z-index: 1001;
 }
 .top-bar .container {
 display: flex;
 justify-content: space-between;
 align-items: center;
 }
 .top-bar a {
 color: rgba(255,255,255,0.8);
 text-decoration: none;
 transition: color 0.3s;
 }
 .top-bar a:hover { color: var(--secondary); }
 .top-bar-left, .top-bar-right {
 display: flex;
 align-items: center;
 gap: 24px;
 }
 .top-bar i { margin-right: 6px; color: #29A8DF; }
 .top-bar-social {
 display: flex;
 gap: 12px;
 }
 .top-bar-social a {
 width: 28px; height: 28px;
 border-radius: 50%;
 background: rgba(255,255,255,0.1);
 display: flex; align-items: center; justify-content: center;
 font-size: 0.75rem;
 transition: all 0.3s;
 }
 .top-bar-social a:hover { background: var(--secondary); color: white; }

 /* ========================================
 PREMIUM HEADER
 ======================================== */
 .main-header {
 background: rgba(255,255,255,0.97);
 backdrop-filter: blur(20px);
 position: sticky;
 top: 0;
 z-index: 1000;
 box-shadow: 0 2px 20px rgba(0,0,0,0.06);
 transition: all 0.3s;
 }
 .main-header .container {
 display: flex;
 align-items: center;
 justify-content: space-between;
 padding: 8px 40px;
 max-width: 100%;
 }
 .main-header.scrolled {
 padding: 8px 40px;
 box-shadow: 0 4px 30px rgba(0,0,0,0.1);
 }

 /* PREMIUM LOGO */
 .aims-logo {
 display: flex;
 align-items: center;
 gap: 14px;
 text-decoration: none;
 margin-left: 0;
 }
 .aims-logo-mark {
 width: 56px;
 height: 56px;
 position: relative;
 }
 .aims-logo-mark svg {
 width: 100%;
 height: 100%;
 }
 .aims-logo-text {
 display: flex;
 flex-direction: column;
 }
 .aims-logo-name {
 font-family: 'Inter', sans-serif;
 font-size: 1.6rem;
 font-weight: 900;
 color: var(--primary);
 letter-spacing: 3px;
 line-height: 1;
 }
 .aims-logo-tagline {
 font-family: 'Source Sans 3', sans-serif;
 font-size: 0.6rem;
 font-weight: 600;
 color: var(--secondary);
 letter-spacing: 2.5px;
 text-transform: uppercase;
 margin-top: 3px;
 }

 /* NAV */
 .main-nav {
 display: flex;
 align-items: center;
 gap: 4px;
 }
 .main-nav a {
 text-decoration: none;
 color: var(--gray-600);
 font-size: 0.9rem;
 font-weight: 500;
 padding: 8px 14px;
 border-radius: 8px;
 transition: all 0.3s;
 position: relative;
 }
 .main-nav a:hover, .main-nav a.active {
 color: var(--primary);
 background: rgba(0,180,216,0.06);
 }
 .main-nav a.active::after {
 content: '';
 position: absolute;
 bottom: 2px;
 left: 50%;
 transform: translateX(-50%);
 width: 20px;
 height: 3px;
 background: #29A8DF;
 border-radius: 2px;
 }
 @media (max-width: 1024px) {
  .main-nav {
   display: none;
   position: absolute;
   top: 100%;
   left: 0;
   right: 0;
   background: rgba(255,255,255,0.98);
   backdrop-filter: blur(20px);
   flex-direction: column;
   padding: 1rem;
   box-shadow: 0 8px 30px rgba(0,0,0,0.1);
   border-top: 1px solid var(--gray-100);
   z-index: 999;
  }
  .main-nav.open {
   display: flex;
  }
  .main-nav a {
   padding: 12px 16px;
   border-bottom: 1px solid var(--gray-50);
   width: 100%;
  }
 }
 .header-cta {
 display: flex;
 align-items: center;
 gap: 12px;
 }
 .mobile-toggle {
 display: none;
 background: none;
 border: none;
 cursor: pointer;
 width: 32px;
 height: 24px;
 position: relative;
 }
 .mobile-toggle span {
 display: block;
 width: 100%;
 height: 2px;
 background: var(--primary);
 position: absolute;
 transition: all 0.3s;
 border-radius: 2px;
 }
 .mobile-toggle span:nth-child(1) { top: 0; }
 .mobile-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
 .mobile-toggle span:nth-child(3) { bottom: 0; }

 /* ========================================
 HERO SECTION - PREMIUM DYNAMIC
 ======================================== */
 .hero {
 position: relative;
 min-height: auto;
 padding: 24px 0 24px;
 display: flex;
 align-items: center;
 background: linear-gradient(135deg, rgba(11, 29, 58, 0.92) 0%, rgba(11, 29, 58, 0.90) 30%, rgba(15, 27, 48, 0.90) 60%, rgba(11, 29, 58, 0.92) 100%),
 url('https://images.unsplash.com/photo-1631815588090-d4bfec5b1ccb?w=1200&q=80') center/cover;
 background-attachment: fixed;
 overflow: hidden;
 }
 .hero-canvas {
 position: absolute;
 top: 0; left: 0;
 width: 100%; height: 100%;
 z-index: 1;
 }
 /* Animated concentric rings (vtechsolution style) */
 .hero-rings {
 position: absolute;
 top: 50%;
 right: -5%;
 transform: translateY(-50%);
 width: 800px;
 height: 800px;
 z-index: 1;
 }
 .hero-ring {
 position: absolute;
 border: 1px solid rgba(255,255,255,0.06);
 border-radius: 50%;
 top: 50%; left: 50%;
 transform: translate(-50%, -50%);
 will-change: transform;
 }
 .hero-ring:nth-child(1) { width: 300px; height: 300px; border-color: rgba(255,255,255,0.08); }
 .hero-ring:nth-child(2) { width: 450px; height: 450px; border-style: dashed; animation: rotateSlow 60s linear infinite; }
 .hero-ring:nth-child(3) { width: 600px; height: 600px; }
 .hero-ring:nth-child(4) { width: 750px; height: 750px; border-style: dashed; animation: rotateSlow 90s linear infinite reverse; }
 .hero-ring:nth-child(5) { width: 900px; height: 900px; }

 /* Orbital dots on rings */
 .orbital-dot {
 position: absolute;
 width: 10px;
 height: 10px;
 background: var(--secondary);
 border-radius: 50%;
 top: 50%;
 left: 50%;
 box-shadow: 0 0 15px rgba(0,180,216,0.6);
 }
 .orbital-dot:nth-child(1) { animation: orbitalSpin 20s linear infinite; }
 .orbital-dot:nth-child(2) { animation: orbitalSpin 30s linear infinite reverse; }
 .orbital-dot:nth-child(3) { animation: orbitalSpin 25s linear infinite; animation-delay: -8s; }

 /* Floating gradient blobs */
 .hero-blob {
 position: absolute;
 border-radius: 50%;
 filter: blur(80px);
 z-index: 1;
 animation: morphBlob 12s ease-in-out infinite;
 }
 .hero-blob-1 {
 width: 400px; height: 400px;
 background: rgba(0,40,104,0.2);
 top: -10%; right: 10%;
 }
 .hero-blob-2 {
 width: 300px; height: 300px;
 background: rgba(41,168,223,0.1);
 bottom: -5%; left: 5%;
 animation-delay: -6s;
 }

 .hero .container {
 position: relative;
 z-index: 5;
 display: grid;
 grid-template-columns: 0.7fr 1.3fr;
 align-items: center;
 gap: 32px;
 padding: 16px 120px;
 max-width: 100%;
 width: 100%;
 }

 .hero-content {
 }
 .hero-badge {
 display: inline-flex;
 align-items: center;
 gap: 8px;
 background: rgba(41,168,223,0.2);
 border: 1px solid rgba(41,168,223,0.5);
 color: #29A8DF;
 padding: 6px 16px;
 border-radius: 50px;
 font-size: 0.7rem;
 font-weight: 700;
 letter-spacing: 1px;
 text-transform: uppercase;
 margin-bottom: 16px;
 }
 .hero h1 {
 font-size: 2.2rem;
 font-weight: 900;
 color: white;
 line-height: 1.15;
 margin-bottom: 8px;
 }
 .hero h1 .gradient-text {
 background: linear-gradient(135deg, #ffffff, #a8d8ff, #ffffff);
 background-size: 200% 200%;
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 background-clip: text;
 animation: gradientShift 4s ease infinite;
 }
 .hero-subtitle {
 color: rgba(255,255,255,0.85);
 font-size: 0.95rem;
 line-height: 1.6;
 margin: 12px 0 20px;
 max-width: 480px;
 }
 .hero-ctas {
 display: flex;
 gap: 12px;
 flex-wrap: wrap;
 margin-bottom: 0;
 }
 .hero-ctas .btn-hero-primary {
 background: linear-gradient(135deg, #29A8DF, #1875A8);
 color: white;
 padding: 12px 28px;
 border-radius: 50px;
 font-weight: 700;
 font-size: 0.9rem;
 text-decoration: none;
 display: inline-flex;
 align-items: center;
 gap: 10px;
 transition: all 0.3s;
 box-shadow: 0 8px 30px rgba(41,168,223,0.3);
 }
 .hero-ctas .btn-hero-primary:hover {
 transform: translateY(-3px);
 box-shadow: 0 12px 40px rgba(41,168,223,0.4);
 }
 .hero-ctas .btn-hero-secondary {
 background: rgba(255,255,255,0.08);
 border: 1px solid rgba(255,255,255,0.2);
 color: white;
 padding: 12px 28px;
 border-radius: 50px;
 font-weight: 600;
 font-size: 0.9rem;
 text-decoration: none;
 display: inline-flex;
 align-items: center;
 gap: 10px;
 transition: all 0.3s;
 backdrop-filter: blur(10px);
 }
 .hero-ctas .btn-hero-secondary:hover {
 background: rgba(255,255,255,0.15);
 transform: translateY(-2px);
 }

 /* Hero floating stats */
 .hero-stats {
 display: grid;
 grid-template-columns: repeat(4, 1fr);
 gap: 16px;
 }
 .hero-stat {
 text-align: center;
 padding: 16px 8px;
 background: rgba(255,255,255,0.04);
 border: 1px solid rgba(255,255,255,0.15);
 border-radius: 12px;
 backdrop-filter: blur(10px);
 }
 .hero-stat-number {
 font-size: 1.8rem;
 font-weight: 800;
 color: #29A8DF;
 line-height: 1;
 }
 .hero-stat-label {
 font-size: 0.7rem;
 color: rgba(255,255,255,0.6);
 margin-top: 6px;
 text-transform: uppercase;
 letter-spacing: 0.5px;
 }

 /* Hero right - Visual */
 .hero-visual {
 position: relative;
 animation: fadeInRight 1s ease 0.3s both;
 }

 /* ========================================
    ANALYTICS DASHBOARD (4x4 Grid in Hero)
    ======================================== */
 .hero-dashboard-panel {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 16px;
  backdrop-filter: blur(20px);
  position: relative;
 }
 .hero-dashboard-panel::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(41,168,223,0.25), transparent 40%, rgba(16,185,129,0.15) 70%, transparent);
  z-index: -1;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  padding: 1px;
 }
 .dashboard-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
 }
 .dashboard-panel-title {
  color: white;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background: linear-gradient(135deg, #ffffff 0%, #29A8DF 50%, #10B981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
 }
 .dashboard-panel-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(16,185,129,0.15);
  color: #10B981;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
 }
 .live-dot-sm {
  width: 6px; height: 6px;
  background: #10B981;
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
 }
 .hero-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
 }
 .analytics-tile {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 12px 10px;
  backdrop-filter: blur(12px);
  transition: all 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  animation: tileEnter 0.5s ease forwards;
 }
 .analytics-tile:nth-child(1)  { animation-delay: 0.05s; }
 .analytics-tile:nth-child(2)  { animation-delay: 0.1s; }
 .analytics-tile:nth-child(3)  { animation-delay: 0.15s; }
 .analytics-tile:nth-child(4)  { animation-delay: 0.2s; }
 .analytics-tile:nth-child(5)  { animation-delay: 0.25s; }
 .analytics-tile:nth-child(6)  { animation-delay: 0.3s; }
 .analytics-tile:nth-child(7)  { animation-delay: 0.35s; }
 .analytics-tile:nth-child(8)  { animation-delay: 0.4s; }
 .analytics-tile:nth-child(9)  { animation-delay: 0.45s; }
 .analytics-tile:nth-child(10) { animation-delay: 0.5s; }
 .analytics-tile:nth-child(11) { animation-delay: 0.55s; }
 .analytics-tile:nth-child(12) { animation-delay: 0.6s; }
 @keyframes tileEnter {
  to { opacity: 1; transform: translateY(0) scale(1); }
 }
 .analytics-tile::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--tile-accent, #29A8DF);
  opacity: 0.6;
  transition: opacity 0.3s, height 0.3s;
 }
 .analytics-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255,255,255,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
 }
 .analytics-tile:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--tile-accent, rgba(255,255,255,0.2));
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3), 0 0 20px color-mix(in srgb, var(--tile-accent) 20%, transparent);
 }
 .analytics-tile:hover::before { opacity: 1; height: 3px; }
 .analytics-tile:hover::after { opacity: 1; }
 .analytics-tile:active {
  transform: translateY(-1px) scale(0.98);
  transition-duration: 0.1s;
 }
 .analytics-tile:hover .tile-icon-box {
  transform: scale(1.1) rotate(-3deg);
  transition: transform 0.3s ease;
 }
 .analytics-tile:hover .tile-icon-ring svg {
  filter: drop-shadow(0 0 6px var(--tile-accent, #29A8DF));
  transition: filter 0.3s ease;
 }
 .analytics-tile:hover .tile-number {
  color: var(--tile-accent, #29A8DF);
  transition: color 0.3s ease;
 }

/* Tile Detail Popup */
.tile-detail-popup {
 position: fixed;
 background: rgba(11, 29, 58, 0.98);
 color: #ffffff;
 padding: 16px 20px;
 border-radius: 12px;
 border: 1px solid rgba(41, 168, 223, 0.3);
 backdrop-filter: blur(8px);
 box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(41, 168, 223, 0.2);
 z-index: 10000;
 max-width: 280px;
 animation: popupSlideUp 0.3s ease-out forwards;
 font-size: 0.9rem;
 line-height: 1.5;
 transform: translateX(-50%);
}

.tile-popup-arrow {
 position: absolute;
 top: -6px;
 left: 50%;
 transform: translateX(-50%);
 width: 0;
 height: 0;
 border-left: 6px solid transparent;
 border-right: 6px solid transparent;
 border-bottom: 6px solid rgba(41, 168, 223, 0.3);
}

.tile-popup-content {
 color: #e0e7ff;
 font-weight: 500;
}

@keyframes popupSlideUp {
 from {
  opacity: 0;
  transform: translateX(-50%) translateY(8px);
 }
 to {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
 }
}

 /* Accent color variants */
 .tile-accent-teal   { --tile-accent: #29A8DF; }
 .tile-accent-green   { --tile-accent: #10B981; }
 .tile-accent-blue    { --tile-accent: #3B82F6; }
 .tile-accent-amber   { --tile-accent: #F59E0B; }
 .tile-accent-emerald { --tile-accent: #059669; }
 .tile-accent-violet  { --tile-accent: #7C3AED; }
 .tile-accent-rose    { --tile-accent: #F43F5E; }
 .tile-accent-gold    { --tile-accent: #D97706; }
 .tile-accent-indigo  { --tile-accent: #6366F1; }
 .tile-accent-cyan    { --tile-accent: #06B6D4; }
 .tile-accent-pink    { --tile-accent: #EC4899; }

 /* Icon ring (circular SVG gauge) */
 .tile-icon-ring {
  position: relative;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
 }
 .tile-icon-ring svg { width: 100%; height: 100%; }
 .ring-val {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 11px;
  font-weight: 800;
  color: #29A8DF;
 }

 /* Icon box */
 .tile-icon-box {
  width: 34px; height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
 }

 /* Data area */
 .tile-data {
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: 100%;
 }
 .tile-number {
  font-size: 1.2rem;
  font-weight: 800;
  color: white;
  line-height: 1.1;
  letter-spacing: -0.02em;
 }
 .tile-unit {
  font-size: 0.65em;
  font-weight: 600;
  opacity: 0.7;
 }
 .tile-label {
  font-size: 0.58rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  line-height: 1.2;
 }
 .tile-trend {
  font-size: 0.52rem;
  font-weight: 600;
  color: #10B981;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  margin-top: 2px;
 }
 .tile-trend i { font-size: 0.48rem; }

 /* Sparkline */
 .tile-spark {
  height: 18px;
  width: 100%;
  margin-top: 2px;
 }
 .tile-spark svg {
  width: 100%;
  height: 100%;
 }

 /* Mini stacked bar */
 .tile-mini-bar {
  display: flex;
  height: 5px;
  border-radius: 3px;
  overflow: hidden;
  width: 100%;
  margin-top: 4px;
  gap: 1px;
 }
 .tile-mini-bar span {
  height: 100%;
  border-radius: 2px;
 }

 /* Star ratings */
 .tile-stars {
  color: #F59E0B;
  font-size: 0.55rem;
  display: flex;
  gap: 1px;
  justify-content: center;
  margin-top: 2px;
 }
 .hero-dashboard {
 background: rgba(255,255,255,0.04);
 border: 1px solid rgba(255,255,255,0.1);
 border-radius: 20px;
 padding: 28px;
 backdrop-filter: blur(20px);
 position: relative;
 }
 .hero-dashboard::before {
 content: '';
 position: absolute;
 inset: -1px;
 border-radius: 20px;
 background: linear-gradient(135deg, rgba(0,180,216,0.3), transparent, rgba(41,168,223,0.3));
 z-index: -1;
 mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
 mask-composite: exclude;
 -webkit-mask-composite: xor;
 padding: 1px;
 }
 .dashboard-header {
 display: flex;
 justify-content: space-between;
 align-items: center;
 margin-bottom: 20px;
 }
 .dashboard-title {
 color: white;
 font-weight: 700;
 font-size: 0.95rem;
 }
 .dashboard-badge {
 background: rgba(16,185,129,0.15);
 color: #10b981;
 font-size: 0.7rem;
 font-weight: 600;
 padding: 4px 12px;
 border-radius: 20px;
 }
 .dashboard-metrics {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 12px;
 margin-bottom: 20px;
 }
 .metric-card {
 background: rgba(255,255,255,0.05);
 border: 1px solid rgba(255,255,255,0.08);
 border-radius: 12px;
 padding: 16px;
 transition: all 0.3s;
 }
 .metric-card:hover {
 background: rgba(255,255,255,0.08);
 border-color: rgba(0,180,216,0.2);
 }
 .metric-value {
 font-size: 1.6rem;
 font-weight: 800;
 color: white;
 line-height: 1;
 }
 .metric-label {
 color: rgba(255,255,255,0.5);
 font-size: 0.75rem;
 margin-top: 4px;
 }
 .metric-change {
 display: inline-flex;
 align-items: center;
 gap: 4px;
 font-size: 0.7rem;
 font-weight: 600;
 margin-top: 8px;
 padding: 2px 8px;
 border-radius: 10px;
 }
 .metric-change.positive { background: rgba(16,185,129,0.15); color: #10b981; }
 .metric-change.accent { background: rgba(41,168,223,0.2); color: #29A8DF; }

 /* Mini chart bars */
 .mini-chart {
 display: flex;
 align-items: flex-end;
 gap: 3px;
 height: 40px;
 margin-top: 12px;
 }
 .mini-bar {
 flex: 1;
 background: linear-gradient(to top, rgba(0,180,216,0.3), rgba(0,180,216,0.8));
 border-radius: 3px 3px 0 0;
 animation: countUp 1s ease both;
 }

 /* Active job ticker in hero dashboard */
 .live-feed {
 border-top: 1px solid rgba(255,255,255,0.08);
 padding-top: 16px;
 }
 .live-feed-title {
 display: flex;
 align-items: center;
 gap: 8px;
 color: rgba(255,255,255,0.6);
 font-size: 0.75rem;
 font-weight: 600;
 text-transform: uppercase;
 letter-spacing: 0.5px;
 margin-bottom: 12px;
 }
 .live-dot {
 width: 6px; height: 6px;
 background: #10b981;
 border-radius: 50%;
 animation: pulse 1.5s ease-in-out infinite;
 }
 .feed-item {
 display: flex;
 justify-content: space-between;
 align-items: center;
 padding: 10px 0;
 border-bottom: 1px solid rgba(255,255,255,0.05);
 color: white;
 font-size: 0.82rem;
 }
 .feed-item:last-child { border-bottom: none; }
 .feed-item-role { font-weight: 600; }
 .feed-item-loc { color: rgba(255,255,255,0.5); font-size: 0.75rem; }
 .feed-item-badge {
 font-size: 0.65rem;
 padding: 3px 10px;
 border-radius: 20px;
 font-weight: 600;
 }
 .feed-item-badge.gov { background: rgba(0,180,216,0.15); color: var(--secondary); }
 .feed-item-badge.urgent { background: rgba(41,168,223,0.15); color: #29A8DF; }

 /* ========================================
 TRUST BAR / CREDENTIALS
 ======================================== */
 .trust-bar {
 background: white;
 padding: 24px 0;
 border-top: 3px solid #29A8DF;
 border-bottom: 1px solid var(--gray-100);
 }
 .trust-items {
 display: flex;
 align-items: center;
 justify-content: center;
 gap: 36px;
 flex-wrap: wrap;
 }
 .trust-item {
 display: flex;
 align-items: center;
 gap: 8px;
 font-size: 0.82rem;
 font-weight: 600;
 color: var(--gray-600);
 white-space: nowrap;
 }
 .trust-item i { font-size: 1.1rem; }
 .trust-item .icon-gold { color: var(--accent); }
 .trust-item .icon-teal { color: var(--secondary); }
 .trust-item .icon-navy { color: var(--primary); }
 .trust-item .icon-green { color: #10b981; }
 .trust-item .icon-red { color: #29A8DF; }

 /* Certification pending tooltips */
 .trust-item.cert-pending {
   position: relative;
   cursor: help;
 }
 .trust-item.cert-pending::after {
   content: '✓ Compliant · Certification in Progress';
   position: absolute;
   bottom: calc(100% + 8px);
   left: 50%;
   transform: translateX(-50%);
   background: #0A2540;
   color: white;
   font-size: 0.72rem;
   font-weight: 500;
   padding: 5px 10px;
   border-radius: 6px;
   white-space: nowrap;
   opacity: 0;
   pointer-events: none;
   transition: opacity 0.2s ease;
   z-index: 100;
 }
 .trust-item.cert-pending::before {
   content: '';
   position: absolute;
   bottom: calc(100% + 2px);
   left: 50%;
   transform: translateX(-50%);
   border: 5px solid transparent;
   border-top-color: #0A2540;
   opacity: 0;
   pointer-events: none;
   transition: opacity 0.2s ease;
   z-index: 100;
 }
 .trust-item.cert-pending:hover::after,
 .trust-item.cert-pending:hover::before {
   opacity: 1;
 }

 /* ========================================
 SECTION STYLING
 ======================================== */
 .section { padding: 100px 0; }
 .section-dark { background: var(--primary); color: white; }
 .section-light { background: var(--gray-50); }
 .section-white { background: white; }

 .section-header {
 text-align: center;
 max-width: 700px;
 margin: 0 auto 60px;
 }
 .section-label {
 color: var(--secondary);
 font-weight: 700;
 font-size: 0.85rem;
 text-transform: uppercase;
 letter-spacing: 3px;
 margin-bottom: 12px;
 display: block;
 }
 .section-title {
 font-size: 2.6rem;
 font-weight: 800;
 color: var(--primary);
 line-height: 1.15;
 margin-bottom: 16px;
 }
 .section-dark .section-title { color: white; }
 .section-desc {
 color: var(--gray-500);
 font-size: 1.05rem;
 line-height: 1.7;
 }
 .section-dark .section-desc { color: rgba(255,255,255,0.7); }

 /* ========================================
 WHO WE ARE SECTION
 ======================================== */
 .who-grid {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 60px;
 align-items: center;
 }
 .who-content h3 {
 font-size: 1.3rem;
 color: var(--primary);
 margin-bottom: 16px;
 }
 .who-content p {
 color: var(--gray-500);
 line-height: 1.8;
 margin-bottom: 16px;
 }
 .who-pillars {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 16px;
 margin-top: 28px;
 }
 .pillar {
 display: flex;
 align-items: center;
 gap: 12px;
 padding: 16px;
 background: var(--gray-50);
 border-radius: 12px;
 transition: all 0.3s;
 }
 .pillar:hover {
 background: white;
 box-shadow: 0 4px 15px rgba(0,0,0,0.08);
 transform: translateY(-2px);
 }
 .pillar-icon {
 width: 42px; height: 42px;
 background: linear-gradient(135deg, var(--secondary), #0096b7);
 border-radius: 10px;
 display: flex; align-items: center; justify-content: center;
 color: white;
 font-size: 1rem;
 flex-shrink: 0;
 }
 .pillar-text {
 font-weight: 700;
 color: var(--primary);
 font-size: 0.9rem;
 }

 /* Who visual - Analytics mockup */
 .who-visual {
 position: relative;
 }
 .analytics-card {
 background: white;
 border-radius: 20px;
 padding: 32px;
 box-shadow: 0 20px 60px rgba(0,0,0,0.08);
 position: relative;
 overflow: hidden;
 }
 .analytics-card::before {
 content: '';
 position: absolute;
 top: 0; left: 0; right: 0;
 height: 4px;
 background: linear-gradient(90deg, var(--secondary), #29A8DF);
 }

 /* ========================================
 SERVICES / WHAT WE DO
 ======================================== */
 .services-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 24px;
 }
 .service-card {
 background: white;
 border-radius: 16px;
 padding: 36px 28px;
 box-shadow: 0 4px 20px rgba(0,0,0,0.04);
 border: 1px solid var(--gray-100);
 transition: all 0.4s ease;
 position: relative;
 overflow: hidden;
 }
 .service-card::before {
 content: '';
 position: absolute;
 top: 0; left: 0;
 width: 100%; height: 4px;
 background: linear-gradient(90deg, var(--secondary), #29A8DF);
 transform: scaleX(0);
 transform-origin: left;
 transition: transform 0.4s ease;
 }
 .service-card:hover::before { transform: scaleX(1); }
 .service-card:hover {
 transform: translateY(-8px);
 box-shadow: 0 20px 50px rgba(0,0,0,0.1);
 }
 .service-icon {
 width: 56px; height: 56px;
 background: linear-gradient(135deg, rgba(0,180,216,0.1), rgba(0,180,216,0.05));
 border-radius: 14px;
 display: flex; align-items: center; justify-content: center;
 color: var(--secondary);
 font-size: 1.4rem;
 margin-bottom: 20px;
 transition: all 0.4s ease;
 }
 .service-card:hover .service-icon {
 background: linear-gradient(135deg, var(--secondary), #0096b7);
 color: white;
 transform: scale(1.1);
 }
 .service-card h3 {
 font-size: 1.15rem;
 color: var(--primary);
 margin-bottom: 10px;
 }
 .service-card p {
 color: var(--gray-500);
 font-size: 0.9rem;
 line-height: 1.7;
 }

 /* ========================================
 SPECIALTIES MARQUEE
 ======================================== */
 .specialties-section {
 padding: 60px 0;
 background: #0B1D3A;
 overflow: hidden;
 position: relative;
 }
 .specialties-track {
 display: flex;
 animation: marquee 40s linear infinite;
 width: max-content;
 }
 .specialty-pill {
 display: inline-flex;
 align-items: center;
 gap: 8px;
 padding: 10px 24px;
 background: rgba(255,255,255,0.06);
 border: 1px solid rgba(255,255,255,0.1);
 border-radius: 50px;
 color: rgba(255,255,255,0.8);
 font-size: 0.85rem;
 font-weight: 500;
 white-space: nowrap;
 margin: 0 8px;
 transition: all 0.3s;
 }
 .specialty-pill i { color: var(--secondary); font-size: 0.8rem; }

 /* ========================================
 IMPACT NUMBERS
 ======================================== */
 .impact-section {
 padding: 80px 0;
 background: linear-gradient(135deg, rgba(11, 29, 58, 0.85) 0%, rgba(15, 27, 48, 0.85) 100%),
 url('https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?w=800&q=80') center/cover;
 background-attachment: fixed;
 position: relative;
 overflow: hidden;
 }
 .impact-grid {
 display: grid;
 grid-template-columns: repeat(4, 1fr);
 gap: 30px;
 position: relative;
 z-index: 2;
 }
 .impact-card {
 text-align: center;
 padding: 32px 16px;
 background: rgba(255,255,255,0.04);
 border: 1px solid rgba(255,255,255,0.08);
 border-radius: 16px;
 backdrop-filter: blur(10px);
 transition: all 0.3s;
 }
 .impact-card:hover {
 background: rgba(255,255,255,0.08);
 transform: translateY(-4px);
 }
 .impact-number {
 font-size: 3rem;
 font-weight: 900;
 color: #29A8DF;
 line-height: 1;
 }
 .impact-label {
 color: rgba(255,255,255,0.7);
 font-size: 0.9rem;
 margin-top: 8px;
 font-weight: 500;
 }

 /* ========================================
 DUAL PATH (GOV + COMMERCIAL)
 ======================================== */
 .dual-path-grid {
 display: grid;
 grid-template-columns: 1fr 1fr 1fr;
 gap: 30px;
 align-items: stretch;
 max-width: 1200px;
 margin: 0 auto;
 padding: 0 40px;
 }
 .path-card {
 border-radius: 20px;
 padding: 48px 40px;
 position: relative;
 overflow: hidden;
 transition: all 0.4s;
 display: flex;
 flex-direction: column;
 }
 .path-card:hover {
 transform: translateY(-6px);
 }
 .path-card.gov {
 background: linear-gradient(135deg, #0B1D3A, #0F1B30);
 border: 1px solid rgba(0,180,216,0.2);
 }
 .path-card.commercial {
 background: linear-gradient(135deg, #1a1a2e, #16213e);
 border: 1px solid rgba(41,168,223,0.2);
 }
 .path-card .path-icon {
 width: 64px; height: 64px;
 border-radius: 16px;
 display: flex; align-items: center; justify-content: center;
 font-size: 1.6rem;
 margin-bottom: 24px;
 }
 .path-card.gov .path-icon { background: rgba(0,180,216,0.15); color: var(--secondary); }
 .path-card.commercial .path-icon { background: rgba(41,168,223,0.15); color: #29A8DF; }
 .path-card h3 { color: white; font-size: 1.5rem; margin-bottom: 12px; }
 .path-card p { color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 24px; }
 .path-list {
 list-style: none;
 padding: 0;
 margin: 0 0 28px;
 }
 .path-list li {
 display: flex;
 align-items: center;
 gap: 10px;
 color: rgba(255,255,255,0.8);
 font-size: 0.9rem;
 padding: 8px 0;
 }
 .path-list li i { color: var(--secondary); font-size: 0.8rem; }
 .path-card.commercial .path-list li i { color: #29A8DF; }
 .path-card .btn-path {
 display: inline-flex;
 align-items: center;
 gap: 8px;
 padding: 12px 28px;
 border-radius: 50px;
 text-decoration: none;
 font-weight: 600;
 font-size: 0.9rem;
 transition: all 0.3s;
 margin-top: auto;
 align-self: flex-start;
 }
 .path-card.gov .btn-path {
 background: var(--secondary);
 color: white;
 }
 .path-card.commercial .btn-path {
 background: #29A8DF;
 color: var(--primary);
 }

 /* ========================================
 TESTIMONIALS CAROUSEL
 ======================================== */
 .testimonials-track {
 display: flex;
 gap: 24px;
 overflow-x: auto;
 scroll-snap-type: x mandatory;
 -webkit-overflow-scrolling: touch;
 padding: 20px 0;
 scrollbar-width: none;
 }
 .testimonials-track::-webkit-scrollbar { display: none; }
 .testimonial-card {
 flex: 0 0 350px;
 scroll-snap-align: start;
 background: white;
 border-radius: 16px;
 padding: 32px;
 box-shadow: 0 4px 20px rgba(0,0,0,0.06);
 border: 1px solid var(--gray-100);
 position: relative;
 }
 .testimonial-card::before {
 content: '\201C';
 font-size: 4rem;
 color: rgba(0,180,216,0.15);
 font-family: Georgia, serif;
 position: absolute;
 top: 16px;
 left: 24px;
 line-height: 1;
 }
 .testimonial-stars {
 display: flex;
 gap: 3px;
 color: #29A8DF;
 font-size: 0.85rem;
 margin-bottom: 16px;
 }
 .testimonial-text {
 color: var(--gray-600);
 font-size: 0.92rem;
 line-height: 1.7;
 margin-bottom: 20px;
 font-style: italic;
 }
 .testimonial-author {
 display: flex;
 align-items: center;
 gap: 12px;
 }
 .testimonial-avatar {
 width: 44px; height: 44px;
 border-radius: 50%;
 background: linear-gradient(135deg, var(--secondary), var(--primary));
 display: flex; align-items: center; justify-content: center;
 color: white;
 font-weight: 700;
 font-size: 0.9rem;
 }
 .testimonial-name { font-weight: 700; color: var(--primary); font-size: 0.9rem; }
 .testimonial-role { font-size: 0.8rem; color: var(--gray-400); }

 /* ========================================
 FEATURED JOBS
 ======================================== */
 .jobs-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 24px;
 }
 .job-card {
 background: white;
 border-radius: 16px;
 padding: 28px;
 box-shadow: 0 4px 20px rgba(0,0,0,0.04);
 border: 1px solid var(--gray-100);
 transition: all 0.3s;
 position: relative;
 overflow: hidden;
 }
 .job-card:hover {
 transform: translateY(-4px);
 box-shadow: 0 12px 40px rgba(0,0,0,0.1);
 border-color: var(--secondary);
 }
 .job-card-header {
 display: flex;
 justify-content: space-between;
 align-items: start;
 margin-bottom: 12px;
 }
 .job-badge {
 font-size: 0.7rem;
 font-weight: 700;
 padding: 4px 12px;
 border-radius: 20px;
 text-transform: uppercase;
 letter-spacing: 0.5px;
 }
 .job-badge.gov { background: rgba(0,180,216,0.1); color: var(--secondary); }
 .job-badge.urgent { background: rgba(41,168,223,0.1); color: #29A8DF; }
 .job-card h3 { font-size: 1.1rem; color: var(--primary); margin-bottom: 10px; }
 .job-meta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 14px; }
 .job-meta span {
 font-size: 0.8rem;
 color: var(--gray-400);
 display: flex;
 align-items: center;
 gap: 4px;
 }
 .job-meta span i { color: var(--secondary); }
 .job-card p { color: var(--gray-500); font-size: 0.88rem; line-height: 1.6; margin-bottom: 16px; }
 .job-card .btn-apply-job {
 display: inline-flex;
 align-items: center;
 gap: 6px;
 background: var(--primary);
 color: white;
 padding: 10px 24px;
 border-radius: 50px;
 font-size: 0.85rem;
 font-weight: 600;
 text-decoration: none;
 transition: all 0.3s;
 }
 .job-card .btn-apply-job:hover {
 background: var(--secondary);
 transform: translateY(-2px);
 }

 /* ========================================
 CTA SECTION
 ======================================== */
 .cta-section {
 padding: 80px 0;
 background: linear-gradient(135deg, #29A8DF, #1875A8, #29A8DF);
 background-size: 200% 200%;
 animation: gradientShift 6s ease infinite;
 text-align: center;
 position: relative;
 overflow: hidden;
 }
 .cta-section h2 {
 font-size: 2.4rem;
 font-weight: 800;
 color: white;
 margin-bottom: 14px;
 }
 .cta-section p {
 color: rgba(255,255,255,0.85);
 font-size: 1.05rem;
 margin-bottom: 32px;
 max-width: 600px;
 margin-left: auto;
 margin-right: auto;
 }
 .cta-buttons {
 display: flex;
 gap: 16px;
 justify-content: center;
 flex-wrap: wrap;
 }
 .cta-buttons a {
 padding: 16px 36px;
 border-radius: 50px;
 font-weight: 700;
 font-size: 1rem;
 text-decoration: none;
 display: inline-flex;
 align-items: center;
 gap: 8px;
 transition: all 0.3s;
 }
 .cta-buttons .btn-cta-primary {
 background: var(--primary);
 color: white;
 }
 .cta-buttons .btn-cta-primary:hover {
 transform: translateY(-3px);
 box-shadow: 0 8px 25px rgba(10,37,64,0.3);
 }
 .cta-buttons .btn-cta-secondary {
 background: transparent;
 border: 2px solid var(--primary);
 color: var(--primary);
 }

 /* ========================================
 FOOTER
 ======================================== */
 .site-footer {
 background: #050d18;
 color: rgba(255,255,255,0.6);
 padding: 80px 0 0;
 border-top: 4px solid #29A8DF;
 }
 .footer-grid {
 display: grid;
 grid-template-columns: 2fr 1fr 1fr 1.5fr;
 gap: 40px;
 padding-bottom: 60px;
 border-bottom: 1px solid rgba(255,255,255,0.08);
 }
 .footer-brand p { line-height: 1.8; font-size: 0.9rem; margin-top: 16px; max-width: 320px; }
 .footer-social {
 display: flex;
 gap: 10px;
 margin-top: 20px;
 }
 .footer-social a {
 width: 40px; height: 40px;
 border-radius: 50%;
 background: rgba(255,255,255,0.06);
 display: flex; align-items: center; justify-content: center;
 color: rgba(255,255,255,0.6);
 transition: all 0.3s;
 text-decoration: none;
 }
 .footer-social a:hover { background: var(--secondary); color: white; }
 .footer-col h4 { color: white; font-size: 1rem; margin-bottom: 20px; font-weight: 700; }
 .footer-links {
 list-style: none;
 padding: 0;
 margin: 0;
 }
 .footer-links li { margin-bottom: 10px; }
 .footer-links a {
 color: rgba(255,255,255,0.5);
 text-decoration: none;
 font-size: 0.9rem;
 transition: color 0.3s;
 }
 .footer-links a:hover { color: var(--secondary); }
 .footer-contact-item {
 display: flex;
 align-items: start;
 gap: 10px;
 margin-bottom: 14px;
 font-size: 0.9rem;
 }
 .footer-contact-item i { color: var(--secondary); margin-top: 3px; }
 .footer-contact-item a { color: rgba(255,255,255,0.6); text-decoration: none; }
 .footer-contact-item a:hover { color: var(--secondary); }
 .footer-contact-bar {
 display: flex;
 justify-content: space-between;
 align-items: center;
 padding: 16px 0;
 margin-bottom: 16px;
 border-top: 1px solid rgba(255,255,255,0.08);
 border-bottom: 1px solid rgba(255,255,255,0.08);
 flex-wrap: wrap;
 gap: 12px;
 }
 .footer-contact-left {
 display: flex;
 align-items: center;
 gap: 24px;
 }
 .footer-contact-left a,
 .footer-contact-left span {
 color: rgba(255,255,255,0.6);
 font-size: 0.82rem;
 text-decoration: none;
 }
 .footer-contact-left a:hover { color: var(--secondary); }
 .footer-contact-left i { color: #29A8DF; margin-right: 6px; }
 .footer-contact-social {
 display: flex;
 gap: 10px;
 }
 .footer-contact-social a {
 width: 34px; height: 34px;
 border-radius: 50%;
 background: rgba(255,255,255,0.08);
 display: flex;
 align-items: center;
 justify-content: center;
 color: rgba(255,255,255,0.6);
 font-size: 0.85rem;
 text-decoration: none;
 transition: all 0.3s;
 }
 .footer-contact-social a:hover { background: var(--secondary); color: white; }
 .footer-bottom {
 padding: 24px 0;
 display: flex;
 justify-content: space-between;
 align-items: center;
 flex-wrap: wrap;
 gap: 16px;
 }
 .footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.35); }
 .footer-bottom-links {
 display: flex;
 gap: 24px;
 }
 .footer-bottom-links a { color: rgba(255,255,255,0.35); font-size: 0.82rem; text-decoration: none; }
 .footer-bottom-links a:hover { color: var(--secondary); }

 /* ========================================
 TESTIMONIAL CAROUSEL (50 reviews)
 ======================================== */
 .testi-card {
 background: rgba(255,255,255,0.04);
 border: 1px solid rgba(255,255,255,0.08);
 border-radius: 16px;
 padding: 28px;
 transition: all 0.3s;
 flex-shrink: 0;
 box-sizing: border-box;
 }
 .testi-card:hover {
 background: rgba(255,255,255,0.08);
 border-color: rgba(0,180,216,0.2);
 transform: translateY(-4px);
 }
 .testi-prev:hover, .testi-next:hover {
 background: rgba(0,180,216,0.3) !important;
 border-color: rgba(0,180,216,0.4) !important;
 }

 /* ========================================
 FLOATING QUICK APPLY
 ======================================== */

 /* Patriotic stars background pattern */
 .hero::after {
 content: '';
 position: absolute;
 top: 0; left: 0; right: 0; bottom: 0;
 background-image:
 radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
 background-size: 40px 40px;
 z-index: 1;
 pointer-events: none;
 }

 /* Red accent stripe at top of hero */
 .patriot-stripe {
 position: absolute;
 top: 0; left: 0; right: 0;
 height: 4px;
 background: linear-gradient(90deg, #29A8DF, #1875A8, #29A8DF);
 z-index: 10;
 }

 /* ========================================
 RESPONSIVE
 ======================================== */
 @media (max-width: 1024px) {
 .hero .container { grid-template-columns: 1fr; text-align: center; }
 .hero h1 { font-size: 2.6rem; }
 .hero-subtitle { margin: 16px auto 28px; }
 .hero-ctas { justify-content: center; }
 .hero-stats { max-width: 500px; margin: 0 auto; }
 .hero-visual { display: none; }
 .hero-rings { display: none; }
 .hero-dashboard-grid { grid-template-columns: repeat(4, 1fr); max-width: 100%; margin: 24px auto 0; }
 .who-grid { grid-template-columns: 1fr; }
 .services-grid { grid-template-columns: 1fr 1fr; }
 .dual-path-grid { grid-template-columns: 1fr; }
 .jobs-grid { grid-template-columns: 1fr 1fr; }
 .impact-grid { grid-template-columns: repeat(2, 1fr); }
 .footer-grid { grid-template-columns: 1fr 1fr; }
 .mobile-toggle { display: block; z-index: 1001; }
 }
 @media (max-width: 768px) {
 .hero { min-height: auto; padding: 70px 0 30px; }
 .hero h1 { font-size: 1.8rem; word-break: break-word; overflow-wrap: break-word; }
 .hero-content h1 { font-size: 1.8rem; }
 .hero-content p { font-size: 0.9rem; }
 .hero-buttons { flex-direction: column; gap: 10px; }
 .hero-buttons a { width: 100%; text-align: center; }
 .hero-ctas { flex-direction: column; gap: 8px; }
 .hero-ctas a { width: 100%; text-align: center; padding: 12px 16px; font-size: 0.9rem; }
 .hero-stats { grid-template-columns: repeat(2, 1fr); }
 .hero-dashboard-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; }
 .analytics-tile { padding: 8px 4px; }
 .tile-number { font-size: 0.9rem; }
 .tile-label { font-size: 0.5rem; letter-spacing: 0; }
 .tile-trend { display: none; }
 .tile-stars { display: none; }
 .tile-mini-bar { display: none; }
 .tile-icon-ring { width: 30px; height: 30px; }
 .tile-icon-ring svg { width: 30px; height: 30px; }
 .ring-val { font-size: 0.55rem; }
 .tile-icon-box { width: 26px; height: 26px; font-size: 11px; }
 .hero-subtitle { font-size: 0.85rem; max-width: 100%; }
 .hero-dashboard-panel { padding: 10px; }
 .dashboard-panel-title { font-size: 0.7rem; }
 .dashboard-panel-badge { font-size: 0.6rem; }
 .services-grid { grid-template-columns: 1fr; }
 .jobs-grid { grid-template-columns: 1fr; }
 .top-bar { display: none; }
 .footer-grid { grid-template-columns: 1fr; }
 .footer-bottom { text-align: center; }
 .footer-bottom-links { justify-content: center; }
 .section { padding: 50px 0; }
 .section-title { font-size: 1.8rem; }
 .who-pillars { grid-template-columns: 1fr; }
 .hero-dashboard { max-width: 100%; overflow: hidden; padding: 12px; }
 .dual-path-title, .cta-title, .section-title, .dual-path h2, .cta h2, .cta-section h2 {
   color: var(--primary) !important;
 }
 }
 @media (max-width: 480px) {
 .hero { padding: 60px 0 20px; }
 .hero h1 { font-size: 1.4rem; line-height: 1.3; }
 .hero-content h1 { font-size: 1.4rem; }
 .hero-subtitle { font-size: 0.75rem; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
 .hero-ctas a { padding: 10px 14px; font-size: 0.85rem; }
 .hero-stats { grid-template-columns: repeat(2, 1fr); }
 .hero-dashboard-grid { grid-template-columns: repeat(2, 1fr); gap: 5px; }
 .analytics-tile { padding: 8px 5px; }
 .tile-number { font-size: 0.9rem; }
 .tile-label { font-size: 0.5rem; letter-spacing: 0; }
 .tile-icon-ring { width: 28px; height: 28px; }
 .tile-icon-ring svg { width: 28px; height: 28px; }
 .ring-val { font-size: 0.5rem; }
 .tile-icon-box { width: 24px; height: 24px; font-size: 10px; }
 .tile-trend { display: none; }
 .tile-stars { display: none; }
 .tile-mini-bar { display: none; }
 .impact-grid { grid-template-columns: 1fr; }
 .dual-path-grid { grid-template-columns: 1fr; }
 .hero-dashboard { max-width: 100%; padding: 8px; }
 .hero-dashboard-panel { padding: 8px; }
 .dashboard-panel-title { font-size: 0.65rem; }
 .dashboard-panel-header { margin-bottom: 6px; }
 }

 /* Agency Cards Animation Styles */
 .agency-card {
 transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
 animation: agencyFloat 4s ease-in-out infinite;
 will-change: transform;
 }
 .agency-card:nth-child(1) { animation-delay: 0s; }
 .agency-card:nth-child(2) { animation-delay: 0.2s; }
 .agency-card:nth-child(3) { animation-delay: 0.4s; }
 .agency-card:nth-child(4) { animation-delay: 0.6s; }
 .agency-card:nth-child(5) { animation-delay: 0.8s; }
 .agency-card:nth-child(6) { animation-delay: 1s; }
 .agency-card:nth-child(7) { animation-delay: 1.2s; }
 .agency-card:nth-child(8) { animation-delay: 1.4s; }
 .agency-card:nth-child(9) { animation-delay: 1.6s; }
 .agency-card:hover {
 box-shadow: 0 8px 24px rgba(0,180,216,0.3);
 background: rgba(0,180,216,0.08);
 transform: translateY(-10px);
 }

 /* Featured DHA Card */
 .agency-featured-card {
 animation: dhaGlowPulse 3s ease-in-out infinite;
 transition: all 0.3s ease;
 }
 .agency-featured-card:hover {
 border-color: rgba(0,180,216,0.6);
 background: linear-gradient(135deg,rgba(0,180,216,0.15),rgba(41,168,223,0.15));
 transform: scale(1.02);
 }

 /* ========================================
 ENHANCED DYNAMIC ANIMATIONS
 ======================================== */

 /* Scroll reveal animations */
 @keyframes revealUp {
 from {
 opacity: 0;
 transform: translateY(40px);
 }
 to {
 opacity: 1;
 transform: translateY(0);
 }
 }

 @keyframes revealLeft {
 from {
 opacity: 0;
 transform: translateX(-40px);
 }
 to {
 opacity: 1;
 transform: translateX(0);
 }
 }

 @keyframes revealRight {
 from {
 opacity: 0;
 transform: translateX(40px);
 }
 to {
 opacity: 1;
 transform: translateX(0);
 }
 }

 @keyframes revealScale {
 from {
 opacity: 0;
 transform: scale(0.8);
 }
 to {
 opacity: 1;
 transform: scale(1);
 }
 }

 /* Service card icon spin animation */
 @keyframes iconSpin {
 from {
 transform: scale(1) rotate(0deg);
 }
 to {
 transform: scale(1.15) rotate(360deg);
 }
 }

 /* Trust item bounce */
 @keyframes trustBounce {
 0%, 100% {
 transform: translateY(0);
 }
 50% {
 transform: translateY(-8px);
 }
 }

 /* Glow pulse for job cards */
 @keyframes jobGlow {
 0%, 100% {
 box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
 }
 50% {
 box-shadow: 0 20px 50px rgba(41, 168, 223, 0.25);
 }
 }

 /* Enhanced trust bar items hover */
 .trust-item {
 transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
 position: relative;
 }

 .trust-item::before {
 content: '';
 position: absolute;
 bottom: -8px;
 left: 50%;
 width: 0;
 height: 2px;
 background: linear-gradient(90deg, transparent, var(--secondary), transparent);
 transform: translateX(-50%);
 transition: width 0.4s ease;
 }

 .trust-item:hover::before {
 width: 100%;
 }

 /* Service card enhanced hover */
 .service-card {
 position: relative;
 overflow: hidden;
 }

 .service-card::after {
 content: '';
 position: absolute;
 top: 0;
 left: -100%;
 width: 100%;
 height: 100%;
 background: radial-gradient(circle at top right, rgba(41, 168, 223, 0.1), transparent);
 transition: left 0.6s ease;
 }

 .service-card:hover::after {
 left: 100%;
 }

 /* Job card glow animation */
 .job-card {
 position: relative;
 overflow: hidden;
 }

 .job-card::before {
 content: '';
 position: absolute;
 top: -50%;
 right: -50%;
 width: 100%;
 height: 100%;
 background: radial-gradient(circle, rgba(41, 168, 223, 0.3), transparent 70%);
 opacity: 0;
 transition: all 0.5s ease;
 pointer-events: none;
 }

 .job-card:hover::before {
 opacity: 1;
 animation: shimmerMove 0.6s ease;
 }

 @keyframes shimmerMove {
 0% {
 top: -50%;
 right: -50%;
 }
 100% {
 top: -100%;
 right: -100%;
 }
 }

 /* Impact card scale animation */
 .impact-card {
 transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
 position: relative;
 }

 .impact-card::before {
 content: '';
 position: absolute;
 inset: 0;
 background: linear-gradient(135deg, rgba(41, 168, 223, 0.1), transparent);
 opacity: 0;
 border-radius: 16px;
 transition: opacity 0.4s ease;
 pointer-events: none;
 }

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

 /* Path card enhanced hover */
 .path-card {
 position: relative;
 overflow: hidden;
 }

 .path-card::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background: linear-gradient(135deg, rgba(41, 168, 223, 0.05), transparent);
 opacity: 0;
 transition: opacity 0.4s ease;
 pointer-events: none;
 }

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

 /* Button ripple effect container */
 .btn-hero-primary,
 .btn-hero-secondary,
 .btn-apply-job,
 .btn-path,
 .btn-cta-primary,
 .btn-cta-secondary {
 position: relative;
 overflow: hidden;
 transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
 }

 /* Enhanced parallax text effect */
 .hero-subtitle {
 position: relative;
 display: inline-block;
 max-width: 540px;
 }

 /* Animated number counters */
 [data-count] {
 display: inline-block;
 transition: all 0.3s ease;
 }

 /* Floating animation for cards */
 .hero-stat {
 animation: floatingCard 3s ease-in-out infinite;
 }

 .hero-stat:nth-child(2) {
 animation-delay: 0.5s;
 }

 .hero-stat:nth-child(3) {
 animation-delay: 1s;
 }

 .hero-stat:nth-child(4) {
 animation-delay: 1.5s;
 }

 @keyframes floatingCard {
 0%, 100% {
 transform: translateY(0px);
 }
 50% {
 transform: translateY(-8px);
 }
 }

 /* Enhanced metric cards animation */
 .metric-card {
 position: relative;
 transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
 }

 .metric-card::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background: linear-gradient(135deg, rgba(41, 168, 223, 0.1), transparent);
 opacity: 0;
 border-radius: 12px;
 pointer-events: none;
 transition: opacity 0.3s ease;
 }

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

 /* Dashboard glow effect */
 .hero-dashboard {
 animation: dashboardGlow 3s ease-in-out infinite;
 }

 @keyframes dashboardGlow {
 0%, 100% {
 box-shadow: 0 20px 60px rgba(41, 168, 223, 0.1);
 }
 50% {
 box-shadow: 0 30px 80px rgba(41, 168, 223, 0.2);
 }
 }

 /* Specialty pill hover */
 .specialty-pill {
 transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
 cursor: pointer;
 }

 .specialty-pill:hover {
 background: rgba(41, 168, 223, 0.15);
 border-color: rgba(41, 168, 223, 0.4);
 transform: translateY(-4px);
 box-shadow: 0 10px 25px rgba(41, 168, 223, 0.15);
 }

 /* CTA section enhancements */
 .cta-section {
 position: relative;
 overflow: hidden;
 }

 .cta-section::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2329A8DF' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
 opacity: 0.5;
 animation: backgroundShift 20s linear infinite;
 }

 @keyframes backgroundShift {
 0% {
 transform: translateX(0);
 }
 100% {
 transform: translateX(60px);
 }
 }

 /* Enhanced CTA buttons */
 .btn-cta-primary,
 .btn-cta-secondary {
 position: relative;
 overflow: hidden;
 transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
 }

 .btn-cta-primary:hover,
 .btn-cta-secondary:hover {
 transform: translateY(-4px);
 box-shadow: 0 15px 40px rgba(41, 168, 223, 0.3);
 }

 /* Testimonial card animations */
 .testimonial-card {
 transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
 animation: testimonialFloat 4s ease-in-out infinite;
 }

 .testimonial-card:nth-child(odd) {
 animation-delay: 0s;
 }

 .testimonial-card:nth-child(even) {
 animation-delay: 1s;
 }

 @keyframes testimonialFloat {
 0%, 100% {
 transform: translateY(0px);
 }
 50% {
 transform: translateY(-8px);
 }
 }

 /* Footer link hover enhancement */
 .footer-links a {
 position: relative;
 transition: all 0.3s ease;
 }

 .footer-links a::before {
 content: '';
 position: absolute;
 bottom: 0;
 left: 0;
 width: 0;
 height: 2px;
 background: var(--secondary);
 transition: width 0.3s ease;
 }

 .footer-links a:hover::before {
 width: 100%;
 }

 /* Live ticker for jobs (if added) */
 .job-ticker {
 animation: tickerScroll 30s linear infinite;
 }

 @keyframes tickerScroll {
 0% {
 transform: translateX(0);
 }
 100% {
 transform: translateX(-100%);
 }
 }

 /* Page entry animation */
 body {
 animation: pageEnter 0.8s ease-out;
 }

 @keyframes pageEnter {
 from {
 opacity: 0;
 filter: blur(10px);
 }
 to {
 opacity: 1;
 filter: blur(0);
 }
 }

 /* Enhanced transition for all interactive elements */
 button,
 a[href],
 input,
 select,
 textarea {
 transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
 }
 .footer-info-bar {
  background: linear-gradient(135deg, #060E1A 0%, #0A2540 100%);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
 }
 .info-bar-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
 }
 .info-bar-content a, .info-bar-content span {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  transition: color 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
 }
 .info-bar-content a:hover { color: #29A8DF; }
 .info-bar-content i { color: #29A8DF; font-size: 0.75rem; }
 .info-bar-social {
  display: flex;
  gap: 8px;
 }
 .info-bar-social a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6) !important;
  font-size: 0.75rem;
  transition: all 0.3s;
 }
 .info-bar-social a:hover {
  background: #29A8DF;
  color: white !important;
 }
 
/* Sticky Section Headings */
.sticky-heading {
position: sticky;
top: 124px;
z-index: 90;
padding: 24px 20px 18px;
text-align: center;
border-bottom: 2px solid transparent;
transition: border-color 0.3s ease, box-shadow 0.3s ease;
background: inherit;
}
.sticky-heading.stuck {
border-bottom-color: rgba(0,180,216,0.15);
box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}
.sticky-heading h2 { margin: 0 0 6px; }
.sticky-heading { margin-bottom: 30px; }
.sticky-heading p { margin: 0 auto; max-width: 600px; font-size: 0.95rem; }
@media (max-width: 768px) {
.sticky-heading { top: 80px; padding: 16px 15px 12px; }
.sticky-heading h2 { font-size: 1.5rem; }
.sticky-heading p { font-size: 0.85rem; }
}
@media (max-width: 480px) {
.sticky-heading { top: 60px; padding: 12px 10px 8px; }
.sticky-heading h2 { font-size: 1.2rem; }
}

/* Section-specific sticky backgrounds */
.section-white .sticky-heading, [class*="section"][style*="white"] .sticky-heading { background: white; }
.section-white .sticky-heading h2 { color: var(--primary); }
.section-light .sticky-heading { background: var(--gray-50, #f8f9fa); }
.section-light .sticky-heading h2 { color: var(--primary); }
.section-light .sticky-heading p { color: var(--gray-500); }
.impact-section .sticky-heading { background: linear-gradient(135deg, var(--primary), #1a3d5c); }
.impact-section .sticky-heading h2 { color: white; }
.impact-section .sticky-heading p { color: rgba(255,255,255,0.8); }
.impact-section .sticky-heading.stuck { border-bottom-color: rgba(0,180,216,0.3); box-shadow: 0 4px 16px rgba(0,0,0,0.2); }

/* Testimonials section dark background */
#testimonials .sticky-heading { background: #0a1628; }
#testimonials .sticky-heading h2 { color: white; }
#testimonials .sticky-heading p { color: rgba(255,255,255,0.6); }
#testimonials .sticky-heading.stuck { border-bottom-color: rgba(0,180,216,0.3); box-shadow: 0 4px 16px rgba(0,0,0,0.2); }

/* ===== NEW PROFESSIONAL FOOTER ===== */
.site-footer { background: #050D18; color: rgba(255,255,255,0.75); font-size: 0.9rem; }
.footer-main { padding: 64px 0 48px; }
.footer-grid-new { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr 1.4fr; gap: 40px; }
.footer-brand-col .footer-logo { display: inline-block; margin-bottom: 16px; }
.footer-tagline { font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,0.55); margin-bottom: 20px; }
.footer-social-row { display: flex; gap: 10px; }
.footer-social-row a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); text-decoration: none; transition: all 0.2s ease; font-size: 0.95rem; }
.footer-social-row a:hover { background: var(--secondary, #00B4D8); color: white; transform: translateY(-2px); }
.footer-link-col h4, .footer-contact-col h4 { color: white; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 20px; font-weight: 700; }
.footer-link-col ul { list-style: none; padding: 0; margin: 0; }
.footer-link-col ul li { margin-bottom: 10px; }
.footer-link-col ul a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.88rem; transition: color 0.2s ease, padding-left 0.2s ease; }
.footer-link-col ul a:hover { color: var(--secondary, #00B4D8); padding-left: 4px; }
.footer-creds { list-style: none; padding: 0; margin: 0; }
.footer-creds li { color: rgba(255,255,255,0.55); font-size: 0.85rem; margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.footer-creds li i { color: var(--secondary, #00B4D8); font-size: 0.75rem; width: 16px; text-align: center; }
.footer-contact-row { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; color: rgba(255,255,255,0.55); font-size: 0.85rem; line-height: 1.6; }
.footer-contact-row i { color: var(--secondary, #00B4D8); margin-top: 4px; font-size: 0.8rem; width: 16px; text-align: center; flex-shrink: 0; }
.footer-contact-row a { color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s ease; }
.footer-contact-row a:hover { color: var(--secondary, #00B4D8); }
.footer-bottom-bar { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom-inner p { margin: 0; font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.35); text-decoration: none; font-size: 0.78rem; transition: color 0.2s ease; }
.footer-bottom-links a:hover { color: var(--secondary, #00B4D8); }
@media (max-width: 1024px) {
 .footer-grid-new { grid-template-columns: 1fr 1fr; gap: 36px; }
 .footer-brand-col { grid-column: 1 / -1; }
}
.footer-credibility { font-size: 0.82rem; color: var(--secondary, #00B4D8); font-weight: 600; margin-bottom: 12px; letter-spacing: 0.02em; }
.footer-credibility i { margin-right: 6px; font-size: 0.75rem; }
.footer-hq { font-size: 0.82rem; color: rgba(255,255,255,0.45); margin-bottom: 16px; margin-top: 12px; }
.footer-hq i { color: var(--secondary, #00B4D8); margin-right: 6px; font-size: 0.75rem; }
.footer-cta-link { color: var(--secondary, #00B4D8) !important; font-weight: 600 !important; }
.footer-cta-link i { margin-right: 5px; font-size: 0.78rem; }
.footer-cta-link:hover { color: white !important; }
@media (max-width: 600px) {
 .footer-grid-new { grid-template-columns: 1fr; gap: 28px; }
 .footer-main { padding: 48px 0 32px; }
 .footer-bottom-inner { flex-direction: column; text-align: center; }
}

.footer-cta-band { padding: 32px 0; border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); background: rgba(0,180,216,0.04); }
.footer-cta-grid { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; }
.footer-cta-card { display: flex; align-items: center; gap: 12px; padding: 16px 28px; border-radius: 12px; border: 1px solid rgba(0,180,216,0.2); background: rgba(0,180,216,0.06); color: var(--secondary, #00B4D8); text-decoration: none; font-weight: 600; font-size: 0.92rem; transition: all 0.25s ease; }
.footer-cta-card i { font-size: 1.1rem; }
.footer-cta-card:hover { background: var(--secondary, #00B4D8); color: white; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,180,216,0.25); }
@media (max-width: 768px) {
.footer-cta-band .cta-cards { grid-template-columns: 1fr; }
.footer-main .footer-grid { grid-template-columns: 1fr; }
.footer-bottom-bar { flex-direction: column; text-align: center; gap: 10px; }
}
@media (max-width: 600px) { .footer-cta-grid { flex-direction: column; align-items: stretch; gap: 12px; } .footer-cta-card { justify-content: center; } }

/* ===================================================
   MOBILE RESPONSIVENESS — Ticker & Dashboard Widgets
   =================================================== */
@media (max-width: 768px) {
  /* Ticker */
  .ticker-wrap { padding: 8px 0; }
  .ticker-item { font-size: 0.78rem; padding: 0 20px; }

  /* Hero stat tiles */
  .hero-tiles, .stats-tiles { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .hero-tile, .stat-tile { padding: 16px 12px; }
  .tile-number { font-size: 2rem; }

  /* KPI strip on portal/homepage */
  .kpi-strip { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .kpi-card { padding: 16px 14px; }
  .kpi-value { font-size: 1.6rem; }
  .mini-sparkline { display: none; }

  /* Dashboard charts */
  .bar-chart-container, .chart-grid { overflow-x: auto; }
  .spec-bars { width: 100%; }

  /* Tab system */
  .tab-nav { overflow-x: auto; white-space: nowrap; -webkit-overflow-scrolling: touch; }
  .tab-btn { font-size: 0.8rem; padding: 8px 14px; }

  /* Dual-path section */
  .dual-path-grid { grid-template-columns: 1fr; }

  /* Feature cards */
  .features-grid, .services-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-bottom-links { flex-wrap: wrap; gap: 16px; }
}

@media (max-width: 480px) {
  /* Extra small screens */
  .hero-tiles, .stats-tiles { grid-template-columns: 1fr 1fr; gap: 8px; }
  .kpi-strip { grid-template-columns: 1fr 1fr; gap: 8px; }
  .kpi-value { font-size: 1.4rem; }
  .tile-number { font-size: 1.6rem; }
  .section-title { font-size: 1.6rem; }

  /* Time range selector — scrollable on mobile */
  .time-range-selector { overflow-x: auto; white-space: nowrap; display: flex; -webkit-overflow-scrolling: touch; padding-bottom: 4px; }
  .time-btn { flex-shrink: 0; }

  /* Info bar wrap */
  .info-bar-content { gap: 12px; justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; }
}

/* ===================================================
   TESTIMONIAL TICKER SYSTEM — extracted from JS
   =================================================== */
.testi-ticker-wrapper { overflow: hidden; position: relative; }
.testi-ticker-wrapper::before,
.testi-ticker-wrapper::after {
 content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.testi-ticker-wrapper::before { left: 0; background: linear-gradient(to right, rgba(6,12,24,1) 0%, transparent 100%); }
.testi-ticker-wrapper::after { right: 0; background: linear-gradient(to left, rgba(6,12,24,1) 0%, transparent 100%); }

.ticker-row {
 display: flex; gap: 20px; width: max-content;
 animation-timing-function: linear; animation-iteration-count: infinite;
}
.ticker-row-1 { animation: tickerScrollLeft 120s linear infinite; }
.ticker-row-2 { animation: tickerScrollRight 100s linear infinite; }
.testi-ticker-wrapper:hover .ticker-row { animation-play-state: paused; }

@keyframes tickerScrollLeft {
 0% { transform: translateX(0); }
 100% { transform: translateX(-50%); }
}
@keyframes tickerScrollRight {
 0% { transform: translateX(-50%); }
 100% { transform: translateX(0); }
}

.ticker-card {
 flex: 0 0 340px; padding: 2px; border-radius: 16px;
 background: linear-gradient(135deg, rgba(41,168,223,0.3), rgba(41,168,223,0.05), rgba(245,158,11,0.15));
 transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}
.ticker-card:hover {
 transform: translateY(-4px) scale(1.02);
 background: linear-gradient(135deg, rgba(41,168,223,0.5), rgba(41,168,223,0.1), rgba(245,158,11,0.3));
}
.ticker-card-inner {
 background: rgba(10,18,36,0.9); backdrop-filter: blur(12px);
 border-radius: 15px; padding: 20px; height: 100%;
 display: flex; flex-direction: column;
}
.ticker-header { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.ticker-avatar {
 width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
 color: white; font-weight: 700; font-size: 0.75rem; flex-shrink: 0;
 box-shadow: 0 0 0 2px rgba(255,255,255,0.1);
}
.ticker-meta { flex: 1; min-width: 0; }
.ticker-name { color: white; font-weight: 700; font-size: 0.85rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ticker-role { color: var(--secondary); font-size: 0.72rem; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ticker-stars { flex-shrink: 0; display: flex; gap: 2px; }
.ticker-text {
 color: rgba(255,255,255,0.7); font-size: 0.82rem; line-height: 1.6; margin: 0 0 12px 0; font-style: italic; flex: 1;
 display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.ticker-location { color: rgba(255,255,255,0.35); font-size: 0.7rem; }
.ticker-location i { margin-right: 4px; color: var(--secondary); opacity: 0.6; }

.featured-spotlight {
 display: flex; align-items: center; justify-content: center; margin-bottom: 28px; position: relative;
}
.featured-testi-card {
 max-width: 680px; width: 100%; padding: 32px 36px; border-radius: 20px; position: relative;
 background: linear-gradient(135deg, rgba(41,168,223,0.12), rgba(10,18,36,0.95));
 border: 1px solid rgba(41,168,223,0.2);
 box-shadow: 0 0 40px rgba(41,168,223,0.08), inset 0 1px 0 rgba(255,255,255,0.05);
 animation: spotlightPulse 4s ease-in-out infinite;
}
@keyframes spotlightPulse {
 0%, 100% { box-shadow: 0 0 40px rgba(41,168,223,0.08), inset 0 1px 0 rgba(255,255,255,0.05); }
 50% { box-shadow: 0 0 60px rgba(41,168,223,0.15), inset 0 1px 0 rgba(255,255,255,0.08); }
}
.featured-badge {
 display: inline-flex; align-items: center; gap: 6px; margin-bottom: 14px;
 background: linear-gradient(135deg, rgba(245,158,11,0.2), rgba(245,158,11,0.08));
 border: 1px solid rgba(245,158,11,0.3); color: #F59E0B; padding: 5px 14px;
 border-radius: 50px; font-size: 0.72rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
}
.featured-stars { margin-bottom: 14px; display: flex; gap: 3px; }
.featured-stars i { font-size: 0.85rem !important; }
.featured-text {
 color: rgba(255,255,255,0.85); font-size: 1rem; line-height: 1.8; margin: 0 0 20px; font-style: italic;
}
.featured-author { display: flex; align-items: center; gap: 14px; }
.featured-avatar {
 width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
 color: white; font-weight: 700; font-size: 0.9rem;
 box-shadow: 0 0 0 3px rgba(41,168,223,0.3);
}
.featured-name { color: white; font-weight: 700; font-size: 0.95rem; }
.featured-role { color: var(--secondary); font-size: 0.8rem; font-weight: 500; }
.featured-location { color: rgba(255,255,255,0.4); font-size: 0.72rem; margin-top: 2px; }
.featured-location i { margin-right: 4px; }

.testi-stats-bar {
 display: flex; justify-content: center; gap: 40px; margin-top: 28px;
 padding: 16px 0; border-top: 1px solid rgba(255,255,255,0.06);
}
.testi-stat { text-align: center; }
.testi-stat-num {
 font-size: 1.5rem; font-weight: 900; color: var(--secondary);
 font-family: 'Inter', sans-serif;
}
.testi-stat-label { color: rgba(255,255,255,0.4); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }

@media (max-width: 768px) {
 .ticker-card { flex: 0 0 280px; }
 .ticker-card-inner { padding: 16px; }
 .featured-testi-card { padding: 24px 20px; }
 .featured-text { font-size: 0.9rem; }
 .testi-stats-bar { gap: 20px; flex-wrap: wrap; }
 .testi-stat-num { font-size: 1.2rem; }
 .testi-ticker-wrapper::before, .testi-ticker-wrapper::after { width: 40px; }
}
@media (max-width: 480px) {
 .ticker-card { flex: 0 0 260px; }
 .featured-spotlight { margin-bottom: 20px; }
 .featured-testi-card { padding: 20px 16px; }
 .testi-stats-bar { gap: 16px; }
}

