

/* ── GLOBAL HOME STYLES ── */
:root {
    --primary:      #0033AA;
    --primary-dark: #001A66;
    --accent:       #4D79FF;
    --border:       #CCD9FF;
    --bg-soft:      #F0F4FF;
    --white:        #FFFFFF;
    --gold:         #33733d;
    --gold-light:  #92CC8E;
    --green-main:         #33733d;
    --green-secendory:  #92CC8E;
}

section { overflow: hidden; }

.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}
.section-eyebrow::before,
.section-eyebrow::after {
    content: '';
    display: inline-block;
    width: 28px; height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

.section-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.25;
}

.divider-ornament {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 14px 0 0;
}
.divider-ornament span {
    width: 40px; height: 2px;
    background: var(--border);
    border-radius: 2px;
}
.divider-ornament i {
    color: var(--gold);
    font-size: 0.9rem;
}

/* ══════════════════════════════════════════
   1. HERO SECTION
══════════════════════════════════════════ */
.hero-section {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    background: var(--primary-dark);
    overflow: hidden;
}

/* Geometric Islamic SVG pattern background */
.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.09;
    background-image:
        url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='1'%3E%3Cpolygon points='40,4 76,20 76,60 40,76 4,60 4,20'/%3E%3Cpolygon points='40,14 66,26 66,54 40,66 14,54 14,26'/%3E%3Cline x1='40' y1='4' x2='40' y2='14'/%3E%3Cline x1='76' y1='20' x2='66' y2='26'/%3E%3Cline x1='76' y1='60' x2='66' y2='54'/%3E%3Cline x1='40' y1='76' x2='40' y2='66'/%3E%3Cline x1='4' y1='60' x2='14' y2='54'/%3E%3Cline x1='4' y1='20' x2='14' y2='26'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 80px 80px;
}

/* Right side glow */
.hero-glow {
    position: absolute;
    right: -120px; top: -120px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(77,121,255,0.22) 0%, transparent 70%);
    pointer-events: none;
}
.hero-glow-2 {
    position: absolute;
    left: -80px; bottom: -80px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(201,168,76,0.10) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content { position: relative; z-index: 2; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(77,121,255,0.18);
    border: 1px solid rgba(77,121,255,0.4);
    color: #a8c4ff;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 40px;
    margin-bottom: 22px;
}
.hero-badge .dot {
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse-dot 1.8s infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.4; transform: scale(1.4); }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.18;
    margin-bottom: 20px;
}
.hero-title .highlight {
    color: var(--gold-light);
    font-style: italic;
}

.hero-arabic {
    font-family: 'Amiri', serif;
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    color: rgba(255,255,255,0.60);
    direction: rtl;
    margin-bottom: 24px;
    letter-spacing: 0.04em;
}

.hero-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.75;
    max-width: 520px;
    margin-bottom: 36px;
}

.hero-btn-group { display: flex; flex-wrap: wrap; gap: 14px; }

.btn-hero-primary {
    background: var(--gold);
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 14px 32px;
    border-radius: 8px;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.25s, transform 0.2s;
    letter-spacing: 0.02em;
}
.btn-hero-primary:hover {
    background: var(--gold-light);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-hero-outline {
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 13px 30px;
    border-radius: 8px;
    border: 1.5px solid rgba(255,255,255,0.35);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.25s, border-color 0.25s;
}
.btn-hero-outline:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.7);
    color: #fff;
}

/* Hero right visual */
.hero-visual-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 40px 0;
}

.hero-card-float {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 32px 28px;
    max-width: 340px;
    width: 100%;
    position: relative;
    z-index: 2;
}
.hero-card-float .hcf-icon {
    width: 54px; height: 54px;
    background: rgba(77,121,255,0.2);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    color: var(--gold-light);
    margin-bottom: 16px;
}
.hero-card-float h3 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 8px;
}
.hero-card-float p {
    color: rgba(255,255,255,0.65);
    font-size: 0.855rem;
    line-height: 1.65;
}

.hero-stat-chips {
    position: absolute;
    bottom: -18px;
    left: 50%; transform: translateX(-50%);
    display: flex;
    gap: 10px;
    white-space: nowrap;
}
.stat-chip {
    background: var(--primary);
    border: 1px solid rgba(77,121,255,0.5);
    color: #fff;
    border-radius: 40px;
    padding: 7px 18px;
    font-size: 0.78rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}
