
/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif;
  color: #fff;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}
nav ul {
  display: flex;
  justify-content: center;
  padding: 10px 0;
}
nav ul li {
  list-style: none;
  margin: 0 20px;
}
nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  transition: color 0.3s;
}
nav ul li a:hover {
  color: #f39c12;
}

/* Full-Page Video Background */
.video-bg {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.video-bg video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.content {
  position: relative;
  z-index: 1;
}
.content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}
.content p {
  font-size: 1.2rem;
}
footer {
  text-align: center;
  padding: 10px;
  background: rgba(0, 0, 0, 0.8);
  font-size: 0.9rem;
}

