body {
  font-family: 'Arial', sans-serif; /* Update with the correct font */
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #000;
  padding: 10px 20px;
}

.logo img {
  height: 60px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  position: relative;
  transition: color 0.3s;
}

nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  display: block;
  margin-top: 5px;
  right: 0;
  background: #fff;
  transition: width 0.3s ease, background-color 0.3s ease;
}

nav a:hover::after {
  width: 100%;
  left: 0;
  background: #fff;
}

nav a:hover {
  color: #ffcc00; /* Change to desired hover color */
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #fff;
}

.hero {
  position: relative;
  height: 70vh;
  overflow: hidden;
}

#bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.hero-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
}

.hero-content h1 {
  font-size: 2rem;
  margin: 0;
}

.hero-content h2 {
  font-size: 3rem;
  margin: 0;
}

.details {
  background: #f1f1f1;
}

footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 10px 0;
}

@media (max-width: 768px) {
  .menu-toggle {
      display: flex;
  }

  nav ul {
      display: none;
  }

  nav ul.active {
      display: flex;
      flex-direction: column;
  }

  .hero-content h1, .hero-content h2 {
      font-size: 1.5rem;
  }
}

.hero-content {
  animation: fadeInUp 2s ease-out;
}

@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}
