/* ==========================================================================
   Al Iman Quran Academy - Teachers Hero Banner CSS
   ========================================================================== */

.sbw-th-section * {
    font-family: 'Philosopher', sans-serif;
    box-sizing: border-box;
}

.sbw-th-section {
    position: relative;
    padding: 120px 0 100px 0;
    background-color: var(--sbw-dark, #091D17);
    color: #ffffff;
    overflow: hidden;
}

.sbw-th-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 30%, rgba(5, 131, 73, 0.35) 0%, rgba(9, 29, 23, 0.94) 80%);
    pointer-events: none;
    z-index: 1;
}

.sbw-th-container {
    position: relative;
    z-index: 5;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

/* Emblem Crest */
.sbw-th-crest-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 16px;
}

.sbw-th-crest {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 182, 6, 0.12);
    border: 1.5px solid var(--sbw-secondary, #FFB606);
    box-shadow: 0 0 25px rgba(255, 182, 6, 0.35);
    margin: 0 auto;
}

.sbw-th-crest img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.sbw-th-crest-icon {
    font-size: 26px;
}

/* Breadcrumb Bar */
.sbw-th-breadcrumb-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 24px;
}

.sbw-th-breadcrumb {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
}

.sbw-th-breadcrumb a {
    color: var(--sbw-secondary, #FFB606);
    text-decoration: none;
    transition: color 0.3s ease;
}

.sbw-th-breadcrumb a:hover {
    color: #ffffff;
}

.sbw-th-breadcrumb-sep {
    color: rgba(255, 255, 255, 0.4);
}

/* Title & Description */
.sbw-th-title {
    font-size: 52px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.15;
    margin: 0 0 20px 0;
}

.sbw-th-title span {
    color: var(--sbw-secondary, #FFB606);
}

.sbw-th-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.88);
    max-width: 780px;
    margin: 0 auto 50px auto;
    line-height: 1.65;
}

/* Integrated Scholar Stats Bar */
.sbw-th-stats-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 182, 6, 0.25);
    border-radius: 24px;
    padding: 30px;
    backdrop-filter: blur(14px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

.sbw-th-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.sbw-th-stat-item:last-child {
    border-right: none;
}

.sbw-th-stat-num {
    font-size: 42px;
    font-weight: 700;
    color: var(--sbw-secondary, #FFB606);
    line-height: 1.1;
    margin-bottom: 6px;
    text-shadow: 0 2px 10px rgba(255, 182, 6, 0.3);
}

.sbw-th-stat-lbl {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 700;
}

/* Responsive Queries */
@media (max-width: 991px) {
    .sbw-th-stats-wrapper {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .sbw-th-stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 16px;
    }
    .sbw-th-stat-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}

@media (max-width: 767px) {
    .sbw-th-section {
        padding: 90px 0 60px 0;
    }
    .sbw-th-title {
        font-size: 34px;
    }
    .sbw-th-desc {
        font-size: 15.5px;
        margin-bottom: 32px;
    }
    .sbw-th-stat-num {
        font-size: 32px;
    }
}
