/*--------------------------------------------------------------
# Page Header (Fully Optimized & Responsive)
--------------------------------------------------------------*/
.page-header {
    position: relative;
    display: block;
    padding: 180px 0 120px;
    min-height: 50vh;
    overflow: hidden;
    z-index: 1;
}

/* Background Image */
.page-header__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: scroll; /* prevents mobile lag */
    z-index: -1;
}

/* Dark Gradient Overlay */
.page-header__bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
    transform: matrix(-1, 0, 0, 1, 0, 0);
}

/* Top Fade Overlay */
.page-header__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(-90deg, rgba(16,16,21,1) 0%, rgba(16,16,21,0) 60%);
    z-index: 1;
}

/* Content */
.page-header__inner {
    position: relative;
    display: block;
}

/* Title */
.page-header__inner h2 {
    font-size: 60px;
    font-weight: 500;
    line-height: 70px;
    color: var(--techguru-white);
    text-transform: capitalize;
    margin-bottom: 15px;
}

/* Breadcrumb Box */
.thm-breadcrumb__box {
    position: relative;
    display: inline-block;
    border-radius: 4px;
    padding: 4px 14px;
    background-color: rgba(var(--techguru-white-rgb), .12);
    z-index: 1;
}

/* Breadcrumb */
.thm-breadcrumb {
    position: relative;
    display: inline-block;
}

.thm-breadcrumb li {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: var(--techguru-white);
    transition: all 0.3s ease;
}

.thm-breadcrumb li + li {
    margin-left: 8px;
}

.thm-breadcrumb li span {
    font-size: 10px;
}

.thm-breadcrumb li a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--techguru-white);
    transition: all 0.3s ease;
}

.thm-breadcrumb li:hover a {
    color: var(--techguru-base);
}

/* ================= MOBILE RESPONSIVE ================= */

@media (max-width: 992px) {
    .page-header {
        padding: 140px 0 100px;
        min-height: 40vh;
    }

    .page-header__inner h2 {
        font-size: 42px;
        line-height: 52px;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 120px 0 80px;
        min-height: 35vh;
        text-align: center;
    }

    .page-header__bg {
        background-position: top center; /* better crop */
    }

    .page-header__inner h2 {
        font-size: 32px;
        line-height: 42px;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 100px 0 60px;
        min-height: 30vh;
    }

    .page-header__inner h2 {
        font-size: 24px;
        line-height: 32px;
    }

    .thm-breadcrumb li {
        font-size: 14px;
    }
}