* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #0d1117;
  color: #e6edf3;
  line-height: 1.6;
}

header {
  text-align: center;
  padding: 50px 20px;
}

header h1 {
  font-size: 2.5rem;
}

header p {
  color: #8b949e;
}

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

h2 {
  margin-bottom: 20px;
  border-bottom: 2px solid #30363d;
  padding-bottom: 10px;
}

.skill-box, .project {
  background: #161b22;
  padding: 20px;
  margin: 15px 0;
  border-radius: 10px;
  transition: transform 0.2s;
}

.skill-box:hover, .project:hover {
  transform: translateY(-5px);
}

footer {
  text-align: center;
  padding: 20px;
  color: #8b949e;
}

a {
  color: #58a6ff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.project-links {
  margin-top: 10px;
}

.project-links a {
  display: inline-block;
  margin-right: 10px;
  padding: 8px 14px;
  background: #238636;
  color: white;
  border-radius: 6px;
  font-size: 0.9rem;
}

.project-links a:hover {
  background: #2ea043;
}
#projects {
  padding: 40px;
}

.project-card {
  background: #111;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  transition: transform 0.2s ease;
}

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

.project-card h3 {
  margin-bottom: 10px;
}

.project-desc {
  margin-bottom: 10px;
  color: #ccc;
}

.project-card ul {
  margin-left: 20px;
  margin-bottom: 15px;
}

.project-links a {
  display: inline-block;
  margin-right: 10px;
  padding: 6px 12px;
  border-radius: 6px;
  background: #333;
  text-decoration: none;
  color: white;
}

.project-links a:hover {
  background: #555;
}

.tag {
  font-size: 0.8em;
  color: #888;
}