* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
  color: #333;
  line-height: 1.6;
}

.hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(120deg, #e91e63, #9c27b0);
  color: #fff;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero h1 span {
  color: #ffd600;
}

.hero p {
  font-size: 1.1rem;
}

.section {
  padding: 60px 10%;
  text-align: center;
}

.section h2 {
  margin-bottom: 25px;
  font-size: 1.8rem;
  color: #e91e63;
}

.links a {
  margin: 0 10px;
  text-decoration: none;
  background: #e91e63;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  transition: 0.3s;
}

.links a:hover {
  background: #c2185b;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  width: 280px;
  transition: transform 0.3s ease;
}

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

.skills .badges,
.badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.badges span {
  background: #eee;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
}

footer {
  text-align: center;
  padding: 20px;
  background: #222;
  color: #fff;
  margin-top: 40px;
}

