body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background: #fafafa;
  color: #333;
}

/* Header */
header {
  background: #7E57C2;
  color: #fff;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.logo { font-weight: bold; font-size: 1.4rem; }
nav a {
  color: #fff;
  text-decoration: none;
  margin: 5px 10px;
  font-weight: 500;
}
nav a.active, nav a:hover { text-decoration: underline; }

/* Layout */
main { padding: 40px 20px; max-width: 1000px; margin: auto; }
.about h1, .developer h2 {
  text-align: center;
  color: #7E57C2;
  margin-bottom: 25px;
}
.content {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Profile Image */
.profile-img {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  box-shadow: 0 0 25px rgba(126, 87, 194, 0.5);
  object-fit: cover;
  border: 4px solid #fff;
}
.text { flex: 1; min-width: 300px; }
.text p { line-height: 1.7; margin-bottom: 18px; }

/* Developer Section */
.developer { margin-top: 50px; }
.dev-card {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  flex-wrap: wrap;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}
.image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.image-wrap::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(126,87,194,0.4), transparent 70%);
  z-index: 0;
}
.dev-img {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 0 20px rgba(126, 87, 194, 0.5);
  object-fit: cover;
  z-index: 1;
}

/* Developer Info */
.dev-info { flex: 1; min-width: 300px; }
.dev-info h3 { margin: 0 0 10px; color: #7E57C2; font-size: 1.4rem; }
.dev-info p { line-height: 1.6; margin-bottom: 14px; }
.skills { list-style: none; padding: 0; margin: 10px 0; }
.skills li {
  margin: 6px 0;
  padding: 8px 12px;
  background: #f5f2fb;
  border-left: 4px solid #7E57C2;
  border-radius: 6px;
}

/* Footer */
footer {
  background: #f4f4f4;
  padding: 18px;
  text-align: center;
  color: #555;
  margin-top: 28px;
}

/* Responsive */
@media (max-width: 700px) {
  .profile-img, .dev-img { width: 180px; height: 180px; }
  .image-wrap::before { width: 180px; height: 180px; }
}
