body {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  background: linear-gradient(to bottom, #0E0B21, #1f1849, #4B3DDD);
  color: white;
  min-height: 100vh;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(2px 2px at 15px 25px, #fff, transparent),
    radial-gradient(1px 1px at 85px 140px, #fff, transparent),
    radial-gradient(2px 2px at 220px 60px, #fff, transparent),
    radial-gradient(1px 1px at 350px 180px, #fff, transparent),
    radial-gradient(1px 1px at 480px 35px, #fff, transparent),
    radial-gradient(2px 2px at 620px 120px, #fff, transparent),
    radial-gradient(1px 1px at 750px 190px, #fff, transparent),
    radial-gradient(1px 1px at 880px 45px, #fff, transparent),
    radial-gradient(2px 2px at 1020px 165px, #fff, transparent),
    radial-gradient(1px 1px at 1150px 85px, #fff, transparent),
    radial-gradient(1px 1px at 1280px 210px, #fff, transparent),
    radial-gradient(2px 2px at 1420px 95px, #fff, transparent),
    radial-gradient(1px 1px at 65px 270px, #fff, transparent),
    radial-gradient(1px 1px at 195px 320px, #fff, transparent),
    radial-gradient(2px 2px at 325px 240px, #fff, transparent),
    radial-gradient(1px 1px at 455px 350px, #fff, transparent),
    radial-gradient(1px 1px at 585px 280px, #fff, transparent),
    radial-gradient(2px 2px at 715px 330px, #fff, transparent);
  background-repeat: repeat;
  background-size: 1500px 400px;
  animation: twinkle 4s ease-in-out infinite alternate;
}

@keyframes twinkle {
  0% {
    opacity: 0.8;
  }

  100% {
    opacity: 1;
  }
}

.navbar,
.hero,
.mission,
.social,
.footer {
  position: relative;
  z-index: 1;
}

.navbar {
  display: flex;
  justify-content: space-between;
  background-color: #0d0d33;
  padding: 1rem 2rem;
  font-size: 14px;
  z-index: 9999;
  /* Added for dropdown */
}

.navbar .logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: bold;
}

.navbar .logo img {
  height: 50px;
  width: auto;
}

.navbar .nav-links {
  display: flex;
  gap: 1.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.navbar .nav-links a {
  text-decoration: none;
  color: white;
  transition: 0.3s;
}

.navbar .nav-links a:hover {
  color: #00ffe5;
}

/* DROPDOWN STYLES - ADDED */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(13, 13, 51, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 255, 229, 0.3);
  border-radius: 8px;
  min-width: 160px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  margin-top: 10px;
}

.dropdown-content a {
  display: block;
  padding: 12px 16px;
  color: white;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
  background: rgba(0, 255, 229, 0.2);
  color: #00ffe5;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown>a::after {
  content: ' ▼';
  font-size: 0.8em;
  margin-left: 5px;
}

.hero {
  position: relative;
  height: 80vh;
  background: url('../images/lightsail.png') no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-overlay {
  background: transparent,
}

.hero h1 {
  font-size: 3.5rem;
  color: #ffffff;
  text-transform: uppercase;
  font-family: 'Orbitron', sans-serif;
  margin: 0;
}

.mission {
  text-align: center;
  padding: 3rem 2rem;
}

.mission h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.mission p {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.mission a {
  color: #00ffe5;
  text-decoration: none;
  transition: 0.3s;
}

.mission a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.mission-points {
  display: flex;
  justify-content: space-around;
  padding-top: 2rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.mission-points div {
  max-width: 300px;
  margin: 1rem;
  text-align: left;
}

.mission-points h3 {
  font-size: 1.2rem;
  color: #00ffe5;
  margin-bottom: 1rem;
}

.mission-points p {
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}

.social {
  text-align: center;
  padding: 3rem 2rem;
}

.social h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.social-grid {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.social-username {
  font-size: 1.4rem;
  margin-top: 50px;
  color: #ffffff;
  font-family: 'Orbitron', sans-serif;
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
}

.insta-post {
  width: 100px;
  height: 100px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px solid #00ffe5;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.insta-post:hover {
  transform: scale(1.05);
  background-color: rgba(0, 255, 229, 0.1);
}

.social p {
  font-size: 1.2rem;
  margin-top: 1rem;
  color: #00ffe5;
}

.footer {
  background-color: #0a0a1a;
  padding: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 14px;
}

.footer-left,
.footer-right {
  flex: 1 1 300px;
}

.footer-right {
  display: flex;
  justify-content: space-around;
}

.footer-right h4 {
  margin-bottom: 0.5rem;
  color: #00ffe5;
}

.footer-right ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-right ul li {
  margin-bottom: 0.3rem;
  cursor: pointer;
  transition: 0.3s;
}

.footer-right ul li:hover {
  color: #00ffe5;
}

.footer .logo img {
  height: 200px;
  width: 200px;
}

.social-icons {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.social-icons img {
  width: 24px;
  height: 24px;
  transition: 0.3s;
}

.social-icons img:hover {
  transform: scale(1.2);
  filter: brightness(1.3);
}

.copyright {
  text-align: center;
  width: 100%;
  padding-top: 1rem;
  font-size: 12px;
  color: #aaa;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 1rem;
}

/* responsive Design */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .navbar .nav-links {
    justify-content: center;
    flex-wrap: wrap;
  }

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

  .hero-overlay {
    padding: 1.5rem;
  }

  .mission-points {
    flex-direction: column;
    align-items: center;
  }

  .mission-points div {
    max-width: 100%;
    text-align: center;
  }

  .social-grid {
    gap: 0.5rem;
  }

  .insta-post {
    width: 80px;
    height: 80px;
  }

  .footer {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .footer-right {
    flex-direction: column;
    gap: 2rem;
  }

  /* dropdown responsive */
  .dropdown-content {
    position: static;
    display: block;
    background: rgba(13, 13, 51, 0.8);
    margin-top: 0.5rem;
    border-radius: 4px;
  }

  .dropdown:hover .dropdown-content {
    display: block;
  }
}