.elementor-2403 .elementor-element.elementor-element-1c04978{--display:flex;}/* Start custom CSS for text-editor, class: .elementor-element-081f25d */.erp-partner-section {
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #1f2937;               /* deep slate */
  background: #ffffff;
  max-width: 900px;
  margin: 40px auto;
  text-align: center;
  padding: 36px 28px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(31,41,55,0.08);
  opacity: 0;
  transform: translateY(28px);
  animation: fadeSlideUp 900ms cubic-bezier(.22,.98,.36,1) forwards;
  transition: transform 250ms ease, box-shadow 250ms ease;
}

/* Slight lift + stronger shadow on hover (desktop) */
@media (hover: hover) and (min-width: 720px) {
  .erp-partner-section:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 12px 30px rgba(31,41,55,0.12);
  }
}

@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(28px);
  }
  60% {
    opacity: 1;
    transform: translateY(-6px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Small responsive tweaks */
@media (max-width: 520px) {
  .erp-partner-section {
    padding: 24px 16px;
    font-size: 16px;
    margin: 24px 12px;
    border-radius: 10px;
  }
}
.erp-implementation {
  font-family: "Poppins", sans-serif;
  max-width: 850px;
  margin: 50px auto;
  text-align: center;
  padding: 20px;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s ease-out forwards;
}

.erp-implementation h2 {
  font-size: 24px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 16px;
  text-transform: capitalize;
}

.erp-implementation p {
  font-size: 17px;
  line-height: 1.7;
  color: #4b5563;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.erp-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 50px auto;
  padding: 20px;
}

.feature-box {
  background: #ffffff;
  padding: 28px 20px;
  border-radius: 14px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.feature-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
}

.feature-box .icon {
  font-size: 42px;
  margin-bottom: 16px;
}

.feature-box h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 10px;
}

.feature-box p {
  font-size: 16px;
  line-height: 1.6;
  color: #4b5563;
}

/* Responsive for mobile/tablets */
@media (max-width: 900px) {
  .erp-features {
    grid-template-columns: 1fr;
  }
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 per row */
  gap: 30px;
  max-width: 1400px; /* thodi ziada width */
  margin: 0 auto;
}

.industry-box {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
  opacity: 0;
  animation-fill-mode: forwards;

  /* Same size for all */
  height: 260px; /* fixed chhoti height */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.industry-box .icon img {
  width: 70px;
  margin: 0 auto 15px auto;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.industry-box:hover .icon img {
  filter: grayscale(0%);
}

.industry-box h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.industry-box p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Animations */
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Apply Animations */
.fade-in-left { animation: fadeInLeft 1s ease forwards; }
.fade-in-up { animation: fadeInUp 1s ease forwards 0.3s; }
.fade-in-right { animation: fadeInRight 1s ease forwards 0.6s; }

/* Responsive */
@media (max-width: 1200px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .industries-grid {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */