body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background: #f8f9fa;
  color: #333;
}

.section {
  padding: 60px 0;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

.header {
  background: #222;
  color: white;
  padding: 40px 0;
}

.header-container {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.profile-img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
}

.header-text h1 {
  font-size: 2.5rem;
  margin: 0;
}

.header-text h2 {
  font-weight: 400;
  margin-top: 5px;
}

.header-buttons {
  margin-top: 15px;
}

.btn {
  display: inline-block;
  padding: 10px 18px;
  margin-right: 10px;
  background: #0077b5;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.95rem;
}

.btn i {
  margin-right: 6px;
}

.btn:hover {
  background: #005f87;
}

.about, .skills, .experience, .projects, .contact {
  background: white;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 30px;
}

.skills-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
  list-style: none;
  padding: 0;
}

.skills-list li {
  background: #e9ecef;
  padding: 8px;
  border-radius: 6px;
  text-align: center;
}

.exp-item {
  margin-bottom: 20px;
}

.exp-company {
  font-weight: bold;
  color: #555;
}

.project-card {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.project-img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
}

.contact-links a {
  font-size: 1.8rem;
  margin-right: 15px;
  color: #333;
}

.contact-links a:hover {
  color: #0077b5;
}

.skills-list li {
  background-color: lightsalmon;
  font-weight: bold;
}
