/* ================= B2B TABS ================= */

.b2b-tabs {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 80px 0 40px;
}

.b2b-tab {
  padding: 14px 34px;
  border-radius: 40px;
  border: 2px solid #7BAF42;
  background: transparent;
  color: #1B5E20;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.35s ease;
}

.b2b-tab:hover {
  background: rgba(123, 175, 66, 0.15);
}

.b2b-tab.active {
  background: #7BAF42;
  color: #fff;
  box-shadow: 0 10px 30px rgba(123, 175, 66, 0.45);
}

/* ================= CONTENT SWITCH ================= */
.b2b-section {
  width: 100%;
}

.b2b-section .b2b-banner {
  width: 100%;
  display: none !important;
}

.b2b-section .b2b-banner.active {
  display: block !important;
}
.b2b-block {
  display: none;
  animation: fadeUp 0.6s ease;
}

.b2b-block.active {
  display: block;
}

/* ================= EXISTING STYLES (UNCHANGED) ================= */

.b2b-section {
  width: 100%;
}

.b2b-banner {
  width: 100%;
  display: block;
}

/* .b2b-content {
  max-width: 1100px;
  margin: -20px auto 0;
  background: #fff;
  padding: 50px 60px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
} */
.b2b-content {
  max-width: 1100px;
  margin: -20px auto 0;
  padding: 50px 60px;
  text-align: center;

  position: relative;
  z-index: 2;

  /* 🔥 IMPORTANT */
  background: transparent;
}




.b2b-content h2 {
  font-size: 38px;
  margin-bottom: 20px;
}

.b2b-content p {
  font-size: 18px;
  line-height: 1.9;
}

/* ================= ANIMATION ================= */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
  .b2b-content {
    margin: -30px 15px 0;
    padding: 35px 25px;
  }

  .b2b-content h2 {
    font-size: 28px;
  }

  .b2b-content p {
    font-size: 16px;
  }
}