/* Photo Gallery Styles */
.photo-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.photo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.photo-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.photo-item {
  transition: transform 0.3s ease;
  cursor: pointer;
}

.photo-item:hover {
  transform: translateY(-2px);
}

.photo-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
}

.photo-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  padding: 15px;
}

/* Modal Styles */
.modal-xl .modal-content {
  background: #000;
}

.custom-image-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 1050;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  width: 40px;
  height: 40px;
}


.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Enhanced Navigation Button Styles */
.swiper-button-next,
.swiper-button-prev {
  color: #fff !important;
  width: 50px !important;
  height: 50px !important;
  border-radius: 50% !important;
  margin-top: -25px !important;
  /* Center vertically */
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(0, 0, 0, 0.9) !important;
  border-color: rgba(255, 255, 255, 0.6);
  transform: scale(1.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 18px !important;
  font-weight: bold;
}

/* Position adjustments */
.swiper-button-prev {
  left: 20px !important;
}

.swiper-button-next {
  right: 20px !important;
}

/* Pagination styles (optional) */
.swiper-pagination {
  bottom: 20px !important;
}

.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5) !important;
  opacity: 1 !important;
}

.swiper-pagination-bullet-active {
  background: #fff !important;
}

.modal-footer {
  background: #fcf9f9;
  border: none;
  padding: 15px 20px;
}

.modal-footer p {
  color: #0a0101;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 500;
}

/* Hide navigation on very small screens */
@media (max-width: 480px) {

  .swiper-button-next,
  .swiper-button-prev {
    width: 40px !important;
    height: 40px !important;
    margin-top: -20px !important;
  }

  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 14px !important;
  }

  .swiper-button-prev {
    left: 10px !important;
  }

  .swiper-button-next {
    right: 10px !important;
  }
}

/* Responsive */
@media (max-width: 768px) {

  .photo-card img,
  .photo-item img {
    height: 200px;
  }


}