@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap'); 


body{
    font-family: "Poppins", sans-serif;
    font-style: normal;
    background-color: black;
    color: white;
    height: 100vh;
    overflow: hidden;
}

.d-model{
   height: 100vh;
   width: 100%; 
   position: absolute;
   right: -400px;
   top: 30px;
}

.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 30px;
    height: 70px;
}

.name{
    font-weight: 600;
    font-size: 30px;   
}

.compo{
    list-style:none;
    display: flex;
    width: 30%;
    justify-content: space-between;
}

.compo li {
    font-weight: 200;
    cursor: pointer;
    z-index: 100;
}

.btn {
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 6px;
    font-size: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    z-index:100 ;
}

.btn:hover{
    background-color: transparent;
    border: 1px solid white;
    color: white;
    gap: 20px;
}

.hero{
    display: flex;
    flex-direction: column;
    align-items: start;
    padding-left: 100px;
    padding: 150px;
    gap: 20px;
}
.name2{
    font-size: 60px;
    width: 50%;
    font-weight: 500;
    line-height: 60px;
}

.name3{
    font-size: 15px;
    width: 45%;
}
.btns{
    display: flex;
    gap: 20px;
}

.btns3{
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 6px;
    font-size: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    background-color: transparent;
    color: white;
    border: 2px solid white;
}
.btns3:hover{
    background-color: white;
    color: black;
}

.btn2 {
    position: relative;
    padding: 5px 30px;
    font-size: 15px;
    font-weight: bold;
    color: white;
    background-color: black;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    border-radius: 40px;
    overflow: hidden;
    z-index: 1;
  }
  
  /* The animated border effect */
  .btn2::before {
    content: "";
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, red, blue, green, yellow, red);
    z-index: -1;
    border-radius: 12px;
    filter: blur(4px);
    animation: borderAnimation 3s linear infinite;
  }
  
  /* Inner button to maintain solid background */
  .btn2::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background-color: black;
    z-index: -1;
    border-radius: 6px;
  }
  @keyframes borderAnimation {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }