
 

    .gallery-container {
      padding: 60px 20px;
      text-align: center;
    }

    .gallery-header {
      font-size: 3rem;
       color: #2a3c42;
      font-weight: normal;  
    }

    .category-dropdown {
      margin-bottom: 40px;
    }

    .category-dropdown select {
      padding: 10px 20px;
      font-size: 16px;
      border-radius: 5px;
      border: 1px solid #ccc;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 30px;
      justify-items: center;
    }

    .gallery-item {
      position: relative;
      width: 100%;
      height: 300px;
      background-size: cover;
      background-position: center;
      border-radius: 8px;
      overflow: hidden;
      transition: transform 0.4s ease;
      cursor: pointer;
    }

    .gallery-item:hover {
      transform: scale(1.05);
    }

    .overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(255, 255, 255, 0.7);
      color: #2a3c42;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-end;
      opacity: 0;
      transform: translateY(40%);
      transition: all 0.5s ease;
      padding: 20px;
      text-align: center;
    }

    .gallery-item:hover .overlay {
      opacity: 1;
      transform: translateY(0);
    }

    .overlay h3 {
      font-size: 22px;
      font-weight: 500;
      margin-bottom: 10px;
    }

  

    .overlay .plus-icon {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      margin-bottom: 37%;
      margin-left: -30px;
      border: 1.5px solid #2a3a45;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 26px;
      font-weight: 300;
      transition: all 0.3s ease;
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.5s ease 0.45s;
    }

    .gallery-item:hover .plus-icon {
      opacity: 1;
      transform: translateY(0);
    }

    .plus-icon:hover {
      background: #2a3a45;
      color: #fff;
    }

    /* Lightbox Styles */
    .lightbox-modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.8);
      justify-content: center;
      align-items: center;
      z-index: 1000;
    }

    .lightbox-modal img {
      max-width: 90%;
      max-height: 90%;
      object-fit: contain;
    }

    .lightbox-modal .close-btn {
      position: absolute;
      top: 10px;
      right: 10px;
      color: #fff;
      font-size: 30px;
      cursor: pointer;
    }

    .lightbox-modal .nav-btn {
      position: absolute;
      top: 50%;
      font-size: 30px;
      color: #fff;
      background-color: rgba(0, 0, 0, 0.5);
      padding: 10px;
      cursor: pointer;
    }

    .lightbox-modal .prev-btn {
      left: 10px;
    }

    .lightbox-modal .next-btn {
      right: 10px;
    }

    /* Media Queries for Responsive Layout */
    @media (max-width: 1024px) {
      .gallery-header {
        font-size: 30px;
      }

      .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      }
    }

    @media (max-width: 768px) {
      .gallery-header {
        font-size: 28px;
      }

      .gallery-item {
        height: 250px;
      }

      .overlay h3 {
        font-size: 18px;
      }

      .overlay p {
        font-size: 12px;
      }

      .plus-icon {
        width: 35px;
        height: 35px;
        font-size: 22px;
      }
    }

    @media (max-width: 480px) {
      .gallery-header {
        font-size: 24px;
      }

      .gallery-item {
        height: 200px;
      }

      .overlay p {
        font-size: 10px;
      }

      .plus-icon {
        width: 30px;
        height: 30px;
        font-size: 20px;
      }

      .gallery-header  {
        font-size: 3rem;
      }
    }

