*{
   margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', serif;
  text-decoration: none;
  scroll-behavior: smooth;
  list-style: none;
}

header{
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5rem;
  background-color: rgba(0, 0, 0, 0.703);
  backdrop-filter: blur(9px);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius:3rem;
  z-index: 1000;

}

.logo{
  color: white;
  font-size: 1.3rem;
  font-weight: 600;
  text-wrap: nowrap;
  transition: 0.3s ease-in-out;
  
}

.logo:hover{
  transform: scale(1.1);

}

.nav-links{
  display: flex;
  gap: 2rem;
  
}

li a{
  position: relative;
  color:white;
  font-weight: 300;

}

li a::before{
  position: absolute;
  content: '';
  width: 0;
  left: 0;
  height: 5px;
  top: 25px;
  border-radius: 1rem;
  transition: 0.3s ease-in-out;
  background: linear-gradient(to right, rgb(136, 152, 240), rgb(63, 46, 241));
}

li a:hover::before{
  width: 100%;
}

.visit-btn{
  padding: 0.8rem 1.5rem;
  border-radius: 3rem;
  border: none;
  font-weight: 500;
  font-size: 1rem;
  color: white;
  cursor: pointer;
  text-wrap: nowrap;
  transition: 0.3s ease-in-out;
  background: linear-gradient(to right, rgb(136, 152, 240), rgb(63, 46, 241));
}

.visit-btn:hover{
  background: linear-gradient(to right,rgb(63, 46, 241),rgb(136, 152, 240) );
  transform: scale(1.03);
}

#menu-icon{
  display: none;

}

/* ABOUT SECTION */

section{
  min-height: 100vh;
  padding: 8rem 12%;
  width: 100%;
  position: relative;

}

.about{
  display: flex;
  align-items: center;
  justify-content: center;
}

.about .about-container{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10rem;

}

.about img{
  width: 30vw;
  border-radius: 50%;
}

.info-box{
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.info-box h3{
  font-size: 1.8rem;
  font-weight: 500;
  opacity: 0.8;
}

.info-box h1{
  font-size: 4rem;
  font-weight: 600;
}


.info-box span{
  background: linear-gradient(to right,rgb(63, 46, 241),rgb(136, 152, 240) );
  background-clip: text;
  color: transparent;
  font-size: 2rem;
}

.btn-group{
  display: flex;
  gap: 1rem;

}

.btn{
  border-radius: 3rem;
  padding: 0.5rem 1.5rem;
  border: 2px solid black;
  cursor: pointer;
  font-weight: 500;
  text-wrap: nowrap;
  transition: 0.2s ease-in-out;

}

.btn:hover{
  background-color: black;
  color:white ;

}

.socials{
  display: flex;
  gap:2rem;

}

.socials i{
  font-size: 2.5rem;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

.socials i:hover{
  transform: scale(1.03);
}
