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

:root {
  --blue: #1e3a8a;
  --blue-mid: #2563eb;
  --blue-light: #3b82f6;
  --red: #dc2626;
  --dark: #0a0f1e;
  --dark2: #1e293b;
  --gray: #64748b;
  --light: #f0f4ff;
  --white: #ffffff;
  --gold: #f59e0b;
  --shadow: 0 4px 28px rgba(30, 58, 138, .12);
  --shadow-lg: 0 16px 56px rgba(30, 58, 138, .22);
  --glass: rgba(255,255,255,0.07);
  --glass-border: rgba(255,255,255,0.15);
  --glow-blue: 0 0 32px rgba(59,130,246,.35);
  --glow-red: 0 0 32px rgba(220,38,38,.35);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

/* === UTILITY === */
.red-text {
  color: var(--red);
}

.section-label {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  font-size: .78rem;
  font-weight: 600;
  color: var(--blue-mid);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.section-label i {
  color: var(--red);
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.2;
}

.section-desc {
  text-align: center;
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto 48px;
}

/* === NAVBAR === */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 40px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(30, 58, 138, .08);
  transition: all .3s;
}

#navbar.scrolled {
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 4px 32px rgba(30, 58, 138, .18);
  border-bottom-color: rgba(220, 38, 38, .25);
}

.nav-container {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 45px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: .88rem;
  font-weight: 500;
  color: var(--dark);
  position: relative;
  padding-bottom: 4px;
  transition: color .2s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
  transition: width .3s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--blue-mid);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.phone-link {
  font-size: .82rem;
  font-weight: 600;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn-cta {
  background: linear-gradient(135deg, var(--red), #c53030);
  color: white;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: .85rem;
  font-weight: 600;
  transition: transform .2s, box-shadow .2s;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(229, 62, 62, .35);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all .3s;
}

/* === NAVBAR DROPDOWN === */
.nav-dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.dropdown-toggle .dd-arrow {
  font-size: .65rem;
  transition: transform .3s;
  display: inline-block;
}

.nav-dropdown.open .dropdown-toggle .dd-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 14px;
  min-width: 190px;
  box-shadow: 0 16px 48px rgba(30,58,138,.18), 0 0 0 1px rgba(30,58,138,.07);
  padding: 10px 8px;
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s, transform .25s;
  z-index: 999;
}

.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

/* Arrow pointer on dropdown */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid rgba(255,255,255,0.97);
}

.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 9px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--dark);
  transition: background .18s, color .18s;
}

.dropdown-menu li a i {
  font-size: .82rem;
  color: var(--red);
  width: 16px;
  text-align: center;
}

.dropdown-menu li a:hover {
  background: rgba(37,99,235,.07);
  color: var(--blue-mid);
}

.nav-link.careers-link {
  color: var(--blue);
  font-weight: 600;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(191,219,254,.55) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(253,186,116,.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 90% 10%, rgba(165,180,252,.30) 0%, transparent 60%),
    linear-gradient(155deg, #e8f0ff 0%, #dce8ff 40%, #f0f4ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.hero-bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .3;
  pointer-events: none;
}

.blob1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(#bfdbfe, #93c5fd);
  top: -150px;
  left: 30%;
}

.blob2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(#fecdd3, #fca5a5);
  bottom: -80px;
  left: 10%;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
  min-height: 100vh;
  margin: 0 auto;
  padding: 0 40px 0 60px;
  gap: 40px;
}

.hero-left {
  padding-top: 80px;
  padding-bottom: 40px;
}


.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(16,185,129,.12), rgba(5,150,105,.08));
  color: #065f46;
  font-size: .8rem;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 30px;
  border: 1.5px solid rgba(16,185,129,.35);
  margin-bottom: 24px;
  letter-spacing: .5px;
  box-shadow: 0 2px 16px rgba(16,185,129,.15);
  animation: badge-pulse 3s ease-in-out infinite;
}
.hero-badge i {
  color: #f59e0b;
  font-size: .9rem;
}
@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 2px 16px rgba(16,185,129,.15); }
  50% { box-shadow: 0 4px 24px rgba(16,185,129,.32); }
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.13;
  color: var(--dark);
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.hero-title .red-text {
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, #dc2626 0%, #f97316 50%, #dc2626 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer-text 3s linear infinite;
}
@keyframes shimmer-text {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.hero-desc {
  color: var(--gray);
  font-size: .98rem;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 460px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  color: white;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: .9rem;
  font-weight: 600;
  transition: all .3s;
  box-shadow: 0 4px 16px rgba(37, 99, 235, .3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37, 99, 235, .4);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--blue);
  padding: 14px 28px;
  border-radius: 10px;
  font-size: .9rem;
  font-weight: 600;
  border: 2px solid var(--blue-light);
  transition: all .3s;
}

.btn-outline:hover {
  background: var(--blue);
  color: white;
  transform: translateY(-3px);
}

.hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 18px;
  padding: 18px 28px;
  box-shadow: 0 8px 32px rgba(30,58,138,.14);
  border: 1px solid rgba(255,255,255,.9);
  margin-bottom: 24px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stat-item i {
  font-size: 1.4rem;
  color: var(--blue-mid);
}

.stat-item strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
}

