 .gallery-section {
      padding: 40px 20px;
      text-align: center;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); /* bigger images */
      gap: 20px;
      max-width: 1200px;
      margin: auto;
    }

    .gallery-grid img {
      width: 100%;
      height: 250px; /* fixed height for uniform look */
      object-fit: cover;
      border-radius: 12px;
      cursor: pointer;
      transition: transform 0.3s ease;
    }

    .gallery-grid img:hover {
      transform: scale(1.05);
    }

    .see-more-gallary {
      margin-top: 25px;
      text-align: center;
    }

    .see-more-gallary a {
      display: inline-block;
      padding: 12px 28px;
      font-size: 1.1rem;
      border: none;
      border-radius: 30px;
      background: #314243;
      color: white;
      cursor: pointer;
      text-decoration: none;
      transition: background 0.3s ease;
    }

    .see-more-gallary a:hover {
      background: #3f5556;
    }

    /* Lightbox Styles */
    .lightbox {
      display: none;
      position: fixed;
      z-index: 1000;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.8);
      justify-content: center;
      align-items: center;
    }

    .lightbox img {
      max-width: 90%;
      max-height: 80%;
      border-radius: 12px;
    }

    .lightbox:target {
      display: flex;
    }

    .close-btn {
      position: absolute;
      top: 20px;
      right: 30px;
      font-size: 2rem;
      color: white;
      text-decoration: none;
    }