/**
 * Nexus Arabia - Index Page Styles
 * Architecture & Engineering Consultancy
 * Dark/Light alternating sections
 */

/* ============ HOMEPAGE CAROUSEL ============ */
.nexus-home-carousel { position: relative; min-height: 85vh; }
.nexus-carousel-owl { margin: 0; }
.nexus-carousel-owl .owl-stage-outer { overflow: hidden; }
.nexus-carousel-owl .owl-item { position: relative; }
.nexus-carousel-item { position: relative; min-height: 85vh; display: flex; align-items: center; overflow: hidden; }
.nexus-carousel-bg {
  position: absolute; inset: -5%; width: 110%; height: 110%; left: -5%; top: -5%;
  background-size: cover; background-position: center;
  animation: nexus-kenburns 8s ease-out forwards;
}
.nexus-carousel-owl .owl-item.active .nexus-carousel-bg { animation: nexus-kenburns 8s ease-out forwards; }
@keyframes nexus-kenburns {
  0% { transform: scale(1); }
  100% { transform: scale(1.12); }
}
/* Zoom transitions between slides - Owl adds these classes to .owl-item */
.nexus-carousel-owl .owl-item.nexusZoomOut { animation: nexus-zoom-out 0.7s ease-in forwards; }
.nexus-carousel-owl .owl-item.nexusZoomIn { animation: nexus-zoom-in 0.7s ease-out forwards; }
@keyframes nexus-zoom-out {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.2); opacity: 0; }
}
@keyframes nexus-zoom-in {
  0% { transform: scale(0.92); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.nexus-carousel-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,37,64,0.85) 0%, rgba(10,37,64,0.4) 60%, rgba(10,37,64,0.1) 100%);
  z-index: 1;
}
.nexus-carousel-content { position: relative; z-index: 2; width: 100%; }
.nexus-carousel-title {
  font-size: clamp(1.75rem, 4vw, 3rem); font-weight: 800; color: var(--nexus-white);
  line-height: 1.2; margin-bottom: 24px; text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  animation: nexus-title-in 0.8s ease-out forwards;
}
@keyframes nexus-title-in {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}
.nexus-carousel-excerpt { color: rgba(255,255,255,0.9); font-size: 1rem; line-height: 1.6; margin-bottom: 20px; max-width: 540px; text-shadow: 0 1px 10px rgba(0,0,0,0.3); }
.nexus-carousel-btn {
  display: inline-block; padding: 14px 32px; background: var(--nexus-medium-blue);
  color: var(--nexus-white); font-weight: 600; border-radius: 4px; text-decoration: none;
  transition: all 0.3s; border: 2px solid var(--nexus-medium-blue);
}
.nexus-carousel-btn:hover { background: transparent; color: var(--nexus-white); border-color: var(--nexus-white); transform: translateY(-3px); box-shadow: 0 8px 25px rgba(0,0,0,0.2); }
.nexus-carousel-nav { position: absolute; top: 50%; left: 0; right: 0; transform: translateY(-50%); z-index: 10; display: flex; justify-content: space-between; padding: 0 20px; pointer-events: none; }
.nexus-carousel-nav button { pointer-events: auto; }
.nexus-carousel-prev, .nexus-carousel-next {
  width: 50px; height: 50px; border-radius: 50%; background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.4); color: var(--nexus-white); cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: all 0.3s; font-size: 1rem;
}
.nexus-carousel-prev:hover, .nexus-carousel-next:hover {
  background: var(--nexus-medium-blue); border-color: var(--nexus-medium-blue); transform: scale(1.1);
}
.nexus-carousel-owl .owl-dots { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; gap: 8px; margin-top: 0 !important; }
.nexus-carousel-owl .owl-dots .owl-dot { margin: 0 !important; }
.nexus-carousel-owl .owl-dots .owl-dot span {
  width: 12px; height: 12px; background: rgba(255,255,255,0.4) !important; border-radius: 50%;
  transition: all 0.3s;
}
.nexus-carousel-owl .owl-dots .owl-dot.active span, .nexus-carousel-owl .owl-dots .owl-dot:hover span {
  background: var(--nexus-medium-blue) !important; transform: scale(1.3);
}
@media (max-width: 991px) {
  .nexus-home-carousel, .nexus-carousel-item { min-height: 50vh; max-height: 420px; }
  .nexus-carousel-content .row { min-height: 45vh !important; max-height: 380px; }
  .nexus-carousel-overlay { background: linear-gradient(180deg, rgba(10,37,64,0.5) 0%, rgba(10,37,64,0.75) 50%, rgba(10,37,64,0.95) 100%); }
}
@media (max-width: 767px) {
  .nexus-home-carousel, .nexus-carousel-item { min-height: 38vh; max-height: 320px; }
  .nexus-carousel-content .row { min-height: 32vh !important; max-height: 280px; padding: 16px 0 60px; align-items: flex-end !important; }
  .nexus-carousel-content .container { padding-left: 16px; padding-right: 16px; }
  .nexus-carousel-excerpt { font-size: 0.9rem; margin-bottom: 14px; }
  .nexus-carousel-title {
    font-size: 1.35rem; margin-bottom: 14px; line-height: 1.35;
    text-align: center; max-width: 100%;
  }
  .nexus-carousel-content .col-lg-8 { text-align: center; margin: 0 auto; }
  .nexus-carousel-btn { padding: 12px 28px; font-size: 0.9rem; display: inline-block; }
  .nexus-carousel-nav { top: 45%; padding: 0 8px; }
  .nexus-carousel-prev, .nexus-carousel-next { width: 38px; height: 38px; font-size: 0.85rem; }
  .nexus-carousel-owl .owl-dots { bottom: 16px; gap: 6px; }
  .nexus-carousel-owl .owl-dots .owl-dot span { width: 10px; height: 10px; }
}
@media (max-width: 575px) {
  .nexus-home-carousel, .nexus-carousel-item { min-height: 35vh; max-height: 280px; }
  .nexus-carousel-content .row { min-height: 28vh !important; max-height: 240px; padding: 12px 0 55px; }
  .nexus-carousel-excerpt { font-size: 0.8rem; margin-bottom: 10px; }
  .nexus-carousel-title { font-size: 1.15rem; margin-bottom: 12px; }
  .nexus-carousel-btn { padding: 10px 22px; font-size: 0.85rem; }
  .nexus-carousel-nav { top: 42%; padding: 0 4px; }
  .nexus-carousel-prev, .nexus-carousel-next { width: 34px; height: 34px; font-size: 0.75rem; }
  .nexus-carousel-owl .owl-dots { bottom: 12px; }
  .nexus-carousel-owl .owl-dots .owl-dot span { width: 8px; height: 8px; }
}

