body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
}
header {
  background: linear-gradient(to right, #007bff, #00c6ff);
  color: white;
  padding: 60px 20px;
  text-align: center;
}
header h1 {
  margin: 10px 0;
  font-size: 2.5em;
}
header p {
  margin: 5px 0;
  font-size: 1.1em;
}
nav {
  background-color: #333;
  padding: 15px;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 10;
}
nav a {
  color: white;
  margin: 0 20px;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}
nav a:hover {
  color: #007bff;
}
section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 30px;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}
section:hover {
  transform: translateY(-5px);
}
h2 {
  color: #007bff;
  font-size: 1.8em;
  margin-bottom: 20px;
  border-bottom: 2px solid #eee;
  padding-bottom: 10px;
}
ul {
  list-style-type: none;
  padding: 0;
}
ul li {
  margin: 15px 0;
  padding: 15px;
  background: #f1f1f1;
  border-radius: 8px;
  transition: background 0.3s;
}
ul li:hover {
  background: #e0e0e0;
}
ul li strong {
  color: #007bff;
}
a {
  color: #007bff;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
.skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.skills-list span {
  background: #007bff;
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9em;
}
footer {
  text-align: center;
  padding: 20px;
  background-color: #333;
  color: white;
  font-size: 0.9em;
}
@media (max-width: 768px) {
  header {
    padding: 40px 10px;
  }
  nav a {
    margin: 0 10px;
    font-size: 0.9em;
  }
  section {
    padding: 20px;
    margin: 20px;
  }
}
