/* Hero Section - Vibrant Purple-Blue Gradient */
    .supply-hero {
      background: linear-gradient(135deg, #143a6b 0%, #1a4f90 30%, #1e568f 60%, #143a6b 100%);
      padding-top: 110px;
      padding-bottom: 60px;
      position: relative;
    }

    .supply-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at top left, rgba(26, 79, 144, 0.2), transparent 60%),
                  radial-gradient(circle at bottom right, rgba(125, 161, 76, 0.18), transparent 55%);
      z-index: 0;
      pointer-events: none;
    }

    .supply-hero .container {
      position: relative;
      z-index: 2;
    }

    .supply-hero-intro {
      position: relative;
      border-radius: 28px;
      padding: 2.75rem 2.5rem;
      background: linear-gradient(135deg, 
        #1A4F90 0%, 
        #2a669f 30%,
        #5f8c3b 60%,
        #7DA14C 100%);
      border: 1px solid rgba(255, 255, 255, 0.25);
      box-shadow: 0 24px 60px rgba(15, 12, 32, 0.6), 
                  0 0 0 1px rgba(255, 255, 255, 0.15) inset,
                  0 8px 32px rgba(26, 79, 144, 0.4),
                  0 4px 16px rgba(125, 161, 76, 0.3);
      height: 100%;
      overflow: hidden;
    }

    .supply-hero-intro::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
      pointer-events: none;
      z-index: 1;
    }

    .supply-hero-content {
      position: relative;
      z-index: 3;
      width: 100%;
    }

    .supply-page .caption-label {
      text-transform: uppercase;
      letter-spacing: 0.12em;
      font-size: 0.75rem;
      font-weight: 600;
      display: inline-block;
      margin-bottom: 0.75rem;
      color: rgba(255, 255, 255, 0.95);
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }

    .supply-page .caption-title {
      font-weight: 700;
      font-size: 2.25rem;
      line-height: 1.2;
      margin-bottom: 1rem;
      color: #ffffff;
      text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .supply-page .caption-text {
      color: rgba(255, 255, 255, 0.98);
      max-width: 100%;
      line-height: 1.7;
      font-size: 1.1rem;
      text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    }

    .text-white-75 {
      color: rgba(255, 255, 255, 0.75);
    }

    .supply-shapes {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      overflow: hidden;
      z-index: 1;
    }

    .supply-shapes .shape {
      position: absolute;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(26, 79, 144, 0.1), rgba(125, 161, 76, 0.1));
      animation: float 20s ease-in-out infinite;
    }

    .supply-shapes .shape-1 {
      width: 300px;
      height: 300px;
      top: -10%;
      left: -5%;
      animation-delay: 0s;
    }

    .supply-shapes .shape-2 {
      width: 200px;
      height: 200px;
      bottom: -10%;
      right: -5%;
      animation-delay: 8s;
    }

    .supply-shapes .shape-3 {
      width: 250px;
      height: 250px;
      top: 50%;
      right: 15%;
      animation-delay: 16s;
    }

    @keyframes float {

      0%,
      100% {
        transform: translateY(0) translateX(0) rotate(0deg);
      }

      25% {
        transform: translateY(-40px) translateX(30px) rotate(5deg);
      }

      50% {
        transform: translateY(30px) translateX(-20px) rotate(-5deg);
      }

      75% {
        transform: translateY(-20px) translateX(15px) rotate(3deg);
      }
    }

    .supply-hero-image {
      position: relative;
      z-index: 2;
    }

    .supply-hero-image img {
      max-height: 250px;
      filter: drop-shadow(0 20px 40px rgba(26, 79, 144, 0.3));
      animation: floatImage 6s ease-in-out infinite;
    }

    @keyframes floatImage {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-20px);
      }
    }

    /* Gradient Text */
    .gradient-text {
      background: linear-gradient(135deg, #1A4F90 0%, #7DA14C 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .text-white-75 {
      color: rgba(255, 255, 255, 0.8);
    }

    /* Supply Cards - Standard Format */
    .supply-card {
      background: white;
      border: 1px solid rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
      margin-bottom: 2rem;
    }

    .supply-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
    }

    /* Card Header Icons */
    .card-header-icon {
      margin-top: -40px;
      margin-bottom: 1rem;
    }

    .icon-wrapper {
      width: 80px;
      height: 80px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, #1A4F90 0%, #7DA14C 100%);
      border-radius: 50%;
      box-shadow: 0 10px 30px rgba(26, 79, 144, 0.3);
      transition: all 0.3s ease;
    }

    .icon-wrapper-primary {
      background: linear-gradient(135deg, #1A4F90 0%, #7DA14C 100%);
    }

    .icon-wrapper-success {
      background: linear-gradient(135deg, #1A4F90 0%, #7DA14C 100%);
    }

    .icon-wrapper-orange {
      background: linear-gradient(135deg, #1A4F90 0%, #7DA14C 100%);
    }

    .icon-wrapper i {
      font-size: 2rem;
      color: white;
    }

    .supply-card:hover .icon-wrapper {
      transform: scale(1.1) rotate(5deg);
      box-shadow: 0 15px 40px rgba(26, 79, 144, 0.4);
    }

    /* Content Sections */
    .content-section p {
      font-size: 1.05rem;
      line-height: 1.8;
      color: #495057;
      margin-bottom: 1.5rem;
    }

    .content-section .lead {
      font-size: 1.25rem;
      font-weight: 500;
      color: #333;
    }

    /* Feature Boxes */
    .feature-box {
      transition: all 0.3s ease;
    }

    .feature-box:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    .feature-icon-wrapper {
      width: 50px;
      height: 50px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, #1A4F90 0%, #7DA14C 100%);
      border-radius: 50%;
      box-shadow: 0 4px 15px rgba(26, 79, 144, 0.3);
      transition: all 0.3s ease;
      flex-shrink: 0;
    }

    .feature-icon-wrapper i {
      font-size: 1.5rem;
      color: white;
    }

    .feature-box:hover .feature-icon-wrapper {
      transform: scale(1.1) rotate(5deg);
      box-shadow: 0 6px 20px rgba(26, 79, 144, 0.4);
    }

    /* Stat Cards */
    .stat-card {
      background: linear-gradient(135deg, #143a6b 0%, #1a4f90 30%, #1e568f 60%, #143a6b 100%);
      border: 1px solid rgba(255, 255, 255, 0.1);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .stat-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at top left, rgba(26, 79, 144, 0.15), transparent 60%),
                  radial-gradient(circle at bottom right, rgba(125, 161, 76, 0.12), transparent 55%);
      z-index: 0;
      pointer-events: none;
    }

    .stat-card > * {
      position: relative;
      z-index: 1;
    }

    .stat-card strong {
      color: #ffffff;
    }

    .stat-card small {
      color: rgba(255, 255, 255, 0.8);
    }

    .stat-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 30px rgba(26, 79, 144, 0.3);
      border-color: rgba(255, 255, 255, 0.2);
    }

    .stat-icon-wrapper {
      width: 60px;
      height: 60px;
      margin: 0 auto;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, #1A4F90 0%, #7DA14C 100%);
      border-radius: 50%;
      box-shadow: 0 6px 20px rgba(26, 79, 144, 0.4);
      transition: all 0.3s ease;
    }

    .stat-icon-wrapper i {
      font-size: 1.75rem;
      color: white;
    }

    .stat-card:hover .stat-icon-wrapper {
      transform: scale(1.1) rotate(5deg);
      box-shadow: 0 8px 25px rgba(26, 79, 144, 0.5);
    }

    /* Highlight Boxes */
    .highlight-box {
      transition: all 0.3s ease;
      border: 1px solid rgba(26, 79, 144, 0.1);
    }

    .highlight-box:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      border-color: rgba(26, 79, 144, 0.3);
    }

    /* Step Cards */
    .step-card {
      transition: all 0.3s ease;
    }

    .step-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1) !important;
    }

    /* Animation — uses transform instead of opacity for WCAG contrast compliance */
    .animate-fade-in {
      animation: slideUp 0.6s ease-out both;
    }

    @keyframes slideUp {
      from {
        transform: translateY(20px);
      }

      to {
        transform: translateY(0);
      }
    }

    /* Responsive */
    @media (max-width: 768px) {
      .display-4 {
        font-size: calc(1.5rem + 1vw) !important;
      }
    }