



  /* Section container */
  .supply-flow {
    padding: 32px 0;
    background: #fff;
	position:relative;
  }

  /* Max width + centering */
  .flow-wrap {
    max-width: 1440px;                /* requested */
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;                  /* allows responsiveness */
  }

  /* Stage block */
  .stage {
    display: grid;
    grid-template-rows: auto auto auto;
    justify-items: center;
    text-align: center;
    min-width: 200px;
    flex: 1 1 220px;                 /* grow/shrink nicely */
  }

  /* Header (above image) */
  .stage-title {
    margin: 0 0 10px;
    color: #000969;                  /* requested */
    font-size: 26px;                 /* requested */
    font-weight: 700;                /* bold requested */
    line-height: 1.2;
  }

  /* Icon */
  .stage-icon {
    width: clamp(120px, 17vw, 180px); /* scales with screen, capped */

    display: block;
	height: 150px;
  }

  /* Caption (below image) */
  .stage-sub {
    margin: 20px 0 0;
    color: #636363;                  /* requested */
    font-size: 18px;                 /* requested */
    font-weight: 500;                /* requested */
    line-height: 1.35;
  }

  /* Arrows between stages */
  .arrow {
    width: clamp(26px, 3.5vw, 40px);
    height: auto;
    flex: 0 0 auto;
    align-self: center;
    opacity: 0.9;
  }
  .across-top-sc {
	width:100%;
	float:left;
	color:#0C1896;
	font-size:36px;
	font-weight:bold;
	margin: 0 0 50px;
}

  /* Tablet: tighten spacing */
  @media (max-width: 1024px) {
    .flow-wrap {
      gap: 22px;
      justify-content: center;
    }
  }

  /* Mobile: stack vertically; hide arrow images */
  @media (max-width: 640px) {
    .flow-wrap {
      flex-direction: column;
      gap: 18px;
    }
    .arrow {
      display: none;
    }
    .stage-title { font-size: 22px; }
    .stage-sub   { font-size: 18px; }
  }

/*************************************/
.industries-sec {
	position:relative;
	width:100%;
	padding:10px 0;
}
.across-sc {
	width:100%;
	float:left;
	color:#0C1896;
	font-size:36px;
	font-weight:bold;
}

 .industries {
    padding: 24px;
    background: #f6f8fb;
  }

  .industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(268px, 1fr));
    gap: 20px;
    max-width: 1440px;   /* requested max width */
    margin: 0 auto;
    justify-content: center;
  }

  .industry-card {
    width: 268px;        /* requested fixed width */
    height: 268px;       /* requested fixed height */
    background: #2E6CBD; /* requested box color */
    color: #fff;
    padding: 24px 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .industry-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.12);
  }

  .industry-card img {
    width:130px;
    max-width: 70%;
    height: auto;
    margin-bottom:30px;
    display: block;
  }

  .industry-label {
    margin: 0;
    font-size: 24px;    /* requested font */
    font-weight: 400;
    line-height: 1.2;
  }

  /* Mobile adjustments */
  @media (max-width: 480px) {
    .industries-grid {
      grid-template-columns: 1fr;
    }
    .industry-card {
      width: 100%;
      max-width: 268px;
      margin: 0 auto;
    }
    .industry-label {
      font-size: 18px;
    }
  }