* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

}

body {
  margin: 0;
  font-family: 'Georgia', serif;
  color: #fff;
  background: #000;
  overflow-x: hidden;
}

.header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      height: 60px;
      background-color: transparent;
      color: white;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 1500px;
      transition: background-color 2.0s ease;
      z-index: 1000;
    }

.qlwapp-box {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #25D366;
      color: white;
      font-size: 16px;
      font-weight: bold;
      padding: 12px 20px;
      border-radius: 50px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 10px;
      z-index: 9999;
    }

.qlwapp-box:hover {
      background-color: #1ebe5d;
    }

.qlwapp-box img {
      width: 20px;
      height: 20px;
    }


.navbar {
      position: absolute;        /* Fixes navbar at the top */
      top: 0;
      left: 1;
      right: 0;
      height: 90px;
      color: white;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 15px;
      z-index: 1000;
    }

.nav-links {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.nav-links a {
      color: black;
      text-decoration: none;
      font-size: 16px;
      padding: 8px 12px;
      transition: color 0.3s;
    }

.header.scrolled .nav-links a {
      color: white;
    }

.header.scrolled .nav-links a:hover {
    color: #00c6ff;
}

.nav-links a:hover {
     color: #00c6ff;
    }


html {
  scroll-behavior: smooth;
}



section {
  position: relative;
  min-height: 100vh;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
section video, section img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.4);
}
section .content {
  position: relative;
  z-index: 1;
  padding: 7rem;
  animation: fadeInUp 1s ease forwards;
}
section h1, section h2 {
  font-size: 4rem;
  margin: 0 0 1rem;
  background: linear-gradient(45deg, #00c6ff, #0072ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  letter-spacing: 2px;
}
section p {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.3rem;
  line-height: 1.8;
  color: #ddd;
}

header {
  min-height: 100vh;
}
header .content h1 {
  font-size: 5rem;
}
header .content p {
  font-size: 1.5rem;
  margin-top: 1rem;
  color: #ccc;
}

@keyframes fadeInUp {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.logo {
  height: 60px;
}

footer {
  background-color:#757575;
  color: #fff;
  padding: 50px 20px 30px;
  position: relative;
  overflow: hidden;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-logo {
  flex: 1 1 250px;
}

.footer-logo h1 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
}

.footer-logo span {
  font-weight: 400;
  opacity: 0.8;
}

.footer-logo p {
  margin: 8px 0;
  color: #aaa;
  font-size: 14px;
}



.footer-links, .contact-info {
  flex: 1 1 200px;
  font-size: 14px;
}

.footer-links ul, .contact-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #fff;
}

.contact-info p {
  margin: 6px 0;
  font-size: 14px;
}

.scroll-up {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 40px;
  height: 100px;
  background-color: rgba(255,255,255,0.05);
  border-radius: 6px;
  color: #fff;
  text-align: center;
  cursor: pointer;
  transition: background 0.3s;
}

.scroll-up:hover {
  background-color: rgba(255,255,255,0.1);
}

.scroll-up .arrow {
  font-size: 20px;
  margin-top: 10px;
  display: block;
}

.scroll-up .text {
  margin-top: 10px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 12px;
  letter-spacing: 1px;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  color: white;
}