/* ============ HERO ============ */
.nexus-hero {
  min-height: 90vh;
  background: var(--nexus-gradient-hero);
  padding: 100px 0 80px;
  position: relative;
}
.nexus-hero-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(8,145,178,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8,145,178,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.nexus-hero-accent-1 { top: 8%; right: 8%; width: 350px; height: 350px; background: radial-gradient(circle, var(--nexus-teal-alpha-10), transparent 70%); border-radius: 50%; }
.nexus-hero-accent-2 { bottom: 5%; left: 3%; width: 200px; height: 200px; background: var(--nexus-teal-alpha-06); border-radius: 50%; }
.nexus-hero-accent-3 { top: 50%; left: 50%; width: 600px; height: 600px; transform: translate(-50%, -50%); background: radial-gradient(circle, var(--nexus-teal-alpha-04), transparent 60%); border-radius: 50%; }
.nexus-hero-tagline { color: var(--nexus-cyan-light); font-weight: 600; letter-spacing: 2px; font-size: 0.85rem; }
.nexus-hero-line { width: 80px; height: 3px; background: var(--nexus-medium-blue); border-radius: 2px; }
@media (max-width: 991px) { .nexus-hero-line { margin: 0 auto; } }
.nexus-btn-primary { background: var(--nexus-medium-blue); color: var(--nexus-white); border: 2px solid var(--nexus-medium-blue); border-radius: 4px; transition: all 0.3s; }
.nexus-btn-primary:hover { background: var(--nexus-blue-dark); border-color: var(--nexus-blue-dark); color: var(--nexus-white); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(8,145,178,0.4); }
.nexus-btn-outline { background: transparent; color: var(--nexus-white); border: 2px solid rgba(255,255,255,0.4); border-radius: 4px; transition: all 0.3s; }
.nexus-btn-outline:hover { border-color: var(--nexus-medium-blue); color: var(--nexus-medium-blue); background: rgba(8,145,178,0.1); transform: translateY(-2px); }
.nexus-hero-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 320px; margin: 0 auto; }
.nexus-hero-stat { background: rgba(8,145,178,0.08); border: 1px solid rgba(8,145,178,0.2); border-radius: 12px; padding: 24px 16px; text-align: center; transition: all 0.3s; }
.nexus-hero-stat:hover { background: rgba(8,145,178,0.15); border-color: var(--nexus-medium-blue); transform: translateY(-4px); }
.nexus-hero-stat-number { display: block; font-size: 2.2rem; font-weight: 800; color: var(--nexus-white); line-height: 1; }
.nexus-hero-stat-label { display: block; font-size: 0.85rem; color: var(--nexus-cyan-light); font-weight: 600; margin-top: 4px; letter-spacing: 1px; text-transform: uppercase; }
.nexus-opacity-85 { opacity: 0.85; }
.nexus-opacity-80 { opacity: 0.8; }