.stat-item span {
  font-size: .72rem;
  color: var(--gray);
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: #e2e8f0;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  color: var(--gray);
  font-weight: 500;
}

.hero-trust i {
  color: var(--blue-mid);
}

/* Right side — two-column scrolling gallery */
.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  padding-bottom: 20px;
}

.hero-img-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: visible;
  box-shadow: 0 24px 72px rgba(30, 58, 138, .28), 0 0 0 1px rgba(255,255,255,.6);
  width: 100%;
}
.hero-img-wrapper::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 27px;
  background: linear-gradient(135deg, rgba(59,130,246,.4), rgba(220,38,38,.25), rgba(59,130,246,.4));
  z-index: -1;
  animation: glow-ring 4s ease-in-out infinite;
  filter: blur(8px);
}
@keyframes glow-ring {
  0%,100% { opacity:.6; }
  50% { opacity:1; }
}

.hero-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 24px;
}

.hero-badge-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  border-radius: 14px;
  padding: 12px 18px;
  box-shadow: var(--shadow-lg);
  animation: float 3s ease-in-out infinite;
  z-index: 10;
}

.badge-exp {
  top: -22px;
  left: -10px;
}

.badge-client {
  bottom: -20px;
  right: -16px;
  animation-delay: .5s;
}

.hero-badge-float i {
  font-size: 1.4rem;
  color: var(--blue-mid);
}

.hero-badge-float strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}

.hero-badge-float small {
  font-size: .68rem;
  color: var(--gray);
}

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

/* === HERO SCROLLING GALLERY (two columns) === */
.hero-scroll-gallery {
  display: flex;
  gap: 14px;
  height: 560px;
  width: 100%;
  max-width: 520px;
  overflow: hidden;
  border-radius: 24px;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 9%, black 91%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 9%, black 91%, transparent 100%);
}

.hsg-col {
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hsg-track {
  display: flex;
  flex-direction: column;
  gap: 12px;
  will-change: transform;
}

@keyframes hsg-scroll-up {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}
.hsg-track-up {
  animation: hsg-scroll-up 22s linear infinite;
}
.hsg-track-up:hover { animation-play-state: paused; }

@keyframes hsg-scroll-down {
  0%   { transform: translateY(-50%); }
  100% { transform: translateY(0); }
}
.hsg-track-down {
  animation: hsg-scroll-down 22s linear infinite;
}
.hsg-track-down:hover { animation-play-state: paused; }

.hsg-track img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(30,58,138,.18);
  display: block;
  flex-shrink: 0;
  transition: transform .3s, box-shadow .3s;
}
.hsg-track img:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 36px rgba(30,58,138,.28);
}

/* === SALES TAGLINE STRIP === */
.sales-tagline-strip {
  background: linear-gradient(135deg, #0a0f1e 0%, #b91c1c 50%, #1e3a8a 100%);
  padding: 18px 40px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.sales-tagline-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M20 20h20v20H20zM0 0h20v20H0z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.sales-tagline-strip::after {
  content: '';
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent);
  animation: strip-shimmer 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes strip-shimmer {
  0% { left: -60%; }
  100% { left: 120%; }
}

.tagline-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.tagline-icon {
  font-size: 1.4rem;
  color: #fbbf24;
  animation: tagline-pulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes tagline-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.25); opacity: .75; }
}

.tagline-text {
  font-size: 1.08rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .92);
  text-align: center;
  line-height: 1.4;
  letter-spacing: .2px;
}

.tagline-highlight {
  color: #fbbf24;
  font-weight: 800;
  position: relative;
}

.tagline-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fbbf24;
  color: #0f172a;
  padding: 9px 22px;
  border-radius: 8px;
  font-size: .85rem;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 14px rgba(251, 191, 36, .4);
}

.tagline-cta-btn:hover {
  background: #f59e0b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(251, 191, 36, .55);
}

/* === COMPANIES === */
.companies {
  padding: 60px 0;
  background: white;
  border-top: 1px solid #eef2ff;
  border-bottom: 1px solid #eef2ff;
  position: relative;
}
.companies::before,
.companies::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.companies::before {
  left: 0;
  background: linear-gradient(to right, white, transparent);
}
.companies::after {
  right: 0;
  background: linear-gradient(to left, white, transparent);
}

.companies .section-label {
  margin-bottom: 32px;
}

.companies-track-wrapper {
  overflow: hidden;
  width: 100%;
}

.companies-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: scroll-logos 28s linear infinite;
}

.companies-track:hover {
  animation-play-state: paused;
}

.company-logo {
  flex: 0 0 180px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  border-right: 1px solid #f1f5f9;
}

.company-logo img {
  max-height: 48px;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .55;
  transition: filter .3s, opacity .3s;
}

.company-logo:hover img {
  filter: grayscale(0);
  opacity: 1;
}

.text-logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: #94a3b8;
  letter-spacing: 2px;
  transition: color .3s;
}

.company-logo:hover .text-logo {
  color: var(--blue);
}

@keyframes scroll-logos {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}


/* === GROWTH STORY & SUCCESS === */
.growth-section {
  padding: 90px 20px;
  background: white;
  position: relative;
  overflow: hidden;
}
.growth-section::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(191,219,254,.25) 0%, transparent 70%);
  top: -200px; right: -150px;
  pointer-events: none;
}
.growth-inner {
  max-width: 1240px;
  margin: 0 auto;
}

