.common-hero {
  position: relative;
  padding: 120px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Creates a cool parallax effect */
  overflow: hidden;
}

/* The Branded Overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Gradient from Primary Blue to Primary Dark with 85% opacity */
  background: linear-gradient(
    135deg,
    rgba(47, 95, 179, 0.85),
    rgba(15, 42, 90, 0.9)
  );
  z-index: 1;
}

.z-index-2 {
  z-index: 2;
}

.highlight-accent {
  color: var(--accent-color);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.glass-breadcrumb {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 20px;
  border-radius: 50px;
}

/* Ensure Breadcrumb text is bright */
.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.8) !important;
  text-decoration: none;
  transition: 0.3s;
}

.breadcrumb-item a:hover {
  color: var(--accent-color) !important;
}
