:root {
  --primary: #1e40af;
  --primary-light: #3b82f6;
  --accent: #f97316;
  --accent-light: #fb923c;
}

.glass-card {
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  transition: all 0.3s ease;
}
.glass-card:hover {
  border-color: rgba(59, 130, 246, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px -8px rgba(0, 0, 0, 0.4);
}

.logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 50%;
  background: white;
  padding: 2px;
}

.hero-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.4));
}

@media (min-width: 640px) {
  .hero-logo {
    width: 140px;
    height: 140px;
  }
}

.section-title {
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #f97316);
  border-radius: 2px;
}

.nav-link {
  transition: color 0.2s ease;
}
.nav-link:hover, .nav-link.active {
  color: #60a5fa;
}

body {
  background-color: #020617;
}

.officer-card img {
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.officer-card:hover img {
  transform: scale(1.05);
  border-color: #3b82f6;
}

/* Better mobile spacing */
@media (max-width: 640px) {
  .glass-card {
    padding: 1.25rem;
  }
}
