
/* --- Project Stats Alignment Fix --- */
.projects-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 32px;
  margin-top: 24px;
}
.projects-stats .stat-card {
  flex: 1 1 280px;
  text-align: center;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  padding: 30px 20px;
  transition: transform 0.3s ease;
}
.projects-stats .stat-card:hover { transform: translateY(-5px); }
@media (max-width: 768px) {
  .projects-stats { flex-direction: column; align-items: center; }
}

.projects-stats{display:flex;flex-wrap:nowrap;gap:28px;align-items:stretch;justify-content:space-between}
.projects-stats>.stat-card{flex:1 1 0}
