* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

#bg-video {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -1;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.55);
  z-index: 0;
}

header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  position: fixed;
  top: 0;
  z-index: 10;
}

.logo img {
  /* height: 50px; */
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 18px;
  transition: 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
  color: #00ffe5;
}

.hero {
  position: absolute;
  top: 50%;
  left: 30%;
  transform: translateY(-50%);
  text-align: center;
  color: white;
  z-index: 1;
}

.hero h1 {
  font-size: 140px;
  font-weight: bolder;
  letter-spacing: 5px;
}

.hero p {
  font-size:50px;
  margin: 20px 0;
}

.enter-btn {
  display: inline-block;
  padding: 12px 30px;
  font-size: 18px;
  font-weight: 600;
  background: #00ffe5;
  color: #000;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
  font-weight: bold;
}

.enter-btn:hover {
  background: #fff;
  color: #000;
}



/* about */






.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14.47%;
  /* gap: 50px; */
  /* min-height: 80vh; */
  background: rgba(0, 0, 0, 0.7);

}

.about-text {
  flex: 1;
  color: white;
}

.about-text h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #00d4ff;
}

.about-text p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.about-image {
  flex: 1;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}









/* team */





.logo img {
    width: 200px;
}

nav a {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 400;
    margin-left: 4rem;
    text-decoration: none;
    transition: 0.5s ease;
    border-bottom: 3px solid transparent;
}

nav a:hover,
nav a.active {
    color: #ffffff;
    border-bottom: 1px solid #000000;
    font-weight: bolder;
}

.team {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    width: 100%;
}

.flex {
    display: flex;
    justify-content: space-between;
}

.team-member {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    margin: 20px;
    flex: 1;
    text-align: center;
    height: 50%;
    width: 30%;
}

.team-member img {
    width: 250px;
    height: auto;
    border-radius: 50%;
}



/* main */



.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.55);
  z-index: 0;
}

/* Header */
header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  position: fixed;
  top: 0;
  z-index: 10;
}



nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 18px;
  transition: 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
  color: #00ffe5;
}

/* Hero Buttons */
.herom {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 20px;
  z-index: 1;
}

.action-btn {
  padding: 14px 30px;
  font-size: 18px;
  font-weight: 600;
  background: #00ffe5;
  color: #000;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}

.action-btn:hover {
  background: #fff;
  color: #000;
}

/* Hidden Sections */
.hidden {
  display: none;
}

.form-section {
  position: absolute;
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  background: rgba(0, 0, 0, 0.65);
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  z-index: 2;
}

.form-section h2 {
  margin-bottom: 15px;
  color: #00ffe5;
}

.form-section input,
.form-section textarea {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  border-radius: 6px;
  border: none;
  outline: none;
}

.form-section textarea {
  resize: none;
  height: 120px;
}

.submit-btn {
  padding: 12px 20px;
  font-size: 16px;
  background: #00ffe5;
  color: #000;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #fff;
  color: #000;
}

.back-btn {
  margin-top: 12px;
  padding: 10px 20px;
  font-size: 15px;
  background: transparent;
  border: 2px solid #00ffe5;
  color: #00ffe5;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.back-btn:hover {
  background: #00ffe5;
  color: #000;
}
