
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: linear-gradient(120deg, #330144, #203a43, #d07070);
  color: white;
  scroll-behavior: smooth;
}
header {
  padding: 1rem;
  background-color: rgba(0, 0, 0, 0.3);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}
nav a {
  color: white;
  font-size: 1.5rem;
}
.hero {
  padding-top: 100px;
  text-align: center;
}
.profile-pic {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 3px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  margin-bottom: 1rem;;
}
.profile-pic:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.6);
}
.about, .skills, .contact {
  padding: 2rem;
  text-align: center;
}
.skills ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding: 0;
}
.skills li {
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 15px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.work-experience h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  letter-spacing: 2px;
}
.experience-box {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.2rem;
  border-radius: 15px;
  margin: 1rem auto;
  max-width: 600px;
  text-align: left;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}
.experience-box:hover {
  transform: scale(1.03);
  background: rgba(255, 255, 255, 0.2);
}
.experience-box h3 {
  color: #ffd966;
  margin-bottom: 0.5rem;
}
.experience-box p {
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.5;
}
.ending {
  text-align: center;
  margin: 3rem 0 2rem;
  font-size: 1.8rem;
  letter-spacing: 3px;
  font-weight: bold;
  color: #ffd966;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

footer {
  text-align: center;
  padding: 1rem;
  font-style: italic;
}