/* Quick Snapshot Stats Row */
.growth-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 48px 0 64px;
}
.growth-stat-card {
  background: var(--light);
  border-radius: 20px;
  padding: 28px 24px;
  border: 1px solid #dde6ff;
  text-align: center;
  transition: transform .3s, box-shadow .3s;
}
.growth-stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(30,58,138,.14);
}
.gs-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.4rem;
  margin: 0 auto 16px;
}
.gs-num {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 6px;
}
.gs-plus { color: var(--red); font-size: 1.8rem; }
.gs-label {
  font-size: .88rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 8px;
}
.gs-desc {
  font-size: .76rem;
  color: var(--gray);
  line-height: 1.55;
  margin: 0;
}

/* Story Block */
.growth-story-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 72px;
}
.growth-story-imgs {
  position: relative;
  height: 440px;
}
.gs-img {
  position: absolute;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 16px 48px rgba(30,58,138,.18);
}
.gs-img-main {
  width: 78%;
  height: 380px;
  top: 0; left: 0;
  z-index: 1;
}
.gs-img-side {
  width: 52%;
  height: 240px;
  bottom: 0; right: 0;
  z-index: 2;
  border: 4px solid white;
}
.growth-story-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin: 12px 0 18px;
}
.growth-story-text p {
  font-size: .9rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 14px;
}
.growth-story-text p strong { color: var(--blue-mid); }

/* Vision Box */
.growth-vision-box {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border-radius: 16px;
  padding: 22px 24px;
  border-left: 4px solid var(--blue-mid);
  margin-top: 20px;
}
.gv-title {
  font-size: .85rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.gv-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.gv-list li {
  font-size: .83rem;
  color: var(--dark2);
  display: flex; align-items: flex-start; gap: 10px;
  line-height: 1.55;
}
.gv-list li i { color: var(--blue-mid); margin-top: 3px; flex-shrink: 0; font-size: .75rem; }

/* Key Differentiators */
.growth-diff-wrap {
  margin-bottom: 60px;
}
.growth-diff-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--dark);
  text-align: center;
  margin: 8px 0 36px;
}
.growth-diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.diff-card {
  background: var(--light);
  border-radius: 20px;
  padding: 30px 26px;
  border: 1px solid #dde6ff;
  transition: transform .3s, box-shadow .3s;
}
.diff-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(30,58,138,.14);
}
.diff-icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.2rem;
  margin-bottom: 16px;
}
.diff-card h4 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
}
.diff-card ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.diff-card ul li {
  font-size: .8rem;
  color: var(--gray);
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}
.diff-card ul li::before {
  content: '⇒';
  position: absolute;
  left: 0;
  color: var(--red);
  font-size: .75rem;
}

/* Photo Diff Card */
.diff-card-photo {
  padding: 0;
  overflow: hidden;
  position: relative;
  min-height: 220px;
  border: none;
}
.diff-card-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.diff-card-photo:hover img { transform: scale(1.06); }
.diff-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,15,30,.85), transparent);
  display: flex;
  align-items: flex-end;
  padding: 24px 20px;
}
.diff-photo-overlay span {
  font-size: .88rem;
  font-weight: 600;
  color: white;
  font-style: italic;
  line-height: 1.45;
}

/* Bottom Photo Strip */
.growth-photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gps-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: 0 8px 32px rgba(30,58,138,.12);
}
.gps-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.gps-item:hover img { transform: scale(1.07); }
.gps-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(10,15,30,.80), transparent);
  padding: 20px 16px 14px;
  color: white;
  font-size: .82rem;
  font-weight: 600;
  display: flex; align-items: center; gap: 8px;
}
.gps-caption i { color: var(--gold); }

/* Growth section responsive */
@media(max-width:1024px) {
  .growth-stats-row { grid-template-columns: repeat(2, 1fr); }
  .growth-diff-grid { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width:768px) {
  .growth-story-block { grid-template-columns: 1fr; gap: 32px; }
  .growth-story-imgs { height: 320px; }
  .growth-photo-strip { grid-template-columns: 1fr; }
}
@media(max-width:480px) {
  .growth-stats-row { grid-template-columns: 1fr 1fr; }
  .growth-diff-grid { grid-template-columns: 1fr; }
}

/* === WHY US === */
.why-us {
  padding: 80px 20px;
  background: linear-gradient(160deg, #0a0f1e 0%, #0f1e3d 50%, #0a0f1e 100%);
  position: relative;
  overflow: hidden;
}
.why-us::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,.12) 0%, transparent 70%);
  top: -150px; right: -100px;
  pointer-events: none;
}
.why-us .section-label { color: rgba(255,255,255,.7); }
.why-us .section-title { color: white; }
.why-us .section-desc { color: rgba(255,255,255,.6); }

.section-inner {
  margin: 0 auto;
  padding: 0 0px;
}

.cards-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.why-card {
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 22px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  transition: transform .35s, box-shadow .35s, border-color .35s;
  cursor: default;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
  opacity: 0;
  transition: opacity .3s;
}
.why-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255,255,255,.22);
}
.why-card:hover::before { opacity: 1; }

.card-number {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 2.8rem;
  font-weight: 800;
  color: #f1f5f9;
  line-height: 1;
}

