
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: #0a192f;
  color: #ccd6f6;
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  scroll-behavior: smooth;
  padding-left: 80px;
  padding-right: 80px;
}


nav {
  position: fixed;
  top: 0;
  right: 0;
  background: #0a192f;
  width: 100%;
  padding: 20px 100px;
  z-index: 1000;
}
.nav-links {
  display: flex;
  justify-content: flex-end;
  gap: 30px;
}
.nav-links a {
  color: #64ffda;
  text-decoration: none;
  font-size: 14px;
}
.resume-btn {
  border: 1px solid #64ffda;
  padding: 5px 10px;
  border-radius: 4px;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 100px;
}
.intro {
  color: #64ffda;
  font-size: 18px;
}
.name {
  font-size: 55px;
  color: #ccd6f6;
}
.subtitle {
  font-size: 45px;
  color: #8892b0;
}
.description {
  margin-top: 20px;
  max-width: 600px;
  color: #8892b0;
}

/* Section */
.section {
  padding: 100px 0;
}
.section h2 {
  font-size: 28px;
  color: #64ffda;
  margin-bottom: 20px;
}
.section h3 {
  font-size: 20px;
  margin-top: 20px;
  color: #ffffff;
}
.section ul {
  padding-left: 20px;
  color: #8892b0;
}
.section p, li {
  color: #8892b0;
}

/* Social Links - Left */
.social-links {
  position: fixed;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.social-links a {
  color: #64ffda;
  font-size: 20px;
}

/* Email - Right */
.email-vertical {
  position: fixed;
  right: -80px;
  top: 50%;
  transform: rotate(90deg);
  font-size: 14px;
}
.email-vertical a {
  color: #64ffda;
  text-decoration: none;
}
