body {
  font-family: "Segoe UI", sans-serif;
}

/* Hero */
#hero {
  background: linear-gradient(135deg, #0d6efd, #6610f2);
  color: white;
  padding: 100px 0;
}

#hero h1 {
  font-size: 3rem;
  font-weight: 700;
}

/* Sections */
section {
  padding: 60px 0;
}

section:nth-child(even) {
  background-color: #f8f9fa;
}

/* Project cards */
.card {
  transition: transform 0.2s;
}

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

/* Skills badges */
.badge {
  font-size: 0.9rem;
  padding: 8px 14px;
  margin: 4px;
}

/* Footer */
footer {
  background-color: #212529;
  color: #adb5bd;
}
