/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f5fafa;
  color: #2c3e50;
  line-height: 1.6;
  padding: 20px;
}
.profile-pic {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin-top: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  border: 4px solid #DFF5EA; /* light mint border */
}

a {
  color: #3498db;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

header, section, footer {
  margin-bottom: 30px;
  padding: 20px;
  border-radius: 12px;
}

header {
  background-color: #e0f7f4;
  text-align: center;
  color: #154c52;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  text-align: center;

}

.about {
  background-color: #e8f1f0;
  align-items: center;
}

.skills {
  background-color: #d6f5ef;
  text-align: center;
}

.skills-grid ul {
  list-style-type: none;
  display: inline-block;
  text-align: left;
  padding-left: 0;
}

.skills-grid li {
  padding: 6px 0;
}

.projects {
  background-color: #ebf6f5;
}

.project-card {
  background-color: #ffffff;
  border-left: 6px solid #90d5d1;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: scale(1.02);
  background-color: #f0fbfa;
}
.project-link {
  display: inline-block;
  margin-top: 10px;
  color: #3A6B35;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.project-link:hover {
  text-decoration: underline;
  color: #2c4c25;
}


.education, .soft-skills {
  background-color: #e0f0ee;
}

.education ul, .soft-skills ul {
  list-style-type: disc;
  padding-left: 20px;
}
.resume-btn {
  display: inline-block;
  padding: 12px 20px;
  margin-top: 20px;
  background-color: #3A6B35; /* calm green */
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.resume-btn:hover {
  background-color: #588157;
}


footer {
  text-align: center;
  background-color: #c9eae6;
  font-style: italic;
  color: #145b5b;
}
