/* ── Enterprise Process Section ── */
.erp-process-section {
  padding: 50px 0;
}
.erp-process-section .sec-title h3 {
  color: #fff;
}

.erp-process-section .sub-title {
  color: #ff6c17 !important;
}

.erp-process-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.erp-process-card:hover {
  transform: translateY(-6px);
  border-color:  var(--theme-color2);
  background: rgba(255, 108, 23, 0.08);
  box-shadow: 0 12px 32px rgba(255, 108, 23, 0.15);
}

.erp-process-num {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 12px;
  font-weight: 800;
  color: rgba(255, 108, 23, 0.3);
  letter-spacing: 1px;
}

.erp-process-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 108, 23, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 22px;
  color:  var(--theme-color2);
  transition: all 0.3s ease;
}

.erp-process-card:hover .erp-process-icon {
  background:  var(--theme-color2);
  color: #fff;
}

.erp-process-card h6 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.erp-process-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin: 0;
}

/* ── Swiper Overrides ── */
.process-swiper {
  padding: 10px 10px 50px !important;
}

.process-swiper .swiper-button-next,
.process-swiper .swiper-button-prev {
  color:  var(--theme-color2);
  background: rgba(255, 255, 255, 0.08);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.process-swiper .swiper-button-next::after,
.process-swiper .swiper-button-prev::after {
  font-size: 16px;
  font-weight: 700;
}

.process-swiper .swiper-button-next:hover,
.process-swiper .swiper-button-prev:hover {
  background:  var(--theme-color2);
  color: #fff;
}

.process-swiper .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.3);
  opacity: 1;
}

.process-swiper .swiper-pagination-bullet-active {
  background:  var(--theme-color2);
  width: 24px;
  border-radius: 4px;
}

.process-swiper .swiper-slide {
  height: auto;
}

@media (max-width: 768px) {
  .erp-process-section {
    padding: 60px 20px;
  }

  .process-swiper {
    padding: 10px 5px 50px !important;
  }
}

/* Custom 5-column grid layout for Enterprise Industries */
.enterprise-industries-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 30px;
}

@media (max-width: 1200px) {
  .enterprise-industries-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 991px) {
  .enterprise-industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .enterprise-industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .enterprise-industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
