/* =========================================
   PAGE BANNER & BREADCRUMB STYLES
========================================= */
.page-banner-section {
    position: relative;
    width: 100%;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--primary, #0b0524); /* Fallback to your dark color */
}

/* --- Animated Background --- */
.banner-bg-wrapper {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.banner-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Subtle continuous zoom effect */
    animation: slowZoom 20s ease-in-out infinite alternate;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    /* Rich premium gradient overlay: darkens the edges and bottoms */
    background: linear-gradient(to right, rgba(11, 5, 36, 0.85) 0%, rgba(11, 5, 36, 0.4) 50%, rgba(11, 5, 36, 0.85) 100%),
                linear-gradient(to top, var(--primary, #0b0524) 0%, transparent 100%);
    z-index: 2;
}

/* --- Content & Typography --- */
.banner-content-container {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 var(--space-md);
    /* Slide-up entrance animation */
    animation: fadeUpContent 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(30px);
}

.banner-title {
    font-family: var(--font-primary);
    color: var(--white);
    font-size: clamp(2.5rem, 5vw, 4rem); /* Responsive font scaling */
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 16px;
    text-transform: capitalize;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* --- Breadcrumb Navigation --- */
.banner-breadcrumb {
    display: inline-block;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 24px;
    border-radius: 50px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.banner-breadcrumb ol {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    padding: 0;
    font-family: var(--font-secondary);
    font-size: var(--fs-sm, 14px);
    font-weight: 500;
}

.banner-breadcrumb a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--gray-200, #e2e8f0);
    text-decoration: none;
    transition: all 0.3s ease;
}

.banner-breadcrumb a:hover {
    color: var(--white);
    transform: translateY(-1px);
}

.banner-breadcrumb .separator {
    display: flex;
    align-items: center;
    color: var(--gray-500, #64748b);
}

.banner-breadcrumb .active {
    color: var(--gray-400, #94a3b8);
    pointer-events: none;
}

/* --- Animations --- */
@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}

@keyframes fadeUpContent {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .page-banner-section {
        height: 250px; /* Shorter on mobile */
    }
    
    .banner-breadcrumb {
        padding: 8px 16px;
    }
    
    .banner-breadcrumb ol {
        font-size: 13px;
        gap: 8px;
    }
}

/* =========================================
   STANDARD AUTO TEXT SLIDER
========================================= */
.standard-hero-slider {
  position: relative;
  width: 100%;
  background-color: #f8f9fa; /* Light neutral theme background */
  padding: 100px 0;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-slider-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 300px;
}

.hero-slide {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  padding: 0 40px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease, transform 0.8s ease;
}

/* Subtle slide-up effect combined with fade */
.hero-slide:not(.active) {
  transform: translateY(-40%);
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%);
  z-index: 2;
}

.hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.hero-subtitle {
  display: block;
  font-family: var(--font-secondary);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #666666;
  margin-bottom: 15px;
}

.hero-title {
  font-family: var(--font-primary);
  font-size: clamp(36px, 5vw, 64px);
  color: #111111;
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero-description {
  font-family: var(--font-secondary);
  font-size: 16px;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 30px;
}

.hero-btn {
  display: inline-block;
  background-color: #111111;
  color: #ffffff;
  font-family: var(--font-secondary);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 15px 35px;
  transition: background-color 0.3s ease;
}

.hero-btn:hover {
  background-color: #333333;
}

/* Dots Navigation */
.hero-slider-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.hero-slider-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #cccccc;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.hero-slider-dots .dot:hover {
  background-color: #999999;
}

.hero-slider-dots .dot.active {
  background-color: #111111;
  transform: scale(1.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .standard-hero-slider {
    padding: 80px 0;
    min-height: 60vh;
  }
  .hero-slide {
    padding: 0 20px;
  }
}