/*--------------------------------------------------------------
# Page Header
------------------------------------------------------*/
.page-header {
    position: relative;
    display: block;
    overflow: hidden;
    background: linear-gradient(135deg, #0D3B66 0%, #0a2d50 60%, #061d35 100%);
    z-index: 1;
}

.page-header__bg {
    display: none;
}

.page-header__inner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 0 80px;
    z-index: 15;
}

.page-header__inner h3 {
    font-size: 48px;
    color: var(--fixpro-white);
    line-height: 58px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.thm-breadcrumb__inner {
    position: relative;
    display: block;
}

.thm-breadcrumb {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 0;
    padding: 0;
}

.thm-breadcrumb li {
    position: relative;
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 700;
    line-height: 18px;
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--fixpro-font-2);
    text-transform: uppercase;
    letter-spacing: 1px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.thm-breadcrumb li+li {
    margin-left: 0;
}

.thm-breadcrumb li a {
    position: relative;
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    line-height: 18px;
    color: var(--fixpro-secondary);
    font-family: var(--fixpro-font-2);
    text-transform: uppercase;
    letter-spacing: 1px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.thm-breadcrumb li:hover a {
    color: var(--fixpro-white);
    opacity: 1;
}

.thm-breadcrumb li span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 4px;
}

/* ── Tablet (768px – 991px) ────────────────────────── */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .page-header__inner {
        padding: 160px 20px 70px;
    }
    .page-header__inner h3 {
        font-size: 38px;
        line-height: 48px;
    }
}

/* ── Mobile (max 767px) ─────────────────────────────── */
@media only screen and (max-width: 767px) {
    .page-header__inner {
        padding: 150px 20px 60px;
    }
    .page-header__inner h3 {
        font-size: 32px;
        line-height: 42px;
        margin-bottom: 10px;
    }
    .thm-breadcrumb li {
        font-size: 12px;
    }
    .thm-breadcrumb li a {
        font-size: 12px;
    }
}

/* ── Small Mobile (max 480px) ───────────────────────── */
@media only screen and (max-width: 480px) {
    .page-header__inner {
        padding: 140px 15px 60px;
    }
    .page-header__inner h3 {
        font-size: 28px;
        line-height: 36px;
    }
}

/* ── Very Small Mobile (max 375px) ─────────────────── */
@media only screen and (max-width: 375px) {
    .page-header__inner {
        padding: 130px 15px 60px;
    }
}

/* ── Fix oversized logo on mobile ───────────────────── */
@media only screen and (max-width: 767px) {
    .main-menu-two__logo a img {
        max-height: 75px !important;
        margin: -10px 0 -10px 10px !important;
    }
}