/* why choose section */
.why-choose-section{
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.feature-bubble {
  position: absolute;
  top: -70px;
  right: -70px;
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, #e0f2fe 60%, #fee2e2 100%);
  border-radius: 50%;
  opacity: 0.7;
  z-index: 10;
  display: none;
}

.feature-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 1rem;
  /* box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.119); */
  border: 1px solid #e2e2e2;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.074);
}

.why-choose-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1.5px solid #e2e2e2;
  /* background: linear-gradient(135deg, #e0f2fe 60%, #e0fee9 100%); */
  margin-bottom: 1rem;
  z-index: 20;
  /* box-shadow: 0 2px 8px 0 rgba(76, 175, 80, 0.10); */
}