    /*
      INDUSTRY SECTION
      Full-bleed, dark background with concentric circles,
      using radial-gradient stacked in background.
    */
    .industry-section {
      position: relative;
      left: 50%;
      right: 50%;
      margin-left: -50vw;
      margin-right: -50vw;
      width: 100vw;
      padding: 4rem 1rem 0; /* top/bottom spacing */
      /* Multiple radial gradients for arcs */
      background: url('https://joinworthdev.wpengine.com/wp-content/themes/joinworth/images/Fade.png') no-repeat #050038;;
    }

    /* Container to center content within 1200px */
    .industry-container {
      max-width: 1600px;
      margin: 0 auto;
      position: relative; /* so absolutely positioned bubbles can be relative to this */
      background: url('https://worthai.com/wp-content/themes/joinworth/images/industry_section_bk_extended.png');
      background-repeat: no-repeat;
      background-position: center center;
      background-size: cover;
      text-align: center;
      height: 768px;
      border-top: 1px solid #696688;
    }

    /* Main Heading */
    .industry-heading {
      font-size: 34px;
      margin-top: 40px;
      margin-bottom: 1rem;
      background: linear-gradient(90deg, #BC42B9 4%, #4BC7E8 96%);
      -webkit-background-clip: text;  /* Safari/Chrome support */
      -webkit-text-fill-color: transparent;

    }

    /* Subheading */
    .industry-subheading {
      font-size: 16px;
      line-height: 1.5;
      color: #cfcfea;
      max-width: 700px;
      margin: 0 auto 3rem auto;
    }

    /* Row of industries across the top (Financial Institutions, ISVs, etc.) */
    .industry-icons {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 48px;
      margin-bottom: 3rem;
    }


    .industry-icon a,
    .industry-icon {
      display: flex;
      align-items: center;
      font-size: 18px;
      font-weight: 700;
      color:#B896FF !important;
      gap: 0.5rem;
      cursor: pointer;
    }

    .industry-icon img {
      width: 24px; /* example icon size */
      height: auto;
    }


/* 📱 Mobile Optimizations */
@media (max-width: 768px) {
  .industry-container {
    height: auto;
    padding: 6rem 5rem;
    background-size: contain;
    background-position: bottom center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 0;
    padding-right: 20%;
    right: 14px;
  }

  .industry-heading {
      font-size: 26px;
      margin-bottom: 1rem;
      text-align: center;
      max-width: 80%;
      line-height: 1.4;
  }

  .industry-subheading {
    font-size: 15px !important;
    max-width: 100% !important;
      margin-bottom: 2rem;
  }

  .industry-icons {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1.2rem;
      width: 100%;
  }

  .industry-icon {
      font-size: 16px;
      gap: 0.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
  }

  .industry-icon img {
      width: 22px; /* Resized icons for better fit */
      height: auto;
  }
}

/* 📱📲 Mobile Horizontal & iPad-Friendly Layout */
@media (max-width: 1024px) {
  .industry-container {
    height: auto;
    padding: 5rem 4rem;
    background-size: contain;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-position: center 100%;
    padding-bottom: 30%;
}

  .industry-heading {
      font-size: 30px;
      max-width: 85%;
      line-height: 1.4;
  }

  .industry-subheading {
      font-size: 16px;
      max-width: 85%;
      margin-bottom: 2.5rem;
  }

  .industry-icons {
      flex-wrap: wrap;
      justify-content: center;
      gap: 1.5rem;
  }

  .industry-icon {
      font-size: 18px;
      gap: 0.7rem;
  }

  .industry-icon img {
      width: 26px;
  }
}

@media (max-width: 768px) and (orientation: landscape) {
  .industry-container {
      padding: 4rem 3rem;
      background-size: contain;
      background-position: center center;
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      text-align: center;
  }

  .industry-heading {
      font-size: 28px;
      max-width: 80%;
      line-height: 1.3;
  }

  .industry-subheading {
      font-size: 15px;
      max-width: 85%;
      margin-bottom: 2rem;
  }

  .industry-icons {
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
  }

  .industry-icon {
      font-size: 16px;
      gap: 0.5rem;
  }

  .industry-icon img {
      width: 24px;
  }
}
