body, html {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  color: white;

}

#index-page, .home-page {
  position: relative;
}

#bgVideo {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: -1;
  filter: brightness(0.5);
}

.navbar {
  display: flex;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(0, 0, 0, 0.8);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: yellow;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  padding: 0.5rem;
  transition: background 0.3s, color 0.3s;
}

.nav-links a:hover,
.nav-links .active {
  background-color: yellow;
  color: black;
  border-radius: 4px;
}

.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 90vh;
  text-align: center;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: bold;
}

.hero-text .highlight {
  color: yellow;
  font-size: 3.5rem;
}

.hero-text p {
  font-size: 1.2rem;
  margin: 1rem 0;
}

.cta-buttons {
  margin-top: 1.5rem;
}

.btn {
  background: yellow;
  color: black;
  padding: 1rem 2rem;
  margin: 0.5rem;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
  border-radius: 5px;
}

.btn:hover {
  background: white;
  color: black;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #0d0d0d;
}

.logo img {
  height: 80px;
  width: auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
}

.logo-text {
  font-size: 1.8rem;
  font-weight: bold;
  color: yellow; /* bright yellow */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  position: relative;
  top: -10px; /* move text slightly upward */
  text-shadow: 1px 1px 5px rgba(255, 204, 0, 0.4);
}