.development-process-area {
  position: relative;
  padding: 70px 0;
  background-color: #f8f9fa;
}

.process-timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.process-step {
  position: relative;
  width: 22%;
  margin: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 1;
}

.process-step:hover {
  -webkit-transform: translateY(-15px);
          transform: translateY(-15px);
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50px;
  right: -15%;
  width: 70%;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(#2b59ff), to(#4e7bff));
  background: linear-gradient(to right, #2b59ff, #4e7bff);
  z-index: 0;
}

.process-icon {
  position: relative;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2b59ff 0%, #4e7bff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  -webkit-box-shadow: 0 10px 20px rgba(43, 89, 255, 0.2);
          box-shadow: 0 10px 20px rgba(43, 89, 255, 0.2);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 2;
}

.process-icon i {
  font-size: 42px;
  color: #fff;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.process-icon .step-number {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 40px;
  height: 40px;
  background: #2b59ff;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
  -webkit-box-shadow: 0 5px 15px rgba(43, 89, 255, 0.3);
          box-shadow: 0 5px 15px rgba(43, 89, 255, 0.3);
  border: 3px solid #ffffff;
}

.process-content {
  background: #fff;
  padding: 30px 25px;
  border-radius: 12px;
  -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
          box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  text-align: center;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  height: 100%;
  border-top: 4px solid #2b59ff;
}

.process-content h4 {
  color: #222;
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 700;
}

.process-content p {
  color: #555;
  margin: 0;
  line-height: 1.7;
  font-size: 15px;
}

.process-step:hover .process-icon {
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
  -webkit-box-shadow: 0 0 35px rgba(43, 89, 255, 0.3);
          box-shadow: 0 0 35px rgba(43, 89, 255, 0.3);
}

.process-step:hover .process-content {
  -webkit-transform: translateY(8px);
          transform: translateY(8px);
  -webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
          box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

@media (max-width: 1200px) {
  .process-step {
    width: 45%;
    margin-bottom: 40px;
  }

  .process-step:nth-child(2n)::after {
    display: none;
  }

  .process-timeline {
    justify-content: space-around;
  }
}

@media (max-width: 992px) {
  .process-step {
    width: 45%;
    margin-bottom: 50px;
  }

  .process-step:nth-child(2n)::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .process-timeline {
    flex-direction: column;
    align-items: center;
  }

  .process-step {
    width: 100%;
    max-width: 320px;
    margin-bottom: 50px;
  }

  .process-step::after {
    display: none;
  }

  .process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: auto;
    bottom: -25px;
    left: 50%;
    right: auto;
    width: 3px;
    height: 40px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    background: -webkit-gradient(linear, left top, left bottom, from(#2b59ff), to(#4e7bff));
    background: linear-gradient(to bottom, #2b59ff, #4e7bff);
  }

  .process-icon {
    width: 90px;
    height: 90px;
  }

  .process-icon i {
    font-size: 36px;
  }

  .process-icon .step-number {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }

  .process-content {
    padding: 25px 20px;
  }

  .process-content h4 {
    font-size: 18px;
  }

  .process-content p {
    font-size: 14px;
  }
}