/* Global setup */
body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  text-align: center;
  width: 100%;
  max-width: 900px;
}

.title {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #E06B26;
}

.subtitle {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.8;
}

/* Card Layout */
.card-wrapper {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.card {
  padding: 30px;
  width: 300px;
  border-radius: 14px;
  text-decoration: none;
  transition: 0.4s ease;
  cursor: pointer;
  border: 2px solid #38bdf8;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.3);
}

.card img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.card h2 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.card p {
  font-size: 0.95rem;
  opacity: 0.8;
}

/* Hover Effects */
.card:hover {
  transform: translateY(-10px) scale(1.05);
  border-color: #38bdf8;
  box-shadow: 0 10px 30px rgba(56,189,248,0.4);
}

.card:hover img {
  scale: 1.1;
  transition: 0.4s;
}
