/* Custom Animations */
@keyframes blob {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }
  33% {
    transform: translate(-50%, -60%) scale(1.1);
  }
  66% {
    transform: translate(-40%, -50%) scale(0.9);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}

.animate-blob {
  animation: blob 7s infinite;
}

.animation-delay-2000 {
  animation-delay: 2s;
}

/* Scrollbar Styling for a modern feel */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #0a0f1c; 
}
 
::-webkit-scrollbar-thumb {
  background: #1f2937; 
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #374151; 
}

/* Glass effect for navbar */
.glass-nav {
  background: rgba(10, 15, 28, 0.7);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-metric-card {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(19, 27, 47, 0.55);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.hero-metric-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 22px;
}

.hero-metric-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.hero-metric-card p {
  color: #9ca3af;
  line-height: 1.65;
}