.card-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,.92);
  margin-bottom: 10px;
}
.why-card p {
  font-size: .83rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
}

.card-glow {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  filter: blur(40px);
  opacity: .12;
  bottom: -30px;
  right: -20px;
  pointer-events: none;
}

.glow-blue  { background: var(--blue-light); opacity: .2; }
.glow-green { background: #10b981; opacity: .2; }
.glow-purple{ background: #8b5cf6; opacity: .2; }
.glow-orange{ background: #f59e0b; opacity: .2; }
.why-card:hover .card-glow { opacity: .35; }

/* === POPULAR JOB SEARCHES === */
.popular-jobs-section {
  background: linear-gradient(135deg, #0a0f1e 0%, #1e3a8a 60%, #1e293b 100%);
  padding: 70px 40px;
  position: relative;
  overflow: hidden;
}
.popular-jobs-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,.04) 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.pjs-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.pjs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.pjs-card {
  background: #fff;
  border-radius: 16px;
  padding: 18px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: transform .25s, box-shadow .25s;
  box-shadow: 0 4px 18px rgba(0,0,0,.12);
}
.pjs-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0,0,0,.2);
}
.pjs-emoji {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
}
.pjs-card div {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.pjs-card strong {
  font-size: .82rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
}
.pjs-card span {
  font-size: .72rem;
  color: #64748b;
  font-weight: 500;
}
.pjs-text {
  color: #fff;
}
.pjs-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.9);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.pjs-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.18;
  margin-bottom: 18px;
}
.pjs-title span {
  color: #fbbf24;
}
.pjs-desc {
  font-size: .95rem;
  color: rgba(255,255,255,.78);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 320px;
}
.pjs-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #1e3a8a;
  font-weight: 700;
  font-size: .9rem;
  padding: 13px 26px;
  border-radius: 10px;
  text-decoration: none;
  transition: all .25s;
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
}
.pjs-btn:hover {
  background: #fbbf24;
  color: #1e293b;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(251,191,36,.4);
}
@media (max-width: 900px) {
  .pjs-inner { grid-template-columns: 1fr; gap: 36px; }
  .pjs-grid { grid-template-columns: repeat(3, 1fr); }
  .pjs-title { font-size: 2rem; }
}
@media (max-width: 500px) {
  .pjs-grid { grid-template-columns: repeat(2, 1fr); }
}

/* === SERVICES === */
.services {
  padding: 80px 20px;
  background: white;
  position: relative;
  overflow: hidden;
}
.services::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(191,219,254,.35) 0%, transparent 70%);
  top: -100px; left: -80px;
  pointer-events: none;
}

.services-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  border-radius: 22px;
  padding: 40px 32px;
  border: 1px solid #e8effe;
  transition: all .35s;
  background: white;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37,99,235,.05), rgba(59,130,246,.02));
  opacity: 0;
  transition: opacity .3s;
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.6), transparent);
  transition: left .5s ease;
  pointer-events: none;
}
.service-card:hover::after { left: 150%; }
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(37,99,235,.18);
  border-color: var(--blue-light);
}
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-mid);
  font-size: 1.5rem;
  margin-bottom: 22px;
  transition: all .35s;
  position: relative;
}
.service-icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(37,99,235,.3), rgba(59,130,246,.1));
  opacity: 0;
  transition: opacity .35s;
  z-index: -1;
}
.service-card:hover .service-icon::after { opacity: 1; }
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  color: white;
  transform: scale(1.08);
}

.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.service-card p {
  font-size: .83rem;
  color: var(--gray);
  line-height: 1.65;
}

/* === STATS === */
.stats {
  padding: 80px 20px;
  background: linear-gradient(-45deg, #0a0f1e, #1e3a8a, #0f172a, #1a1040);
  background-size: 400% 400%;
  animation: gradient-shift 10s ease infinite;
  position: relative;
  overflow: hidden;
}
@keyframes gradient-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.stats::before {
  content: '';
  position: absolute;
  inset: 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='%23ffffff' 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");
}

.stats-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

.stat-box {
  text-align: center;
  padding: 36px 20px;
  background: rgba(255,255,255,.05);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
  transition: transform .3s, border-color .3s;
}
.stat-box:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,.22);
}

.stat-num {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  display: inline;
}

.stat-plus {
  font-size: 2rem;
  font-weight: 800;
  color: var(--red);
  display: inline;
}

.stat-label {
  margin-top: 10px;
  font-size: .83rem;
  color: rgba(255, 255, 255, .7);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.stat-label i {
  color: var(--blue-light);
}

/* === REVIEWS === */
.reviews {
  padding: 40px 0;
  background: linear-gradient(160deg, #f0f4ff 0%, #e8effe 50%, #f0f4ff 100%);
}
.reviews .section-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}

.reviews-layout {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: stretch;
  margin-top: 40px;
}

.review-card-static {
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 22px;
  padding: 32px;
  box-shadow: 0 8px 40px rgba(30,58,138,.10);
  border: 1px solid rgba(255,255,255,.9);
  position: relative;
  overflow: hidden;
}
.review-card-static::before {
  content: '\201C';
  position: absolute;
  top: -10px; right: 20px;
  font-size: 8rem;
  line-height: 1;
  color: rgba(37,99,235,.06);
  font-family: Georgia, serif;
  pointer-events: none;
}

/* Shared Review Styles */
.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: .9rem;
  font-weight: 700;
  flex-shrink: 0;
}

