/* Certificate Style Working Process */
.working-process-section.certificate-style {
  padding: 100px 0;
  background: #f8f9fa;
}

.certificate-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.certificate-item {
  position: relative;
  background: #fff;
  border: 2px solid #e5e5e5;
  border-radius: 12px;
  padding: 40px 30px;
  min-width: 280px;
  max-width: 320px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 300ms ease;
  text-align: center;
}

.certificate-item:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.12);
  border-color: #0ABBED;
}

.certificate-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0ABBED 0%, #106DB3 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  font-family: 'Matter', sans-serif;
  color: #fff;
  box-shadow: 0px 4px 16px rgba(10, 187, 237, 0.3);
}

.certificate-content {
  margin-top: 20px;
}

.certificate-content h3 {
  font-size: 22px;
  font-weight: 600;
  font-family: 'Matter', sans-serif;
  color: #222;
  margin-bottom: 12px;
  line-height: 1.3;
}

.certificate-content p {
  font-size: 16px;
  line-height: 24px;
  color: #555;
  font-family: 'Matter', sans-serif;
  margin: 0;
}

.certificate-arrow {
  font-size: 32px;
  color: #0ABBED;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsive */
@media (max-width: 991px) {
  .certificate-container {
    flex-direction: column;
    gap: 40px;
  }
  
  .certificate-arrow {
    transform: rotate(90deg);
  }
  
  .certificate-item {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .working-process-section.certificate-style {
    padding: 60px 0;
  }
  
  .certificate-item {
    padding: 30px 20px;
  }
  
  .certificate-content h3 {
    font-size: 20px;
  }
  
  .certificate-content p {
    font-size: 15px;
  }
}
