
.page-title {
  position: relative;
  padding: 260px 0px 170px 0px;
  background-color: #004274;
  overflow: hidden;
  z-index: 1;
}

.page-title .title-watermark {
  position: absolute;
  left: 50%;
  top: 38%; /* Adjusted for better framing with the lowered wave */
  transform: translate(-50%, -50%);
  font-size: 200px; /* More refined size for better clearance */
  font-weight: 900;
  color: rgba(0, 30, 60, 0.12);
  text-transform: uppercase;
  z-index: 0;
  pointer-events: none;
  letter-spacing: 25px;
  font-family: 'Maven Pro', sans-serif;
  line-height: 1;
  white-space: nowrap;
}

.page-title .content-box {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-top: -10px; /* Slight lift */
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
}

.page-title .content-box h1 {
  display: block;
  font-size: 68px;
  line-height: 78px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-family: 'Heebo', sans-serif;
}

.page-title .content-box .bread-crumb {
  position: relative;
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px !important;
  padding: 10px 32px !important;
  margin: 10px auto 0 auto !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  list-style: none !important;
  width: -webkit-fit-content !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
  max-width: calc(100% - 30px) !important;
  box-sizing: border-box !important;
  float: none !important;
}

.page-title .content-box .bread-crumb li {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  color: #ffffff;
  font-weight: 600;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-family: 'Heebo', sans-serif;
  line-height: 1.2;
}

.page-title .content-box .bread-crumb li:not(:last-child)::after {
  content: '\e908';
  font-family: 'icomoon';
  font-size: 9px;
  margin: 0 14px;
  opacity: 0.7;
  display: inline-block;
}

.page-title .content-box .bread-crumb li:before {
  display: none;
}

.page-title .content-box .bread-crumb li:last-child {
  margin: 0px;
  color: rgba(255, 255, 255, 0.75);
}

.page-title .content-box .bread-crumb li a {
  display: inline-block;
  color: #ffffff;
  transition: all 300ms ease;
}

.page-title .content-box .bread-crumb li a:hover {
  color: var(--secondary-color);
}

.page-title .pattern-layer {
  position: absolute;
  right: 0px;
  bottom: -120px; /* Decisive clipping: significantly lowered to clear all typography */
  width: 826px;
  height: 186px;
  background-repeat: no-repeat;
  z-index: 5;
  pointer-events: none;
  opacity: 1;
}

@media (max-width: 991px) {
  .page-title {
    padding: 180px 0px 125px 0px;
  }

  .page-title .title-watermark {
    font-size: 130px;
    letter-spacing: 10px;
  }
  .page-title .content-box h1 {
    font-size: 52px;
    line-height: 62px;
  }
  .page-title .pattern-layer {
    bottom: -80px;
  }
}

@media (max-width: 767px) {
  .page-title {
    padding: 145px 0px 95px 0px;
  }
  .page-title .title-watermark {
    font-size: 80px;
    letter-spacing: 5px;
  }
  .page-title .content-box h1 {
    font-size: 34px;
    line-height: 44px;
  }
  .page-title .content-box .bread-crumb {
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    width: -webkit-fit-content !important;
    width: -moz-fit-content !important;
    width: fit-content !important;
    max-width: calc(100% - 24px) !important;
    padding: 8px 22px !important;
    margin: 12px auto 0 auto !important;
    box-sizing: border-box !important;
    text-align: center !important;
    list-style: none !important;
    float: none !important;
  }
  .page-title .content-box .bread-crumb li {
    font-size: 12px !important;
    letter-spacing: 0.8px !important;
    line-height: 1.3 !important;
    margin: 0 !important;
    padding: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
  }
  .page-title .content-box .bread-crumb li:not(:last-child)::after {
    content: '\e908' !important;
    font-family: 'icomoon' !important;
    font-size: 8px !important;
    margin: 0 10px !important;
    opacity: 0.7 !important;
    display: inline-block !important;
  }
  .page-title .content-box .bread-crumb li:before {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .page-title .content-box .bread-crumb {
    padding: 7px 18px !important;
  }
  .page-title .content-box .bread-crumb li {
    font-size: 11px !important;
    letter-spacing: 0.5px !important;
  }
  .page-title .content-box .bread-crumb li:not(:last-child)::after {
    margin: 0 8px !important;
    font-size: 7px !important;
  }
}

