* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif;
  background: #f9f9fc;
  color: #222;
}
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding: 60px 0;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(to right, #3a0ca3, #7209b7);
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}
.hero h1 {
  font-size: 48px;
}
.hero h1 span {
  color: #f72585;
}
.subtitle {
  margin: 15px 0;
  font-size: 20px;
}
.btn {
  display: inline-block;
  margin: 10px;
  padding: 12px 28px;
  background: #f72585;
  color: white;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}
.btn:hover {
  background: #b5179e;
}
.secondary {
  background: white;
  color: #7209b7;
  border: 2px solid #7209b7;
}
.secondary:hover {
  background: #eee;
}

/* ABOUT SECTION */
.about-content {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.profile-pic {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #7209b7;
}
.about p {
  font-size: 18px;
}

/* SKILLS */
.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}
.skill-tags span {
  background: #edf2f7;
  color: #3a0ca3;
  padding: 8px 15px;
  border-radius: 20px;
  font-weight: 500;
}

/* PROJECTS */
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}
.project-card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}
.project-card h3 {
  margin-bottom: 10px;
  color: #3a0ca3;
}
.project-card a {
  text-decoration: none;
  color: #f72585;
  font-weight: 500;
}

/* CONTACT */
.contact a {
  color: #7209b7;
  text-decoration: none;
}
.socials {
  margin-top: 15px;
}
.socials a {
  margin-right: 20px;
  color: #3a0ca3;
}

/* FOOTER */
.footer {
  text-align: center;
  background: #eee;
  padding: 20px 0;
  color: #555;
}