/* ====== FLUXFORCE SECTION ====== */
.fluxforce-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 70px 4%;
  font-family: "Inter", sans-serif;
  color: #333;
  box-sizing: border-box;
}

/* Badge (on top) */
.fluxforce-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 28px;
/*   font-weight: 600; */
  font-size: 13px;
  background-color: #fff;
  color: #000;
  border: 1px solid #3384FF;
  box-shadow: 2px 4px 4px rgba(0, 0, 0, 0.12);
  width: fit-content;
  margin: 0 auto 28px; /* center the badge and give spacing below */
}

.fluxforce-badge img {
  width: 20px;
  height: 20px;
  display: block;
}

/* Inner: two-column area below badge */
.fluxforce-inner {
  display: flex;
  gap: 60px;
/*   align-items: center; /* vertically center left and right columns */ */
  justify-content: space-between;
}

/* LEFT SIDE */
.fluxforce-left {
  flex: 1 1 50%;
  min-width: 280px;
  text-align: left;
}

.fluxforce-heading {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.fluxforce-highlight {
  color: #3478ff;
}

/* RIGHT SIDE */
.fluxforce-right {
  flex: 1 1 45%;
  min-width: 260px;

  /* Center the description + button vertically inside the column */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; /* keep content to the right on wide screens */
  text-align: center;
  gap: 18px;
}

.fluxforce-desc {
  font-size: 20px;
  color: #505050;
  line-height: 1.5;
  margin: 0;
  text-align:center;
  max-width: 420px;
}

/* BUTTON: icon + text centered horizontally & vertically */
.fluxforce-btn {
  display: inline-flex;            /* makes icon + text alignable */
  align-items: center;             /* vertical centering between text and image */
  justify-content: center;         /* centers content inside the button */
  gap: 10px;                       /* space between label and icon */
  background: linear-gradient(90deg, #00BB5C, #008D60);
  color: #fff;
  padding: 10px 22px;
  border-radius: 6px;
/*   font-weight: 600; */
  text-decoration: none;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

/* ensure image inside button keeps good size and alignment */
.fluxforce-btn img {
  width: 20px;
  height: 20px;
  display: block;
}

/* hover */
.fluxforce-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .fluxforce-section {
    padding: 60px 6%;
  }

  .fluxforce-inner {
    gap: 40px;
  }

  .fluxforce-heading {
    font-size: 30px;
  }

  .fluxforce-desc {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .fluxforce-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 30px;
  }

  .fluxforce-left,
  .fluxforce-right {
    width: 100%;
    min-width: 0;
    align-items: center;
    text-align: center;
  }

  .fluxforce-right {
    align-items: center;
  }

  .fluxforce-desc {
    text-align: center;
    font-size: 15px;
    max-width: none;
  }

  .fluxforce-btn {
    padding: 10px 18px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .fluxforce-heading {
    font-size: 22px;
  }

  .fluxforce-badge {
    font-size: 12px;
    padding: 6px 12px;
  }

  .fluxforce-btn {
    font-size: 13px;
    padding: 8px 16px;
  }
}
