/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* Navbar */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 60px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.1);
  z-index: 1000;
}

.navbar .logo {
  display: flex;
  align-items: center;
}

.navbar .logo img {
  width: 45px;
  margin-right: 10px;
}

.navbar h1 {
  color: #fff;
  font-weight: 600;
  font-size: 1.5rem;
}

.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin-left: 25px;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover,
.nav-links .active {
  color: #f9a826;
}

/* About Section */
.about-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 150px 10%;
  background: linear-gradient(135deg, #0e0e0e, #1f1f1f);
  color: #fff;
}

.about-content {
  flex: 1 1 500px;
  padding: 20px;
  animation: fadeInUp 1s ease;
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.about-content h2 span {
  color: #f9a826;
}

.about-content p {
  line-height: 1.8;
  margin-bottom: 15px;
  color: #ccc;
}

.about-content .btn {
  display: inline-block;
  margin-top: 15px;
  background: #f9a826;
  color: #000;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}

.about-content .btn:hover {
  background: #fff;
  color: #000;
}

.about-image {
  flex: 1 1 400px;
  padding: 20px;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(249, 168, 38, 0.4);
  animation: float 3s ease-in-out infinite;
}

/* Registration Section */
.registration-section {
  background: linear-gradient(135deg, #1a1a1a, #111);
  padding: 100px 10%;
  color: #fff;
  text-align: center;
}

.registration-section h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #f9a826;
}

.registration-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.registration-details {
  flex: 1 1 400px;
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 15px;
  backdrop-filter: blur(6px);
  box-shadow: 0 0 20px rgba(249, 168, 38, 0.2);
  text-align: left;
}

.registration-details p {
  margin-bottom: 10px;
  color: #ccc;
  font-size: 1rem;
}

.registration-details strong {
  color: #f9a826;
}

.registration-image {
  flex: 1 1 400px;
  text-align: center;
}

.registration-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(249, 168, 38, 0.4);
  transition: transform 0.3s ease;
}

.registration-image img:hover {
  transform: scale(1.05);
}

/* Footer */
footer {
  text-align: center;
  padding: 30px;
  background: #0a0a0a;
  color: #777;
  font-size: 0.9rem;
}

/* Back to Top */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border: none;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
}

#backToTop img {
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease;
}

#backToTop:hover img {
  transform: translateY(-5px);
}

#backToTop.show {
  opacity: 1;
  visibility: visible;
}

/* Floating Animation */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Fade-in Animation */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 900px) {
  .about-section {
    flex-direction: column;
    padding: 100px 5%;
  }
  .registration-content {
    flex-direction: column;
  }
}

.video-bg {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -2;
    }

    /* --- Overlay to improve text visibility --- */
    .overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      z-index: -1;
    }

    /* --- About Section --- */
    .about-section {
      min-height: 100vh;
      display: flex;
      /*flex-direction: column;
      /*align-items: center;*/
      /*justify-content: center;*/
      /*text-align: center;*/
      color: white;
      padding: 60px 20px;
      backdrop-filter: blur(3px);
    }

    .about-section h1 {
      font-size: 3em;
      margin-bottom: 20px;
      text-shadow: 0 0 20px #ff4d4d;
    }

    .about-section p {
      max-width: 800px;
      font-size: 1.2em;
      line-height: 1.7;
      margin-bottom: 30px;
    }

    /* --- Business Registration Section --- */
    .registration {
      background: rgba(255, 255, 255, 0.1);
      border-radius: 15px;
      padding: 20px 30px;
      box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
      backdrop-filter: blur(6px);
      display: inline-block;
      color: #fff;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .registration:hover {
      transform: scale(1.03);
      box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    }

    .registration h2 {
      color: #ffcccc;
      margin-bottom: 10px;
    }

    /* --- Responsive --- */
    @media (max-width: 768px) {
      .about-section h1 {
        font-size: 2em;
      }
      .about-section p {
        font-size: 1em;
      }
    }