/* General layout */
section {
    padding: 4rem 2rem;
  }
  
  .supply-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/supply-hero.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 6rem 2rem;
  }
  
  .supply-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  
  .supply-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: auto;
  }
  
  /* Supply cards */
  .supply-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .supply-card {
    background-color: #f4f4f4;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  
  .supply-card:hover {
    transform: translateY(-10px);
  }
  
  .supply-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #332c78;
  }
  
  .supply-card h3 {
    margin-bottom: 0.5rem;
    color: #333;
  }
  
  .clients-showcase {
    padding: 4rem 2rem;
    background-color: #f9f9f9;
    text-align: center;
  }
  
  .clients-showcase .section-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .clients-showcase .section-header p {
    font-size: 1rem;
    color: #555;
  }
  
  .clients-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .client-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    width: 180px;
    transition: transform 0.3s ease;
  }
  
  .client-card:hover {
    transform: translateY(-5px);
  }
  
  .client-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-bottom: 1rem;
  }  
  
  /* Call to Action */
  .call-to-action {
    background-color: #332c78;
    color: white;
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 10px;
  }
  
  .call-to-action button {
    padding: 0.8rem 1.5rem;
    background-color: white;
    color: #332c78;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .call-to-action button:hover {
    background-color: #e0e0e0;
  }
  
  .supply-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
  }
  
  .supply-card {
    position: relative;
    padding: 2rem 1rem;
    width: 280px;
    height: 260px;
    text-align: center;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
  }
  
  .supply-card:hover {
    transform: translateY(-5px);
  }
  
  .card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    z-index: 1;
  }
  
  .supply-card:hover .card-image {
    opacity: 0.3;
  }
  
  .card-content {
    position: relative;
    z-index: 2;
    transition: opacity 0.4s ease-in-out;
  }
  
  .supply-card:hover .card-content {
    opacity: 0;
  }
  
  .read-more {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.1rem;
    font-weight: bold;
    color: #362b77;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    z-index: 2;
  }
  
  .supply-card:hover .read-more {
    opacity: 1;
  }
  
  .card-content i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #362b77;
  }
  
  .card-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
  }
  
  .card-content p {
    font-size: 0.9rem;
    color: #666;
  }
  