.processsection {
  background: #000;
  padding: 60px 20px;
  text-align: center;
}

.processcontainer {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
}

.processbox {
  background: #111;
  padding: 40px 20px 30px;
  border-radius: 10px;
  width: 220px;
  text-align: center;
  position: relative;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease, border 0.3s ease;
  border: 2px solid transparent;
}

.processbox:hover {
  border: 2px solid #fff;
}


.processbox.show {
  opacity: 1;
  transform: translateY(0);
}

.processnumber {
  background: #9acd32;
  color: #000;
  font-weight: bold;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -18px;
  right: -18px;
  font-size: 14px;
  z-index: 2;
}

.processbox::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -30px;
  width: 30px;
  height: 2px;
  background: #9acd32;
  transform: translateY(-50%);
}

.processbox:last-child::after {
  display: none;
}

.processicon img {
  width: 40px;
  height: 40px;
  margin-bottom: 15px;
}

.processtitle {
  color: #fff;
  font-size: 18px;
  margin-bottom: 10px;
}

.processdesc {
  color: #aaa;
  font-size: 14px;
}

.processbuttonwrap {
  margin-top: 40px;
}

.processbutton {
  display: inline-block;
  background: #9acd32;
  color: #000;
  padding: 12px 25px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.processbutton:hover {
  background: #b0e05a;
}

/* Responsive */
@media(max-width: 768px) {
  .processcontainer {
    flex-direction: column;
    align-items: center;
  }
  .processbox::after {
    display: none;
  }
  .processnumber {
    right: -10px;
  }
}