
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #0a0a0a;
  color: white;
}
.site-header {
  display: flex;
  justify-content: space-between;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.85);
  position: sticky;
  top: 0;
  z-index: 999;
}
.logo a {
  color: #00CFFF;
  text-decoration: none;
  font-size: 1.5rem;
}
.menu-toggle {
  font-size: 2rem;
  cursor: pointer;
  color: #00CFFF;
}
.overlay-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.overlay-menu.open {
  display: flex;
}
.overlay-menu ul {
  list-style: none;
  padding: 0;
}
.overlay-menu ul li {
  margin: 1rem 0;
}
.overlay-menu ul li a {
  color: #00CFFF;
  font-size: 2rem;
  text-decoration: none;
}
.hero-video {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.hero-video-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: 30vh;
}
.cta-button {
  margin-top: 1rem;
  padding: 1rem 2rem;
  background: #00CFFF;
  color: black;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
}

.contact-form {
  max-width: 600px;
  margin: 2rem auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
}
.contact-form button {
  background-color: #00CFFF;
  color: #000;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.contact-form button:hover {
  background-color: #39FF14;
}

.hero-text-box {
  background-color: rgba(0, 0, 0, 0.6);
  border: 2px solid #39FF14;
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 8px;
}

.cta-button {
  margin-top: 1rem;
  padding: 1rem 2rem;
  background: #39FF14;
  color: white;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s ease, color 0.3s ease;
}
.cta-button:active,
.cta-button:focus {
  background: white;
  color: black;
}

/* Hero content box with transparent background and green border */
.hero-text-box {
  background-color: rgba(0, 0, 0, 0.6);
  border: 2px solid #39FF14;
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 8px;
}

/* CTA button styling */
.cta-button {
  margin-top: 1rem;
  padding: 1rem 2rem;
  background: #39FF14;
  color: white;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s ease, color 0.3s ease;
}

.cta-button:active,
.cta-button:focus {
  background: white;
  color: black;
}

.logo-img {
  max-height: 50px;
  height: auto;
  width: auto;
}

.hero-text-box {
  border: 2px solid #2989cc !important;
}
.hero-text-box h1,
.hero-text-box h2 {
  color: #2989cc !important;
}
