/* ===== PAGE HEADER ===== */
.page-header {
    background-color: var(--primary-color);
    padding: 150px 0 80px;
    position: relative;
    overflow: hidden;
  }
  
  .page-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("images/ph.jpg");
    background-size: cover;
    background-position: center;
    opacity: 0.5;
  }
  
  .page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
  }
  
  .page-header h1 {
    color: white;
    margin-bottom: 10px;
    font-size: 3rem;
  }
  
  .breadcrumb {
    display: inline-flex;
    background-color: transparent;
    margin-bottom: 0;
    padding: 0;
  }
  
  .breadcrumb-item,
  .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
  }
  
  .breadcrumb-item.active {
    color: var(--secondary-color);
  }
  
  .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
  }
  
  