*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: 'Inter', sans-serif;
  background: #0b0d10;
  color: #eaeaea;
}
.navbar{
    width: 100%;
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 20px 60px;
   position: fixed;
   top: 0;
   backdrop-filter: blur(10px);
   z-index: 100;
   
}
.logo{
     font-family: 'Poppins', sans-serif;
    font-size: 22px;
  font-weight: 600;
}
.navbar ul{
    display: flex;
    gap: 30px;
    list-style: none;
}
.navbar ul a{
    text-decoration: none;
    color: #eaeaea;
    opacity: 0.8;
}
.navbar a:hover {
  opacity: 1;
}
.home{
    height: 100vh;
    width: 100vw;
    padding: 140px 60px;
    display: flex;
    align-items: center;
    gap: 60px;
}
.text h1{
    font-family: 'Poppins', sans-serif;
     font-size: 56px;
    line-height: 1.2;
}
.text h1 span{
      color: #6ae3ff;
}
.text p{
    margin-top: 20px;
    max-width: 500px;
    opacity: 0.75;

}
.button{
   margin-top: 30px;
   display: flex;
   gap: 20px;

}
.btn{
      padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 15px;
  
}
#btn-1{
    background: #6ae3ff;
  color: #000;
}
#btn-2{
     border: 1px solid #6ae3ff;
  color: #6ae3ff;
}
.home  .img img{ 
  width: 320px;
    border-radius: 20px;
    filter: grayscale(100%);
    transition: 0.4s;
}
.home .img img:hover{
    filter: grayscale(0%);
    transform: scale(1.04);
}
.skill{
    padding: 100px 60px;
}
.skill h2{
    font-size: 36px;
    font-family: 'poppins', sans-serif;

}
.skill-items{
    margin-top: 40px;
    display: flex  ;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}
.skill-card{
    padding: 30px;
    border: 1px solid #1e1e1e;
    border-radius: 14px;
    transition: 0.3s;
}
.skill-card:hover {
  border-color: #6ae3ff;
  transform: translateY(-6px);
}
 .project{
    padding: 100px 60px;
 }
 .project h2{
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
 }
 .project-card{
    margin-top: 40px;
    max-width: 800px;
    border: 1px solid #1e1e1e;
    padding: 30px;
    border-radius: 14px;
 }
 .project-text h3{
    font-size: 22px;
    margin-bottom: 10px;
 }
 .project-text p{
    opacity: 0.8;
    margin-bottom: 12px;
 }
 .tech{
    font-size: 14px;
    color: #6ae3ff;
 }
.contact{
    padding: 100px 60px;
    text-align: center;
} 
.contact h2{
    padding-bottom: 20px;
}
footer{
    padding: 40px;
    text-align: center;
    opacity: 0.6;
}