*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--body-font-light);
    letter-spacing: -0.6px;
}

.nav-wrapper{
  position: sticky;
  top: 0px;
  z-index: 999;
}
.nav-logo{
  width: min(40%, 220px);
}
.mobile-navbar {
    position: fixed;
    top: 0;
    left: -70%;
    width: 70%;
    height: 100%;
    display: flex;
    background-color: rgb(255, 255, 255);
    z-index: 1050;
    transition: left 0.4s ease;
    overflow-y: auto;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1040;
    display: none;
}

/* Show states */
.mobile-navbar.active {
    left: 0;
}

.mobile-overlay.active {
    display: block;
}
.desk-ul{
  display: flex;
}
.desk-btn{
  display: flex;
}
.ham-icon{
  display: none;
}

.hero-slide{
    position: relative;
    width: 100%;
    height: 80dvh;
}
.hero-img-wrap{
    position: absolute;
    z-index: 1;
}
.hero-overlay-text{
    position: relative;
    z-index: 2;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 30%, rgba(0, 0, 0, 0.3));
}
.hero-title{
    font-size: 60px;
}
.hero-animate {
  opacity: 0;
  transform: translateX(-50px);
  animation: slideInLeft 0.8s forwards;
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.about-years{
  height: 100%;
}

.strip-icon{
  width: 100px;
  height: 100px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-card{
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  background-image: url('/assets/images/project-6-1.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transition: 0.3s ease all;
  overflow: hidden;
}
.project-card-overlay{
  background: linear-gradient(to top, rgba(0, 0, 0, 0.0) 20%, rgba(0, 0, 0, 0) 100%);
  transform: translateY(60%);
  transition: 0.3s ease all;
}
.project-card:hover {
  transform: scale(1.04); /* Scale up the background image */
}
.project-card:hover .project-card-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.771) 20%, rgba(0, 0, 0, 0) 100%);
  transform: translateY(0%);
}




@media screen and (width < 800px) {
  .desk-ul{
    display: none;
  }
  .desk-btn{
    display: none;
  }
  .ham-icon{
    display: block;
  }
  .hero-title{
    font-size: 30px;
  }
  .hero-desc{
    font-size: 18px !important;
  }
  .hero-name{
    font-size: 14px;
  }
  .about-wrapper img{
    border-radius: 10px;
  }
  .about-img-text{
    border-radius: 10px;
  }
  .about-sm-img{
    width: 100% !important;
  }
  .about-text-big{
    font-size: 26px !important;
    margin-right: 10px !important;
  }
  .about-text-sm{
    font-size: 14px !important;
  }
  .form-wrapper{
    padding: 20px !important;
  }
  .project-card-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.771) 20%, rgba(0, 0, 0, 0) 100%);
    transform: translateY(0%);
  }
}