
.gallery-container-wrapper{
                display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: #FFFBF5;
}

.gallery-container{
              max-width: 1200px;
        padding: 4rem;
     display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.gallery-box-container{
               width: 100%;
    display: grid;
    grid-template-columns: repeat(3,2fr);
    margin-top: 2rem;
    gap: 1rem;
}

.gallery-box-container img{
    width: 100%;
    height: 15rem;
    object-fit: cover;
    object-position: top;
    border-radius: 15px;
    border: 1px solid #FFFBF5;
    cursor: pointer;
}

.gallery-viewmore-btn{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 3rem;
    width: fit-content;
    padding: 0 2rem;
    background-color: #F97415;
    border-radius: 12rem;
    color: white;
    font-size: 18px;
    text-decoration: none;
}

.popup {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.85);
}

.popup-content {
  display: block;
  margin: auto;
  max-width: 90%;
  max-height: 80vh;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}




@media (max-width: 1200px){
    .gallery-container{
        padding: 2rem;
    }
   
}

@media(max-width: 900px){
      .gallery-container{
        padding: 2rem 1rem;

    }

       .popup-content{
        position: relative;
      top: 15%;
    }


}

@media(max-width: 700px){
     .gallery-box-container{
        grid-template-columns: repeat(2,1fr);
    }
    .popup-content{
        position: relative;
      top: 25%;
    }

    .gallery-box-container img{
      height: 10rem;
    }
}