.stat-chip i { color: var(--gold-light); }

/* Scroll indicator */
.scroll-hint {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.4);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 3;
}
.scroll-hint .scroll-line {
    width: 1px;
    height: 36px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
    0%   { opacity: 1; transform: scaleY(1); }
    100% { opacity: 0; transform: scaleY(0.3); transform-origin: top; }
}

/* ══════════════════════════════════════════
   2. STATS BAR
══════════════════════════════════════════ */
.stats-bar {
    background: var(--primary);
    padding: 22px 0;
    position: relative;
}
.stats-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background-image:
        url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='0.8'%3E%3Cpolygon points='20,2 38,10 38,30 20,38 2,30 2,10'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 40px 40px;
}
.stat-item {
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    z-index: 1;
}
.stat-item-icon {
    width: 44px; height: 44px;
    background: rgba(255,255,255,0.12);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    color: var(--gold-light);
    flex-shrink: 0;
}
.stat-item-text .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.02rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}
.stat-item-text .stat-label {
    font-size: 0.76rem;
    color: rgba(255,255,255,0.65);
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.stats-divider {
    width: 1px;
    height: 44px;
    background: rgba(255,255,255,0.18);
}

/* ══════════════════════════════════════════
   3. BRIEF INTRODUCTION
══════════════════════════════════════════ */
.intro-section {
    padding: 90px 0 70px;
    background: var(--white);
}

.intro-verse-card {
    background: var(--bg-soft);
    border-left: 4px solid var(--primary);
    border-radius: 0 12px 12px 0;
    padding: 22px 24px;
    margin-bottom: 28px;
}
.intro-verse-card .arabic-text {
    font-family: 'Amiri', serif;
    font-size: 1.3rem;
    color: var(--primary-dark);
    direction: rtl;
    line-height: 2;
    margin-bottom: 8px;
}
.intro-verse-card .translation {
    font-size: 0.82rem;
    color: var(--text-muted, #5a6a8a);
    font-style: italic;
    font-weight: 500;
}
.intro-verse-card .reference {
    font-size: 0.74rem;
    color: var(--accent);
    font-weight: 700;
    margin-top: 6px;
}

.intro-text {
    font-size: 1rem;
    color: #3a4a6a;
    line-height: 1.85;
    margin-bottom: 24px;
}

.btn-primary-jm {
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 12px 28px;
    border-radius: 8px;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.22s, transform 0.18s;
}
.btn-primary-jm:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-2px);
}


/* Feature pill cards on the right */
.intro-feature-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.intro-feature-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 20px 22px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: box-shadow 0.22s, border-color 0.22s, transform 0.22s;
}
.intro-feature-card:hover {
    box-shadow: 0 6px 28px rgba(0,51,170,0.10);
    border-color: var(--accent);
    transform: translateY(-3px);
}
.ifc-icon {
    width: 46px; height: 46px;
    background: var(--bg-soft);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
    flex-shrink: 0;
}
.ifc-title {
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--primary-dark);
    margin-bottom: 4px;
}
.ifc-desc {
    font-size: 0.82rem;
    color: #5a6a8a;
    line-height: 1.55;
    margin: 0;
}

/* ══════════════════════════════════════════
   4. PATRON-IN-CHIEF — SHEIKH PROFILE
══════════════════════════════════════════ */
.sheikh-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f7f9ff 0%, #eef2ff 40%, #f5f0e8 100%);
    position: relative;
    overflow: hidden;
}

/* Large watermark */
.sheikh-watermark {
    position: absolute;
    right: -60px; top: 50%;
    transform: translateY(-50%);
    font-family: 'Amiri', serif;
    font-size: 18rem;
    color: rgba(0,51,170,0.04);
    pointer-events: none;
    user-select: none;
    line-height: 1;
}

