/* Base Styles */
body {
  margin: 0;
  font-family: 'Segoe UI', Roboto, sans-serif;
  background: #000;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Navigation Bar */
.nav-header {
  background: #000;
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  box-sizing: border-box;
}

.logo-container {
  flex-shrink: 0;
  margin-left: -15px;
}

.logo-container h1 {
  color: #fff;
  font-size: 1.6rem;
  margin: 0;
  white-space: nowrap;
}

nav {
  display: flex;
  gap: 24px;
  flex-wrap: nowrap;
  overflow: hidden;
}

nav a {
  color: #aaa;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  white-space: nowrap;
}

nav a:hover {
  color: #fff;
}

/* Hero Section */
.hero-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 85vh;
  padding: 100px 20px 60px;
  background: #000;
}

.brand-name {
  font-size: 2.4rem;
  color: #007aff;
  font-weight: 700;
  margin: 20px 0;
  animation: fadeIn 1s ease-in-out forwards;
}

.slogan {
  font-size: 2.6rem;
  font-weight: 700;
  color: #fff;
  margin: 20px 0;
  animation: fadeIn 1.2s ease-in-out forwards;
}

.tagline {
  font-size: 1.2rem;
  color: #ccc;
  margin: 20px 0;
  max-width: 600px;
  animation: fadeIn 1.5s ease-in-out forwards;
}

.main-button {
  font-size: 1rem;
  padding: 14px 28px;
  background-color: #007aff;
  color: white;
  border: none;
  border-radius: 12px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  margin: 20px 0;
  opacity: 0;
  animation: fadeIn 2s ease-in-out forwards;
}

.main-button:hover {
  background-color: #005ecb;
}

/* Why BrightPath Section */
.why-brightpath {
  background: #111;
  color: #fff;
  padding: 60px 20px 80px;
  text-align: center;
}

.why-brightpath h2 {
  font-size: 2rem;
  margin-bottom: 24px;
  color: #fff;
  font-weight: 700;
}

.why-brightpath p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
  color: #ccc;
  line-height: 1.8;
}

/* Footer */
footer {
  text-align: center;
  color: #666;
  font-size: 0.9rem;
  padding: 20px 0;
  background-color: #111;
}

/* Animation */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .nav-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 20px;
  }

  .logo-container {
    margin: 0;
    padding-bottom: 8px;
  }

  .logo-container h1 {
    font-size: 1.4rem;
    color: white;
    text-align: left;
  }

  nav {
    justify-content: center;
    width: 100%;
    gap: 24px;
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  nav a {
    font-size: 1rem;
    white-space: nowrap;
  }

  .hero-center {
    padding-top: 70px;
    padding-bottom: 40px;
  }

  .brand-name,
  .slogan,
  .tagline,
  .main-button {
    margin: 20px 0;
    text-align: center;
  }
}

.quiz-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: #000;
  color: #fff;
  gap: 20px;
  font-size: 1.2rem;
}

.quiz-container label {
  font-weight: 600;
  margin-top: 10px;
}

.quiz-container select,
.quiz-container button {
  font-size: 1.1rem;
  padding: 10px 16px;
  border-radius: 8px;
  border: none;
  outline: none;
}

.quiz-container select {
  background: #1a1a1a;
  color: #fff;
  border: 1px solid #444;
  width: 260px;
}

.quiz-container button {
  background-color: #007aff;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.quiz-container button:hover {
  background-color: #005ecb;
}

.quiz-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 100vh;
  color: white;
  font-size: 1.3rem;
  gap: 24px;
}

.quiz-container select {
  padding: 10px 14px;
  font-size: 1rem;
  border-radius: 6px;
  border: none;
  background: #111;
  color: white;
  width: 240px;
}

.quiz-container button {
  font-size: 1rem;
  padding: 12px 24px;
  background-color: #007aff;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.quiz-container button:hover {
  background-color: #005ecb;
}
