/* About Us Page Styles */

.stats-counter {
  font-size: 3rem;
  font-weight: bold;
  color: #1d4ed8;
}

/* Gallery Swiper Styles */
.gallery-swiper {
  padding: 0 25px;
  overflow: hidden;
}

.gallery-swiper .swiper-slide img {
  border-radius: 12px;
  transition: transform 0.3s ease;
  width: 100%;
  height: 500px; /* Increased from 384px to 500px */
  object-fit: cover;
  object-position: center;
}

.gallery-swiper .swiper-slide:hover img {
  transform: scale(1.05);
}

/* Force gallery swiper to show only 1 slide */
.gallery-swiper .swiper-slide {
  width: 100% !important;
  flex-shrink: 0 !important;
}

.gallery-swiper .swiper-wrapper {
  width: 100% !important;
}

/* Custom Gallery Navigation Buttons */
.gallery-swiper .swiper-button-next,
.gallery-swiper .swiper-button-prev {
  background: #1d4ed8 !important;
  border: 5px solid #f0f0ff !important;
  border-radius: 50% !important;
  width: 45px !important;
  height: 45px !important;
  color: white !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  margin-top: 0 !important;
}

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

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

.gallery-swiper .swiper-button-next::after,
.gallery-swiper .swiper-button-prev::after {
  display: none !important;
}

.gallery-swiper .swiper-button-next svg,
.gallery-swiper .swiper-button-prev svg {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
