/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
    position: relative;
    display: block;
    padding: 208px 0 150px;
    overflow: hidden;
    z-index: 1;
    height: 200px;
}

.page-header__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.page-header__bg::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
    transform: matrix(-1, 0, 0, 1, 0, 0);
}


.page-header__bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-image: -moz-linear-gradient(-90deg, rgb(16, 16, 21) 0%, rgba(16, 16, 21, 0) 60%);
    background-image: -webkit-linear-gradient(-90deg, rgb(16, 16, 21) 0%, rgba(16, 16, 21, 0) 60%);
    background-image: -ms-linear-gradient(-90deg, rgb(16, 16, 21) 0%, rgba(16, 16, 21, 0) 60%);
    z-index: 1;
}

/* Modern IT/AI Company Header Styles - Dark Theme */
.page-header--modern {
    background: #000000;
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

/* When header is scrolled past */
.page-header--modern.scrolled-black {
    background: #000000;
}

/* Radial Gradient Background Effect */
.page-header--modern::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(92, 176, 233, 0.4) 0%, transparent 70%);
    opacity: 0.2;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    transform: translateY(-50%);
    z-index: 0;
    transition: opacity 0.3s ease;
}

.page-header--modern.scrolled-black::before {
    opacity: 0.1;
}

.page-header__modern-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

/* Particle Network Container */
.tech-particles-network {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

/* Ensure content is above animations */
.page-header__inner {
    position: relative;
    z-index: 1;
}






.page-header__inner {
    position: relative;
    display: block;
}

.page-header__inner h2 {
    font-size: var(--otto-font-size-display-xl);
    font-weight: var(--otto-font-medium);
    line-height: var(--otto-line-height-display);
    color: var(--techguru-white);
    text-transform: capitalize;
    margin-bottom: 15px;
}

.thm-breadcrumb__box {
    position: relative;
    display: inline-block;
    border-radius: 4px;
    padding: 2px 12px 3px;
    background-color: var(--otto-white-transparent-12);
    z-index: 1;
}

.thm-breadcrumb {
    position: relative;
    display: inline-block;
}

.thm-breadcrumb li {
    position: relative;
    display: inline-block;
    font-size: var(--otto-font-size-md);
    font-weight: var(--otto-font-bold);
    color: var(--techguru-white);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

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

.thm-breadcrumb li span {
    font-size: 10px;
}

.thm-breadcrumb li a {
    position: relative;
    display: inline-flex;
    color: var(--techguru-white);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    align-items: center;
    gap: 8px;
}

.thm-breadcrumb li:hover a {
    color: var(--techguru-base);
}

/* ============================================
   MOBILE RESPONSIVE STYLES
============================================ */

/* Tablet & Mobile */
@media (max-width: 991px) {
    .page-header {
        padding: 180px 0 120px;
        min-height: 400px;
    }
    
    .page-header--modern {
        padding: 180px 0 120px;
        min-height: 400px;
    }
    
    .page-header__inner h1,
    .page-header__inner h2 {
        font-size: 36px !important;
        line-height: 1.2 !important;
        margin-bottom: 10px !important;
    }
    
    .page-header__inner p {
        font-size: 16px !important;
        margin-bottom: 15px !important;
        max-width: 100% !important;
    }
    
    .page-header--modern::before {
        width: 400px;
        height: 400px;
        filter: blur(80px);
    }
}

/* Mobile Only */
@media (max-width: 767px) {
    .page-header {
        padding: 160px 0 100px;
        min-height: 350px;
    }
    
    .page-header--modern {
        padding: 160px 0 100px;
        min-height: 350px;
    }
    
    .page-header__inner {
        text-align: left;
    }
    
    .page-header__inner h1,
    .page-header__inner h2 {
        font-size: 28px !important;
        line-height: 1.3 !important;
        margin-bottom: 8px !important;
    }
    
    .page-header__inner p {
        font-size: 14px !important;
        line-height: 1.5 !important;
        margin-bottom: 12px !important;
        padding: 0 10px;
    }
    
    .thm-breadcrumb__box {
        padding: 2px 8px;
    }
    
    .thm-breadcrumb li {
        font-size: 12px;
    }
    
    .thm-breadcrumb li a {
        gap: 5px;
    }
    
    .thm-breadcrumb li a i {
        font-size: 10px;
    }
    
    .page-header--modern::before {
        width: 300px;
        height: 300px;
        filter: blur(60px);
    }
}

/* Small Mobile */
@media (max-width: 575px) {
    .page-header {
        padding: 140px 0 80px;
        min-height: 300px;
    }
    
    .page-header--modern {
        padding: 140px 0 80px;
        min-height: 300px;
    }
    
    .page-header__inner h1,
    .page-header__inner h2 {
        font-size: 24px !important;
        line-height: 1.4 !important;
        margin-bottom: 8px !important;
        margin-top: 70px !important;
        text-align: left;
    }
    
    .page-header__inner p {
        font-size: 13px !important;
        line-height: 1.6 !important;
        margin-bottom: 10px !important;
        text-align: left;
    }
    
    .thm-breadcrumb li {
        font-size: 11px;
    }
    
    .page-header--modern::before {
        width: 250px;
        height: 250px;
        filter: blur(50px);
    }
}
