.value {
  flex: 1;
  text-align: center;
  padding: 24px 20px;
  position: relative;
  background: transparent;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: #fff;
  box-shadow: 0 10px 60px 0 rgba(0, 0, 0, 0.05);
}

.icon img {
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
}

.value h3 {
  color: #0e2207;
  text-align: center;
  font-family: "DM Sans";
  font-size: var(--font-size-24, 24px);
  font-style: normal;
  font-weight: 600;
  line-height: 36px;
  margin-bottom: 16px;
}

.value p {
  color: #757873;
  text-align: center;
  font-family: "DM Sans";
  font-size: var(--font-size-16, 16px);
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
}

.value:not(:last-child)::after {
  display: flex;
  content: "";
  position: absolute;
  top: 45px;
  left: calc(100% + -55px);
  width: 110px; 
  height: 50px;
  z-index: 1;
  background-image: radial-gradient(
      circle,
      rgba(31, 99, 6, 0.2) 5px,
      transparent 5px
    ),
    radial-gradient(circle, rgba(31, 99, 6, 0.4) 3px, transparent 3px),
    radial-gradient(circle, rgba(31, 99, 6, 0.6) 3px, transparent 3px),
    radial-gradient(circle, rgba(31, 99, 6, 0.6) 3px, transparent 3px),
    radial-gradient(circle, rgba(31, 99, 6, 0.4) 3px, transparent 3px),
    radial-gradient(circle, rgba(31, 99, 6, 0.2) 3px, transparent 3px);
  background-position: 0% 50%, 20% 50%, 40% 50%, 60% 50%, 80% 50%, 100% 50%;
  background-repeat: no-repeat;
  background-size: 6px 6px;
}
.kitchenhub .value:not(:last-child)::after {
  display: none;
}
.value-start {
  border-radius: 32px 0 0 32px;
  background: #fff;
  box-shadow: 0 10px 60px 0 rgba(0, 0, 0, 0.05);
}
.value-end {
  border-radius: 0 32px 32px 0;
  background: #fff;
  box-shadow: 0 10px 60px 0 rgba(0, 0, 0, 0.05);
}
@media (max-width: 768px) {
  .value:not(:last-child)::after {
    display: none;
  }
  .value-start {
    border-radius: 32px 32px 0 0; /* top rounded */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); /* softer shadow */
  }

  .value-end {
    border-radius: 0 0 32px 32px; /* bottom rounded */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); /* softer shadow */
  }
}
