.services {
  text-align: center;
  padding: 50px 20px;
}

.sec-head {
  text-align: center;
  font-size: 2.5rem;
  color: #a0003d;
  margin-bottom: 30px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.cards a {
  text-decoration: none;
  color: inherit;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 200px;
  height: 200px;

  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-10px);
}

.card img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.card p {
  font-size: 1rem;
  color: #333;
}

/* ✅ Mobile Responsive */
@media (max-width: 768px) {
  .cards {
    flex-direction: column;
    align-items: center;
  }
}
