
.page-title {
  position: relative;
  padding: 180px 0px 180px 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 */
}

.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;
  align-items: center;
  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;
  padding: 12px 45px;
  margin-top: 5px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.page-title .content-box .bread-crumb li {
  position: relative;
  display: inline-block;
  font-size: 14px;
  color: #ffffff;
  font-weight: 600;
  margin-right: 35px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-family: 'Heebo', sans-serif;
}

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

.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 .content-box .bread-crumb li:before {
  position: absolute;
  content: '\e908';
  font-family: 'icomoon';
  font-size: 9px;
  top: 3px;
  right: -20px;
  opacity: 0.6;
}

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

.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 .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: 120px 0px 100px 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 {
    padding: 8px 30px;
  }
}


