body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  color: #333;
}

header {
  text-align: center;
  padding: 40px 20px;
  background-color: #282c34;
  color: white;
}

.profile-pic {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 4px solid white;
  object-fit: cover;
  margin-bottom: 10px;
}

nav {
  background-color: #ff6600;
  text-align: center;
  padding: 10px 0;
}

nav a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: #000;
}

section {
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
}

h2 {
  margin-bottom: 20px;
  font-size: 1.8rem;
  color: #ff6600;
}

.about-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.about-image img {
  width: 200px;
  border-radius: 12px;
}

.skills-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  font-size: 1.1rem;
}

.skills-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f2f2f2;
  padding: 10px 15px;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.skills-list li i {
  font-size: 1.5rem;
  color: #ff6600;
}

.skills-list li:hover {
  background: #e0e0e0;
}

footer {
  text-align: center;
  background-color: #282c34;
  color: white;
  padding: 20px;
  font-size: 0.9rem;
}

a {
  color: #ff6600;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
