#features {
  background: var(--bg-light);
}

.step-card {
  border: 1px solid var(--bs-border-color);
  border-radius: 1rem;
  padding: 2rem;
  position: relative;
}

.step-card:hover {
  box-shadow: var(--shadow-s);
  transform: translateY(-5px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step-card-col:nth-child(1) .step-card{
  border-color: rgb(191, 219, 254);
  background: linear-gradient(to bottom right, #eff6ff  0%, #dbeafe 100%);
}

[data-bs-theme="dark"] .step-card-col:nth-child(1) .step-card{
  border-color: rgb(77, 105, 137);
  background: linear-gradient(to bottom right, #1e3a8a 0%, #193d8b 100%);
}

[data-bs-theme="dark"] .step-card-col:nth-child(1) .step-number {
  background: radial-gradient(circle, #2563eb, #1e40af);
}

.step-card-col:nth-child(2) .step-card{
  border-color: rgb(167 243 208 );
  background: linear-gradient(to bottom right, #ecfdf5 0%, #d1fae5 100%);
}

[data-bs-theme="dark"] .step-card-col:nth-child(2) .step-card{
  border-color: rgb(27, 150, 72);
  background: linear-gradient(to bottom right, #065f46 0%, #0b6860 100%);
}

[data-bs-theme="dark"] .step-card-col:nth-child(2) .step-number {
  background: radial-gradient(circle, #16a34a, #15803d);
}

.step-card-col:nth-child(3) .step-card{
  border-color: rgb(199 210 254);
  background: linear-gradient(to bottom right, #eef2ff 0%, #e0e7ff 100%);
}

[data-bs-theme="dark"] .step-card-col:nth-child(3) .step-card{
  border-color: rgb(103, 139, 181);
  background: linear-gradient(to bottom right, #1b399e 0%, #143798 100%);
}

[data-bs-theme="dark"] .step-card-col:nth-child(3) .step-number {
  background: radial-gradient(circle, #2563eb, #1e40af);
}

[data-bs-theme="dark"] .step-card i {
  color: #fff !important;
}

.step-number {
  position: absolute;
  top: -12px;
  left: -12px;
  background: radial-gradient(circle, var(--bs-primary), var(--bs-secondary));
  color: white;
  width: 36px;
  height: 36px;
  line-height: 36px;
  border-radius: 50%;
  text-align: center;
  font-weight: bold;
}

