/* Process Steps Shortcode Styling */
.process-steps-section {
  padding: 60px 0;
  background: #ffffff;
}

.process-steps-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.process-step-item {
  position: relative;
  background: #ffffff;
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  overflow: hidden;
}

.process-step-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.process-step-number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 200px;
  font-weight: 900; /* bolder for cleaner stroke */
  color: transparent;
  -webkit-text-stroke: 3px #e5e5e5; /* slightly thicker for visibility */
  line-height: 1;
  z-index: 0;
  font-family: "Impact", "Anton", Arial, sans-serif; /* geometric fonts work better */
  pointer-events: none;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step-icon {
  position: relative;
  z-index: 2;
  font-size: 48px;
  color: #eb1b24;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
}

.process-step-icon i {
  display: block;
}

.process-step-title {
  position: relative;
  z-index: 2;
  font-size: 16px;
  font-weight: 600;
  color: #001248;
  line-height: 1.4;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 992px) {
  .process-steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .process-step-item {
    min-height: 260px;
    padding: 35px 25px;
  }

  .process-step-number {
    font-size: 160px;
  }

  .process-step-icon {
    font-size: 42px;
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 768px) {
  .process-steps-section {
    padding: 40px 0;
  }

  .process-steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .process-step-item {
    min-height: 240px;
    padding: 30px 20px;
  }

  .process-step-number {
    font-size: 140px;
  }

  .process-step-icon {
    font-size: 36px;
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }

  .process-step-title {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .process-step-number {
    font-size: 100px;
  }

  .process-step-icon {
    font-size: 32px;
    width: 50px;
    height: 50px;
  }

  .process-step-title {
    font-size: 14px;
  }
}
