* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {

    background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    overflow-x: hidden; 

    font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
  }
  
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0 0 12px 12px;
  position: fixed;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.3s ease;
}

.logo {
    display: block;
    width: 120px; /* adjust as needed */
    height: auto;
  }

  .logo img {
    width: 40%;
    height: auto;
    display: block;
  }




.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  transition: transform 0.3s ease;
}

.menu-toggle:hover {
  transform: scale(1.1);
}

.bar {
  width: 25px;
  height: 3px;
  background-color: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 60px;
  right: 2rem;
  background: rgba(20, 20, 20, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateY(10px);
  opacity: 0;
  pointer-events: none;
}

.nav.show {
  display: flex !important;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav li a {
  display: block;
  padding: 1rem 2rem;
  text-decoration: none;
  color: white;
  transition: background 0.3s ease;
}

.nav li a:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

@media (min-width: 768px) {
  .nav {
    display: flex !important;
    flex-direction: row;
    position: static;
    background: none;
    border: none;
    box-shadow: none;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .nav ul {
    display: flex;
    gap: 1.5rem;
  }

  .nav li a {
    padding: 0.5rem 1rem;
    border-radius: 6px;
  }

  .nav li a:hover {
    background-color: rgba(255, 255, 255, 0.05);
  }

  .menu-toggle {
    display: none;
  }
}
  
  .bar {
    width: 25px;
    height: 3px;
    background-color: white;
  }
  
  .nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 2rem;
    
    border: 1px solid #222;
    z-index: 999;
  }
  
  .nav ul {
    list-style: none;
  }
  
  .nav li a {
    display: block;
    padding: 1rem;
    text-decoration: none;
    color: white;
    border-bottom: 1px solid #333;
  }
  
  .nav li a:hover {
    background-color: #222;
  }
  
  .hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 10rem 4rem;
    min-height: 100vh;
    overflow: hidden;
    background-color: rgb(255, 255, 255, 0.1   n);
    
  }
  
  .background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.6;
  }
  
  .hero-content {
    position: relative;
    z-index: 1;
    color: white;
  }
  
  .hero h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    white-space: nowrap;
    border-right: 2px solid rgba(255, 255, 255, 0);
    overflow: hidden;
  }
  
  .hero p {
    font-size: 1.5rem;
    max-width: 600px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
  }
  
  footer {
    text-align: center;
    padding: 0.5rem;
    background-color: #000000;
  }
  
  .socials {
    margin-top: 1rem;
  }
  
  .socials span {
    display: block;
    font-weight: bold;
    margin-bottom: 0.5rem;
  }
  
  .socials a {
    margin: 0 10px;
    color: #bbb;
    text-decoration: none;
  }
  
  .socials a:hover {
    color: white;
  }
  
  @media (min-width: 768px) {
    .nav {
      display: flex !important;
      flex-direction: row;
      position: static;
      background: none;
      border: none;
    }
  
    .nav ul {
      display: flex;
      gap: 1rem;
    }
  
    .nav li a {
      border: none;
      padding: 0.5rem;
    }
  
    .menu-toggle {
      display: none;
    }
  }
  
  .show {
    display: flex !important;
  }
  
  .fade-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }


  #scroll-arrow {
    position: absolute;
    bottom: 30px;
    font-size: 50px;
    cursor: pointer;
    animation: bounce 1.5s infinite;
    transition: opacity 0.3s;
  }
  
  @keyframes bounce {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(10px);
    }
  }
  
  #subtitle{


    color: #dcf5ff;


}
