/* Global Styles */
body {
  font-family: 'Roboto', sans-serif;
  background: #F9FAFB;
  color: #111827;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

/* Header */
.header {
  background: linear-gradient(135deg, #1E3A8A, #0F172A);
  color: #fff;
  text-align: center;
  padding: 4rem 2rem;
}
.heading-primary span {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 700;
}
.header p {
  font-size: 1.2rem;
  margin-top: 1rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn--pink {
  background: #F43F5E;
  color: #fff;
}
.btn--pink:hover {
  background: #BE123C;
  transform: scale(1.05);
}

/* Sections */
section {
  padding: 4rem 2rem;
}
h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #1E3A8A;
  text-align: center;
}

/* Skills */
.skills ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.skills li {
  background: #10B981;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}
.skills li:hover {
  transform: translateY(-5px);
}

/* Experience Cards */
.exp__item {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}
.exp__item:hover {
  transform: translateY(-5px);
}

/* Footer */
.footer {
  background: #0F172A;
  color: #fff;
  text-align: center;
  padding: 2rem;
}
.footer__social-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.footer__social-links img {
  width: 28px;
  transition: transform 0.3s ease;
}
.footer__social-links img:hover {
  transform: scale(1.2);
}
section.about {
  text-align: center;
}
.contact-section {
  text-align: center;
}