/* ============ SHARED ELEMENTS ============ */
.nexus-badge { background: var(--nexus-gradient-badge); color: var(--nexus-white); font-size: 0.85rem; box-shadow: var(--nexus-shadow-badge); letter-spacing: 1px; }
.nexus-badge-light { background: rgba(255,255,255,0.15); color: var(--nexus-white); font-size: 0.85rem; border: 1px solid rgba(255,255,255,0.3); letter-spacing: 1px; backdrop-filter: blur(4px); }
.nexus-section-title { color: var(--nexus-dark-blue); }
.nexus-divider { width: 60px; height: 4px; background: var(--nexus-medium-blue); border-radius: 2px; }
.nexus-divider-solid { width: 100%; height: 3px; background: var(--nexus-medium-blue); border-radius: 2px; }
.nexus-divider-light { width: 60px; height: 4px; background: var(--nexus-medium-blue); border-radius: 2px; opacity: 0.8; }
.nexus-divider-light-sm { width: 40px; height: 3px; background: var(--nexus-medium-blue); border-radius: 2px; opacity: 0.7; }
.nexus-text-medium { color: var(--nexus-medium-blue); }
.nexus-opacity-90 { opacity: 0.9; }
.nexus-opacity-95 { opacity: 0.95; }

/* ============ ABOUT US (Light) ============ */
.nexus-about { background: var(--nexus-white); }
.nexus-about-radial { background-image: radial-gradient(circle at 0% 100%, rgba(8,145,178,0.04) 0%, transparent 50%), radial-gradient(circle at 100% 0%, rgba(10,37,64,0.03) 0%, transparent 50%); }
.nexus-card-white { background: var(--nexus-bg-light); box-shadow: 0 8px 30px rgba(10,37,64,0.06); border: 1px solid rgba(10,37,64,0.06); border-radius: 16px; }
.nexus-card-corner-accent { position: absolute; top: 0; left: 0; width: 60px; height: 4px; background: var(--nexus-medium-blue); border-radius: 0 0 4px 0; }
.nexus-card-narrative { color: var(--nexus-dark-blue); line-height: 1.9; font-weight: 600; font-size: 1.1rem; }
.nexus-card-body { color: var(--nexus-slate-muted); line-height: 1.9; }
.nexus-card-dark { background: var(--nexus-gradient-dark-card); box-shadow: var(--nexus-shadow-dark); border-radius: 16px; }
.nexus-card-dark-accent { top: -30px; right: -30px; width: 120px; height: 120px; background: var(--nexus-teal-alpha-10); border-radius: 50%; }
.nexus-hub-title { color: var(--nexus-cyan-light) !important; font-weight: 700; letter-spacing: 1px; font-size: 1.1rem; }
.nexus-hub-item { padding: 12px 16px; border-radius: 10px; background: rgba(255,255,255,0.05); border-left: 3px solid var(--nexus-medium-blue); transition: background 0.3s; }
.nexus-hub-item:hover { background: rgba(8,145,178,0.1); }
.nexus-hub-icon-circle { width: 40px; height: 40px; border-radius: 50%; background: var(--nexus-teal-alpha-20); display: flex; align-items: center; justify-content: center; color: var(--nexus-medium-blue); font-size: 0.9rem; flex-shrink: 0; }

