@import url('https://fonts.googleleapis.com/css2?family=poppins:wght@300;400;500;600;700;800;900;&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'poppins', sans-serif;
}
/* body{
    background-color: #1f242d;

} */
a{
    color: #fff;
    text-decoration: none;

}
.active a{
    color: #7cf039;
}
.navbar{
position: fixed;
left: 0;
top: 0;
width: 100%;
padding: 25px 9px;
/* background-color: tomato; */
display: flex;
justify-content: space-between;
align-items: center;
z-index: 100; 
visibility: hidden;
opacity: 0;
animation: show-content 1.5s linear forwards;
animation-delay: 1.2s;
}
@keyframes show-content{
    100%{
        visibility: visible;
        opacity: 1;
    }
}
.navbar .logo{
    /* background-image: url(''); */
    font-size: 30px;
    font-weight: 700;
}
.navbar ul{
    display: flex;
    justify-content: space-between;
}
.navbar ul li{
    list-style: none;
    margin: 35px;
}
.navbar ul li a{
    font-size: 20px;
    font-weight: 500;
    transition: .5s;
}
.navbar ul li:hover a{
    color:#7cf039;
}
.home{
    display: flex;
    align-items: center;
    gap: 50px;
    height: 100vh;
    padding: 60px 9% 0;
    color: white;
    visibility: hidden;
opacity: 0;
animation: show-content 1.5s linear forwards;
animation-delay: 1.6s;
}
.home-info h1{
    margin-bottom: 10px;
    font-size: 55px;
}
.home-info h2{
    font-size: 32px;
    margin-top: 10px;
    display: inline-block;
    margin-bottom: 10px;
}
.home-info span{
    display: inline-block;
    color: transparent;
-webkit-text-stroke: .7px #7cf03d;
animation: display-text 16s linear infinite;
animation-delay: calc(-4s * var(--i));
position: relative;
}
@keyframes display-text{
    25%,100%{
        display: none;
    }
}
.home-info span::before{
    content: attr(data-text);
    position: absolute;
    width: 0;
    border-right: 2px solid #7cf03d;
    color: #7cf03d;
    white-space: nowrap;
    overflow: hidden;
    animation: fill-text 4s linear infinite;
}
@keyframes fill-text{
    10%,100%{
        width: 0;
    }
    70%,90%{
        width: 100%;
    }
}
.home-info p{
    font-size: 16px;
    margin: 10px 0 25px;
}
.home-info .btn-social{
display: flex;
align-items: center;
}
.btn{
    display: inline-block;
    padding: 10px 30px;
    background: #7cf039;
    border: 2px solid #7cf03d;
    border-radius: 40px;
    box-shadow: 0 0 10px #7cf03d;
    font-size: 16px;
    color: #1f242d;
    font-weight: 600;
    transition: .5s;
}
.btn:hover{
background: transparent;
color: #7cf03d;
box-shadow: none;
}
.social{
    margin-left:20px;

}
.social a{
    display: inline-flex;
    padding: 8px;
    border: 2px solid #7cf03d;
    border-radius: 50%;
    font-size: 20px;
    color: white;
    margin: 0 8px;
transition: .5s;
}
.social a:hover{
    background: #7cf03d;
    color: #1f242d;
    box-shadow: 0 0 10px #7cf03d;
}
.img-box{
    width: 32vw;
    height: 32vw;
    border-radius: 50%;
padding: 5px;
position: relative;
display: flex;
justify-content: center;
align-items: center;
overflow: hidden;
}
.img-box::before,
.img-box::after{
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: conic-gradient(transparent, transparent, transparent, #7cf03d);
    transform: rotate(0deg);
    animation: rotate-border 10s linear infinite;
}
.img-box::after{
    animation-delay: -5s;
}
@keyframes rotate-border{
    100%{
        transform: rotate(360deg);
    }
}
.img-items{
    width: 100%;
    height: 100%;
    background: #1f242d;
    border-radius: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    z-index: 1;
    overflow: hidden;
    border: .1px solid #1f242d;
}
.img-items img{
    position: absolute;
    display: block;
    width: 85%;
    object-fit: cover;
mix-blend-mode: lighten;

}
.contact-container {
    max-width: 600px;
    margin: 40px auto;
    text-align: center;
}

.contact-container form {
    display: flex;
    flex-direction: column;
}

.contact-container input,
.contact-container textarea {
    margin: 10px 20px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.contact-container button {
    padding: 10px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 20px;
}

.contact-container button:hover {
    background-color: #555;
}
.bars-animation{
    position: absolute;
width: 100%;
height: 100%;
display: flex;
z-index: -1;
}
.bar{
    width: 100%;
    height: 100%;
    background: #1f242d;
    /* border: 2px solid red; */
transform: translateY(-100%);
animation: show-bars .5s ease-in-out forwards;
animation-delay: calc(.1s *var(--i));
}
@keyframes show-bars{
100%{
    transform: translateY(0%);
}
}

.project-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 20px;
  }
  
  .project-item {
    width: 300px;
    background-color: #f7f7f7;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeIn 2s ease-in-out forwards;
  }
  
  .project-item:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  }
  
  .project-item img {
    width: 100%;
    height: 200px;
    object-fit: fill;
    border-radius: 10px 10px 0 0;
  }
  
  .project-item h3 {
    margin-top: 10px;
    color: black;
  }
  
  .project-item p {
    margin-bottom: 20px;
    color: teal;
  }
  
  @keyframes fadeIn {
    0% {
      opacity: 0;
      transform: translateY(50px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }