  .gallery-hero {
    /*background: linear-gradient(135deg, #000, #222);*/
    background: white;
    color: black;
    padding: 60px 0 30px;
    text-align: center;
  }

  .gallery-hero h2 {
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 0;
  }

  .filter-bar {
    overflow-x: auto;
    white-space: nowrap;
    display: flex;
    gap: 1rem;
    padding: 1rem;
    justify-content: center;
    background: #f8f9fa;
    border-bottom: 1px solid #ddd;
  }

  .filter-bar button {
    flex: 0 0 auto;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    background: #e0e0e0;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
  }

  .filter-bar button.active,
  .filter-bar button:hover {
    background: #000;
    color: white;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
    background: #fafafa;
  }

   .gallery-item img {
    width: 100%;
    height: 200px; /* fixed height */
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
  }


  .gallery-item img:hover {
    transform: scale(1.03);
  }

  @media (max-width: 576px) {
    .gallery-hero h2 {
      font-size: 2rem;
    }
  }