body {
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
}
.step-bg {
  background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
}
.step-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #bfdbfe;
  color: #019CDC;
  font-size: 1.2rem;
}
.chart-container {
  position: relative;
  height: 400px;
  margin-top: 2rem;
}
.bar {
  position: absolute;
  bottom: 0;
  width: 80px;
  background: linear-gradient(to top, #0077D1, #019CDC);
  border-radius: 8px 8px 0 0;
  transition: height 0.5s ease;
}
.axis-label {
  position: absolute;
  left: -120px;
  transform: translateY(-50%);
  font-weight: 500;
  color: #374151;
}
.hover-lift {
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.gradient-text {
  background: linear-gradient(135deg, #019CDC, #0077D1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.card-pattern {
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #dbeafe, transparent);
  margin: 2rem 0;
}
.floating {
  animation: floating 3s ease-in-out infinite;
}
@keyframes floating {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}
.pulse-border {
  position: relative;
}
.pulse-border::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #019CDC, #0077D1, #019CDC);
  border-radius: inherit;
  z-index: -1;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { opacity: 0.5; }
  50% { opacity: 1; }
  100% { opacity: 0.5; }
}
.counter {
  transition: all 0.3s ease;
}
.counter:hover {
  transform: scale(1.05);
}

/* Navigation Menu Styles */
#navigation-menu {
  position: sticky;
  top: 0;
  z-index: 50;
}

/* Mobile menu overlay */
#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

#overlay.visible {
  opacity: 1;
  visibility: visible;
}