/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
    position: relative;
    display: block;
    padding: 175px 0 168px;
    background-color: var(--anity-black);
    overflow: hidden;
    z-index: 1;
}

.page-header__shape-1 {
    position: absolute;
    left: 200px;
    bottom: 220px;
    opacity: .50;
    z-index: -1;
}

.page-header__shape-1 img {
    width: auto;
    filter: drop-shadow(2px 4px 6px black);
    opacity: 0.60;
}

.page-header__shape-2 {
    position: absolute;
    right: 180px;
    bottom: 90px;
    opacity: .50;
    z-index: -1;
}

.page-header__shape-2 img {
    width: auto;
}

.page-header__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: .20;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: var(--anity-black);
    #background-blend-mode: luminosity;
    z-index: -1;
}

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

.page-header__inner h2 {
    font-size: 50px;
    font-weight: 700;
    line-height: 60px;
    color: var(--anity-white);
    text-transform: uppercase;
    margin-bottom: 13px;
}

.thm-breadcrumb__box {
    position: relative;
    display: inline-block;
    z-index: 1;
}

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

.thm-breadcrumb li {
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    color: var(--anity-white);
    text-transform: capitalize;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.thm-breadcrumb li span {
    position: relative;
    margin-left: 14px;
    color: var(--anity-extra);
    margin-right: 14px;
}

.thm-breadcrumb li a {
    position: relative;
    display: inline-block;
    color: var(--anity-white);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.thm-breadcrumb li:hover a {
    color: var(--anity-extra);
}



/* Scope everything to .user-menu to avoid global overrides */
.user-menu .dropdown-toggle::after { display: none; } /* hide default caret */
.user-menu .avatar-trigger {
    position: relative; display: inline-flex; align-items: center; justify-content: center;
}
.user-menu .avatar-img {
    width: 40px; height: 40px; border-radius: 50%;
    object-fit: cover; border: 1px solid rgba(0,0,0,.08);
    box-shadow: 0 2px 6px rgba(0,0,0,.08);
}
.user-menu .avatar-fallback {
    width: 40px; height: 40px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 600; font-size: .9rem; color: #fff; text-transform: uppercase;
    background: linear-gradient(135deg, #0d6efd, #4dabf7);
    border: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 2px 6px rgba(0,0,0,.08);
}

/* Neat circular caret attached to avatar */
.user-menu .avatar-caret {
    position: absolute; right: -2px; bottom: -2px;
    width: 18px; height: 18px; border-radius: 50%;
    background: #fff; display: inline-flex; align-items: center; justify-content: center;
    box-shadow: 0 1px 3px rgba(0,0,0,.12), 0 0 0 1px rgba(0,0,0,.06);
}
.user-menu .avatar-caret i { font-size: .65rem; color: #495057; }

/* Light dropdown theme */
.user-menu .user-dropdown {
    background: #fff !important; color: #212529 !important;
    border: 1px solid rgba(0,0,0,.06); border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,.10);
    min-width: 220px; overflow: hidden;
    z-index: 1051; /* above navbar */
}
.user-menu .user-header { background: #f8f9fc; }

.user-menu .dropdown-item {
    border-radius: 8px; font-size: .95rem;
    transition: background .2s ease, color .2s ease;
    color: #212529;
}
.user-menu .dropdown-item:hover { background: #f1f5ff; color: #0d6efd; }
.user-menu .dropdown-item.text-danger:hover { background: #ffeaea; color: #dc3545; }

/* If navbar is dark, keep dropdown light and caret legible */
.navbar-dark .user-menu .avatar-caret { background: #f8f9fa; }



/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/