body {
  font-family: 'Nunito', sans-serif;
  margin: 0;
  background-color: white;
  color: black;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.name {
  font-weight: bold;
  font-size: 1.2rem;
  color: inherit;
  color: #5E17EB;
}

.nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.nav a {
  text-decoration: none;
  color: #5E17EB;
  font-weight: bold;
  font-size: 1.1rem;
}

.nav a:hover {
  color: #956ce7;
}

hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 20px 0 40px;
}

h1 {
  font-size: 1.8rem;
  margin-bottom: 0.5em;
}

h2 {
  font-size: 1.4rem;
  margin-top: 2em;
}

p {
  line-height: 1.6;
  font-size: 1rem;
  margin-bottom: 1em;
}
ul {
  padding-left: 10px;
  list-style-type: square;
}
hr {
  border: none;
  height: 0.5px; 
  background-color: #000; 
  margin: 2em 0;
}
.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
  padding: 1em;
}

.image-grid img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.image-grid img:hover {
  transform: scale(1.03);
}
.research-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2em;
  align-items: start;
  padding: 2em;
  grid-auto-flow: dense; 
}

.project {
  text-align: center;
}

.project img {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-top: 0.5em;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.project img:hover {
  transform: scale(1.05);
}

.project-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  margin: 3rem auto;
  padding: 0 1rem;
  max-width: 1000px;
}

.project-card {
  background-color: #fdfdfd;
  padding: 1.75rem;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #444;
  transition: transform 0.2s;
}

.project-card:hover {
  transform: translateY(-4px);
}

.project-card h2 {
  margin-top: 0;
  font-size: 1.4rem;
}

.project-card p {
  margin: 0.5rem 0 1rem;
  font-size: 0.95rem;
  color: #333;
}

.tech-bullets {
  list-style-type: disc;
  padding-left: 1.2rem;
  margin-bottom: 1rem;
  color: #555;
  font-size: 0.9rem;
}

.project-card a {
  font-weight: 600;
  color: #0066cc;
  text-decoration: none;
}

.project-card a:hover {
  text-decoration: underline;
}

.skills-section {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}

.skills-section h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.pill-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.pill {
  padding: 6px 14px;
  background-color: #f0f0f0;
  border-radius: 9999px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #333;
  display: inline-block;
}

.skills-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
  font-size: 0.95rem;
  color: #333;
  gap: 10px;
  line-height: 1.6;
  text-align: center;
  padding: 0 20px;
}
.skills-row span {
  white-space: nowrap;
}



