body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #f7f9fb;
  color: #333;
}

header {
  background-color: #4a90e2;
  color: white;
  text-align: center;
  padding: 2rem 1rem;
}

nav {
  display: flex;
  justify-content: center;
  background-color: #eee;
  padding: 1rem;
}

nav a {
  margin: 0 1rem;
  text-decoration: none;
  color: #4a90e2;
  font-weight: bold;
}

section {
  padding: 2rem;
  max-width: 800px;
  margin: auto;
}

h2 {
  color: #4a90e2;
}

footer {
  text-align: center;
  background-color: #ddd;
  padding: 1rem;
  font-size: 0.9rem;
}
.education-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.edu-item {
  background-color: #ffffff;
  border: 1px solid #ccc;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.edu-item h3 {
  color: #333;
  margin-bottom: 0.5rem;
}

.edu-item p {
  margin: 0.3rem 0;
}
#career {
  /* background-color: #ffffff;
  padding: 2rem; */
  /* border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd; */
}

#career p {
  line-height: 1.6;
  font-size: 1rem;
}
#about p {
  margin-bottom: 1rem;
  line-height: 1.6;
}
.project-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.project-card {
  background-color: #ffffff;
  padding: 1.2rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.project-card h3 {
  color: #333;
  margin-bottom: 0.5rem;
}

.project-card p {
  margin: 0.5rem 0;
  line-height: 1.5;
}
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.skill-category {
  background-color: #ffffff;
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.skill-category h3 {
  color: #333;
  margin-bottom: 0.5rem;
}

.skill-category ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.skill-category ul li {
  margin-bottom: 0.4rem;
  padding-left: 1em;
  position: relative;
}

.skill-category ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #4a90e2;
  font-weight: bold;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
  text-align: center;
}

.contact-item {
  background-color: #ffffff;
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-5px);
}

.contact-item i {
  font-size: 1.8rem;
  color: #4a90e2;
  margin-bottom: 0.5rem;
}

.contact-item p {
  margin: 0.3rem 0;
  font-weight: bold;
}

.contact-item a {
  text-decoration: none;
  color: #333;
  word-break: break-word;
}

.contact-item a:hover {
  color: #4a90e2;
  text-decoration: underline;
}
.resume-button {
  margin-top: 2rem;
  text-align: center;
}

.resume-button a {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #4a90e2;
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.resume-button a i {
  margin-right: 0.5rem;
}

.resume-button a:hover {
  background-color: #357ab8;
}

