body {
  background: linear-gradient(to bottom, rgb(128, 0, 0), #000000);
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
}

  nav{
  position: fixed;
  }
  .background-wrapper {
  width: 100%;
  min-height: 100vh; /* allow page to grow with content */
  background-color: black;
  background-size: cover;
  background-repeat: repeat;
  background-position: 100%;
}

  .landing-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; /* Center horizontally */
    position: relative;
    text-align: center; /* Ensure text is centered */
    padding-top: 0; /* Remove padding to avoid offset */
  }
  .logo {
    position: fixed;
    top: -95px;
    left: -20px;
    width: 240px;
    height: auto;
  }
  
 .main-content {
  position: relative;
  margin-top: 100px;
  padding: 20px;
  text-align: center;
  max-width: 90vw;
}

  .slogan {
  color: white;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  font-size: 60px;
  z-index: 0;
  margin: 0;
  word-wrap: break-word;
  white-space: normal; /* ✅ allow wrapping */
  max-width: 90vw;      /* ✅ prevent overflow on small screens */
}
 
  /*Menu Button and Dropdown*/
 .menu-button-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 999;
    width: 25px;
  }
  
  .menu-button {
    cursor: pointer;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: relative;
  }
  
  .menu-button img {
    width: 100%;
    height: 100%;
    object-fit: contain; 
  }
  
.menu-content {
  position: absolute;
  top: 100%;
  right: 0;
  width: 200px;
  background-color: rgba(0, 0, 0, 0.95);
  padding: 12px 16px;
  border-radius: 8px;
  z-index: 1001;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

  .menu-content.active {
    right: 0;
    opacity: 1;
    pointer-events: auto;
  }
  
  .menu-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 1000000;
  }
  
  .menu-content li {
    margin-bottom: 10px;
    z-index: 10000000;
  }
  
  .menu-content a {
    text-decoration: none;
    color: #ffffff;
    font-size: 16px;
    font-family: "Roboto", sans-serif;
    z-index: 1000000;
  }

  
  /*Profile Button*/
  
  .profile-button-container{
    position: fixed;
    top: 20px;
    right: 50px;
    z-index: 999;
  }
  
  .profile-button{
    cursor: pointer;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: relative;
  }
  
  .profile-button img{
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  .more-info{
    background-color: black;
  }
  
  .info-boxes {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background-color: #e0e0e0;
    padding: 20px;
  }
  
  .info-box {
  width: 300px;
  padding: 10px;
  margin: 0 10px;
  background-color: #000000;
  border: 2px solid #ffffff; /* Added '2px solid' for border style */
  border-radius: 10px;
  text-align: center;
  transform: translate(7%, 0%);
  
  }
  
  .info-box h2 {
  color: #ffffff;
  margin-bottom: 10px;
  font-size: 30px;
  font-family: "Roboto", sans-serif;
  font-weight: 1000;
  }
  
  .info-box p {
  color: #ffffff;
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  }
  
.description {
  color: white;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  z-index: 0;
  margin: 0 auto;
  padding-top: 50px;
  white-space: normal; /* ✅ allow wrapping */
  max-width: 90vw;      /* ✅ keep it inside screen */
  line-height: 1.5;
}



  .register-button {
    background-color: rgba(255, 255, 255, 0.88);
    color: #000000;
    border-radius: 70px; /* Match the border-radius of the search bar */
    width: 100px; /* Set a fixed width */
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    padding: 22.5px 90px; /* Adjust padding as necessary */
    font-weight: 700;
    transition: background-color 0.3s ease;
    display: inline-flex; /* Use inline-flex to keep content on the same line */
    justify-content: center;
    align-items: center;
    text-decoration: none;
    white-space: nowrap; /* Prevent text wrapping */
    margin: 0; /* Remove any default margin */
    position: relative; /* Remove absolute positioning */
  }
  
 
  
  
  
  .register-button:hover {
  background-color: #444;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}
  
  .register-button-container {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    padding-top: 100px; /* Add padding to position it correctly */
  }


/* === Footer Styles (Simplified & Responsive) === */
.site-footer {
  background-color: #000;
  color: #fff;
  padding: 40px 30px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  border-top: 1px solid #222;
  margin-top: 0;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

@media (min-width: 768px) {
  .footer-container {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-left img {
  width: 140px;
  height: auto;
  margin-bottom: 10px;
}

.footer-left p {
  margin: 0;
  font-size: 13px;
  color: #bbb;
}

.footer-right {
  display: flex;
  gap: 20px;
  margin-top: 10px;
  font-size: 20px;
}

.footer-right a {
  color: #bbb;
  transition: color 0.3s ease;
}

.footer-right a:hover {
  color: #fff;
}


.vision-section {
  background: none;
  padding: 120px 20px;
  font-family: "Roboto", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
}

.vision-glass {
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
  max-width: 800px;
  padding: 60px 40px;
  color: #fff;
  text-align: center;
}

.vision-glass h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}

.vision-glass p {
  font-size: 18px;
  color: #ddd;
  line-height: 1.8;
  margin-bottom: 30px;
}

.vision-glass ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.vision-glass {
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.08);
  border: none;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 40px;
  color: #fff;
  text-align: center;
}



/* Scroll animation */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}



.background-wrapper {
  background: linear-gradient(to bottom, #800000, #000);
}




  


  @media screen and (max-width: 600px) {
  .slogan {
    font-size: 36px;
  }

  .description {
    font-size: 16px;
    padding: 20px;
  }

  .register-button {
    padding: 15px 40px;
    font-size: 14px;
  }
}






