/* ===========================================
   Modern Professional Page Header
   Brand Color: #244684
=========================================== */

.modern-page-header {
  position: relative;
  overflow: hidden;
  padding: 160px 20px 120px;
  text-align: center;
  background: linear-gradient(
          135deg,
          #183463 0%,
          #244684 50%,
          #3b62aa 100%
  );
}

/* Decorative Background Shapes */
.modern-page-header::before,
.modern-page-header::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  filter: blur(8px);
  z-index: 1;
}

.modern-page-header::before {
  width: 320px;
  height: 320px;
  top: -120px;
  left: -100px;
}

.modern-page-header::after {
  width: 420px;
  height: 420px;
  bottom: -180px;
  right: -120px;
}

/* Content */
.modern-header-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.modern-subtitle {
  display: inline-block;
  margin-bottom: 15px;
  padding: 8px 18px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.modern-header-content h1 {
  color: #ffffff;
  font-size: 58px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 25px;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

/* Breadcrumb */
.modern-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.modern-breadcrumb a,
.modern-breadcrumb span {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}

.modern-breadcrumb a:hover {
  color: #dbe8ff;
  transition: 0.3s ease;
}

/* Bottom Curved Shape */
.header-wave {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 80px;
  background: #ffffff;
  border-radius: 100% 100% 0 0 / 100% 100% 0 0;
  z-index: 2;
}

/* Responsive */
@media (max-width: 991px) {
  .modern-page-header {
    padding: 130px 20px 90px;
  }

  .modern-header-content h1 {
    font-size: 44px;
  }
}

@media (max-width: 767px) {
  .modern-page-header {
    padding: 110px 15px 70px;
  }

  .modern-header-content h1 {
    font-size: 32px;
  }

  .modern-breadcrumb {
    padding: 10px 18px;
    font-size: 14px;
  }

  .header-wave {
    height: 50px;
  }
}