* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.erp-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
  width: 100%;
  min-height: 100vh;
  padding: 50px 100px;
  color: #fff;
  overflow: hidden;
}

/* Background image with gradient overlay */

.erp-text {
  flex: 1;
  max-width: 1110px;
  z-index: 1;
}

.erp-text h5 {
  font-size: 14px;
  color: #cbd5e1;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.erp-text h1 {
  font-size: 52px;
  line-height: 1.3;
  margin-bottom: 20px;
  color: white;
}

.erp-text h1 span {
  color: #1fb67e;
}

.erp-text p {
  font-size: 20px;
  color: #e2e8f0;
  margin-bottom: 30px;
  max-width: 600px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 30px;
  background: #1fb67e;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn:hover {
  background: #227557;
}

@media (max-width: 900px) {
  .erp-section {
    text-align: center;
    justify-content: center;
    padding: 30px;
  }

  .erp-text h1 {
    font-size: 32px;
  }
  .erp-text p {
    font-size: 16px;
    color: #e2e8f0;
    margin-bottom: 30px;
    max-width: 1200px;
  }
}

.erp-wrapper {
  max-width: full;

  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.erp-heading {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #111;
  position: relative;
  display: inline-block;
}

.erp-heading::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  border-radius: 4px;
  margin: 8px auto 0;
  background: linear-gradient(90deg, #ff0066, #ffcc00, #00cc66, #0099ff);
}

.erptext {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin: 15px auto;
  max-width: 700px; /* ✅ keeps text in a centered column */
  text-align: center; /* ✅ ensures text stays centered */
}

/* Floating WhatsApp icon */
.chat-icon {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 50px;
  height: 50px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.chat-icon img {
  width: 28px;
  height: 28px;
}

.biz-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 20px;
}

.biz-title {
  text-align: center;
  font-size: 2.3rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 40px;
  position: relative;
}

.biz-title::after {
  content: "";
  display: block;
  width: 90px;
  height: 4px;
  border-radius: 5px;
  margin: 10px auto 0;
  background: linear-gradient(90deg, #6a11cb, #2575fc);
}

.biz-grid {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(400px, 1fr)
  ); /* more flexible */
  gap: 25px;
}

.biz-card {
  background: #fff;
  border-radius: 14px;
  padding: 25px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.biz-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.biz-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff7e5f, #feb47b);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 26px;
  color: #fff;
}

.biz-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 12px;
}

.biz-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}

/* Responsive text adjustments */
@media (max-width: 768px) {
  .biz-title {
    font-size: 1.8rem;
  }

  .biz-card h3 {
    font-size: 1rem;
  }

  .biz-card p {
    font-size: 0.9rem;
  }
  .biz-grid {
    display: grid;
    grid-template-columns: repeat(
      auto-fit,
      minmax(250px, 1fr)
    ); /* more flexible */
    gap: 25px;
  }
}

@media (max-width: 480px) {
  .biz-section {
    padding: 15px;
  }

  .biz-title {
    font-size: 1.6rem;
  }

  .biz-card {
    padding: 18px;
  }
}

.accounting {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.accounting-wrapper {
  max-width: 1200px;
  margin: 60px auto;
  text-align: center;
  padding: 20px;
}

.accounting-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #222;
}

.highlight-text {
  color: #1fb67e;
}

.accounting-subtext {
  font-size: 1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto 40px;
}

.feature-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.feature-box {
  background: #fff;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-8px);
}

.feature-icon {
  font-size: 40px;
  margin-bottom: 15px;
  color: #1fb67e;
}

.feature-desc {
  font-size: 0.95rem;
  color: #555;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  padding: 12px 25px;
  background: #1fb67e;
  color: #fff;
  border-radius: 50px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-btn span {
  margin-right: 8px;
}

.contact-wrapper {
  max-width: 1100px;
  margin: 70px auto;
  padding: 20px;
  text-align: center;
}

.contact-heading {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}

.contact-subtext {
  font-size: 1rem;
  color: #555;
  margin-bottom: 40px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
}

.contact-card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.contact-icon {
  font-size: 36px;
  margin-bottom: 15px;
  color: #2563eb;
}

.contact-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #222;
}

.contact-text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}
