.about-block {
  position: relative;
  padding: 120px 0;
  background-color: #fff;
  overflow: visible;
}

.about-block__main-img {
  position: relative;
  display: inline-block;
  z-index: 2;
}

.about-block__main-img img {
  width: 100%;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.1) 0 10px 25px;
}

.about-block__left {
  position: absolute;
  top: 200px;
  left: -110px;
  z-index: 1;
}

.about-block__left img {
  width: 100px;
  opacity: 0.8;
}

.about-block_experience{
  position: absolute;
  position: absolute;
    border-radius: 0;
    top: 52%;
    left: 50%;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 43.9%;
    height: 30.1%;
    background-color: var(--cl-color-dark-primary);
    padding: 7px;
    z-index: 2;
  box-shadow: rgba(0, 0, 0, 0.15) 0 8px 20px;
}

 
 .num {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  width: 100px;
  border-radius: 50%;
  
  background-color: rgba(14, 208, 163, 0.5); 
  /*box-shadow: rgba(0, 0, 0, 0.15) 0 8px 20px;*/
}

.about-block_experience-number {
  font-size: 46px;
  font-weight: 700;
  margin: 0;
  opacity: 1;
  font-weight: bold;
}

.about-block_experience-text {
  font-size: 20px;
  margin: 0;
  font-weight: bold;
}

.about-block-content__subtitle{
  font-weight: 600;
  font-size: 18px;
}
.about-block-content__heading{
  font-size: 28px;
  font-weight: 600;
}
.about-block-content__text1{
 font-weight: bold;
 font-size: 16px;
 
}
.about-block-content__text{
  font-size: 16px;
  word-spacing: 2px;
  color: #6d756d;
}
.about-block__shape-2 {
  position: absolute;
  right: 0;
  bottom: 50px;
  width: 300px;
  z-index: 0;
  opacity: 0.8;
}

.about-block__shape-2 img {
  width: 80%;
  height: auto;
}


    .cl-service-block {
      position: relative;
      padding: 120px 0;
      background-color: var(--cl-color-light-green);
      overflow: hidden;
    }
    .about-block-shape__shape-1{
      position: absolute;
      top: 0;
      left: 0;
      z-index: 0;
      opacity: 0.5;
    }

    .about-block-shape__shape-1 img {
      width: 400px;
    }

    .service-card {
      position: relative;
      background-color: var(--cl-color-white);
      border-radius: 16px;
      padding: 50px 30px;
      text-align: center;
      transition: all 0.3s ease-in-out;
      overflow: hidden;
      z-index: 2;
    }

    .service-card:hover {
      background-color: var(--cl-color-primary);
      color: #fff;
      transform: translateY(-5px);
    }

    .service-card__hover-img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
      opacity: 0;
      transition: 0.4s ease;
    }

    .service-card:hover .service-card__hover-img {
      opacity: 0.1;
    }

    .service-card__title {
      font-size: 26px;
      font-weight: 700;
      margin-bottom: 20px;
      position: relative;
      z-index: 2;
    }

    .service-card__text {
      position: relative;
      z-index: 2;
      font-size: 15px;
      line-height: 1.8;
    }



/* ===== HERO SECTION ===== */

.inner-hero {
  position: relative;
  width: 100%;
  height: 55vh;
  background: url("img/home-1-footer-bg.jpg") center center/cover no-repeat; /* your soil+plant image */
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #fff;
  overflow: hidden;
}


.inner-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(to right, rgba(2, 87, 41, 0.9) 10%, rgba(37, 29, 15, 0.6) 70%, rgba(1, 38, 18, 0) 100%);

}


.inner-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding-left: 8%;
}

.inner-hero-content h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
}

.inner-hero-content p {
  font-size: 18px;
  color: #fff;
  margin: 0;
}

.inner-hero-content a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.inner-hero-content a:hover {
  text-decoration: underline;
}


.inner-hero {
  position: relative;
  overflow: visible;
  z-index: 1; 
}


.inner-hero .hero-grass {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 2; 
  opacity: 1 !important;
}


/* ========= RESPONSIVE ========= */
@media (max-width: 992px) {
  .about-block_experience {
    width: 120px;
    height: 120px;
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .about-block__left {
    display: none;
  }
  .about-block_experience {
    top: 50%;
    left: 70%;
    width: 100px;
    height: 100px;
    font-size: 12px;
  }
}

@media (max-width: 576px) {
  
  .about-block{
    padding-top: 50px;
    padding-bottom: 50px;
  }
  
  .about-block__main-img{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
  }
  .about-block__main-img img{
    width:200px ;
  }
  .about-block-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .about-block-content__subtitle img{
    height: 30px;
    width: 30px;
  }
  .about-block-content__subtitle{
    align-items: center;
    font-size: 12px;
  }
  .about-block-content__heading{
    font-size: 22px;
  }
  .inner-hero-content{
    width: 50vw;
  }
  .about-block_experience {
    width: 100px;
    height: 90px;
    margin-top: 15px;
  }

  .num {
    width: 50px;
    height: 50px;
  }

  .about-block_experience-number {
    font-size: 20px;
  }

  .about-block_experience-text {
    font-size: 14px;
  }
  

}




@media (max-width: 992px) {
  .inner-hero {
    height: 45vh;
  }
  .inner-hero-content h2 {
    font-size: 36px;
  }
}

