* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--body-font-light);
  /* letter-spacing: -0.3px; */
}

.nav-wrapper {
  position: sticky;
  top: 0px;
  z-index: 999;
}

.nav-logo {
  width: min(50%, 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-text {
  font-size: 55px;
}

.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;
}


.heading-sm {
  position: relative;
}

.heading-sm::after {
  content: '';
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  position: absolute;
  left: 25%;
}

.about-list-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stats-section {
  background-color: #f5f5f5;
  padding: 50px 0;
  position: relative;
  transform: skewY(-1.5deg);
}

/* .stats-container {
  transform: skewY(-1.5deg);
} */

/* Individual stat box */
/* .stat-item {
  text-align: center;
} */

.stat-icon {
  background-color: var(--light-color);
  color: var(--primary-color);
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 28px;
}

.stat-number{
  font-size: 30px;
  text-align: left;
}

.project-card-list-icon{
  width: 10px;
  height: 2px;
  background-color: var(--primary-color);
}

.line{
  transform: skewY(1.5deg);
  border-color: #818181 !important;
}
.line-2{
  transform: skewY(-1.5deg);
  border-color: #818181 !important;
}

.property-thumbs img{
  aspect-ratio: 3/2;
  object-fit: cover;
}


@media screen and (width < 800px) {
  .desk-ul {
    display: none;
  }

  .desk-btn {
    display: none;
  }

  .ham-icon {
    display: block;
  }

  .hero-text {
    font-size: 30px;
  }

  .hero-desc {
    font-size: 16px !important;
  }

  .hero-btn{
    font-size: 16px !important;
  }

  .hero-name {
    font-size: 14px;
  }

  .about-wrapper img {
    border-radius: 10px;
  }

  .about-img-text {
    border-radius: 10px;
  }

  .about-sm-img {
    width: 100% !important;
  }

  .stat-item{
    justify-content: start !important;
    padding-left: 40px !important;
  }

  .about-text-big {
    font-size: 26px !important;
    margin-right: 10px !important;
  }

  .about-text-sm {
    font-size: 14px !important;
  }

  .form-wrapper {
    padding: 20px !important;
  }

  .footer-top{
    flex-direction: column;
    align-items: start !important;
  }

  .footer-nav{
    flex-direction: column;
  }

  .property-thumbs img{
    aspect-ratio: 3/2;
    object-fit: cover;
    border-radius: 7px !important;
  }

}