/* ==========================================================================
   Al Iman Quran Academy - Admissions Page Hero Banner CSS (with Iqra Ayah Diagonal Shine)
   ========================================================================== */

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

.sbw-ah-section {
    position: relative;
    padding: 120px 0 90px 0;
    background-color: var(--sbw-dark, #091D17);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: #ffffff;
    overflow: hidden;
}

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

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

/* Iqra Ayah Badge Top Wrapper */
.sbw-ah-ayah-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 24px;
}

/* Iqra Ayah Badge Container with Diagonal Shine Sweep Animation */
.sbw-ah-ayah-badge {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    background: linear-gradient(135deg, rgba(255, 182, 6, 0.15) 0%, rgba(5, 131, 73, 0.25) 100%);
    border: 1.5px solid var(--sbw-secondary, #FFB606);
    border-radius: 60px;
    box-shadow: 0 10px 35px rgba(255, 182, 6, 0.25), inset 0 0 20px rgba(255, 182, 6, 0.15);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.sbw-ah-ayah-arabic {
    font-size: 28px;
    font-weight: 700;
    color: var(--sbw-secondary, #FFB606);
    letter-spacing: 1px;
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(255, 182, 6, 0.4);
}

.sbw-ah-ayah-trans {
    font-size: 13px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 4px;
    letter-spacing: 0.5px;
}

/* Diagonal Shine Animation Sweep */
.sbw-ah-shine {
    position: absolute;
    top: -50%;
    left: -60%;
    width: 40%;
    height: 200%;
    background: linear-gradient(
        90deg, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.6) 50%, 
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    pointer-events: none;
    animation: sbwDiagonalShine 4s infinite ease-in-out;
}

@keyframes sbwDiagonalShine {
    0% {
        left: -60%;
    }
    30% {
        left: 130%;
    }
    100% {
        left: 130%;
    }
}

/* Crest Emblem (Top Center) */
.sbw-ah-crest-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 14px;
}

.sbw-ah-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-ah-crest img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

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

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

.sbw-ah-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-ah-breadcrumb a {
    color: var(--sbw-secondary, #FFB606);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

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

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

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

/* Responsive Queries */
@media (max-width: 767px) {
    .sbw-ah-section {
        padding: 90px 0 60px 0;
    }
    .sbw-ah-ayah-badge {
        padding: 12px 24px;
    }
    .sbw-ah-ayah-arabic {
        font-size: 22px;
    }
    .sbw-ah-title {
        font-size: 34px;
    }
    .sbw-ah-desc {
        font-size: 15.5px;
    }
}
