

    /* body {
      font-family: 'Helvetica Neue', sans-serif;
      background: #fff;
      color: #333;
      padding: 0;
      margin: 0;
    }
    .container {
      width: 90%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 40px 0;
    }
    h1 {
      font-size: 2.5rem;
      color: #0c2340;
      text-align: center;
      margin-bottom: 40px;
    }
    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 30px;
      justify-items: center;
      margin-bottom: 60px;
    }
    .grid img {
      max-width: 100%;
      height: auto;
      transition: transform 0.3s ease;
    }
    .grid a:hover img {
      transform: scale(1.05);
    }
    .section-title {
      font-size: 1.8rem;
      color: #0c2340;
      margin-bottom: 20px;
    }
    ul {
      list-style: none;
      padding: 0;
    }
    ul li {
      padding: 6px 0;
      border-bottom: 1px solid #eee;
    } */
   .mt-100 {
        margin-top: 130px !important;
    }



    
    body {
        font-family: 'Segoe UI', sans-serif;
        background-color: #fff;
        margin: 0;
        padding: 0;
      }
  
      .container {
        max-width: 1200px;
        margin: 80px auto;
        padding: 0 20px;
        text-align: center;
      }
  
      h1 {
        background: linear-gradient(90deg, #ffffff 0%, #f6e1d3 60%, #ffffff 100%);
        font-size: 2.5rem;
        margin-bottom: 25px;
        color: #333;
        text-transform: uppercase;
        line-height: 35px;
        font-weight: 600;
      }

      .intro-text {
        /* font-size: 1.25rem; */
        /* color: #222; */
        /* font-weight: 600; */
        /* line-height: 1.8; */
        border-radius: 18px;
        box-shadow: 0 6px 32px rgba(44, 62, 80, 0.10);
        padding: 2.2rem 2.2rem 2.2rem 2.2rem;
        /* max-width: 750px; */
        /* margin: 0 auto; */
        border: 1.5px solid #e0e6ed;
        letter-spacing: 0.01em;
        transition: box-shadow 0.2s;

        font-size: 1.58rem;
        color: #222;
        line-height: 1.85;
        margin-bottom: 1.5rem;
        font-weight: 500;
        background-color: #fff;
      }
  
      .grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
        gap: 50px;
        justify-items: center;
        margin-top: 50px;
      }
  
      .supplier-card {
        width: 325px;
        background: #C0C0C0;
        background: linear-gradient(0deg, #C0C0C0, #F8F7F6);
        /* background: #FFD3A7;
        background: radial-gradient(at center bottom, #FFD3A7, #F8F7F6); */
        padding: 35px;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        text-align: center;
      }
  
      .supplier-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
      }
  
      .supplier-card img {
        max-width: 180px;
        max-height: 100px;
        height: 100px;
        object-fit: contain;
        margin-bottom: 12px;
      }
  
      .supplier-name {
        font-size: 1.5rem;
        font-weight: 600;
        color: #444;
      }
  
      a {
        text-decoration: none;
      }