.hero-section {
  background-color: #1a1a1a;
  color: white;
  padding: 100px 0;
}
.profile-img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid white;
  margin-bottom: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.social-links a {
  color: white;
  font-size: 1.5rem;
  margin-right: 1rem;
  transition: color 0.3s;
}
.social-links a:hover {
  color: #007bff;
}
.skill-badge {
  background-color: #f8f9fa;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  margin: 0.25rem;
  display: inline-block;
}
.project-card {
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 1.5rem;
  height: 100%;
}
.tech-badge {
  background-color: #f8f9fa;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  margin: 0.25rem;
  display: inline-block;
  font-size: 0.875rem;
}
.contact-section {
  background-color: #1a1a1a;
  color: white;
  padding: 80px 0;
}
.footer {
  background-color: #1a1a1a;
  color: #6c757d;
  padding: 20px 0;
}
.profile-section {
  text-align: center;
}
@media (min-width: 768px) {
  .profile-section {
      text-align: left;
  }
  .hero-content {
      display: flex;
      align-items: center;
      gap: 3rem;
  }
}
.experience-item {
  padding: 2rem 0;
  border-bottom: 1px solid #dee2e6;
}
.experience-item:last-child {
  border-bottom: none;
}
.experience-date {
  color: #6c757d;
  font-weight: 500;
}
.experience-company {
  color: #0d6efd;
  font-weight: 500;
}
.experience-list {
  margin-top: 1rem;
  padding-left: 1.25rem;
}
.experience-list li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .profile-section {
      text-align: left;
  }
  .hero-content {
      display: flex;
      align-items: center;
      gap: 3rem;
  }
}