.page-header {
  position: relative;
  overflow: hidden;
  padding: 120px 0 100px;
}

.page-header-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.page-header-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(121, 36, 133, 0.55);
  z-index: 2;
}

.page-header .container {
  position: relative;
  z-index: 3;
}

/* Text */
.page-header h2,
.page-header a,
.page-header li,
.page-header span {
  color: #fff;
}

/* Breadcrumb */
.thm-breadcrumb {
  list-style: none;
  display: flex;
  gap: 10px;
  padding: 0;
  margin-bottom: 15px;
  font-size: 15px;
}

.thm-breadcrumb li a {
  text-decoration: none;
  color: #fff;
  opacity: 0.9;
}

.thm-breadcrumb .color-base {
  color: #fff;
  font-weight: 600;
}

/* Floating Shapes */
.shape1,
.shape3,
.shape4 {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.shape1 {
  width: 120px;
  height: 120px;
  top: 10%;
  left: 5%;
}

.shape3 {
  width: 80px;
  height: 80px;
  bottom: 15%;
  left: 25%;
}

.shape4 {
  width: 100px;
  height: 100px;
  top: 20%;
  right: 10%;
}

.shape2 {
  position: absolute;
  top: 15%;
  right: 20%;
}

.shape5 {
  position: absolute;
  bottom: 10%;
  right: 5%;
}

/* Floating animation */
.float-bob-y {
  animation: floatY 4s ease-in-out infinite;
}

@keyframes floatY {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(12px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .page-header {
    padding: 80px 0;
  }

  .shape1,
  .shape3,
  .shape4 {
    display: none;
  }
}
