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

body {
  background: #0f172a;
  color: #fff;
}

/* HEADER */
.header {
  padding: 80px 20px;
  text-align: center;
  background: #020617;
}

.header h1 {
  font-size: 40px;
  margin-bottom: 10px;
}

/* SECTIONS */
section {
  max-width: 900px;
  margin: auto;
  padding: 80px 20px;
}

h2 {
  font-size: 30px;
  margin-bottom: 25px;
  text-align: center;
}

.about p {
  margin-bottom: 15px;
  color: #cbd5f5;
  line-height: 1.6;
}

/* SKILLS */
.skill {
  margin-bottom: 20px;
}

.skill span {
  display: block;
  margin-bottom: 5px;
}

.bar {
  height: 10px;
  background: #1e293b;
  border-radius: 10px;
  overflow: hidden;
}

.bar div {
  height: 100%;
  width: 0;
  background: #38bdf8;
}

/* PROJECTS */
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.project {
  padding: 20px;
  background: #020617;
  border-radius: 12px;
  text-decoration: none;
  color: white;
  transition: 0.5s;
}

.project:hover {
  transform: translateY(-20px);
  background: linear-gradient(135deg,#22d3ee,#ec4899);
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  background: #020617;
  color: #94a3b8;
}
