
    .clients-section {
      background-color: #f8f9fa;
      padding: 60px 0;
    }

    .section-title {
    /*  font-size: 1.8rem;
      font-weight: 600;
      color: #0d1f3c;
      letter-spacing: 0.5px; */
    }

    .section-subtitle {
      color: #6c757d;
      font-size: 0.95rem;
    }

    .logo-card {
      background: #ffffff;
      border: 1px solid #e2e8f0;
      border-radius: 12px;
      padding: 24px 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100px;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .logo-card:hover {
      border-color: #0d6efd;
      box-shadow: 0 4px 20px rgba(13, 110, 253, 0.1);
      transform: translateY(-3px);
    }

    .logo-card img {
      max-height: 55px;
      max-width: 100%;
      object-fit: contain;
      filter: grayscale(100%);
      opacity: 0.65;
      transition: all 0.3s ease;
    }

    .logo-card:hover img {
      filter: grayscale(0%);
      opacity: 1;
    }

    /* Placeholder style when no image */
    .logo-placeholder {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.85rem;
      font-weight: 600;
      color: #94a3b8;
      letter-spacing: 1px;
      text-transform: uppercase;
    }
 