/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}


/* Navbar */
.navbar {
  width: 100%;
  background: #111;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}

/* Navbar logo */
.nav-left {
  display: flex;
  align-items: center;
}

.logo-img {
  width: 250px; /* Adjust to fit your logo size */
  height: auto;
  object-fit: contain;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .logo-img {
    width: 150px;
  }
}

/* Desktop nav */
.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #00bcd4;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  height: 3px;
  width: 25px;
  background-color: #fff;
  margin: 4px 0;
  border-radius: 2px;
}

/* Construction Section */
.construction {
  height: 100vh;
  background: linear-gradient(135deg, #1c1c1c, #2b2b2b);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 0 2rem;
}

.content {
  margin-top: 80px; /* adjust for navbar */
}

.content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.content p {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 2rem;
}

.loader {
  border: 6px solid #333;
  border-top: 6px solid #00bcd4;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
  margin: 1rem auto 2rem;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Footer */
footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  text-align: center;
  padding: 1rem 0;
  background: #111;
  color: #aaa;
  font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    background: #111;
    display: none;
    text-align: center;
  }

  .nav-links li {
    padding: 1rem 0;
    border-top: 1px solid #222;
  }

  .nav-links li:last-child {
    border-bottom: 1px solid #222;
  }

  .nav-links.active {
    display: flex;
  }

  .content h1 {
    font-size: 1.8rem;
  }

  .content p {
    font-size: 1rem;
  }

 

  .loader {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .content h1 {
    font-size: 1.5rem;
  }
}

/* Hero */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: url('https://images.unsplash.com/photo-1511671782779-c97d3d27a1d4?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  text-align: center;
  color: white;
  position: relative;
}


/* Footer */
.footer {
  text-align: center;
  padding: 30px 10px;
  background: #000;
}
.footer-links a {
  margin: 0 10px;
  color: #aaa;
  text-decoration: none;
}
.footer-links a:hover {
  color: #ff007f;
}
