body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #111;
  color: #fff;
}

header {
  text-align: center;
  padding: 40px 20px;
  background-color: #1f1f1f;
}

section {
  padding: 30px 20px;
  max-width: 800px;
  margin: auto;
}

h2 {
  border-bottom: 2px solid #262344;
  padding-bottom: 10px;
}

nav {
  background: #000;
  padding: 10px;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 0;
}

nav a {
  text-decoration: none;
  color: white;
  font-weight: bold;
}

nav a:hover {
  color: hsl(262, 44%, 15%);
}
.hero {
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(135deg,#111,#1f1f1f);
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero p {
  color: #aaa;
  margin-bottom: 20px;
}

.btn {
  background: #00adb5;
  color: white;
  padding: 12px 20px;
  text-decoration: none;
  border-radius: 5px;
}

.btn:hover {
  background: #008c93;
}
html {
  scroll-behavior: smooth;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 20px;
}

.project-card {
  background: #1a1a1a;
  padding: 20px;
  border-radius: 8px;
  transition: transform 0.2s;
}

.project-card:hover {
  transform: translateY(-5px);
}
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(120px,1fr));
  gap: 15px;
  margin-top: 20px;
}

.skill {
  background: #1a1a1a;
  padding: 15px;
  text-align: center;
  border-radius: 6px;
  transition: 0.2s;
}

.skill:hover {
  background: #00adb5;
  transform: scale(1.05);
}
.skill i {
  font-size: 40px;
  margin-bottom: 10px;
}
#particles {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
  left: 0;
}
.profile-pic {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #00adb5;
  margin-bottom: 20px;
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}