/* Page Header Styles */
.page-header {
    position: relative;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: var(--mibooz-black);
    background-blend-mode: luminosity;
    z-index: -1;
}

.page-header-bg::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6); /* dark overlay */
    z-index: 2;
}

.page-header .container {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 440px;
}

.page-header__inner {
    text-align: center;
    width: 100%;
}

.thm-breadcrumb {
    margin-bottom: 18px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.thm-breadcrumb li {
    color: #fff;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline;
}

.thm-breadcrumb li a {
    color: #fff;
    opacity: 0.8;
    text-decoration: none;
    transition: opacity 0.2s;
}

.thm-breadcrumb li a:hover {
    opacity: 1;
    text-decoration: underline;
}

.page-header__title {
    color: #fff;
    font-size: 3rem;
    font-family: var(--heading-font);
    font-weight: 600;
    letter-spacing: 2px;
    margin: 0;
}

@media (max-width: 767px) {
    .page-header, .page-header .container {
        min-height: 180px;
        height: 180px;
    }
    .page-header__title {
        font-size: 2rem;
    }
}
.admission-banner {
    background: #18181c;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.admission-banner__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
.admission-banner__text {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.admission-banner__headline {
    color: #fff;
    font-size: 2rem;
    font-family: 'Century Gothic', Arial, sans-serif;
    letter-spacing: 1px;
}

.admission-banner__headline span {
    font-size: 1.5rem;
}

.admission-banner__phone {
    font-size: 1.3rem;
    color:black;
    text-decoration: none;
    margin-top: 8px;
    font-family: 'Century Gothic', Arial, sans-serif;
}
.admission-banner__social a {
    color: #fff;
    font-size: 1.7rem;
    margin-left: 22px;
    transition: color 0.2s;
}

.admission-banner__social a:hover {
    color: #0066b3;
}

@media (max-width: 767px) {
    .admission-banner__container {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .admission-banner__headline {
        font-size: 1.2rem;
    }
    .admission-banner__phone {
        font-size: 1rem;
    }
}
