/* ========================
   Success Stories Section
========================= */
.stories-section {
  padding: 100px 24px;
  background: #ffffff;
  
}

.stories-section h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 48px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  padding: 20px , 10%;
  text-align: center;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05); 
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #f1f5f9;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
}

.card-image {
  height: 240px;
  background-size: cover;
  background-position: center;
}

.card-content {
  padding: 32px;
}

.category {
  color: #2563eb;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.card-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #0f172a;
}

.metric {
  color: #64748b;
  font-size: 16px;
}
