body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #f7f9fc;
  color: #1a1a1a;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 2rem;
}

.section {
  margin-top: 3rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Updated Hero Section */
.hero {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  flex-wrap: wrap;
  gap: 2rem;
}

.profile {
  flex: 1;
  display: flex;
  justify-content: center;
}

.profile-pic {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.intro {
  flex: 2;
}

.intro h1 {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
}

.intro h1 span {
  color: #000508;
}

.intro h2 {
  font-size: 1.5rem;
  font-weight: 500;
  color: #444;
}

.intro p {
  max-width: 600px;
  margin-top: 1rem;
  font-size: 1.1rem;
  color: #555;
}

.buttons {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.btn {
  padding: 0.6rem 1.2rem;
  font-size: 0.95rem;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
}

.btn.primary {
  background-color: #0077cc;
  color: white;
  border: none;
}

.btn.secondary {
  border: 2px solid #0077cc;
  color: #0077cc;
  background-color: transparent;
}

.cards {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  background-color: white;
  padding: 1.5rem;
  border-left: 5px solid #0077cc;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.skills-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0;
  justify-content: center;
  margin-top: 1rem;
}

.skills-list li {
  background-color: #e6f0fa;
  color: #0077cc;
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.skills-list li:hover {
  background-color: #0077cc;
  color: white;
  transform: scale(1.05);
  cursor: default;
}


footer {
  background-color: #f0f0f0;
  text-align: center;
  padding: 1rem;
  margin-top: 3rem;
}