/* ── THE FRAME ── */
.sheikh-frame-outer {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

/* Decorative geometric corner SVGs */
.sheikh-frame-outer::before,
.sheikh-frame-outer::after {
    content: '';
    position: absolute;
    width: 80px; height: 80px;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 10;
    pointer-events: none;
}
.sheikh-frame-outer::before {
    top: -8px; left: -8px;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 2 L40 2 L40 8 L8 8 L8 40 L2 40 Z' fill='%23C9A84C'/%3E%3Cpath d='M5 5 L30 5 L30 9 L9 9 L9 30 L5 30 Z' fill='none' stroke='%23C9A84C' stroke-width='1'/%3E%3Ccircle cx='2' cy='2' r='3' fill='%23C9A84C'/%3E%3C/svg%3E");
}
.sheikh-frame-outer::after {
    bottom: -8px; right: -8px;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M78 78 L40 78 L40 72 L72 72 L72 40 L78 40 Z' fill='%23C9A84C'/%3E%3Cpath d='M75 75 L50 75 L50 71 L71 71 L71 50 L75 50 Z' fill='none' stroke='%23C9A84C' stroke-width='1'/%3E%3Ccircle cx='78' cy='78' r='3' fill='%23C9A84C'/%3E%3C/svg%3E");
}

/* Extra corner decorators via child spans */
.corner-tl, .corner-tr, .corner-bl, .corner-br {
    position: absolute;
    width: 60px; height: 60px;
    z-index: 11;
    pointer-events: none;
}
.corner-tl { top: 6px; left: 6px; border-top: 3px solid var(--gold); border-left: 3px solid var(--gold); border-radius: 6px 0 0 0; }
.corner-tr { top: 6px; right: 6px; border-top: 3px solid var(--gold); border-right: 3px solid var(--gold); border-radius: 0 6px 0 0; }
.corner-bl { bottom: 6px; left: 6px; border-bottom: 3px solid var(--gold); border-left: 3px solid var(--gold); border-radius: 0 0 0 6px; }
.corner-br { bottom: 6px; right: 6px; border-bottom: 3px solid var(--gold); border-right: 3px solid var(--gold); border-radius: 0 0 6px 0; }

.sheikh-frame-border {
    border: 2px solid rgba(201,168,76,0.35);
    border-radius: 20px;
    padding: 10px;
    background: linear-gradient(145deg, rgba(255,255,255,0.9), rgba(240,244,255,0.9));
    box-shadow:
        0 0 0 1px rgba(201,168,76,0.15),
        0 20px 60px rgba(0,51,170,0.18),
        0 8px 24px rgba(201,168,76,0.12),
        inset 0 0 30px rgba(255,255,255,0.6);
    position: relative;
}

.sheikh-img-wrap {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 3/4;
    background: linear-gradient(160deg, #e8edf8 0%, #c8d4f0 100%);
}

/* Placeholder when no real image */
.sheikh-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, #001A66 0%, #0033AA 50%, #1a4db8 100%);
    color: rgba(255,255,255,0.9);
    min-height: 420px;
}
.sheikh-img-placeholder .silhouette-icon {
    font-size: 7rem;
    opacity: 0.3;
    margin-bottom: 16px;
}
.sheikh-img-placeholder .pic-note {
    font-size: 0.78rem;
    opacity: 0.5;
    font-style: italic;
    text-align: center;
    padding: 0 20px;
}

.sheikh-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.5s ease;
}
.sheikh-img-wrap:hover img { transform: scale(1.03); }

/* Gradient overlay at bottom of image */
.sheikh-img-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 42%;
    background: linear-gradient(to top, rgba(0,26,102,0.88) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px 18px 16px;
}
.sheikh-img-overlay .overlay-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: #fff;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 4px;
}
.sheikh-img-overlay .overlay-title {
    font-size: 0.74rem;
    color: var(--gold-light);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Badge ribbon on top right */
.sheikh-ribbon {
    position: absolute;
    top: -4px; right: 18px;
    background: var(--gold);
    color: var(--primary-dark);
    font-size: 0.65rem;
    font-weight: 800;
    padding: 5px 14px 12px;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    z-index: 12;
    min-width: 70px;
    text-align: center;
}

/* Decorative Islamic pattern strip under frame */
.sheikh-pattern-strip {
    height: 8px;
    margin: 12px 10px 0;
    background: repeating-linear-gradient(
        90deg,
        var(--gold) 0px, var(--gold) 6px,
        transparent 6px, transparent 12px,
        var(--primary) 12px, var(--primary) 18px,
        transparent 18px, transparent 24px
    );
    border-radius: 0 0 10px 10px;
    opacity: 0.6;
}

/* Sheikh info side */
.sheikh-info-side { position: relative; z-index: 2; }

.sheikh-title-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,168,76,0.12);
    border: 1px solid rgba(201,168,76,0.35);
    color: #8a6a00;
    font-size: 0.74rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 40px;
    margin-bottom: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.sheikh-title-badge i { color: var(--gold); }

.sheikh-name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.2;
    margin-bottom: 6px;
}
.sheikh-known-as {
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 20px;
    font-style: italic;
}

.sheikh-bio {
    font-size: 0.95rem;
    color: #3a4a6a;
    line-height: 1.85;
    margin-bottom: 24px;
    border-left: 3px solid var(--gold);
    padding-left: 16px;
}

.sheikh-meta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 28px;
}
.sheikh-meta-item {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 12px 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.sheikh-meta-item i {
    color: var(--primary);
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}
.sheikh-meta-item .meta-label {
    font-size: 0.7rem;
    color: #8a9ab8;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    margin-bottom: 2px;
}
.sheikh-meta-item .meta-val {
    font-size: 0.85rem;
    color: var(--primary-dark);
    font-weight: 600;
    line-height: 1.3;
}

.sheikh-quote-box {
    background: linear-gradient(135deg, var(--green-main) 0%, var(--green-secendory) 100%);
    border-radius: 14px;
    padding: 22px 22px 22px 26px;
    position: relative;
    overflow: hidden;
    margin-bottom: 28px;
}
.sheikh-quote-box::before {
    content: '\201C';
    position: absolute;
    top: -10px; left: 14px;
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    color: rgba(255,255,255,0.07);
    line-height: 1;
}
.sheikh-quote-box p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.88);
    line-height: 1.75;
    font-style: italic;
    position: relative;
    z-index: 1;
    margin: 0;
}
.sheikh-quote-box .quote-attr {
    font-size: 0.74rem;
    color: var(--gold-light);
    font-weight: 700;
    margin-top: 10px;
    position: relative;
    z-index: 1;
    letter-spacing: 0.06em;
}

.btn-sheikh-profile {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: #fff;
    font-weight: 700;
    font-size: 0.875rem;
    padding: 13px 30px;
    border-radius: 8px;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    transition: box-shadow 0.25s, transform 0.2s;
    box-shadow: 0 6px 20px rgba(0,51,170,0.25);
}
.btn-sheikh-profile:hover {
    color: #fff;
    box-shadow: 0 10px 30px rgba(0,51,170,0.35);
    transform: translateY(-2px);
}

/* ══════════════════════════════════════════
   5. MISSION PILLARS
══════════════════════════════════════════ */
.pillars-section {
    padding: 90px 0;
    background: var(--white);
}

.pillar-card {
    background: var(--bg-soft);
    border: 1.5px solid var(--border);
    border-radius: 18px;
    padding: 34px 28px;
    text-align: center;
    height: 100%;
    transition: all 0.28s ease;
    position: relative;
    overflow: hidden;
}
.pillar-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 0 0 16px 16px;
}
.pillar-card:hover {
    box-shadow: 0 12px 40px rgba(0,51,170,0.12);
    border-color: var(--accent);
    transform: translateY(-6px);
    background: var(--white);
}
.pillar-card:hover::before { transform: scaleX(1); }

.pillar-icon-wrap {
    width: 72px; height: 72px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.7rem;
    color: #fff;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(0,51,170,0.22);
    transition: transform 0.3s;
}
.pillar-card:hover .pillar-icon-wrap { transform: rotate(8deg) scale(1.08); }

.pillar-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: 12px;
}
.pillar-card p {
    font-size: 0.875rem;
    color: #5a6a8a;
    line-height: 1.72;
    margin: 0;
}

/* ══════════════════════════════════════════
   6. SHEIKH'S SAYINGS
══════════════════════════════════════════ */
.sayings-section {
    padding: 90px 0;
    background: linear-gradient(160deg, var(--primary-dark) 0%, #0a2a80 100%);
    position: relative;
    overflow: hidden;
}
.sayings-section::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background-image:
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='0.8'%3E%3Cpolygon points='30,3 57,15 57,45 30,57 3,45 3,15'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 60px 60px;
}

.saying-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;
    padding: 30px 26px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: background 0.25s, box-shadow 0.25s;
}
.saying-card:hover {
    background: rgba(255,255,255,0.10);
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.saying-card .quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    color: var(--gold);
    line-height: 0.6;
    margin-bottom: 14px;
    display: block;
    opacity: 0.7;
}
.saying-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.82);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 16px;
}
.saying-card .saying-source {
    font-size: 0.73rem;
    color: var(--gold-light);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}
.saying-card .saying-source::before {
    content: '';
    width: 20px; height: 2px;
    background: var(--gold);
    border-radius: 2px;
}
.founder-sheikh-row-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #f7f9ff 0%, #eef2ff 40%, #f5f0e8 100%);
}
.founder-sheikh-row-section .row {
    flex-wrap: nowrap;
}
@media (max-width: 991.98px) {
    .founder-sheikh-row-section .row {
        flex-wrap: wrap;
    }
}
/* ══════════════════════════════════════════
   7. ESTABLISHED SECTION
══════════════════════════════════════════ */
.founded-section {
    padding: 80px 0;
    background: var(--bg-soft);
}

.timeline-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 22px;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    margin-bottom: 16px;
    transition: box-shadow 0.22s, border-color 0.22s;
}
.timeline-card:hover {
    box-shadow: 0 6px 24px rgba(0,51,170,0.10);
    border-color: var(--accent);
}
.timeline-year {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
    min-width: 70px;
    line-height: 1.1;
}
.timeline-divider {
    width: 2px;
    min-height: 44px;
    background: var(--border);
    flex-shrink: 0;
    border-radius: 2px;
}
.timeline-body h5 {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary-dark);
    margin-bottom: 5px;
}
.timeline-body p {
    font-size: 0.845rem;
    color: #5a6a8a;
    line-height: 1.65;
    margin: 0;
}

/* ══════════════════════════════════════════
   8. CTA BANNER
══════════════════════════════════════════ */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--gold) 0%, #e8b840 50%, var(--gold) 100%);
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.08;
    background-image:
        url("data:image/svg+xml,%3Csvg width='50' height='50' viewBox='0 0 50 50' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23001A66' stroke-width='1'%3E%3Cpolygon points='25,2 48,13 48,37 25,48 2,37 2,13'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 50px 50px;
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: 14px;
}
.cta-section p {
    color: rgba(0,26,102,0.75);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 28px;
}
.btn-cta-dark {
    background: var(--primary-dark);
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.22s, transform 0.18s;
}
.btn-cta-dark:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
.btn-cta-outline-dark {
    background: transparent;
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 13px 30px;
    border-radius: 8px;
    border: 2px solid rgba(0,26,102,0.35);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: border-color 0.22s, background 0.22s;
}
.btn-cta-outline-dark:hover {
    border-color: var(--primary-dark);
    background: rgba(0,26,102,0.07);
    color: var(--primary-dark);
}

/* ── RESPONSIVE TWEAKS ── */
@media (max-width: 991.98px) {
    .hero-section { min-height: 70vh; padding: 60px 0 80px; }
    .hero-visual-wrap { padding: 40px 0 60px; }
    .sheikh-frame-outer { max-width: 300px; }
    .sheikh-meta-grid { grid-template-columns: 1fr; }
}
@media (max-width: 767.98px) {
    .hero-section { min-height: auto; padding: 50px 0 70px; }
    .stats-bar .d-flex { flex-wrap: wrap; justify-content: center; gap: 18px; }
    .stats-divider { display: none; }
    .sheikh-section { padding: 60px 0; }
    .sheikh-frame-outer { max-width: 260px; margin-bottom: 48px; }
    .intro-section { padding: 60px 0 50px; }
    .pillars-section { padding: 60px 0; }
    .sayings-section { padding: 60px 0; }
    .founded-section { padding: 60px 0; }
    .cta-section { padding: 60px 0; }
    .hero-card-float { display: none; }
}
/* ══ SIMPLE LEADER CARDS ══ */
.leader-simple-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 28px 20px 22px;
    text-align: center;
    transition: box-shadow 0.22s, border-color 0.22s, transform 0.22s;
}
.leader-simple-card:hover {
    box-shadow: 0 8px 28px rgba(0,51,170,0.10);
    border-color: var(--accent);
    transform: translateY(-4px);
}
.leader-img-wrap {
    width: 190px; height: 190px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 16px;
    border: 3px solid var(--border);
}
.leader-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}
.leader-simple-name {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 6px;
}
.leader-simple-title {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ══════════════════════════════════════════
   ABOUT PAGE — LOCAL STYLES
   All variables inherited from style.css
══════════════════════════════════════════ */

/* ── ABOUT HERO ── */
.about-hero-section {
    position: relative;
    min-height: 62vh;
    display: flex;
    align-items: center;
    background: var(--primary-dark);
    overflow: hidden;
    padding: 80px 0;
}
.about-hero-section .hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.09;
    background-image:
        url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='1'%3E%3Cpolygon points='40,4 76,20 76,60 40,76 4,60 4,20'/%3E%3Cpolygon points='40,14 66,26 66,54 40,66 14,54 14,26'/%3E%3Cline x1='40' y1='4' x2='40' y2='14'/%3E%3Cline x1='76' y1='20' x2='66' y2='26'/%3E%3Cline x1='76' y1='60' x2='66' y2='54'/%3E%3Cline x1='40' y1='76' x2='40' y2='66'/%3E%3Cline x1='4' y1='60' x2='14' y2='54'/%3E%3Cline x1='4' y1='20' x2='14' y2='26'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 80px 80px;
}
.about-hero-glow {
    position: absolute;
    right: -100px; top: -100px;
    width: 550px; height: 550px;
    background: radial-gradient(circle, rgba(77,121,255,0.20) 0%, transparent 70%);
    pointer-events: none;
}
.about-hero-glow-2 {
    position: absolute;
    left: -80px; bottom: -80px;
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(201,168,76,0.10) 0%, transparent 70%);
    pointer-events: none;
}
.about-hero-content { position: relative; z-index: 2; }

.about-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.about-breadcrumb a { color: rgba(255,255,255,0.5); text-decoration: none; }
.about-breadcrumb a:hover { color: var(--gold-light); }
.about-breadcrumb i { font-size: 0.6rem; color: rgba(255,255,255,0.3); }
.about-breadcrumb .current { color: var(--gold-light); }

.about-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.18;
    margin-bottom: 18px;
}
.about-hero-title .highlight { color: var(--gold-light); font-style: italic; }

.about-hero-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.70);
    line-height: 1.80;
    max-width: 580px;
    margin-bottom: 32px;
}
.about-hero-arabic {
    font-family: 'Amiri', serif;
    font-size: clamp(1rem, 2vw, 1.4rem);
    color: rgba(255,255,255,0.55);
    direction: rtl;
    margin-bottom: 28px;
}

/* Right visual panel */
.about-hero-stats-panel {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.14);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 30px 26px;
    max-width: 340px;
    width: 100%;
}
.about-hero-stats-panel .ahsp-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.10);
}
.about-hero-stats-panel .ahsp-icon {
    width: 46px; height: 46px;
    background: rgba(201,168,76,0.18);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    color: var(--gold-light);
    flex-shrink: 0;
}
.about-hero-stats-panel .ahsp-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: #fff;
    font-weight: 700;
    line-height: 1.2;
}
.about-hero-stats-panel .ahsp-sub {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.45);
    font-weight: 500;
}
.ahsp-stat-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ahsp-stat-row:last-child { border-bottom: none; padding-bottom: 0; }
.ahsp-stat-row .dot-gold {
    width: 7px; height: 7px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}
.ahsp-stat-row .s-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.55);
    flex: 1;
}
.ahsp-stat-row .s-val {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
}

/* ── ABOUT INTRO SECTION ── */
.about-intro-section {
    padding: 90px 0 70px;
    background: var(--white);
}

/* ── FOUNDER SECTION (mirrors sheikh-section exactly) ── */
.founder-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f7f9ff 0%, #eef2ff 40%, #f5f0e8 100%);
    position: relative;
    overflow: hidden;
}
.founder-watermark {
    position: absolute;
    left: -60px; top: 50%;
    transform: translateY(-50%);
    font-family: 'Amiri', serif;
    font-size: 18rem;
    color: rgba(0,51,170,0.04);
    pointer-events: none;
    user-select: none;
    line-height: 1;
}

/* Image placeholder for founder — same pattern as sheikh */
.founder-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, #001A66 0%, #0033AA 50%, #1a4db8 100%);
    color: rgba(255,255,255,0.9);
    min-height: 420px;
}
.founder-img-placeholder .silhouette-icon {
    font-size: 7rem;
    opacity: 0.3;
    margin-bottom: 16px;
}
.founder-img-placeholder .pic-note {
    font-size: 0.78rem;
    opacity: 0.5;
    font-style: italic;
    text-align: center;
    padding: 0 20px;
}

/* ── MISSION SECTION ── */
.mission-section {
    padding: 90px 0;
    background: var(--white);
}
.mission-highlight-box {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    border-radius: 20px;
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
    height: 100%;
}
.mission-highlight-box::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background-image:
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='0.8'%3E%3Cpolygon points='30,3 57,15 57,45 30,57 3,45 3,15'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 60px 60px;
}
.mission-highlight-box .mhb-arabic {
    font-family: 'Amiri', serif;
    font-size: 2.2rem;
    color: rgba(255,255,255,0.18);
    direction: rtl;
    position: absolute;
    bottom: 16px; right: 20px;
    line-height: 1;
    pointer-events: none;
}
.mission-highlight-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 16px;
    position: relative; z-index: 1;
}
.mission-highlight-box p {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.80);
    line-height: 1.85;
    position: relative; z-index: 1;
    margin-bottom: 0;
}
.mission-pillar-row {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.mission-pillar-item {
    background: var(--bg-soft);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 18px 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: box-shadow 0.22s, border-color 0.22s, transform 0.22s;
}
.mission-pillar-item:hover {
    box-shadow: 0 6px 24px rgba(0,51,170,0.10);
    border-color: var(--accent);
    transform: translateX(4px);
}
.mpi-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0,51,170,0.20);
}
.mpi-title {
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--primary-dark);
    margin-bottom: 3px;
}
.mpi-desc {
    font-size: 0.82rem;
    color: #5a6a8a;
    line-height: 1.55;
    margin: 0;
}

/* ── SISTER ORGANIZATIONS ── */
.sister-section {
    padding: 90px 0;
    background: var(--bg-soft);
}
.sister-org-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 36px 30px;
    height: 100%;
    transition: all 0.28s ease;
    position: relative;
    overflow: hidden;
}
.sister-org-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 20px 20px 0 0;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.sister-org-card:hover {
    box-shadow: 0 12px 40px rgba(0,51,170,0.12);
    border-color: var(--accent);
    transform: translateY(-6px);
}
.sister-org-card:hover::after { transform: scaleX(1); }

.soc-icon-wrap {
    width: 70px; height: 70px;
    background: var(--bg-soft);
    border: 2px solid var(--border);
    border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 20px;
    transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.sister-org-card:hover .soc-icon-wrap {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: rotate(6deg) scale(1.08);
}
.soc-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0,51,170,0.07);
    border: 1px solid rgba(0,51,170,0.15);
    color: var(--primary);
    font-size: 0.68rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 40px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.soc-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
    line-height: 1.25;
}
.soc-abbr {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}
.soc-desc {
    font-size: 0.875rem;
    color: #5a6a8a;
    line-height: 1.75;
    margin: 0;
}
.soc-activities {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}
.soc-activity-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    color: var(--primary-dark);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 40px;
    margin: 3px 2px;
}
.soc-activity-tag i { color: var(--primary); font-size: 0.65rem; }

