/* Advanced Hero Carousel Stylesheet - Full Image Version */

.hero-slider-advanced-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #0f172a;
}

/* 150px top vertical gradient overlay (fade-out to transparent) */
.slide-top-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150px;
  z-index: 4;
  pointer-events: none;
  background: linear-gradient(to bottom, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  transition: background 0.3s ease;
}

/* Dark theme style overrides */
html[data-bs-theme="dark"] .slide-top-gradient {
  background: linear-gradient(to bottom, #000a17 0%, rgba(0, 10, 23, 0) 100%);
}

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

.hero-slider-advanced .swiper-slide {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.hero-slider-advanced .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
}

/* Glassmorphism Navigation & Control Panel */
.slider-controls-panel {
  position: absolute;
  bottom: 30px;
  right: 5%;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 10px 20px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  transition: all 0.3s ease;
}

.slider-controls-panel:hover {
  background: rgba(15, 23, 42, 0.65);
  border-color: rgba(255, 255, 255, 0.22);
}

/* Slide Counter styling */
.slider-counter {
  display: flex;
  align-items: center;
  font-family: inherit;
  font-weight: 600;
  color: #fff;
  font-size: 0.95rem;
}

.slider-counter .current-slide {
  font-size: 1.15rem;
  color: #fff;
  font-weight: 700;
}

.slider-counter .separator {
  margin: 0 6px;
  opacity: 0.4;
}

.slider-counter .total-slides {
  opacity: 0.6;
}

/* Navigation buttons */
.slider-nav-arrows {
  display: flex;
  gap: 6px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 16px;
}

.slider-btn {
  background: transparent;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.slider-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.slider-btn:active {
  transform: scale(0.95);
}

/* Bottom Progress Bar */
.slider-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
  z-index: 10;
}

.progress-fill {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #fd7e14, #ff5757);
  box-shadow: 0 0 10px rgba(253, 126, 20, 0.6);
  transition: width 0s linear;
}

/* Mobile & Tablet Responsiveness */
@media (max-width: 991.98px) {
  .hero-slider-advanced-section {
    margin-top: -38px !important;
  }

  .slider-controls-panel {
    display: none !important;
  }

  .slide-top-gradient {
    height: 50px !important;
  }
}

@media (max-width: 575.98px) {
  .hero-slider-advanced-section {
    margin-top: -30px !important;
  }
}