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

body {
  font-family: 'Segoe UI', sans-serif;
  background: #0e0e0e;
  color: #fff;
}

a {
  text-decoration: none;
  color: inherit;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #1a1a1a;
  padding: 20px 10%;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 1.6rem;
  color: #00fff2;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links li a {
  color: #fff;
  transition: 0.3s;
}

.nav-links li a:hover {
  color: #00fff2;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: #00fff2;
  cursor: pointer;
}

.hero {
  text-align: center;
  padding: 60px 10%;
  background: linear-gradient(145deg, #121212, #1a1a1a);
}

.hero-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 4px solid #00fff2;
  box-shadow: 0 0 15px #00fff2;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 2rem;
  margin: 10px 0;
}

.email {
  color: #00fff2;
  margin-top: 5px;
}

.social-box {
  margin-top: 15px;
}

.social-box a {
  margin: 0 10px;
  font-size: 1.6rem;
  color: #00fff2;
  transition: 0.3s;
}

.social-box a:hover {
  color: #01c9c0;
}

.about-skills {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 50px 10%;
  gap: 40px;
}

.about, .skills {
  flex: 1;
  min-width: 280px;
}

.about h2, .skills h2 {
  color: #00fff2;
  margin-bottom: 15px;
}

.skills ul {
  list-style: none;
}

.skills li {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.section {
  padding: 60px 10%;
  text-align: center;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.project-card {
  background: #1d1d1d;
  padding: 20px;
  border-radius: 12px;
  border-left: 4px solid #00fff2;
}

#contact p {
  margin-top: 10px;
}

footer {
  text-align: center;
  background: #111;
  padding: 20px;
  color: #aaa;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 1rem;
    background: #1a1a1a;
    position: absolute;
    top: 70px;
    right: 10%;
    padding: 10px 20px;
    border-radius: 8px;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .about-skills {
    flex-direction: column;
  }

  .hero h1 {
    font-size: 1.5rem;
  }
}
