.hero {
  background: linear-gradient(135deg, #6c63ff, #3e3bff);
  color: white;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero h1 {
  font-size: 3rem;
  font-weight: bold;
}
.hero p {
  font-size: 1.25rem;
}

.service-card {
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

footer {
  background: #1a1a1a;
  color: #ccc;
}
