* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  
  background-color: #000000;
  line-height: 1.6;
}

header.hero {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgb(0, 0, 0)), url(img/bg34.gif) no-repeat center center/cover ;
  
  height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}


nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  background: rgba(0, 0, 0, 0.6);
}



.logo {
  font-size: 1.8rem;
  src: url(img/logo.png);
  font-weight: bold;
  color: #fff;
  margin-left: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.hero-content {
  text-align: left;
  padding-bottom: 10%;
  padding-left: 6%;
}

.hero-content h8 {
    display: block;
    font-family: Anton;
    letter-spacing: 0.2rem;
    font-size: 4rem;
    color: #ffffff;
    mix-blend-mode: difference;
    unicode-bidi: isolate;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.hero-content p {
  font-size: 1.2rem;
  color: #fff;
  mix-blend-mode: difference;
  margin-bottom: 1.5rem;
}

.btn1{
  display: inline-flex;
  background:rgba(0, 255, 255, 0.671);
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border: 0;
  position: relative;
  overflow: hidden;
  border-radius: 10rem;
  transition: all 0.2s;
  font-weight: bold;
  
  color: rgb(255, 255, 255);
  z-index: 0;
  box-shadow: 0 0px 10px -5px rgba(0, 255, 255, 1);
}

.btn1:hover {
  background-color: #ffffff;
  color: rgb(0, 0, 0);
  mix-blend-mode: difference;
  border: #00ffff;
  text-decoration: none;
}

.btn1:active {
  transform: scale(0.97);
}

.hoverEffect {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.hoverEffect div {
  background: rgb(255, 255, 255);
  background: linear-gradient(
    90deg,
    rgb(0, 0, 0) 0%,
    rgba(0, 0, 0, 0) 49%,
    rgba(0, 0, 0, 0.8) 100%
  );
  border-radius: 40rem;
  width: 10rem;
  height: 10rem;
  transition: 0.4s;
  filter: blur(20px);
  animation: effect infinite 3s linear;
  opacity: 1;
}

.btn1:hover .hoverEffect div {
  width: 8rem;
  height: 8rem;
  
}

@keyframes effect {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


.section {
  padding: 10rem 2rem;
  padding-bottom: 20rem;
   background: linear-gradient(to bottom,rgb(0, 0, 0), rgba(0, 0, 0, 0), rgb(0, 0, 0)), url(img/bg.jpg) no-repeat center center/cover ;
   filter: saturate(0%);
  text-align: center;
}

.section h2 {
  margin-bottom: 8rem;
  font-size: 4rem;
}

.services {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.service-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 10px;
  width: 280px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.testimonials {
  background: #000000;
}

.testimonial-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  max-width: 700px;
  margin: 0 auto;
}

.testimonial {
  background: rgb(116, 116, 116);
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  max-width: 500px;
}

.testimonial span {
  display: block;
  margin-top: 0.5rem;
  font-weight: bold;
  color: #555;
}

.contact {
  background:  linear-gradient(to bottom, rgb(0, 0, 0), rgba(0, 0, 0, 0)), url(img/background.jpg) no-repeat center center/cover ;
}
.contact form {
  
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}


.contact textarea {
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.contact button {
  background-color: #00ffff;
  color: rgb(0, 0, 0);
  padding: 0.75rem;
  border: none;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
}

.contact button:hover {
  background-color: #494949;
  color: rgb(255, 255, 255);
}

.contact p {
  padding-top: 1rem;
  text-decoration: none;
}

footer {
  text-align: center;
  padding: 2rem;
  background: #222;
  color: #aaa;
}

/* ✅ MOBILE & TABLET RESPONSIVE ADJUSTMENTS */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    
    gap: 1rem;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    padding-left: 0;
  }

  .nav-links li {
    margin: 0.5rem 0;
  }

  .hero-content {
    padding-bottom: 40%;
  padding-left: 6%;
  }

  .hero-content h8 {
    font-size: 3rem;
    
  }

  .hero-content p {
    font-size: 1rem;
  }

  .section {
    padding: 10rem 2rem;
  }

  .services {
    flex-direction: column;
    align-items: center;
  }

  .testimonial-cards {
    padding: 0 1rem;
  }

  .contact form {
    padding: 0 1rem;
  }

  .contact p {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .hero-content h8 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 0.8rem;
  }

  .btn1 {
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
  }

  .section h2 {
    font-size: 1.5rem;
  }

  .logo {
    font-size: 1.5rem;
  }

  .logo1 {
    width: 40px;
  }


}
/* Menu toggle button */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  color: #fff;
  cursor: pointer;
}

/* Default nav-links behavior */
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

/* Responsive navbar */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    position: absolute;
    top: 70px;
    left: 0;
    padding: 1rem 2rem;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin: 0.5rem 0;
  }
}
/* Navigation base */


/* Header inside nav: logo + hamburger */
.nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;


   padding: 0 1rem;
}

/* Hamburger icon */
.menu-toggle {
  display: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  
}


/* Nav links default */
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links li a {
  color: #fff;
  font-weight: 500;
}

/* Responsive styles */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgb(0, 0, 0);
    padding: 1rem 2rem;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin: 0.5rem 0;
  }
}
#myVideo {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
}