* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
  color: #333;
}

header {
  background: #0e153a;
  color: white;
  padding: 1rem 0;
  text-align: center;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  flex-wrap: wrap;
}

nav h1 {
  font-size: 1.8rem;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}
.profile-pic {
  width: 100px;       /* Decreased from 150px */
  height: 100px;      /* Decreased from 150px */
  border-radius: 50%; /* Keeps it circular */
  object-fit: cover;
  border: 3px solid white;
  margin-bottom: 20px;
}


.hero {
  padding: 1px 2rem;
}

.hero h2 {
  font-size: 3.5rem;
}

.hero p {
  margin-top: 0.5rem;
  font-size: 1.2rem;
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.6rem 1.2rem;
  background-color: #ff4c60;
  color: white;
  border-radius: 4px;
  text-decoration: none;
}

section {
  padding: 2rem;
  text-align: center;
}

.skills-list {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.skills-list li {
  background-color: #0e153a;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 5px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.project-card {
  background: white;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

footer {
  background: #0e153a;
  color: white;
  text-align: center;
  padding: 1rem 0;
  margin-top: 2rem;
}


