 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }

  body {
    background-color: #0d0d0d;
    color: #fff;
    overflow-x: hidden;
    scroll-behavior: smooth;
  }

  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
  }

  header img {
    height: 90px;
    position: relative;
    z-index: 5;
  }

  .lang-btn {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .lang-btn:hover {
    background: rgba(255,255,255,0.1);
    box-shadow: 0 0 12px rgba(255,255,255,0.3);
  }

  section.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    padding-top: 10rem;
    position: relative;
    background: radial-gradient(
      circle at center,
      rgba(20, 20, 20, 0.55),
      rgba(10, 10, 10, 0.55)
    );
    z-index: 0;
  }

  #particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #0d0d0d;
    pointer-events: none;
  }

  .hero > * {
    position: relative;
    z-index: 2;
  }

.hero .brand-text {
  font-size: 2.5rem;           
  font-weight: 800;             
  color: #fff;                  
  letter-spacing: 3px;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeSlideDown 1.2s ease forwards;
  animation-delay: 0.2s;
}


  .hero h2 {
    font-size: 1.5rem;
    letter-spacing: 1px;
    color: #f2f2f2;
    margin-bottom: 2rem;
    max-width: 650px;
    opacity: 0;
    animation: fadeSlideDown 1.2s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
    animation-delay: 0.4s;
  }

  .hero video {
    width: 75%;
    max-width: 720px;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
    clip-path: inset(0 0 20% 0);
    opacity: 0;
    animation: fadeSlideUp 1.2s ease-out forwards;
    animation-delay: 0.8s;
    position: relative;
  }

  .hero {
    position: relative;
  }
.video-container {
  position: relative;
  display: flex;
  justify-content: center; 
  align-items: center;     
  width: 100%;
}

.video-container video {
  display: block;
  width: 75%;
  max-width: 720px;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
  clip-path: inset(0 0 15% 0); 
}

.join-btn {
  position: absolute;
  bottom: 8px; 
  left: 50%;
  transform: translateX(-50%);
  padding: 0.9rem 2.2rem;
  background: #fff;
  color: #0d0d0d;
  font-size: 1.05rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
  text-decoration: none;
  z-index: 3;
}

.join-btn:hover {
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.7);
  background: #f7f7f7;
  transform: translateX(-50%) translateY(-2px);
}

@media (max-width: 768px) {
  .video-container video {
    width: 90%;
  }

  .join-btn {
    bottom: 5px;
    padding: 0.75rem 1.8rem;
    font-size: 1rem;
  }
}


  section.glass {
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem 2rem;
    max-width: 1100px;
    margin: 5rem auto;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.05);
    text-align: center;
  }

  .glass h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #fff;
  }

  .glass p {
    max-width: 800px;
    margin: 0 auto;
  }

  .services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;

  }

  .service-outer {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: stretch;
  }

  .service-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    color: #f0f0f0;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .service-outer:hover .service-card {
    transform: translateY(-6px);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.1);
  }

  .visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }

  .socials {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .socials a {
    background: rgba(255,255,255,0.05);
    color: #fff;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none !important; 
  }

  .socials a:hover {
    background: rgba(255,255,255,0.15);
    box-shadow: 0 0 15px rgba(255,255,255,0.4);
    transform: translateY(-4px);
  }

  footer {
    text-align: center;
    padding: 2rem;
    color: #888;
    font-size: 0.9rem;
    background: #0a0a0a;
  }

  @keyframes fadeSlideDown {
    from { opacity: 0; transform: translateY(-40px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @media (max-width: 768px) {
    .join-btn {
      padding: 0.8rem 2rem;
      font-size: 1rem;
      transform: translate(-50%, 40%);
    }

    .hero h2 {
      font-size: 1.2rem;
      margin-bottom: 1.5rem;
    }

    .hero .brand-text {
      font-size: 1.5rem;
    }
  }
  @media (max-width: 768px) {
  section.hero {
    padding-bottom: 3rem; 
  }

  .glass {
    margin-top: 2rem; 
  }
}
@media (max-width: 768px) {
  section.hero {
    min-height: auto;      
    padding-top: 8rem;      
    padding-bottom: 1rem;   
    
    .hero .brand-text {
  font-size: 2.1rem;
}

  }

  .video-container {
    margin-bottom: 0.5rem;  
  }

  .join-btn {
    transform: translateX(-50%) !important; 
  }

  .glass {
    margin-top: 0 !important; 
  }
}
