.Service_Features {
  width: 100%;
  padding: 35px 0;
}

.Service_Features .service-features-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.Service_Features .service-feature {
  position: relative;
  min-height: 125px;
  padding: 22px 18px;
  background: #ffffff;
  border: 1px solid #e8e0da;

  display: flex;
  align-items: center;
  gap: 14px;

  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.Service_Features .service-feature::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: #561314;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s ease;
}

.Service_Features .service-feature:hover {
  /* transform: translateY(-5px); */
  box-shadow: 0 12px 25px rgba(45, 25, 20, 0.1);
}

.Service_Features .service-number {
  position: absolute;
  top: 8px;
  right: 12px;

  
  font-size: 30px;
  font-weight: 600;

  color: rgba(86, 19, 20, 0.1);
}

.Service_Features .service-icon {
  width: 50px;
  height: 50px;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid #e2d6cf;
  border-radius: 50%;

  color: #561314;
  font-size: 20px;

  transition: all 0.3s ease;
}

.Service_Features .service-feature:hover .service-icon {
  background: #561314;
  color: #ffffff;
  transform: rotate(5deg);
}

.Service_Features .service-content {
  position: relative;
  z-index: 1;
}

.Service_Features .service-content h6 {
  margin: 0 0 5px;

  color: #3d2a24;

  
  font-size: 22px;
  font-weight: 800;

  line-height: 1.2;
}

.Service_Features .service-content p {
  margin: 0;

  color: #777;

  
  font-size: 14px;
  font-weight: 400;

  line-height: 1.5;
}

@media (max-width: 1199px) {
  .Service_Features .service-features-row {
    gap: 12px;
  }

  .Service_Features .service-feature {
    padding: 18px 12px;
    gap: 10px;
  }

  .Service_Features .service-content h6 {
    font-size: 18px;
  }
  .Service_Features .service-feature {
    min-height: 95px;
  }
  .Service_Features .service-content p {
    font-size: 14px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .Service_Features .service-feature {
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .Service_Features {
    padding: 20px 0;
  }

  .Service_Features .service-features-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .Service_Features .service-feature {
    min-height: 105px;
  }
}

@media (max-width: 575px) {
  .Service_Features {
    padding: 15px 0;
  }

  .Service_Features .service-features-row {
    gap: 8px;
  }

  .Service_Features .service-feature {
    min-height: 90px;
    padding: 14px 9px;
    gap: 8px;
    flex-direction: column;
  }

  .Service_Features .service-number {
    font-size: 20px;
    top: 5px;
    right: 7px;
  }

  .Service_Features .service-icon {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }

  .Service_Features .service-content h6 {
    font-size: 15px;
    margin-bottom: 2px;
    text-align: center;
  }

  .Service_Features .service-content p {
    font-size: 12px;
    line-height: 1.3;
  }
}
