@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;700&family=Poppins:wght@300;400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #0a0a0a;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  min-height: 100vh;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 8%;
  background: rgba(10, 10, 10, 0.9);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
}

.logo span {
  color: #ff004c;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  transition: 0.3s;
  font-weight: 500;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ff004c;
}

/* Hero Section */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8% 10%;
  flex-wrap: wrap;
  gap: 50px;
}

.text-section {
  flex: 1 1 500px;
}

.text-section h1 {
  font-size: 2.8rem;
  font-family: 'Orbitron', sans-serif;
  line-height: 1.3;
  margin-bottom: 15px;
}

.text-section h1 .highlight {
  color: #ff004c;
}

.text-section h2 {
  font-weight: 600;
  color: #ccc;
  margin-bottom: 20px;
}

.text-section p {
  color: #aaa;
  line-height: 1.8;
  margin-bottom: 35px;
}

.buttons {
  display: flex;
  gap: 20px;
}

.btn {
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn.primary {
  background-color: #ff004c;
  color: #fff;
}

.btn.primary:hover {
  background-color: #ff3369;
}

.btn.secondary {
  border: 2px solid #ff004c;
  color: #ff004c;
}

.btn.secondary:hover {
  background-color: #ff004c;
  color: #fff;
}

/* Profile Image */
.image-section {
  flex: 1 1 350px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.neon-border {
  position: relative;
  padding: 20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,0,76,0.5) 0%, rgba(255,0,76,0) 70%);
  box-shadow: 0 0 40px #ff004c;
  animation: pulse 2.5s infinite;
}

.neon-border img {
  width: 270px;
  height: 270px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #ff004c;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 40px #ff004c;
  }
  50% {
    box-shadow: 0 0 80px #ff004c;
  }
  100% {
    box-shadow: 0 0 40px #ff004c;
  }
}

/* Customizable Highlight */
.editable {
  display: block;
  color: #ffcc00;
  font-size: 0.85rem;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
/* Navbar Styles */
header {
  width: 100%;
  background: transparent;
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo a {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: #ff004f;
}
/* Navbar */
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  padding: 25px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  z-index: 100;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo a {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: #ff004f;
}

/* Centered Skills Section */
.skills-section {
  text-align: center;
  margin-top: 180px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.skills-section h1 {
  font-size: 2.8rem;
  color: #ff004f;
  margin-bottom: 10px;
}

.skills-section p {
  font-size: 1.1rem;
  color: #ccc;
}

.skills-list {
  margin-top: 40px;
}

.skill {
  margin: 30px 0;
}

.skill h2 {
  color: #ff004f;
  font-size: 1.5rem;
}

.skill p {
  color: #aaa;
  font-size: 1rem;
}
/* Centered sections for About & Contact */
.about-section, .contact-section {
  text-align: center;
  margin-top: 180px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.about-section h1, .contact-section h1 {
  font-size: 2.8rem;
  color: #ff004f;
  margin-bottom: 20px;
}

.about-section p, .contact-section p {
  color: #ccc;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* About Content */
.about-content p {
  margin-top: 25px;
}

/* Contact Form */
.contact-form {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  max-width: 500px;
  padding: 12px;
  border: 2px solid #ff004f;
  border-radius: 10px;
  background-color: #111;
  color: #fff;
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  box-shadow: 0 0 10px #ff004f;
}

.contact-form button {
  background-color: transparent;
  color: #ff004f;
  border: 2px solid #ff004f;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  background-color: #ff004f;
  color: #fff;
  box-shadow: 0 0 20px #ff004f;
}
/* Page Fade In/Out Animation */
body {
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

body.fade-in {
  opacity: 1;
}

/* Optional smoother transitions for links */
a {
  transition: color 0.3s ease, opacity 0.3s ease;
}
