
/* VIDEO SETUP */
.desktop-video {
  display: block;
}

.mobile-video {
  display: none;
  pointer-events: none;
}

@media (max-width: 768px) {
  .desktop-video {
    display: none;
  }

   .mobile-video {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
    pointer-events: none;
    
  }
}

.video-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background: black;
}

.video-wrapper .desktop-video {
  width: 100%;
  height: auto;
  object-fit: contain;
  pointer-events: none;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  pointer-events: none;
}

/* BODY */
body {
  background: #000;
  padding-top: 70px;
  font-family: 'Montserrat', sans-serif;
}

/* STICKY HEADER */
.site-header {
  width: 100%;
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  background: #111827;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 40px;
  height: auto;
  margin-right: 10px;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: bold;
  background: linear-gradient(to right, #8a2be2, #00bfff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* HERO */
.hero {
  padding: 80px 20px;
  text-align: center;
}

.hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.hero-text {
  flex: 1 1 100%;
  text-align: center;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-image {
  flex: 1 1 40%;
  text-align: right;
}

.hero-image img {
  max-width: 100%;
}

.h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #00ffff;
}

.tagline {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #cccccc;
}

.cta-button {
  background: linear-gradient(to right, #8a2be2, #00bfff);
  padding: 10px 20px;
  border-radius: 5px;
  color: white;
  font-weight: bold;
  text-decoration: none;
}

/* FEATURES */
.features {
  padding: 60px 20px;
  text-align: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.feature-item {
  background: rgba(162, 89, 255, 0.3);
  padding: 20px;
  border-radius: 12px;
  color: #00FFFF;
}

/* SERVICES */
.services {
  padding: 60px 20px;
  text-align: center;
  color: #f0f0f0;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 20px;
}

.service-card {
  background-color: rgba(128, 128, 128, 0.2);
  padding: 20px;
  border-radius: 10px;
  color: white;
  backdrop-filter: blur(6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
  width: 300px;
  max-width: 90%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 600px;
}

.service-btn {
  background: linear-gradient(to right, #8a2be2, #00bfff);
  padding: 8px 16px;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  display: inline-block;
  margin-top: auto;
}

/* FOOTER */
footer {
  background-color: rgba(15, 20, 40, 0.7);
  color: white;
  padding: 40px 20px;
  text-align: center;
}

.footer a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

/* CONTACT */
.contact {
  padding: 60px 20px;
  background-color: rgba(128, 128, 128, 0.4);
  color: white;
  text-align: center;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(6px);
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1rem;
  resize: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #cccccc;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.15);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .logo-text {
    font-size: 1.3rem;
  }

  .logo-img {
    width: 35px;
  }
}

@media (max-width: 600px) {
  .logo-container {
    justify-content: center;
  }

  .logo-text {
    font-size: 1.1rem;
    text-align: center;
  }

  .logo-img {
    width: 30px;
  }
}


