

.my_gellary_conteinar_header{
    width: 100%;
    height: auto;
    padding-top: 120px;
}
.my_gallery_conteinar_area{
    width: 100%;
    background-image: url(../../image/bannar/banner-10.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 45vh;
    max-height: 45vh;
}
.my_gellary_conteinar_main_area{
    width: 95%;
    margin: auto;
    padding-top: 80px;
}
.my_gellary_conteinar_main_area h1{
    font-size: 35px;
    color: #fff;
    padding: 15px 0px;
}
.my_gellary_conteinar_main_area p{
    font-size: 20px;
    color: #fff;
}
.my_gellary_conteinar_main_area p a{
    text-decoration: none;
    color: #fff;
    transition: all 0.1s ease-in-out;
}
.my_gellary_conteinar_main_area p a:hover{
    color: #EF8800;
}


/*  */

.my_gallery_conteinar {
    width: 100%;
    height: auto;
    background-color: #f8f9fa;
    color: #333;
}

.my_gallary_section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20%, 1fr));
  gap: 15px;
  padding: 20px;
}

.gallery-item {
  position: relative;
  cursor: pointer;
  height: auto;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 200px;
  border-radius: 8px;
  transition: transform 0.3s ease; 
  object-fit: contain;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item-title {
  text-align: center;
  /* margin-top: 8px; */
  font-size: 14px;
  font-weight: bold;
  color: #555;
  padding: 15px 10px;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding-top: 130px;
}

.popup-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  text-align: center;
  background: #fff;
  /* padding: 20px; */
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.popup-content img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.popup-title {
  /* margin-top: 10px; */
  font-size: 16px;
  font-weight: bold;
  color: #333;
  padding: 10px;
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 18px;
  color: #000;
  background: #fff;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.popup-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: #000;
  background: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.popup-prev {
  left: 10px;
}

.popup-next {
  right: 10px;
}