/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Segoe UI', Tahoma, sans-serif;
  line-height: 1.6;
  color: #444;
  background: #fff5f5;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #ff9a9e, #fad0c4);
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

.hero h1 span { color: #ffe066; }
.hero .social-links a {
  margin: 0 10px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}
.hero .social-links a:hover { color: #ffe066; }

/* Sections */
section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
}
h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #e75480;
  position: relative;
}
h2::after {
  content: '';
  width: 60px;
  height: 3px;
  background: #f78ca0;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.service-card {
  background: #fff0f3;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}
.service-card:hover { transform: translateY(-5px); }

/* Projects */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.project-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}
.project-card:hover { transform: translateY(-5px); }
.project-card a {
  display: inline-block;
  margin-top: 10px;
  margin-right: 10px;
  color: #e75480;
  text-decoration: none;
  font-weight: 500;
}
.project-card a:hover { text-decoration: underline; }

/* Skills */
.skill-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.skill-badges span {
  background: #ffe5ec;
  color: #e75480;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
}

/* Timeline */
.timeline {
  list-style: none;
  border-left: 3px solid #f78ca0;
  padding-left: 20px;
}
.timeline li {
  margin-bottom: 20px;
  padding-left: 10px;
  position: relative;
}
.timeline li::before {
  content: '';
  position: absolute;
  left: -11px;
  top: 6px;
  width: 15px;
  height: 15px;
  background: #f78ca0;
  border-radius: 50%;
}

/* Achievements */
#achievements ul { list-style: none; padding: 0; }
#achievements li {
  background: #fff0f3;
  margin: 10px 0;
  padding: 12px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* Footer */
footer {
  background: #ffe5ec;
  color: #444;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}