/* Market Cards */
.nexus-market-card { background: var(--nexus-white); border: 1px solid rgba(10,37,64,0.08); border-radius: 12px; padding: 20px 16px; text-align: center; transition: all 0.3s; box-shadow: 0 2px 10px rgba(10,37,64,0.04); height: 100%; }
.nexus-market-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(8,145,178,0.12); border-color: var(--nexus-medium-blue); }
.nexus-market-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--nexus-teal-alpha-10); display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; color: var(--nexus-medium-blue); font-size: 1.2rem; transition: all 0.3s; }
.nexus-market-card:hover .nexus-market-icon { background: var(--nexus-medium-blue); color: var(--nexus-white); }
.nexus-market-card strong { display: block; color: var(--nexus-dark-blue); font-size: 0.9rem; margin-bottom: 4px; }
.nexus-market-card small { color: var(--nexus-slate-muted); font-size: 0.78rem; }

/* ============ SERVICES (Dark) ============ */
.nexus-services-dark { background: linear-gradient(160deg, var(--nexus-dark-blue) 0%, var(--nexus-blue-alt) 40%, var(--nexus-blue-deep) 100%); }
.nexus-services-grid-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 80px 80px;
}
.nexus-svc-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 14px; padding: 28px 20px; text-align: center; transition: all 0.3s; height: 100%; }
.nexus-svc-card:hover { background: rgba(8,145,178,0.15); border-color: var(--nexus-medium-blue); transform: translateY(-5px); box-shadow: 0 12px 35px rgba(0,0,0,0.2); }
.nexus-svc-icon { width: 56px; height: 56px; border-radius: 14px; background: var(--nexus-teal-alpha-15); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 1.4rem; color: var(--nexus-medium-blue); transition: all 0.3s; }
.nexus-svc-card:hover .nexus-svc-icon { background: var(--nexus-medium-blue); color: var(--nexus-white); transform: scale(1.1); }
.nexus-svc-card h6 { color: var(--nexus-white); font-weight: 600; margin: 0; font-size: 0.95rem; }
.nexus-svc-card small { color: rgba(255,255,255,0.6); font-size: 0.8rem; }

/* Joint Ventures inside dark section */
.nexus-jv-block { background: rgba(0,0,0,0.2); border: 1px solid rgba(8,145,178,0.2); }
.nexus-jv-narrative { background: rgba(255,255,255,0.05); border-left: 3px solid var(--nexus-medium-blue); border-radius: 8px; }
.nexus-jv-icon-circle { width: 120px; height: 120px; border-radius: 50%; background: var(--nexus-teal-alpha-12); border: 2px solid var(--nexus-teal-alpha-30); display: inline-flex; align-items: center; justify-content: center; }
.nexus-jv-icon-circle i { font-size: 3rem; color: var(--nexus-medium-blue); }
.nexus-jv-divider { border-top: 1px solid rgba(255,255,255,0.1); }
.nexus-jv-tag { background: rgba(8,145,178,0.12); border: 1px solid rgba(8,145,178,0.25); border-radius: 8px; padding: 10px; text-align: center; color: var(--nexus-white); font-size: 0.85rem; opacity: 0.9; transition: all 0.3s; }
.nexus-jv-tag:hover { background: rgba(8,145,178,0.25); border-color: var(--nexus-medium-blue); }

/* ============ FINGERPRINTS (Light) ============ */
.nexus-fingerprints { background: var(--nexus-bg-light); }
.nexus-fp-card { background: var(--nexus-white); box-shadow: 0 6px 24px rgba(10,37,64,0.06); border: 1px solid rgba(10,37,64,0.06); border-radius: 16px; }
.nexus-fp-list-item { display: flex; align-items: center; gap: 8px; padding: 8px 12px; border-radius: 8px; background: rgba(8,145,178,0.04); border-left: 3px solid var(--nexus-medium-blue); transition: background 0.3s; }
.nexus-fp-list-item:hover { background: rgba(8,145,178,0.08); }
.nexus-fp-list-item span { color: var(--nexus-dark-blue); font-size: 0.9rem; font-weight: 500; }
.nexus-fp-bullet { color: var(--nexus-medium-blue); font-size: 0.6rem; }
.nexus-fp-lead { color: var(--nexus-slate-muted); }
.nexus-fp-img-frame { position: absolute; inset: -10px; background: linear-gradient(135deg, var(--nexus-teal-alpha-15) 0%, var(--nexus-dark-alpha-08) 100%); border-radius: 16px; z-index: 0; }
.nexus-fp-img { box-shadow: 0 20px 50px rgba(10,37,64,0.12); border: 2px solid rgba(8,145,178,0.15); z-index: 1; position: relative; }
.nexus-fp-img-badge { position: absolute; bottom: 16px; right: 16px; z-index: 2; width: 48px; height: 48px; border-radius: 50%; background: var(--nexus-medium-blue); display: flex; align-items: center; justify-content: center; color: var(--nexus-white); font-size: 1.2rem; box-shadow: 0 6px 20px rgba(8,145,178,0.4); }

