/* Hero Swiper Styles */
.heroSwiper .swiper-slide {
  height: 100vh;
  min-height: 600px;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #3b82f6;
  width: 30px;
  border-radius: 4px;
}

/* Service Card Hover Effects */
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Gallery Slider Styles */
.gallery-slider .swiper-slide {
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.gallery-slider .swiper-slide:hover img {
  transform: scale(1.05);
}

.gallery-slider .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5);
  width: 10px;
  height: 10px;
  opacity: 1;
}

.gallery-slider .swiper-pagination-bullet-active {
  background: #4b6cb7;
  width: 30px;
  border-radius: 4px;
}

.gallery-slider .swiper-button-next,
.gallery-slider .swiper-button-prev {
  color: white;
  background: rgba(75, 108, 183, 0.8);
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.gallery-slider .swiper-button-next::after,
.gallery-slider .swiper-button-prev::after {
  font-size: 18px;
  font-weight: bold;
}

/* Responsive Gallery Display */
@media (min-width: 768px) {
  .gallery-slider {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .gallery-grid {
    display: none !important;
  }
}

/* Back to Top Button */
#back-to-top {
  z-index: 1000;
  transition: all 0.3s ease;
}

#back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

#back-to-top:hover {
  transform: translateY(-3px);
}