.review-header strong {
  font-size: .95rem;
  font-weight: 700;
  color: var(--dark);
}

.review-header small {
  font-size: .75rem;
  color: var(--gray);
}

.google-g {
  margin-left: auto;
  font-size: 1.4rem;
}

.review-stars {
  color: #FBBC04;
  margin-bottom: 12px;
  font-size: 1rem;
}

.review-card-static p, .review-card p {
  color: var(--gray);
  font-size: .85rem;
  line-height: 1.7;
  font-style: italic;
}

/* Mobile Slider Styles */
.reviews-slider {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  min-height: 220px;
}

.review-card {
  display: none;
  background: white;
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1.5px solid #e2e8f0;
  animation: fadeIn .4s ease;
}

.review-card.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #e2e8f0;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--blue-mid);
  font-size: .9rem;
  transition: all .2s;
}

.slider-btn:hover {
  background: var(--blue-mid);
  color: white;
  border-color: var(--blue-mid);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e2e8f0;
  cursor: pointer;
  transition: all .2s;
}

.dot.active {
  background: var(--blue-mid);
  width: 24px;
  border-radius: 5px;
}

.google-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 20px;
  padding: 32px 40px;
  box-shadow: var(--shadow);
  border: 1.5px solid #e2e8f0;
  min-width: 200px;
  text-align: center;
}

.google-logo-big {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 8px;
}

.stars-big {
  color: #FBBC04;
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.rating-num {
  font-size: 3rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 4px;
}

.rating-sub {
  font-size: .78rem;
  color: var(--gray);
  font-weight: 500;
}

/* === CTA === */
.cta-section {
  padding: 40px 24px;
  background: linear-gradient(135deg, #0a0f1e 0%, #1e1a3a 35%, #7f1d1d 75%, #991b1b 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,.02) 40px,
    rgba(255,255,255,.02) 80px
  );
  pointer-events: none;
}

.cta-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .18;
  pointer-events: none;
}

.cta-blob1 {
  width: 400px;
  height: 400px;
  background: #3b82f6;
  top: -120px;
  left: -60px;
}

.cta-blob2 {
  width: 350px;
  height: 350px;
  background: #dc2626;
  bottom: -100px;
  right: -50px;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: white;
  margin-bottom: 14px;
}

.cta-content p {
  color: rgba(255, 255, 255, .8);
  font-size: 1rem;
  margin-bottom: 36px;
}

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--blue);
  padding: 16px 36px;
  border-radius: 12px;
  font-size: .92rem;
  font-weight: 700;
  transition: all .3s;
  position: relative;
}
.btn-call::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 16px;
  border: 2px solid rgba(255,255,255,.4);
  opacity: 0;
  transform: scale(.9);
  transition: all .3s;
}
.btn-call:hover::after { opacity: 1; transform: scale(1); }
.btn-call:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,.25);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: white;
  padding: 14px 32px;
  border-radius: 10px;
  font-size: .92rem;
  font-weight: 700;
  transition: all .3s;
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, .35);
}

/* === FOOTER === */
.footer {
  background: #06090f;
  color: rgba(255, 255, 255, .75);
  padding: 80px 24px 0;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), #f97316, var(--blue-mid), var(--blue));
}
.footer::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.footer-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer-brand .logo-main {
  color: white;
}

.footer-brand p {
  font-size: .83rem;
  line-height: 1.7;
  margin: 16px 0 24px;
}

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

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .7);
  font-size: .9rem;
  transition: all .25s;
  border: 1px solid rgba(255,255,255,.08);
}
.social-links a[aria-label="Facebook"]:hover  { background: #1877f2; color: white; border-color: #1877f2; }
.social-links a[aria-label="Instagram"]:hover { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: white; border-color: transparent; }
.social-links a[aria-label="LinkedIn"]:hover  { background: #0a66c2; color: white; border-color: #0a66c2; }
.social-links a[aria-label="WhatsApp"]:hover  { background: #25D366; color: white; border-color: #25D366; }

.footer-col h4 {
  font-size: .92rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: .82rem;
  color: rgba(255, 255, 255, .65);
  transition: color .2s;
}

.footer-col ul li a:hover {
  color: white;
}

.contact-list li {
  display: flex;
  gap: 10px;
  font-size: .82rem;
  color: rgba(255, 255, 255, .65);
  margin-bottom: 14px;
  line-height: 1.6;
}

.contact-list i {
  color: var(--blue-light);
  margin-top: 3px;
  flex-shrink: 0;
}

.contact-list a {
  color: rgba(255, 255, 255, .65);
  transition: color .2s;
}

.contact-list a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 24px 0;
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: .78rem;
  color: rgba(255, 255, 255, .45);
}

/* === SCROLL REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}

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

/* === SCROLL TOP === */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  color: white;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(37, 99, 235, .5);
  opacity: 0;
  transform: translateY(20px);
  transition: all .3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.scroll-top::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(59,130,246,.5);
  animation: spin-ring 3s linear infinite;
}
@keyframes spin-ring {
  to { transform: rotate(360deg); }
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, .5);
}

