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

.hero {
  height: 100vh;
  background: linear-gradient(145deg, #000000, #001a33);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-text h1 {
  font-size: 3em;
  color: #00aaff;
}

.scroll-btn {
  margin-top: 1em;
  padding: 0.5em 1.5em;
  background-color: #00aaff;
  border-radius: 30px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  transition: background 0.3s;
}

.scroll-btn:hover {
  background-color: #008fcc;
}

.profile-pic {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #00aaff;
  margin-bottom: 1em;
}

nav {
  background-color: #111;
  text-align: center;
  padding: 1em;
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

nav li {
  display: inline-block;
  margin: 0 1em;
}

nav a {
  color: #00aaff;
  font-weight: bold;
  text-decoration: none;
}

nav a:hover {
  color: #fff;
}

.section {
  padding: 3em 1em;
  max-width: 900px;
  margin: auto;
}

h2 {
  color: #00aaff;
  border-bottom: 2px solid #00aaff;
  padding-bottom: 0.5em;
}

.skill-bar {
  margin-bottom: 1em;
}

.bar {
  background-color: #333;
  border-radius: 4px;
  overflow: hidden;
  height: 20px;
}

.fill {
  height: 100%;
  line-height: 20px;
  text-align: right;
  color: #fff;
  padding-right: 8px;
}

.fill.html { width: 75%; background-color: #00aaff; }
.fill.css { width: 60%; background-color: #009fd9; }
.fill.js { width: 50%; background-color: #007fad; }
.fill.word { width: 80%; background-color: #005f8a; }

.project-item {
  background-color: #1a1a1a;
  padding: 1em;
  margin: 1em 0;
  border-left: 4px solid #00aaff;
  border-radius: 6px;
}

.project-item img {
  width: 100%;
  max-width: 500px;
  border-radius: 5px;
  margin-top: 1em;
  border: 2px solid #00aaff;
}

.contact a {
  color: #00aaff;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

.popup {
  display: none;
  position: fixed;
  z-index: 100;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.7);
}

.popup-content {
  background: #1c1c1c;
  color: #fff;
  padding: 20px;
  margin: 10% auto;
  width: 90%;
  max-width: 500px;
  border: 2px solid #00aaff;
  border-radius: 10px;
}

.close-btn {
  float: right;
  font-size: 24px;
  cursor: pointer;
  color: #00aaff;
}

footer {
  background: #111;
  text-align: center;
  padding: 1em;
  border-top: 2px solid #00aaff;
}
.popup-content {
  transition: all 0.3s ease;
}
#contact i {
  color: #00aaff;
  margin-right: 8px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1em;
  max-width: 500px;
  margin-top: 1em;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8em;
  border: none;
  border-radius: 6px;
  background: #1e1e1e;
  color: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid #00aaff;
  background: #252525;
}


