.Explore_our_gallery {
  margin: 30px;
}

.Explore_our_gallery .gallerySwiper .img_holder {
  aspect-ratio: 1/1;
  background: #fff;
}

.Explore_our_gallery .gallerySwiper .img_holder .galler_img {
  height: 100%;
  width: 100%; /* 🔥 keeps natural width */
  object-fit: cover;
  border-radius: 5px;
}

/* .Explore_our_gallery .Explore_our_gallery_holder {
  display: flex;
  gap: 10px;
} */


.Explore_our_gallery .top_heading_holder{
    display: flex;
    align-items: end;
    justify-content: space-between;

}

.Explore_our_gallery .Explore_our_gallery_holder {
  position: relative; /* ✅ important */
}

.Explore_our_gallery .explore_img_holder {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
    width: auto;
    height: 100%;
}

/* when visible */
.Explore_our_gallery .explore_img_holder.show {
  opacity: 1;
  pointer-events: auto;
}

.Explore_our_gallery .explore_img_holder .img_holder {
  width: 100%;
  height: 100%;
}

.Explore_our_gallery .explore_img_holder .img_holder .explore_img {
  width: 100%;
  object-fit: contain;
  height: 100%;
  object-position: left;
}


.Explore_our_gallery .custom_nav {
    display: flex;
    justify-content: start;
    gap: 10px;
    margin-bottom: 20px;
}

.Explore_our_gallery .custom_nav .nav_btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #707070c4;
    background: #333333;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.Explore_our_gallery .custom_nav  .font_angle{
  font-size: 20px;
}


@media (min-width: 0px) and (max-width: 767px) {
.Explore_our_gallery {
    margin: 2%;
}
}