/* ============ STATS (Dark) ============ */
.nexus-stats-dark { background: linear-gradient(145deg, var(--nexus-dark-blue) 0%, var(--nexus-blue-alt) 100%); }
.nexus-stats-bg-pattern {
  position: absolute; inset: 0; z-index: 0;
  background-image: radial-gradient(circle, rgba(8,145,178,0.06) 1px, transparent 1px);
  background-size: 30px 30px;
}
.nexus-stat-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 32px 20px; transition: all 0.3s; }
.nexus-stat-card:hover { background: rgba(8,145,178,0.15); border-color: var(--nexus-medium-blue); transform: translateY(-4px); }
.nexus-stat-number { font-size: 2.8rem; font-weight: 800; color: var(--nexus-white); line-height: 1; }
.nexus-stat-label { color: rgba(255,255,255,0.7); font-size: 0.9rem; font-weight: 600; margin-top: 8px; text-transform: uppercase; letter-spacing: 1px; }
.nexus-stat-line { width: 40px; height: 3px; background: var(--nexus-medium-blue); border-radius: 2px; margin: 12px auto 0; }
.nexus-value-tag { background: rgba(8,145,178,0.15); border: 1px solid var(--nexus-medium-blue); color: var(--nexus-white); padding: 10px 24px; border-radius: 50px; font-weight: 600; font-size: 0.9rem; transition: all 0.3s; }
.nexus-value-tag:hover { background: var(--nexus-medium-blue); transform: translateY(-2px); }

/* ============ WHY NEXUS (Light) ============ */
.nexus-why { background: var(--nexus-white); }
.nexus-why-lead { color: var(--nexus-slate-muted); }
.nexus-why-card { background: var(--nexus-bg-light); border: 1px solid rgba(10,37,64,0.06); border-radius: 14px; padding: 24px 20px; text-align: center; height: 100%; transition: all 0.3s; }
.nexus-why-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(8,145,178,0.1); border-color: var(--nexus-medium-blue); }
.nexus-why-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--nexus-teal-alpha-10); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 1.3rem; color: var(--nexus-medium-blue); transition: all 0.3s; }
.nexus-why-card:hover .nexus-why-icon { background: var(--nexus-medium-blue); color: var(--nexus-white); transform: scale(1.1); }
.nexus-why-card h6 { color: var(--nexus-dark-blue); font-weight: 600; font-size: 0.9rem; margin: 0; line-height: 1.5; }

