*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:sans-serif;
}

body{
  background:black;
  color:white;
  overflow-x:hidden;
}

.overlay{
  position:fixed;
  width:100%;
  height:100%;
  background:
  radial-gradient(circle, rgba(0,123,255,0.2), transparent),
  radial-gradient(circle, rgba(255,215,0,0.1), transparent);

  animation:move 8s linear infinite;
  z-index:-1;
}

@keyframes move{
  0%{
    transform:translateY(0);
  }

  50%{
    transform:translateY(-30px);
  }

  100%{
    transform:translateY(0);
  }
}

.glass{
  background:rgba(255,255,255,0.05);
  backdrop-filter:blur(15px);
  border:1px solid rgba(255,255,255,0.1);
  box-shadow:0 0 25px rgba(0,0,0,0.5);
}

.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px;
  position:sticky;
  top:0;
}

.logo{
  font-size:28px;
  font-weight:bold;
  color:gold;
}

.languages{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.languages button{
  padding:10px 15px;
  border:none;
  border-radius:12px;
  cursor:pointer;
  background:#111;
  color:white;
  transition:0.3s;
}

.languages button:hover{
  transform:scale(1.05);
  background:#007bff;
}

.hero{
  display:flex;
  justify-content:center;
  align-items:center;
  min-height:70vh;
  padding:20px;
}

.hero-card{
  width:100%;
  max-width:700px;
  padding:40px;
  border-radius:25px;
  text-align:center;
}

.hero-card h1{
  font-size:60px;
  color:gold;
}

.hero-card p{
  margin-top:15px;
  color:#ccc;
}

.buttons{
  margin-top:30px;
  display:flex;
  gap:20px;
  justify-content:center;
  flex-wrap:wrap;
}

.blue-btn,
.gold-btn{
  padding:15px 30px;
  border:none;
  border-radius:15px;
  cursor:pointer;
  transition:0.3s;
  font-size:18px;
}

.blue-btn{
  background:#007bff;
  color:white;
}

.gold-btn{
  background:gold;
  color:black;
}

.blue-btn:hover,
.gold-btn:hover{
  transform:translateY(-5px) scale(1.05);
}

.team{
  padding:40px 20px;
}

.team-box{
  max-width:900px;
  margin:auto;
  padding:30px;
  border-radius:20px;
}

.team-box h2{
  margin-bottom:20px;
  color:gold;
}

.team-box ul{
  display:grid;
  gap:12px;
}

.team-box li{
  list-style:none;
  padding:12px;
  border-radius:10px;
  background:rgba(255,255,255,0.04);
}

.footer{
  margin:30px;
  padding:20px;
  border-radius:20px;
  text-align:center;
}

.eye-box{
  font-size:20px;
  color:gold;
}

@media(max-width:768px){

  .hero-card h1{
    font-size:38px;
  }

  .navbar{
    flex-direction:column;
    gap:20px;
  }

  .languages{
    justify-content:center;
  }

}