/* === RESPONSIVE === */
@media(max-width:1100px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

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

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

  .reviews-layout {
    grid-template-columns: 1fr;
  }

  .google-center {
    padding: 24px;
  }

  .hero-content {
    padding: 0 30px 0 40px;
    gap: 28px;
  }

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

@media(max-width:900px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    min-height: auto;
    padding: 120px 24px 60px;
    gap: 36px;
    max-width: 100%;
  }

  .hero-left {
    padding-top: 0;
    padding-bottom: 0;
  }

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

  .hero-desc,
  .hero-trust {
    max-width: 100%;
    justify-content: center;
  }

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

  .hero-stats {
    justify-content: center;
    display: inline-flex;
  }

  .hero-right {
    padding-top: 0;
    justify-content: center;
  }

  .hero-img {
    height: 380px;
  }

  .badge-exp {
    top: 16px;
    left: 16px;
  }

  .badge-client {
    bottom: 16px;
    right: 16px;
  }

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

  .nav-links {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: var(--shadow);
  }

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

  .nav-links.open {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .phone-link {
    display: none;
  }

  #navbar {
    padding: 0 20px;
  }

  /*.section-inner {*/
  /*  padding: 0 20px;*/
  /*}*/
}

@media(max-width:640px) {
  .hero-content {
    padding: 100px 16px 48px;
  }

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

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

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

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

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

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

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

  .cta-content h2 {
    font-size: 1.6rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .stat-divider {
    width: 100%;
    height: 1px;
  }

  .stat-box {
    padding: 16px 8px;
  }

  .stat-num {
    font-size: 2.2rem;
  }

  .stat-plus {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: .75rem;
  }

  .hero-img {
    height: 280px;
  }

  .reviews-layout {
    display: none;
  }
}

/* === PAGE HEADER === */
.page-header {
  padding: 160px 24px 80px;
  background: linear-gradient(rgba(30, 58, 138, 0.85), rgba(15, 23, 42, 0.85)), url('assests/recruitment_concept.png') center/cover;
  text-align: center;
  color: white;
  position: relative;
}

.page-header h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.page-header .breadcrumb {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.page-header .breadcrumb a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.page-header .breadcrumb a:hover {
  color: var(--red);
}

.page-header .breadcrumb span {
  font-size: 0.85rem;
  opacity: 0.7;
}

@media(max-width:768px) {
  .page-header {
    padding: 120px 20px 60px;
  }
  .page-header h1 {
    font-size: 2.5rem;
  }
}

/* === ABOUT US === */
.about-section {
  padding: 40px 20px;
  background: white;
}
.about-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-left .section-label { justify-content: flex-start; }
.about-intro {
  font-size: 1rem;
  color: var(--dark);
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-intro strong { color: var(--blue-mid); }
.about-text {
  font-size: .9rem;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 28px;
}
.about-highlights { display: flex; flex-direction: column; gap: 18px; margin-bottom: 28px; }
.highlight-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--light);
  border-radius: 14px;
  padding: 16px 20px;
  border-left: 3px solid var(--blue-mid);
}
.highlight-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1rem;
}
.highlight-item strong { display: block; font-size: .93rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.highlight-item p { font-size: .82rem; color: var(--gray); margin: 0; line-height: 1.6; }
.about-values { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 4px; }
.value-tag {
  display: flex; align-items: center; gap: 8px;
  background: #eff6ff; color: var(--blue-mid);
  font-size: .8rem; font-weight: 600;
  padding: 7px 14px; border-radius: 20px;
  border: 1px solid #bfdbfe;
}
.value-tag i { color: var(--blue-mid); }

/* About Right */
.about-right { display: flex; flex-direction: column; gap: 24px; }
.about-img-card {
  position: relative;
  border-radius: 24px;
  overflow: visible;
  box-shadow: 0 20px 60px rgba(30,58,138,.15);
}
.about-img {
  width: 100%; height: 420px;
  object-fit: cover; object-position: center top;
  border-radius: 24px; display: block;
}
.about-badge {
  position: absolute;
  display: flex; align-items: center; gap: 10px;
  background: white; border-radius: 14px;
  padding: 10px 16px;
  box-shadow: 0 8px 28px rgba(30,58,138,.15);
  animation: float 3s ease-in-out infinite;
  z-index: 10;
}
.about-badge i { font-size: 1.3rem; color: var(--blue-mid); }
.about-badge strong { display: block; font-size: .95rem; font-weight: 700; color: var(--dark); line-height: 1; }
.about-badge small { font-size: .65rem; color: var(--gray); }
.ab1 { top: -18px; left: -14px; }
.ab2 { bottom: -18px; right: -14px; animation-delay: .6s; }
.about-stats-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.about-stat {
  background: var(--light);
  border-radius: 16px; padding: 18px 12px;
  text-align: center;
  border: 1.5px solid #e2e8f0;
  transition: transform .2s, box-shadow .2s;
}
.about-stat:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.astat-num { display: block; font-size: 1.8rem; font-weight: 800; color: var(--blue); line-height: 1; }
.astat-label { display: block; font-size: .72rem; color: var(--gray); margin-top: 4px; font-weight: 500; }

/* === LOGO VIDEO === */
.logo-video-section {
  padding: 80px 24px;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 60%, #1e293b 100%);
  position: relative; overflow: hidden;
}
.logo-video-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.logo-video-section .section-label { color: rgba(255,255,255,.7); }
.logo-video-section .section-label i { color: var(--red); }
.logo-video-section .section-title { color: white; }
.logo-video-section .section-desc { color: rgba(255,255,255,.65); }
.video-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.5);
  margin-top: 40px;
  background: #000;
  aspect-ratio: 16/9;
}
.logo-video {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  border-radius: 20px;
}
.video-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end; justify-content: flex-start;
  padding: 16px; pointer-events: none;
}
.video-play-btn {
  width: 44px; height: 44px;
  border-radius: 50%; border: none;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  color: white; font-size: 1rem;
  cursor: pointer; pointer-events: all;
  transition: background .2s;
  display: flex; align-items: center; justify-content: center;
}
.video-play-btn:hover { background: rgba(255,255,255,.3); }

