.elementor-14 .elementor-element.elementor-element-d2078fd{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-14 .elementor-element.elementor-element-f812f09{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-14 .elementor-element.elementor-element-4f877cc{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-14 .elementor-element.elementor-element-a320a2a{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-5792b21 *//* === Working Process Section === */
.process-section {
  padding: 100px 20px;
  background: #fcfcfe;
  font-family: 'Montserrat', sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* === Centered Subtitle Wrapper with Separator === */
.section-subtitle-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}

.subtitle-separator {
  height: 16px;
  width: 3px;
  background-color: #394099; /* Theme blue */
}

.section-subtitle {
  color: #394099; /* Theme blue */
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}

/* === Section Title === */
.section-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 60px;
  text-align: center;
  color: #000;
}

/* === Process Cards === */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.process-card {
  flex: 1 1 calc(25% - 30px);
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s ease forwards;
  text-align: center;
}

.process-card:nth-child(2) { animation-delay: 0.2s; }
.process-card:nth-child(3) { animation-delay: 0.4s; }
.process-card:nth-child(4) { animation-delay: 0.6s; }

.process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(57, 64, 153, 0.2);
}

/* === Icons === */
.process-icon {
  font-size: 36px;
  color: #394099;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.process-card:hover .process-icon {
  color: #D34623;
}

/* === Card Text === */
.process-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111;
}

.process-card p {
  font-size: 15px;
  color: #394099;
  line-height: 1.6;
}

/* === Animation === */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === Responsive === */
@media (max-width: 992px) {
  .process-card {
    flex: 1 1 45%;
  }

  .section-title {
    font-size: 36px;
  }
}

@media (max-width: 600px) {
  .process-card {
    flex: 1 1 100%;
  }

  .section-title {
    font-size: 30px;
  }
}

.section-subtitle {
  color: #394099 !important; /* Theme blue */
  opacity: 1 !important;
  visibility: visible !important;
}/* End custom CSS */