/* ============ CLIENTS (Light) ============ */
.nexus-clients { background: var(--nexus-bg-light); }
.nexus-client-item {
  background: var(--nexus-white);
  border: 1px solid rgba(10,37,64,0.08);
  border-radius: 12px;
  padding: 24px 16px;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.nexus-client-item:hover {
  border-color: rgba(8,145,178,0.25);
  box-shadow: 0 8px 24px rgba(8,145,178,0.1);
}
.nexus-client-logo-link {
  display: block;
  width: 100%;
  text-align: center;
}
.nexus-client-logo {
  max-width: 100%;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.nexus-client-name {
  color: var(--nexus-dark-blue);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  text-align: center;
  line-height: 1.3;
  transition: color 0.2s;
}
.nexus-client-name:hover {
  color: var(--nexus-medium-blue);
}

/* ============ SECTION ITEM MOTION (scroll-triggered) ============ */
@keyframes nexus-item-in {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
.nexus-section-motion .nexus-hero-stat,
.nexus-section-motion .nexus-card-white,
.nexus-section-motion .nexus-card-dark,
.nexus-section-motion .nexus-market-card,
.nexus-section-motion .nexus-svc-card,
.nexus-section-motion .nexus-stat-card,
.nexus-section-motion .nexus-why-card,
.nexus-section-motion .nexus-client-item,
.nexus-section-motion .nexus-fp-card,
.nexus-section-motion .nexus-fp-list-item,
.nexus-section-motion .nexus-jv-tag,
.nexus-section-motion .nexus-value-tag,
.nexus-section-motion .nexus-jv-block { opacity: 0; }
.nexus-section-motion .nexus-fingerprints .col-lg-4 > div { opacity: 0; }
.nexus-section-motion.nexus-inview .nexus-fingerprints .col-lg-4 > div { animation: nexus-item-in 0.55s ease-out 0.15s forwards; }
.nexus-section-motion.nexus-inview .nexus-hero-stat { animation: nexus-item-in 0.55s ease-out forwards; }
.nexus-section-motion.nexus-inview .nexus-hero-stat:nth-of-type(1) { animation-delay: 0s; }
.nexus-section-motion.nexus-inview .nexus-hero-stat:nth-of-type(2) { animation-delay: 0.08s; }
.nexus-section-motion.nexus-inview .nexus-hero-stat:nth-of-type(3) { animation-delay: 0.16s; }
.nexus-section-motion.nexus-inview .nexus-hero-stat:nth-of-type(4) { animation-delay: 0.24s; }
.nexus-section-motion.nexus-inview .nexus-card-white { animation: nexus-item-in 0.55s ease-out 0s forwards; }
.nexus-section-motion.nexus-inview .nexus-card-dark { animation: nexus-item-in 0.55s ease-out 0.1s forwards; }
.nexus-section-motion.nexus-inview .nexus-market-card { animation: nexus-item-in 0.45s ease-out forwards; }
.nexus-section-motion.nexus-inview .nexus-market-card:nth-child(1) { animation-delay: 0s; }
.nexus-section-motion.nexus-inview .nexus-market-card:nth-child(2) { animation-delay: 0.05s; }
.nexus-section-motion.nexus-inview .nexus-market-card:nth-child(3) { animation-delay: 0.1s; }
.nexus-section-motion.nexus-inview .nexus-market-card:nth-child(4) { animation-delay: 0.15s; }
.nexus-section-motion.nexus-inview .nexus-market-card:nth-child(5) { animation-delay: 0.2s; }
.nexus-section-motion.nexus-inview .nexus-market-card:nth-child(6) { animation-delay: 0.25s; }
.nexus-section-motion.nexus-inview .nexus-market-card:nth-child(7) { animation-delay: 0.3s; }
.nexus-section-motion.nexus-inview .nexus-market-card:nth-child(8) { animation-delay: 0.35s; }
.nexus-section-motion.nexus-inview .nexus-market-card:nth-child(9) { animation-delay: 0.4s; }
.nexus-section-motion.nexus-inview .nexus-market-card:nth-child(10) { animation-delay: 0.45s; }
.nexus-section-motion.nexus-inview .nexus-svc-card { animation: nexus-item-in 0.5s ease-out forwards; }
.nexus-section-motion.nexus-inview .nexus-svc-card:nth-child(1) { animation-delay: 0s; }
.nexus-section-motion.nexus-inview .nexus-svc-card:nth-child(2) { animation-delay: 0.05s; }
.nexus-section-motion.nexus-inview .nexus-svc-card:nth-child(3) { animation-delay: 0.1s; }
.nexus-section-motion.nexus-inview .nexus-svc-card:nth-child(4) { animation-delay: 0.15s; }
.nexus-section-motion.nexus-inview .nexus-svc-card:nth-child(5) { animation-delay: 0.2s; }
.nexus-section-motion.nexus-inview .nexus-svc-card:nth-child(6) { animation-delay: 0.25s; }
.nexus-section-motion.nexus-inview .nexus-svc-card:nth-child(7) { animation-delay: 0.3s; }
.nexus-section-motion.nexus-inview .nexus-svc-card:nth-child(8) { animation-delay: 0.35s; }
.nexus-section-motion.nexus-inview .nexus-svc-card:nth-child(9) { animation-delay: 0.4s; }
.nexus-section-motion.nexus-inview .nexus-svc-card:nth-child(10) { animation-delay: 0.45s; }
.nexus-section-motion.nexus-inview .nexus-svc-card:nth-child(11) { animation-delay: 0.5s; }
.nexus-section-motion.nexus-inview .nexus-svc-card:nth-child(12) { animation-delay: 0.55s; }
.nexus-section-motion.nexus-inview .nexus-jv-block { animation: nexus-item-in 0.55s ease-out 0.2s forwards; }
.nexus-section-motion.nexus-inview .nexus-jv-tag { animation: nexus-item-in 0.4s ease-out forwards; }
.nexus-section-motion.nexus-inview .nexus-jv-tag:nth-child(1) { animation-delay: 0.35s; }
.nexus-section-motion.nexus-inview .nexus-jv-tag:nth-child(2) { animation-delay: 0.4s; }
.nexus-section-motion.nexus-inview .nexus-jv-tag:nth-child(3) { animation-delay: 0.45s; }
.nexus-section-motion.nexus-inview .nexus-jv-tag:nth-child(4) { animation-delay: 0.5s; }
.nexus-section-motion.nexus-inview .nexus-jv-tag:nth-child(5) { animation-delay: 0.55s; }
.nexus-section-motion.nexus-inview .nexus-jv-tag:nth-child(6) { animation-delay: 0.6s; }
.nexus-section-motion.nexus-inview .nexus-jv-tag:nth-child(7) { animation-delay: 0.65s; }
.nexus-section-motion.nexus-inview .nexus-jv-tag:nth-child(8) { animation-delay: 0.7s; }
.nexus-section-motion.nexus-inview .nexus-fp-card { animation: nexus-item-in 0.55s ease-out 0s forwards; }
.nexus-section-motion.nexus-inview .nexus-fp-list-item { animation: nexus-item-in 0.4s ease-out forwards; }
.nexus-section-motion.nexus-inview .nexus-fp-list-item:nth-child(1) { animation-delay: 0.1s; }
.nexus-section-motion.nexus-inview .nexus-fp-list-item:nth-child(2) { animation-delay: 0.14s; }
.nexus-section-motion.nexus-inview .nexus-fp-list-item:nth-child(3) { animation-delay: 0.18s; }
.nexus-section-motion.nexus-inview .nexus-fp-list-item:nth-child(4) { animation-delay: 0.22s; }
.nexus-section-motion.nexus-inview .nexus-fp-list-item:nth-child(5) { animation-delay: 0.26s; }
.nexus-section-motion.nexus-inview .nexus-fp-list-item:nth-child(6) { animation-delay: 0.3s; }
.nexus-section-motion.nexus-inview .nexus-fp-list-item:nth-child(7) { animation-delay: 0.34s; }
.nexus-section-motion.nexus-inview .nexus-fp-list-item:nth-child(8) { animation-delay: 0.38s; }
.nexus-section-motion.nexus-inview .nexus-fp-list-item:nth-child(9) { animation-delay: 0.42s; }
.nexus-section-motion.nexus-inview .nexus-fp-list-item:nth-child(10) { animation-delay: 0.46s; }
.nexus-section-motion.nexus-inview .nexus-fp-list-item:nth-child(11) { animation-delay: 0.5s; }
.nexus-section-motion.nexus-inview .nexus-fp-list-item:nth-child(12) { animation-delay: 0.54s; }
.nexus-section-motion.nexus-inview .nexus-stat-card { animation: nexus-item-in 0.5s ease-out forwards; }
.nexus-section-motion.nexus-inview .nexus-stat-card:nth-child(1) { animation-delay: 0s; }
.nexus-section-motion.nexus-inview .nexus-stat-card:nth-child(2) { animation-delay: 0.08s; }
.nexus-section-motion.nexus-inview .nexus-stat-card:nth-child(3) { animation-delay: 0.16s; }
.nexus-section-motion.nexus-inview .nexus-stat-card:nth-child(4) { animation-delay: 0.24s; }
.nexus-section-motion.nexus-inview .nexus-value-tag { animation: nexus-item-in 0.45s ease-out forwards; }
.nexus-section-motion.nexus-inview .nexus-value-tag:nth-child(1) { animation-delay: 0.35s; }
.nexus-section-motion.nexus-inview .nexus-value-tag:nth-child(2) { animation-delay: 0.42s; }
.nexus-section-motion.nexus-inview .nexus-value-tag:nth-child(3) { animation-delay: 0.49s; }
.nexus-section-motion.nexus-inview .nexus-why-card { animation: nexus-item-in 0.5s ease-out forwards; }
.nexus-section-motion.nexus-inview .nexus-why-card:nth-child(1) { animation-delay: 0s; }
.nexus-section-motion.nexus-inview .nexus-why-card:nth-child(2) { animation-delay: 0.06s; }
.nexus-section-motion.nexus-inview .nexus-why-card:nth-child(3) { animation-delay: 0.12s; }
.nexus-section-motion.nexus-inview .nexus-why-card:nth-child(4) { animation-delay: 0.18s; }
.nexus-section-motion.nexus-inview .nexus-why-card:nth-child(5) { animation-delay: 0.24s; }
.nexus-section-motion.nexus-inview .nexus-why-card:nth-child(6) { animation-delay: 0.3s; }
.nexus-section-motion.nexus-inview .nexus-why-card:nth-child(7) { animation-delay: 0.36s; }
.nexus-section-motion.nexus-inview .nexus-why-card:nth-child(8) { animation-delay: 0.42s; }
.nexus-section-motion.nexus-inview .nexus-client-item { animation: nexus-item-in 0.45s ease-out forwards; }
.nexus-section-motion.nexus-inview .nexus-clients .col-6:nth-child(1) .nexus-client-item { animation-delay: 0s; }
.nexus-section-motion.nexus-inview .nexus-clients .col-6:nth-child(2) .nexus-client-item { animation-delay: 0.05s; }
.nexus-section-motion.nexus-inview .nexus-clients .col-6:nth-child(3) .nexus-client-item { animation-delay: 0.1s; }
.nexus-section-motion.nexus-inview .nexus-clients .col-6:nth-child(4) .nexus-client-item { animation-delay: 0.15s; }
.nexus-section-motion.nexus-inview .nexus-clients .col-6:nth-child(5) .nexus-client-item { animation-delay: 0.2s; }
.nexus-section-motion.nexus-inview .nexus-clients .col-6:nth-child(6) .nexus-client-item { animation-delay: 0.25s; }
.nexus-section-motion.nexus-inview .nexus-clients .col-6:nth-child(n+7) .nexus-client-item { animation-delay: 0.3s; }

/* ============ RESPONSIVE ============ */
@media (max-width: 991px) {
  .nexus-hero { min-height: auto !important; padding: 60px 0 50px !important; }
  .nexus-hero .display-3 { font-size: 2.2rem !important; }
  .nexus-hero .lead { font-size: 1.1rem !important; }
  .nexus-hero-stats-grid { max-width: 260px; gap: 12px; }
  .nexus-hero-stat { padding: 16px 12px; }
  .nexus-hero-stat-number { font-size: 1.8rem; }
  .nexus-hero-tagline { font-size: 0.7rem !important; letter-spacing: 1.5px !important; }
  section .container { padding-left: 15px !important; padding-right: 15px !important; }
  .display-5 { font-size: 1.75rem !important; }
  .nexus-badge, .nexus-badge-light { font-size: 0.75rem !important; padding: 6px 14px !important; }
  .display-4 { font-size: 2rem !important; }
  .nexus-svc-card { padding: 20px 14px; }
  .nexus-svc-icon { width: 44px; height: 44px; font-size: 1.1rem; }
}
@media (max-width: 767px) {
  .nexus-hero { padding: 40px 0 40px !important; }
  .nexus-hero .display-3 { font-size: 1.75rem !important; }
  .nexus-hero-stats-grid { max-width: 220px; gap: 10px; }
  .nexus-hero-stat-number { font-size: 1.5rem; }
  .nexus-hero-stat-label { font-size: 0.7rem; }
  .display-5 { font-size: 1.4rem !important; }
  .lead { font-size: 0.95rem !important; }
  .p-4 { padding: 1rem !important; }
  .p-5, .p-lg-5 { padding: 1.25rem !important; }
  #fingerprints img { max-width: 100% !important; }
  .col-6 { flex: 0 0 100%; max-width: 100%; }
  .col-md-6, .col-lg-4, .col-lg-3 { flex: 0 0 100%; max-width: 100%; }
  .nexus-stat-number { font-size: 2rem; }
  .nexus-market-card { padding: 14px 12px; }
  .nexus-why-card { padding: 16px; }
  .nexus-client-item { min-height: 100px; padding: 16px 12px; }
  .nexus-client-logo { max-height: 60px; }
}
@media (max-width: 575px) {
  body { overflow-x: hidden; }
  .container { max-width: 100%; padding-left: 12px !important; padding-right: 12px !important; }
  .nexus-hero .position-absolute { display: none; }
  .nexus-hero-grid { display: none; }
  h3 { font-size: 1.2rem !important; }
  h5, h6 { font-size: 0.9rem !important; }
  .gap-3 { gap: 8px !important; }
  .nexus-hero-stats-grid { max-width: 200px; }
}