/* ── ORGANIZATION STRUCTURE ── */
.org-section {
    padding: 90px 0;
    background: var(--white);
}
.org-structure-visual {
    background: var(--bg-soft);
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 36px 30px;
}
.org-level {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    margin-bottom: 0;
    transition: box-shadow 0.22s, border-color 0.22s;
}
.org-level:hover {
    box-shadow: 0 4px 18px rgba(0,51,170,0.09);
    border-color: var(--accent);
}
.org-level-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    color: #fff;
    flex-shrink: 0;
}
.org-level-icon.central  { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); }
.org-level-icon.province { background: linear-gradient(135deg, #1a5276, #2980b9); }
.org-level-icon.district { background: linear-gradient(135deg, #145a32, #27ae60); }
.org-level-icon.area     { background: linear-gradient(135deg, #6c3483, #a569bd); }

.org-level-title {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary-dark);
}
.org-level-desc {
    font-size: 0.78rem;
    color: #8a9ab8;
    margin: 0;
}
.org-connector {
    width: 2px;
    height: 22px;
    background: var(--border);
    margin: 0 auto;
    border-radius: 2px;
}
.org-connector-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
}

/* ── LEADERSHIP TABLE SECTION ── */
.leadership-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #f7f9ff 0%, #eef2ff 40%, #f5f0e8 100%);
    position: relative;
    overflow: hidden;
}
.leadership-section .ldr-watermark {
    position: absolute;
    right: -40px; top: 50%;
    transform: translateY(-50%);
    font-family: 'Amiri', serif;
    font-size: 18rem;
    color: rgba(0,51,170,0.04);
    pointer-events: none;
    user-select: none;
    line-height: 1;
}
.leadership-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
    transition: box-shadow 0.22s, border-color 0.22s, transform 0.22s;
}
.leadership-card:hover {
    box-shadow: 0 6px 24px rgba(0,51,170,0.10);
    border-color: var(--accent);
    transform: translateX(6px);
}
.ldr-avatar {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    flex-shrink: 0;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}
.ldr-avatar.gold-avatar {
    background: linear-gradient(135deg, #8a6a00, var(--gold));
}
.ldr-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary-dark);
    margin-bottom: 3px;
    line-height: 1.2;
}
.ldr-title {
    font-size: 0.76rem;
    color: #8a9ab8;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}
.ldr-title i { color: var(--gold); font-size: 0.6rem; }
.ldr-rank-badge {
    margin-left: auto;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    color: var(--primary);
    font-size: 0.68rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 40px;
    white-space: nowrap;
    letter-spacing: 0.04em;
    flex-shrink: 0;
}
.ldr-rank-badge.gold-badge {
    background: rgba(201,168,76,0.12);
    border-color: rgba(201,168,76,0.35);
    color: #8a6a00;
}

/* ── SPIRITUAL PURPOSE ── */
.spiritual-section {
    padding: 90px 0;
    background: linear-gradient(160deg, var(--primary-dark) 0%, #0a2a80 100%);
    position: relative;
    overflow: hidden;
}
.spiritual-section::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background-image:
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='0.8'%3E%3Cpolygon points='30,3 57,15 57,45 30,57 3,45 3,15'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 60px 60px;
}
.spiritual-teaching-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;
    padding: 28px 24px;
    height: 100%;
    transition: background 0.25s, box-shadow 0.25s, transform 0.25s;
    text-align: center;
}
.spiritual-teaching-card:hover {
    background: rgba(255,255,255,0.10);
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    transform: translateY(-4px);
}
.stc-icon {
    width: 64px; height: 64px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    color: var(--gold-light);
    margin: 0 auto 18px;
}
.stc-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 10px;
}
.stc-desc {
    font-size: 0.855rem;
    color: rgba(255,255,255,0.70);
    line-height: 1.75;
    margin: 0;
}
.spiritual-verse-block {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 18px;
    padding: 36px 36px;
    text-align: center;
    position: relative;
}
.spiritual-verse-block .sv-arabic {
    font-family: 'Amiri', serif;
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: var(--gold-light);
    direction: rtl;
    line-height: 2;
    margin-bottom: 14px;
}
.spiritual-verse-block .sv-translation {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.75);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 8px;
}
.spiritual-verse-block .sv-reference {
    font-size: 0.74rem;
    color: var(--gold-light);
    font-weight: 700;
    letter-spacing: 0.08em;
}

/* ── HISTORY / TIMELINE (reuses founded-section from home) ── */
.history-section {
    padding: 90px 0;
    background: var(--bg-soft);
}
/* Timeline extended marker */
.timeline-card .timeline-marker {
    width: 12px; height: 12px;
    background: var(--primary);
    border: 2px solid var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 6px;
    display: none; /* shown on mobile via vertical layout */
}

/* ── IMAGE PLACEHOLDER (generic) ── */
.img-placeholder-block {
    border: 2px dashed var(--border);
    border-radius: 16px;
    background: var(--bg-soft);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 40px 20px;
    min-height: 260px;
    color: #8a9ab8;
}
.img-placeholder-block i { font-size: 2.5rem; color: var(--border); }
.img-placeholder-block span {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* ── RESPONSIVE ── */
@media (max-width: 991.98px) {
    .about-hero-section { min-height: auto; padding: 60px 0 70px; }
    .founder-section  { padding: 60px 0; }
    .mission-section  { padding: 60px 0; }
    .sister-section   { padding: 60px 0; }
    .org-section      { padding: 60px 0; }
    .leadership-section { padding: 60px 0; }
    .spiritual-section  { padding: 60px 0; }
    .history-section    { padding: 60px 0; }
}
@media (max-width: 767.98px) {
    .about-hero-stats-panel { display: none; }
    .mission-highlight-box  { margin-bottom: 28px; }
    .sheikh-meta-grid       { grid-template-columns: 1fr; }
    .leadership-card        { flex-wrap: wrap; }
    .ldr-rank-badge         { margin-left: 0; }
}