/* About responsive */
@media(max-width:900px) {
  .about-container { grid-template-columns: 1fr; gap: 40px; }
  .about-left .section-label { justify-content: center; }
  .about-left .section-title { text-align: center !important; }
  .about-intro, .about-text { text-align: center; }
  .about-highlights { align-items: stretch; }
  .about-values { justify-content: center; }
  .about-left a { display: flex !important; justify-content: center; }
}
@media(max-width:640px) {
  .about-stats-row { grid-template-columns: repeat(3,1fr); gap: 10px; }
  .astat-num { font-size: 1.4rem; }
  .about-img { height: 300px; }
}

/* === GALLERY PREVIEW (Homepage) === */
.gallery-preview-section {
  padding: 40px 20px;
  background: linear-gradient(160deg, #f0f4ff 0%, #e8effe 100%);
}
.gallery-preview-section .section-inner {
  max-width: 1240px;
  margin: 0 auto;
}
.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 0;
}
.gallery-preview-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(30,58,138,.12);
  transition: transform .35s, box-shadow .35s;
}
.gallery-preview-item:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 60px rgba(30,58,138,.22);
}
.gallery-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  display: block;
}
.gallery-preview-item:hover img { transform: scale(1.1); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,58,138,.65), rgba(220,38,38,.45));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .35s;
}
.gallery-preview-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i {
  font-size: 2.2rem;
  color: white;
  transform: scale(.8);
  transition: transform .35s;
}
.gallery-preview-item:hover .gallery-overlay i { transform: scale(1); }

/* === GALLERY PAGE === */
.gallery-section {
  padding: 80px 20px;
  background: #f8fafc;
}
.gallery-section .section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

/* Featured Video */
.gallery-video-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 50px;
  box-shadow: var(--shadow-lg);
  max-height: 480px;
  background: #000;
}
.gallery-featured-video {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
}
.gallery-video-label {
  position: absolute;
  bottom: 18px;
  left: 20px;
  background: rgba(0,0,0,0.65);
  color: white;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: .85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(4px);
}

/* Photo Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform .3s, box-shadow .3s;
}
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 58, 138, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s;
}
.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}
.gallery-item-overlay i {
  font-size: 2rem;
  color: white;
}

/* === LIGHTBOX === */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(6px);
}
.lightbox-overlay.active {
  display: flex;
}
.lightbox-box {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.lightbox-img {
  max-width: 85vw;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 24px 80px rgba(0,0,0,.7);
  display: block;
}
.lightbox-caption {
  color: rgba(255,255,255,0.85);
  font-size: .9rem;
  font-weight: 500;
  text-align: center;
}
.lightbox-close {
  position: fixed;
  top: 20px;
  right: 24px;
  background: rgba(255,255,255,0.15);
  border: none;
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  z-index: 10001;
}
.lightbox-close:hover { background: rgba(255,255,255,0.3); }
.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: none;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  z-index: 10001;
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,0.3); }

/* === RESPONSIVE GALLERY === */
@media(max-width:1024px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-preview-grid { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width:768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .gallery-preview-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-video-wrap { max-height: 260px; }
  .gallery-featured-video { max-height: 260px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}
@media(max-width:480px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .gallery-preview-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   REACH & IMPACT SECTION
   ============================================================ */
.reach-section {
  padding: 30px 20px;
  background: linear-gradient(160deg, #f0f4ff 0%, #e8effe 40%, #f0f4ff 100%);
  position: relative;
}
.reach-inner { margin: 0 auto; }

/* Two-column row (legacy, kept for MoU section spacing) */
.reach-row-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}

/* Main layout: left col stacked + right col tall */
.reach-main-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
  align-items: stretch;
}
.reach-left-col {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.reach-left-col .reach-card-block {
  flex: 1;
}
.reach-right-col {
  display: flex;
  flex-direction: column;
}

/* Card block */
.reach-card-block {
  padding: 0px 0px 14px 40px;
}

.reach-full-width {
  width: 100%;
  margin-bottom: 28px;
}

/* Block header */
.reach-block-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.reach-block-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.reach-block-header p {
  font-size: .78rem;
  color: var(--gray);
  margin: 0;
}
.reach-block-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* === CITIES GRID === */
.cities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.city-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: white;
  color: var(--dark);
  border: 1.5px solid #dbeafe;
  border-radius: 30px;
  padding: 8px 18px;
  font-size: .82rem;
  font-weight: 500;
  transition: all .28s;
  cursor: default;
  box-shadow: 0 2px 8px rgba(30,58,138,.06);
}
.city-chip i { color: var(--red); font-size: .75rem; }
.city-chip:hover {
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,99,235,.25);
}
.city-chip:hover i { color: #fbbf24; }

/* === CLIENTS GRID === */
.clients-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.client-logo-card {
  flex: 1;
  min-width: 140px;
  background: white;
  border-radius: 16px;
  border: 1.5px solid #e2e8f0;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  font-size: .82rem;
  font-weight: 600;
  color: var(--dark);
  transition: all .3s;
}
.client-logo-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-light);
  transform: translateY(-3px);
}
.client-logo-img {
  max-height: 44px;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(0.3);
  transition: filter .3s;
}
.client-logo-card:hover .client-logo-img { filter: grayscale(0); }
.client-initials-badge {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
}
.client-logo-card small {
  font-weight: 400;
  color: var(--gray);
  font-size: .75rem;
}

