
body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background-color: #0d0d0d;
  color: #fff;
}
header {
  background-color: #111;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}
header h1 {
  margin: 0;
  color: #ff6f61;
}
nav a {
  color: #00d1ff;
  margin-left: 20px;
  text-decoration: none;
  font-weight: bold;
}
section {
  padding: 80px 40px;
}
#hero {
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(135deg, #1f1f1f, #111);
}
h2 {
  color: #ff6f61;
  margin-bottom: 20px;
}
.skill-bar {
  margin-bottom: 15px;
}
.skill-bar span {
  display: block;
  margin-bottom: 5px;
}
.bar {
  background: #222;
  border-radius: 5px;
  overflow: hidden;
}
.fill {
  height: 20px;
  background: #00d1ff;
  width: 0;
  transition: width 1s ease-in-out;
}
.projects-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.project {
  flex: 1 1 200px;
  background: #1a1a1a;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s;
}
.project:hover {
  transform: scale(1.05);
}
a {
  color: #ff6f61;
}
