@charset "UTF-8";

.step-number {
  background: linear-gradient(135deg, #10b981, #1b5e20);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.5rem;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}
.step-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e5e7eb;
}
.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.connecting-line {
  width: 2px;
  height: 60px;
  background: linear-gradient(to bottom, #3b82f6, #e5e7eb);
  margin: 0 auto;
}
.process-top {
  background-image: url(../img/process-top.jpg);
  background-color: rgba(41, 41, 41, 0.7);
  background-blend-mode: darken;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  animation: overlayFade 6s ease-in-out infinite;
}
.btn-primary {
  background: linear-gradient(135deg, #3b82f6, #1e40af);
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}
.icon-circle {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}