/* === MOU CARDS === */
.mou-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.mou-card {
  background: white;
  border-radius: 16px;
  padding: 20px;
  border: 1.5px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all .3s;
}
.mou-card:hover {
  border-color: var(--blue-light);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.mou-flag {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
  letter-spacing: 1px;
}
.rj-flag { background: linear-gradient(135deg, #d97706, #f59e0b); }
.mp-flag { background: linear-gradient(135deg, #059669, #10b981); }
.up-flag { background: linear-gradient(135deg, #1e40af, #3b82f6); }
.mou-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mou-info strong {
  font-size: .88rem;
  font-weight: 700;
  color: var(--dark);
}
.mou-info span {
  font-size: .75rem;
  color: var(--gray);
}
.mou-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #dcfce7;
  color: #166534;
  font-size: .72rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}
.mou-badge i { color: #16a34a; }

/* === JOBS GRID === */
.jobs-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.job-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  color: var(--blue);
  border: 1.5px solid #bfdbfe;
  border-radius: 10px;
  padding: 10px 20px;
  font-size: .85rem;
  font-weight: 600;
  transition: all .25s;
  cursor: default;
}
.job-pill i {
  color: var(--red);
  font-size: .85rem;
}
.job-pill:hover {
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  color: white;
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, .25);
}
.job-pill:hover i { color: #fbbf24; }

/* ============================================================
   SOURCING NETWORK SECTION
   ============================================================ */
.sourcing-section {
  padding: 70px 20px;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 60%, #1e293b 100%);
  overflow: hidden;
}
.sourcing-inner {
  max-width: 1240px;
  margin: 0 auto;
}
.sourcing-section .section-label,
.sourcing-section .section-title,
.sourcing-section .section-desc {
  color: white;
}
.sourcing-section .section-title { color: white; }
.sourcing-section .section-desc { color: rgba(255,255,255,0.7); }

.sourcing-track-wrapper {
  overflow: hidden;
  width: 100%;
  margin-top: 10px;
}
.sourcing-track {
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content;
  animation: scroll-states 32s linear infinite;
}
.sourcing-track:hover { animation-play-state: paused; }

@keyframes scroll-states {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* State card */
.state-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 20px 28px;
  min-width: 148px;
  text-align: center;
  transition: background .3s, transform .3s;
  cursor: default;
  backdrop-filter: blur(4px);
}
.state-card:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-4px);
}
.state-card span {
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
}

/* State abbreviation badges */
.state-abbr {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  color: white;
  letter-spacing: 1px;
}
.bi-card { background: linear-gradient(135deg, #b91c1c, #ef4444); }
.up-card { background: linear-gradient(135deg, #1e40af, #3b82f6); }
.jh-card { background: linear-gradient(135deg, #065f46, #10b981); }
.rj-card { background: linear-gradient(135deg, #d97706, #f59e0b); }
.mp-card { background: linear-gradient(135deg, #6d28d9, #8b5cf6); }
.od-card { background: linear-gradient(135deg, #0e7490, #06b6d4); }
.wb-card { background: linear-gradient(135deg, #155e75, #0891b2); }
.as-card { background: linear-gradient(135deg, #92400e, #d97706); }
.sk-card { background: linear-gradient(135deg, #1e3a8a, #3b82f6); }
.gj-card { background: linear-gradient(135deg, #7c3aed, #a78bfa); }

/* ============================================================
   RESPONSIVE — REACH & SOURCING
   ============================================================ */
@media(max-width:1024px) {
  .mou-grid { grid-template-columns: 1fr; gap: 12px; }
}
@media(max-width:768px) {
  .reach-row-two { grid-template-columns: 1fr; }
  .reach-main-row { grid-template-columns: 1fr; }
  .mou-grid { grid-template-columns: 1fr; }
  .mou-card { flex-wrap: wrap; }
  .mou-badge { align-self: flex-start; }
  .clients-grid { flex-direction: column; }
  .reach-card-block { padding: 24px 18px; }
  .state-card { min-width: 120px; padding: 16px 18px; }
}
@media(max-width:480px) {
  .jobs-grid .job-pill { font-size: .78rem; padding: 8px 14px; }
  .reach-section { padding: 60px 12px; }
  .sourcing-section { padding: 60px 12px; }
}