/* Custom Hero Slider Styles */
.hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-slider {
  width: 100%;
  height: auto;
}

.hero-slider .swiper-slide {
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-1 {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.hero-1 .hero-bg {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  width: 100%;
  height: auto;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.hero-1 .hero-bg img {
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 80vh;
}

/* Desktop images - show on desktop, hide on mobile */
.desktop-img {
  display: block;
}

.mobile-img {
  display: none;
}

/* Mobile Slider Styles */
.mobile-hero-section {
  display: none;
  width: 100%;
  overflow: hidden;
  padding: 0;
  margin: 0;
}

.mobile-slider-container {
  width: 100%;
  padding: 0;
  margin: 0;
}

.mobile-hero-slider {
  width: 100%;
  height: auto;
}

.mobile-hero-slider .swiper-slide {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-hero-slider .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.mobile-hero-slider .swiper-slide a {
  display: block;
  width: 100%;
}

.mobile-pagination {
  position: static !important;
  margin-top: 20px;
  text-align: center;
}

.mobile-pagination .swiper-pagination-bullet {
  background: #1b7895;
  opacity: 0.5;
}

.mobile-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

/* Responsive - Show/Hide sliders */
@media (max-width: 767px) {
  /* Hide desktop slider */
  .desktop-slider {
    display: none !important;
  }
  
  /* Show mobile slider */
  .mobile-slider {
    display: block !important;
  }
  
  /* Full viewport width for mobile slider */
  .mobile-hero-section {
    padding: 0 !important;
    margin: 0 !important;
    width: 100vw !important;
    position: relative;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    max-width: 100vw !important;
    overflow: hidden;
  }
  
  .mobile-slider-container {
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    max-width: none !important;
  }
  
  .mobile-hero-slider {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  
  .mobile-hero-slider .swiper-wrapper {
    padding: 0 !important;
    margin: 0 !important;
  }
  
  .mobile-hero-slider .swiper-slide {
    width: 100% !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  
  .mobile-hero-slider .swiper-slide img {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    display: block !important;
    object-fit: cover !important;
  }
  
  .mobile-hero-slider .swiper-slide a {
    padding: 0 !important;
    margin: 0 !important;
    display: block !important;
    width: 100% !important;
  }
  
  /* Remove any body/main padding on mobile */
  body {
    padding-left: 0 !important;
    padding-right: 0 !important;
    overflow-x: hidden !important;
  }
  
  main {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

/* Desktop - Ensure mobile slider is hidden */
@media (min-width: 768px) {
  .mobile-slider {
    display: none !important;
  }
  
  .desktop-slider {
    display: block !important;
  }
}

.hero-1 .hero-content {
  position: relative;
  z-index: 9;
  opacity: 1;
  transform: none;
  text-align: center;
  padding: 30px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  margin: 20px;
  max-width: 600px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-1 .hero-content h1 {
  color: var(--clr-text-secondary);
  font-size: 50px;
  line-height: 125%;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero-1 .hero-content h6 {
  color: var(--clr-theme-primary);
  letter-spacing: 1.2px;
  margin-bottom: 20px;
  text-transform: none;
  font-size: 20px;
  line-height: 1.4;
}

.hero-1 .banner-btn-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px 30px;
  flex-wrap: wrap;
  margin-top: 30px;
  transform: none;
  opacity: 1;
}

.hero-1 .banner-btn-group .fill-btn {
  padding: 15px 30px;
  font-size: 16px;
}

.hero-slider .swiper-slide-active {
  padding-left: 100px !important;
  padding-right: 100px !important;
}

/* Remove padding on mobile */
@media (max-width: 767px) {
  .swiper-slide-active {
    padding-left: 70px !important;
    padding-right: 70px !important;
  }
}

/* Responsive adjustments */
@media (max-width: 1399px) {
  .hero-1 .hero-content h1 {
    font-size: 45px;
  }
}

@media (max-width: 991px) {
  .hero-1 {
    min-height: 50vh;
  }
  .hero-1 .hero-bg {
    min-height: 50vh;
  }
  .hero-1 .hero-content h1 {
    font-size: 40px;
  }
  .hero-1 .hero-content h6 {
    font-size: 18px;
  }
  .hero-1 .hero-content {
    padding: 25px;
    margin: 15px;
  }
}

@media (max-width: 575px) {
  .hero-1 {
    min-height: 70vh;
  }
  .hero-1 .hero-bg {
    min-height: 70vh;
    padding: 10px;
  }
  .hero-1 .hero-content h1 {
    font-size: 30px;
  }
  .hero-1 .hero-content h6 {
    font-size: 14px;
  }
  .hero-1 .hero-content {
    padding: 15px;
    margin: 10px;
  }
  .hero-1 .banner-btn-group .fill-btn {
    padding: 12px 25px;
    font-size: 14px;
  }
}

/* Remove any transition effects */
.hero-1 .hero-bg,
.hero-1 .hero-content,
.hero-1 .banner-btn-group {
  transition: none !important;
  animation: none !important;
}

/* Custom navigation buttons */
.array-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 100%;
  pointer-events: none;
}

.array-prev,
.array-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  transition: background 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.array-prev {
  left: 20px;
}

.array-next {
  right: 20px;
}

.array-prev:hover,
.array-next:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-50%) scale(1.1);
}

.array-prev i,
.array-next i {
  color: #333;
  font-size: 18px;
} 

