﻿/* ============================================================
   MSO PAKISTAN — style.css
   Primary: #05a5e2 | Navy: #003a5c | Deep: #0d1b2a | Gold: #f4c430
   Font: Poppins (headings) + Inter (body)
   ============================================================ */

/* -- RESET & BASE -- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1a1a2e;
    overflow-x: hidden;
    line-height: 1.6;
    padding: 0px;
    margin: 0px;
}

/* -- CSS VARIABLES -- */
:root {
    --blue: #05a5e2;
    --blue-dark: #0082b8;
    --blue-light: rgba(5, 165, 226, 0.10);
    --navy: #003a5c;
    --navy-deep: #0d1b2a;
    --gold: #f4c430;
    --white: #ffffff;
    --grey-light: #f4f7fb;
    --grey-mid: #e8f0f7;
    --text-dark: #1a1a2e;
    --text-mid: #4a5568;
    --text-light: #8a9ab0;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 20px;
    --shadow-sm: 0 4px 20px rgba(5, 165, 226, 0.07);
    --shadow-md: 0 12px 40px rgba(5, 165, 226, 0.12);
    --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.15);
    --transition: 0.25s ease;
}

/* -- TYPOGRAPHY -- */
h1,
h2,
h3,
h4,
h5 {
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.5px;
}

a {
    text-decoration: none;
}

/* -- UTILITIES -- */
.container {
    margin: 0 auto;
}

.section {
    padding: 100px 60px;
}

.center {
    display: flex;
    justify-content: center;
}

.text-white {
    color: #fff;
}

.text-blue {
    color: var(--blue);
}

.section-tag {
    display: inline-block;
    background: var(--blue-light);
    color: var(--blue);
    border: 1px solid rgba(5, 165, 226, 0.2);
    padding: 5px 16px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-tag.gold {
    background: rgba(244, 196, 48, 0.15);
    color: var(--gold);
    border-color: rgba(244, 196, 48, 0.3);
}

.section-h2 {
    font-weight: 700;
    font-size: clamp(30px, 3.5vw, 46px);
    color: var(--text-dark);
    line-height: 1.12;
    letter-spacing: -1px;
    margin-bottom: 14px;
}

.section-sub {
    font-size: 17px;
    color: var(--text-mid);
    line-height: 1.75;
    max-width: 560px;
}

.section-header-center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
}

.section-header-center .section-sub {
    max-width: 620px;
}

/* -- BUTTONS -- */
.btn-primary {
    background: var(--blue);
    color: #fff;
    padding: 14px 30px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition);
    border: 2px solid var(--blue);
}

.btn-primary:hover {
    background: #fff;
    color: var(--blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(5, 165, 226, 0.3);
}

.btn-outline {
    background: transparent;
    color: #fff;
    padding: 14px 30px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 15px;
    transition: all var(--transition);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
}

.btn-outline-blue {
    border: 2px solid var(--blue);
    color: var(--blue);
    padding: 13px 30px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition);
}

.btn-outline-blue:hover {
    background: var(--blue);
    color: #fff;
}

.btn-white {
    background: #fff;
    color: var(--blue);
    padding: 15px 34px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 15px;
    transition: all var(--transition);
}

.btn-white:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

.btn-outline-white {
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    padding: 15px 34px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 15px;
    transition: all var(--transition);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
}

.text-link {
    color: var(--blue);
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap var(--transition);
}

.text-link:hover {
    gap: 12px;
}

/* ============================
   NAVBAR
   ============================ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 60px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    transition: background 0.35s ease, box-shadow 0.35s ease;
}

nav.scrolled {
    background: #fff;
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.08);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    color: #fff;
    font-size: 16px;
    letter-spacing: -1px;
    flex-shrink: 0;
}

.nav-logo-text .t1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    display: block;
}

.nav-logo-text .t2 {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.65);
    display: block;
    letter-spacing: 0.4px;
}

nav.scrolled .nav-logo-text .t1 {
    color: var(--navy);
}

nav.scrolled .nav-logo-text .t2 {
    color: var(--text-mid);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.nav-links a {
    font-size: 13.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
    transition: color 0.2s;
}

nav.scrolled .nav-links a {
    color: var(--text-dark);
}

.nav-links a:hover {
    color: var(--blue);
}

.nav-links li {
    position: relative;
}

.nav-links li:hover .dropdown {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.dropdown {
    position: absolute;
    top: calc(100% + 18px);
    left: 0;
    background: #fff;
    border-radius: 14px;
    padding: 8px 0;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    min-width: 230px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all 0.25s ease;
}

.dropdown::before {
    content: '';
    position: absolute;
    top: -18px;
    left: 0;
    right: 0;
    height: 18px;
}

.nav-links a.active,
.nav-links li.has-active > a {
    color: var(--blue) !important;
}

.dropdown a {
    display: block;
    padding: 13px 20px;
    color: var(--text-dark) !important;
    border-left: 3px solid transparent;
    transition: all 0.2s;
}

.dropdown a:hover {
    background: var(--grey-light);
    border-left-color: var(--blue);
    color: var(--blue) !important;
}

.dropdown a .dd-sub {
    display: block;
    font-size: 11px;
    color: var(--text-light);
    font-weight: 400;
    margin-top: 2px;
}

.nav-cta {
    background: var(--blue) !important;
    color: #fff !important;
    padding: 10px 22px !important;
    border-radius: var(--radius-sm) !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    white-space: nowrap;
    transition: background 0.2s, transform 0.2s !important;
}

.nav-cta:hover {
    background: var(--blue-dark) !important;
    transform: translateY(-1px) !important;
}

/* ============================
   HERO
   ============================ */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #001f35 0%, #003a5c 55%, #0568a0 100%);
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-shape-1 {
    position: absolute;
    width: 640px;
    height: 640px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(5, 165, 226, 0.16) 0%, transparent 70%);
    top: -120px;
    right: 4%;
}

.hero-shape-2 {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(5, 165, 226, 0.05);
    bottom: -80px;
    left: 8%;
}

.hero-slash {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50%;
    background: linear-gradient(135deg, transparent 0%, rgba(5, 165, 226, 0.07) 100%);
    clip-path: polygon(18% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.hero-dots {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: radial-gradient(circle, #fff 1px, transparent 1px);
    background-size: 40px 40px;
}

.hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 0 auto;
    padding: 130px 60px 90px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(244, 196, 48, 0.14);
    border: 1px solid rgba(244, 196, 48, 0.3);
    color: var(--gold);
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.hero-h1 {
    font-weight: 700;
    font-size: clamp(40px, 5vw, 66px);
    line-height: 1.06;
    color: #fff;
    margin-bottom: 22px;
    letter-spacing: -2px;
}

.hero-h1 em {
    font-style: normal;
    color: var(--blue);
}

.hero-sub {
    font-size: 17px;
    line-height: 1.78;
    color: rgba(255, 255, 255, 0.68);
    margin-bottom: 38px;
    font-weight: 300;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 52px;
}

.hero-stats {
    display: flex;
    gap: 0;
}

.hero-stat {
    padding: 0 26px 0 0;
}

.hero-stat+.hero-stat {
    padding-left: 26px;
    border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-stat .num {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 26px;
    color: var(--blue);
    display: block;
}

.hero-stat .lbl {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.4px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-corner-shape {
    position: absolute;
    top: -18px;
    right: -18px;
    width: 80px;
    height: 80px;
    border-radius: 14px;
    background: var(--gold);
    opacity: 0.75;
    z-index: 0;
}

.hero-img-frame {
    width: 100%;
    /* max-width: 460px;
    aspect-ratio: 4/5; */
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 3px solid rgba(5, 165, 226, 0.35);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(5, 165, 226, 0.1);
    position: relative;
    z-index: 1;
}

.hero-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-img-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: linear-gradient(160deg, #003a5c 0%, #005a8c 55%, #0568a0 100%);
}

.hero-img-placeholder .mso-big {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 88px;
    color: rgba(5, 165, 226, 0.25);
    letter-spacing: -4px;
    line-height: 1;
}

.hero-img-placeholder p {
    color: rgba(255, 255, 255, 0.35);
    font-size: 13px;
    text-align: center;
    padding: 0 24px;
}

.hero-badge {
    position: absolute;
    bottom: -22px;
    left: -22px;
    z-index: 2;
    background: #fff;
    border-radius: 16px;
    padding: 14px 18px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-badge-icon {
    width: 42px;
    height: 42px;
    background: var(--blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.hero-badge-text .n {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: var(--navy);
    line-height: 1;
}

.hero-badge-text .l {
    font-size: 11px;
    color: var(--text-mid);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.38);
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    z-index: 2;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
    animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.4;
        transform: scaleY(1);
    }

    50% {
        opacity: 1;
        transform: scaleY(1.2);
    }
}

/* ============================
   ABOUT
   ============================ */
.about-section {
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
    padding-bottom: 32px;
    padding-right: 32px;
}

.dot-grid {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 130px;
    height: 130px;
    background-image: radial-gradient(circle, var(--blue) 1.5px, transparent 1.5px);
    background-size: 20px 20px;
    opacity: 0.18;
    z-index: 0;
    border-radius: 8px;
}

.about-main-img {
    width: 100%;
    aspect-ratio: 4/4;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--grey-mid), #cce5f5);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--grey-mid);
}

.about-main-img::before {
    content: 'MSO';
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 110px;
    color: rgba(5, 165, 226, 0.07);
    position: absolute;
    bottom: -15px;
    right: -10px;
    line-height: 1;
    pointer-events: none;
}

.about-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.about-img-inner p {
    font-size: 13px;
    color: var(--text-light);
}

.about-content {
    padding-right: 10px;
}

.about-content p {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 18px;
}

.about-quote {
    border-left: 4px solid var(--blue);
    background: var(--grey-light);
    padding: 20px 24px;
    border-radius: 0 12px 12px 0;
    margin: 24px 0;
    font-style: italic;
    color: var(--text-mid);
    line-height: 1.75;
    font-size: 15px;
}

/* ============================
   STATS BAR
   ============================ */
.stats-bar {
    background: var(--navy);
    padding: 68px 60px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.stat-item {
    text-align: center;
    padding: 20px;
    position: relative;
}

.stat-item+.stat-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
}

.stat-num {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 52px;
    color: var(--blue);
    display: block;
    line-height: 1;
    letter-spacing: -2px;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 8px;
    letter-spacing: 0.4px;
}

/* ============================
   ??? ????? SECTION
   ============================ */
.nasbulain-section {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/about-nasbulain.png');
    background-size: cover;
    background-position: center;
    padding: 150px 60px;
}

.nasbulain-container {
    max-width: 800px;
    margin: 0 auto;
}

.aims-h2-white {
    color: #fff;
}

.aims-text-light {
    color: rgba(255, 255, 255, 0.85);
    line-height: 40px;
}

.aims-h2-bottom {
    margin-bottom: 36px;
}

.nav-logo-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    flex-shrink: 0;
}

.footer-logo-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    flex-shrink: 0;
}

.mission-quote-urdu {
    font-family: 'Noto Nastaliq Urdu', serif;
    font-size: 42px;
}

.urdu-paragraph {
    font-family: 'Noto Nastaliq Urdu', serif;
    color: var(--text-mid);
    font-size: 17px;
    line-height: 40px;
    margin-bottom: 36px;
    direction: rtl;
}

.section-header-margin {
    margin-bottom: 48px;
}

.section-h2-navy {
    color: var(--navy);
}

.section-sub-mid {
    color: var(--text-mid);
}

.stats-bar-about {
    padding: 60px 60px;
}

/* ============================
   AIMS & OBJECTIVES
   ============================ */
.aims-section {
    background: var(--grey-light);
}

.aims-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.aim-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 34px 30px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.aim-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--navy));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.aim-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.aim-card:hover::after {
    transform: scaleX(1);
}

.aim-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 22px;
    margin-left: auto;
}

.aim-card h3 {
    font-weight: 700;
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.aim-card p {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.72;
    margin-bottom: 18px;
}

.aim-link {
    color: var(--blue);
    font-size: 13px;
    font-weight: 600;
}

.aim-link:hover {
    text-decoration: underline;
}

.aims-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 20px;
}

.aims-intro .section-tag {
    margin-bottom: 14px;
}

.aims-h2 {
    font-family: 'Noto Nastaliq Urdu', 'Poppins', serif;
    font-weight: 700;
    font-size: 36px;
    /* color: var(--navy); */
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    text-align: center;
}

.aims-sub {
    font-size: 15px;
    color: var(--text-light);
    font-weight: 500;
    text-align: center;
    margin-bottom: 24px;
}

.aims-text {
    font-family: 'Noto Nastaliq Urdu', serif;
    font-size: 17px;
    color: var(--white);
    line-height: 40px;
    text-align: center;
    direction: rtl;
}

.aim-title {
    font-family: 'Noto Nastaliq Urdu', 'Poppins', serif;
    font-weight: 600;
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 20px;
    direction: rtl;
    text-align: right;
}

.aim-desc {
    font-family: 'Noto Nastaliq Urdu', serif;
    font-size: 16px;
    color: var(--text-mid);
    line-height: 1.9;
    direction: rtl;
    text-align: right;
}

/* ============================
   DAWAH PRINCIPLES
   ============================ */
.dawah-section {
    background: #fff;
}

.dawah-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.dawah-visual {
    position: relative;
}

.dawah-img {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: var(--radius-lg);
    background: linear-gradient(160deg, var(--navy) 0%, #005a8c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.dawah-img::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(5, 165, 226, 0.12);
}

.dawah-img img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
}

.dawah-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    z-index: 2;
    width: 90px;
    height: 90px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    box-shadow: 0 12px 32px rgba(5, 165, 226, 0.4);
}

.dawah-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dawah-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 14px;
    border-radius: 12px;
    transition: background 0.2s;
    border-bottom: 1px solid var(--grey-mid);
}

.dawah-item:last-child {
    border-bottom: none;
}

.dawah-item:hover {
    background: var(--grey-light);
}

.dawah-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--blue-light);
    color: var(--blue);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s;
}

.dawah-item:hover .dawah-num {
    background: var(--blue);
    color: #fff;
}

.dawah-item-content h4 {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.dawah-item-content p {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.65;
}

/* ============================
   EVENTS
   ============================ */
.events-section {
    background: var(--navy-deep);
    padding: 100px 60px;
}

.events-section .section-tag {
    background: rgba(5, 165, 226, 0.14);
    color: var(--blue);
    border-color: rgba(5, 165, 226, 0.22);
}

.events-section .section-h2 {
    color: #fff;
}

.events-featured {
    width: 100%;
    aspect-ratio: 16/7;
    border-radius: var(--radius-lg);
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/video banner.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
    cursor: pointer;
}

.events-featured::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(5, 165, 226, 0.1) 0%, transparent 70%);
}

.events-featured-label {
    position: absolute;
    bottom: 20px;
    left: 24px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

.play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(5, 165, 226, 0.88);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 0 16px rgba(5, 165, 226, 0.14);
}

.play-btn:hover {
    background: var(--blue);
    transform: scale(1.1);
    box-shadow: 0 0 0 24px rgba(5, 165, 226, 0.09);
}

.play-btn::after {
    content: '▶';
    color: #fff;
    font-size: 28px;
    margin-left: 5px;
}

.events-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.event-card {
    border-radius: 14px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
    transition: all 0.25s;
}

.event-card:hover {
    background: rgba(255, 255, 255, 0.09);
    transform: translateY(-4px);
}

.event-thumb {
    aspect-ratio: 16/9;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/video banner.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 30px;
}

.event-play {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(5, 165, 226, 0.82);
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-play::after {
    content: '▶';
    color: #fff;
    font-size: 15px;
    margin-left: 3px;
}

.event-info {
    padding: 16px;
}

.event-info h4 {
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    margin-bottom: 5px;
    line-height: 1.4;
}

.event-info span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.38);
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.88);
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
}

.modal-inner {
    width: 90%;
    max-width: 860px;
    position: relative;
}

.modal-inner iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 12px;
    border: none;
}

.modal-close {
    position: absolute;
    top: -44px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.modal-close:hover {
    opacity: 1;
}

/* --------------------------------------
   BOOKS PAGE
-------------------------------------- */

/* Intro Section — Two Column */
.books-intro {
    background: #fff;
}

.books-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.books-intro-text p {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 18px;
}

/* CSS Book Illustration */
.book-illustration {
    position: relative;
    width: 100%;
    max-width: 360px;
    aspect-ratio: 1;
    margin: 0 auto;
}

.book-page-left,
.book-page-right {
    position: absolute;
    width: 46%;
    height: 78%;
    border-radius: 4px 12px 12px 4px;
}

.book-page-left {
    left: 4%;
    top: 12%;
    background: linear-gradient(135deg, var(--navy) 0%, #003a5c 100%);
    transform: rotate(-8deg);
    transform-origin: right center;
    z-index: 1;
}

.book-page-right {
    right: 4%;
    top: 12%;
    background: linear-gradient(135deg, #0568a0 0%, var(--blue) 100%);
    transform: rotate(8deg);
    transform-origin: left center;
    z-index: 2;
}

.book-spine {
    position: absolute;
    left: 50%;
    top: 10%;
    width: 6px;
    height: 82%;
    background: var(--gold);
    transform: translateX(-50%);
    border-radius: 3px;
    z-index: 3;
}

.book-stat-card {
    background: #fff;
    border-radius: 14px;
    padding: 16px 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: absolute;
    bottom: 0;
    right: -10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--navy);
    z-index: 4;
    white-space: nowrap;
}

/* Books Grid Section */
.books-section {
    background: var(--grey-light);
}

.books-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.book-card {
    display: block;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all var(--transition);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.book-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(5, 165, 226, 0.1);
}

.book-cover {
    aspect-ratio: 3 / 4;
    background: linear-gradient(135deg, var(--navy) 0%, #0568a0 60%, var(--blue) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px 20px;
    text-align: center;
    position: relative;
}

.book-cover-title {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.35;
    margin-bottom: 6px;
    position: relative;
    z-index: 1;
}

.book-cover-author {
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.book-card-category {
    display: inline-block;
    background: var(--blue-light);
    color: var(--blue);
    padding: 4px 14px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 16px 20px 6px;
}

.book-card-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--text-dark);
    padding: 0 20px;
    margin-bottom: 4px;
    line-height: 1.4;
}

.book-card-author {
    font-size: 12px;
    color: var(--text-mid);
    padding: 0 20px;
    margin-bottom: 8px;
}

.book-card-desc {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.65;
    padding: 0 20px;
    margin-bottom: 14px;
}

.book-card-link {
    display: block;
    padding: 0 20px 20px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.book-card:hover .book-card-link {
    color: var(--navy);
}

/* Steps Section */
.steps-section {
    background: #fff;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.step-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all var(--transition);
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(5, 165, 226, 0.08);
}

.step-number {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 44px;
    color: rgba(5, 165, 226, 0.12);
    line-height: 1;
    margin-bottom: 6px;
}

.step-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(5, 165, 226, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
}

.step-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--navy);
    margin-bottom: 12px;
}

.step-text {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.72;
}

/* ============================
   NEWS
   ============================ */
.news-section {
    background: var(--grey-light);
}

.news-grid {
    display: grid;
    grid-template-columns: 1.45fr 1fr;
    gap: 26px;
}

.news-featured {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.news-featured:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.news-feat-img {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #003a5c, var(--blue));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    font-size: 48px;
}

.news-feat-img::before {
    content: 'MSO NEWS';
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 64px;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    bottom: -4px;
    right: 8px;
    line-height: 1;
    pointer-events: none;
}

.news-feat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-feat-body {
    padding: 30px;
}

.news-tag {
    display: inline-block;
    background: var(--blue-light);
    color: var(--blue);
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.news-feat-body h3 {
    font-weight: 700;
    font-size: 21px;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.35;
}

.news-feat-body p {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.72;
    margin-bottom: 18px;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.news-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.news-meta-text .author {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
}

.news-meta-text .date {
    font-size: 12px;
    color: var(--text-light);
}

.news-side {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.news-card {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    transition: all 0.25s;
}

.news-card:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.09);
}

.news-card-img {
    width: 100px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--navy), var(--blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.news-card-body {
    padding: 16px 18px;
}

.news-card-body h4 {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 5px;
    line-height: 1.4;
}

.news-card-body .date {
    font-size: 12px;
    color: var(--text-light);
}

.news-all-btn {
    margin-top: 44px;
}

/* ============================
   CTA BANNER
   ============================ */
.cta-banner {
    padding: 120px 60px;
    position: relative;
    overflow: hidden;
    text-align: center;
    background: linear-gradient(135deg, var(--navy) 0%, #0568a0 60%, var(--blue) 100%);
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.cta-shape-1 {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    top: -200px;
    right: -80px;
    pointer-events: none;
}

.cta-shape-2 {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    bottom: -100px;
    left: 4%;
    pointer-events: none;
}

.cta-inner {
    position: relative;
    z-index: 2;
}

.cta-banner .section-h2 {
    color: #fff;
    max-width: 700px;
    margin: 0 auto 14px;
}

.cta-banner>.cta-inner>p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.68);
    max-width: 560px;
    margin: 0 auto 38px;
    line-height: 1.72;
}

.cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.cta-trust {
    color: rgba(255, 255, 255, 0.42);
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cta-trust span::before {
    content: '✓ ';
    color: var(--gold);
    font-weight: 700;
}

/* ============================
   ABOUT PAGE
   ============================ */
.page-hero {
    height: 500px;
    background: linear-gradient(135deg, #001f35 0%, #003a5c 60%, #0568a0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 0 60px;
}

.page-hero-dots {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: radial-gradient(circle, #fff 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.hero-breadcrumb {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 16px;
    letter-spacing: 0.3px;
}

.page-hero-h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 54px;
    color: #fff;
    line-height: 1.12;
    margin-bottom: 14px;
}

.page-hero-sub {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.65;
    margin-bottom: 22px;
}

.hero-tags {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-tag {
    display: inline-block;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 6px 18px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Mission Statement */
.mission-section {
    background: #fff;
}

.mission-container {
    /* max-width: 860px; */
    margin: 0 auto;
    text-align: center;
}

.mission-section .section-tag {
    margin-bottom: 40px;
}

.mission-quote {
    font-family: 'Noto Nastaliq Urdu', serif;
    font-weight: 700;
    font-size: 40px;
    color: var(--text-dark);
    line-height: 1.25;
    letter-spacing: -0.5px;
    margin-bottom: 28px;
    quotes: none;
}

.mission-divider {
    width: 60px;
    height: 3px;
    background: var(--blue);
    margin: 0 auto 40px;
}

.mission-text-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    text-align: left;
}

.mission-text-grid p {
    color: var(--text-mid);
    font-size: 15px;
    line-height: 1.85;
}

/* What Makes MSO Unique */
.unique-section {
    background: #f4f7fb;
}

.unique-container {
    max-width: 1200px;
    margin: 0 auto;
}

.unique-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.unique-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px 32px 44px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}

.unique-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.unique-number {
    position: absolute;
    top: -8px;
    left: -2px;
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 80px;
    color: rgba(5, 165, 226, 0.15);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.unique-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(5, 165, 226, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.unique-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--navy);
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.unique-text {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.72;
    position: relative;
    z-index: 1;
}

/* Core Values */
.values-section {
    background: #fff;
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.values-left .section-tag {
    margin-bottom: 14px;
}

.values-h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 36px;
    color: var(--navy);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.values-intro {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.8;
}

.values-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.value-chip {
    background: #fff;
    border-left: 4px solid var(--blue);
    border-radius: 12px;
    padding: 18px 22px;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: all var(--transition);
    cursor: default;
}

.value-chip:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(5, 165, 226, 0.1);
}

/* ============================
   HISTORY PAGE — FOUNDER
   ============================ */
.founder-section {
    background: #fff;
}

.founder-container {
    /* max-width: 1200px;
    margin: 0 auto; */
    display: grid;
    grid-template-columns: 55fr 45fr;
    gap: 60px;
    align-items: start;
}

.founder-left .section-tag {
    margin-bottom: 14px;
}

.founder-h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 36px;
    color: var(--navy);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.founder-subtitle {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 22px;
}

.founder-text {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.85;
    margin-bottom: 18px;
}

.founder-right {
    display: flex;
    flex-direction: column;
}

.founder-image {
    width: 100%;
    aspect-ratio: 4/4;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #0d1b2a, #003a5c);
    position: relative;
    overflow: hidden;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.founder-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(5, 165, 226, 0.88);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 13px;
    padding: 8px 18px;
    border-radius: 8px;
    letter-spacing: 0.3px;
}

.founder-caption {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 12px;
    text-align: center;
    font-style: italic;
}

/* Timeline */
.timeline-section {
    background: #f4f7fb;
}

.timeline-container {
    max-width: 900px;
    margin: 0 auto;
}

.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(5, 165, 226, 0.2);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 0;
}

.timeline-item.left {
    left: 0;
    padding-right: 50px;
}

.timeline-item.right {
    left: 50%;
    padding-left: 50px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 32px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--blue);
    z-index: 2;
}

.timeline-item.left::before {
    right: -7px;
}

.timeline-item.right::before {
    left: -7px;
}

.timeline-content {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 28px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--blue);
    transition: all var(--transition);
}

.timeline-content:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(5, 165, 226, 0.12);
}

.timeline-year {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 28px;
    color: var(--blue);
    display: block;
    margin-bottom: 4px;
    letter-spacing: -0.5px;
}

.timeline-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: var(--navy);
    margin-bottom: 10px;
}

.timeline-text {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.72;
}

/* ============================
   LEADING HEADS PAGE
   ============================ */
.leader-featured-section {
    background: #fff;
}

.leader-featured-container {
    /* max-width: 1100px;
    margin: 0 auto; */
    display: grid;
    grid-template-columns: 40fr 60fr;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.leader-featured-left {
    background: var(--navy);
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.leader-featured-img {
    width: 250px;
    height: 250px;
    border-radius: 10px;
    background: linear-gradient(135deg, #0d1b2a, #0568a0);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
    padding: 0;
    margin-bottom: 20px;
    overflow: hidden;
}

.leader-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.leader-featured-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #fff;
    margin-bottom: 4px;
}

.leader-featured-title-tag {
    font-size: 13px;
    color: var(--blue);
    font-weight: 500;
}

.leader-featured-right {
    background: #fff;
    padding: 50px 48px;
}

.leader-featured-right .section-tag {
    margin-bottom: 12px;
}

.leader-featured-h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.leader-featured-badge {
    display: inline-block;
    background: rgba(5, 165, 226, 0.12);
    color: var(--blue);
    padding: 4px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
}

.leader-featured-text {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 16px;
}

.leader-featured-contact {
    display: flex;
    gap: 24px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--grey-mid);
}

.leader-featured-contact span {
    font-size: 13px;
    color: var(--text-light);
}

/* Executive Team */
.exec-team-section {
    background: #f4f7fb;
}

/* .exec-team-container {
    max-width: 1200px;
    margin: 0 auto;
} */

.exec-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.exec-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 36px 28px 28px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.exec-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(5, 165, 226, 0.1);
}

.exec-card-img {
    width: 180px;
    height: 180px;
    border-radius: 10px;
    border: 3px solid rgba(5, 165, 226, 0.2);
    background: linear-gradient(135deg, #0d1b2a, #0568a0);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 11px;
    padding: 0;
    margin-bottom: 18px;
    overflow: hidden;
}

.exec-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.exec-card-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.exec-card-badge {
    display: inline-block;
    background: rgba(5, 165, 226, 0.12);
    color: var(--blue);
    padding: 3px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 12px;
}

.exec-card-desc {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.65;
    margin-bottom: 16px;
    flex: 1;
}

.exec-card-divider {
    width: 40px;
    height: 2px;
    background: var(--grey-mid);
    margin-bottom: 12px;
}

.exec-card-footer {
    font-size: 11px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Org Chart */
.org-section {
    background: #fff;
}

.org-container {
    max-width: 800px;
    margin: 0 auto;
}

.org-chart {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.org-level {
    display: flex;
    justify-content: center;
    gap: 24px;
    width: 100%;
}

.org-level-two {
    gap: 40px;
}

.org-level-three {
    gap: 20px;
}

.org-box {
    border-radius: 14px;
    padding: 22px 28px;
    text-align: center;
    min-width: 180px;
}

.org-box strong {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 4px;
}

.org-box span {
    display: block;
    font-size: 12px;
    opacity: 0.75;
}

.org-box-blue {
    background: var(--blue);
    color: #fff;
}

.org-box-navy {
    background: var(--navy);
    color: #fff;
}

.org-box-light {
    background: #fff;
    color: var(--text-dark);
    border: 2px solid rgba(5, 165, 226, 0.15);
}

.org-box-grey {
    background: #f4f7fb;
    color: var(--text-mid);
    min-width: 400px;
}

.org-connector-down {
    width: 2px;
    height: 32px;
    background: rgba(5, 165, 226, 0.25);
}

/* ============================
   FOOTER
   ============================ */
footer {
    background: var(--navy-deep);
    padding: 80px 60px 0;
}

.footer-grid {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 56px;
    padding-bottom: 60px;
}

.footer-logo-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.footer-logo-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    color: #fff;
    font-size: 14px;
    flex-shrink: 0;
}

.footer-logo-text .t1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: #fff;
    display: block;
}

.footer-logo-text .t2 {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.38);
    display: block;
}

.footer-brand-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.42);
    line-height: 1.72;
    margin-bottom: 22px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    font-weight: 700;
    transition: all 0.25s;
}

.social-icon:hover {
    background: var(--blue);
    color: #fff;
    transform: translateY(-2px);
}

.footer-col h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 11px;
    color: var(--blue);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-col ul a {
    color: rgba(255, 255, 255, 0.48);
    font-size: 13px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-col ul a::before {
    content: '›';
    color: var(--blue);
    font-size: 16px;
    opacity: 0;
    transform: translateX(-4px);
    transition: all 0.2s;
}

.footer-col ul a:hover {
    color: #fff;
    padding-left: 4px;
}

.footer-col ul a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.contact-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(5, 165, 226, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.contact-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.48);
    line-height: 1.55;
}

.newsletter {
    margin-top: 18px;
}

.newsletter p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.38);
    margin-bottom: 10px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    color: #fff;
    font-size: 13px;
    outline: none;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s;
}

.newsletter-input:focus {
    border-color: var(--blue);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.28);
}

.newsletter-btn {
    background: var(--blue);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    padding: 10px 16px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: background 0.2s;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: var(--blue-dark);
}

.footer-bottom {
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.28);
}

.footer-bottom-links {
    display: flex;
    gap: 22px;
}

.footer-bottom-links a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.28);
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: var(--blue);
}

/* --------------------------------------
     HAMBURGER MENU
   -------------------------------------- */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    position: fixed;
    top: 18px;
    right: 24px;
    z-index: 1001;
    padding: 0;
}

@media (max-width: 480px) {
    .hamburger {
        right: 16px;
        top: 12px;
    }
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.scrolled span {
    background: var(--navy);
}

body.no-scroll {
    overflow: hidden;
}

.hamburger.active span {
    background: var(--navy);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* --------------------------------------
     RESPONSIVE — =1200px
   -------------------------------------- */
@media (max-width: 1200px) {
    .section {
        padding: 80px 40px;
    }

    .footer-grid {
        gap: 40px;
    }

    .hero-inner {
        gap: 40px;
    }

    .about-grid {
        gap: 50px;
    }

    .aims-grid {
        gap: 20px;
    }

    .events-section {
        padding: 80px 40px;
    }

    .books-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .books-intro-grid {
        gap: 40px;
    }
}

/* --------------------------------------
     RESPONSIVE — =992px
   -------------------------------------- */
@media (max-width: 992px) {
    .hamburger {
        display: flex;
    }

    nav {
        padding: 0 24px;
    }

    .nav-logo {
        min-width: 0;
        overflow: hidden;
    }

    .nav-links {
        position: fixed;
        top: 76px;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        gap: 0;
        padding: 24px 28px 40px;
        box-shadow: -8px 0 30px rgba(0, 0, 0, 0.1);
        transition: right 0.35s ease;
        overflow-y: auto;
        align-items: stretch;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        color: var(--text-dark) !important;
        font-size: 15px;
        padding: 14px 0;
        display: block;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-links li:last-child a {
        border-bottom: none;
    }

    .nav-links a.nav-cta {
        margin-top: 16px;
        text-align: center;
        border-radius: var(--radius-sm);
        padding: 12px;
        border-bottom: none;
    }

    .nav-links .dropdown {
        position: static;
        opacity: 1;
        pointer-events: all;
        transform: none;
        box-shadow: none;
        background: var(--grey-light);
        border-radius: var(--radius-sm);
        padding: 8px;
        display: none;
        margin-top: 4px;
    }

    .nav-links .dropdown.open {
        display: block;
    }

    .nav-links .dropdown::before {
        display: none;
    }

    .nav-links .dropdown a {
        border-bottom: none;
        padding: 10px 14px;
        font-size: 14px;
        border-left: 3px solid transparent;
    }

    .nav-links .dropdown a:hover {
        border-left-color: var(--blue);
    }

    .has-dropdown > a::after {
        content: '▾';
        margin-left: 6px;
        font-size: 10px;
        display: inline-block;
        transition: transform 0.3s;
    }

    .has-dropdown > a.open::after {
        transform: rotate(180deg);
    }

    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 110px 20px 60px;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-visual {
        display: none;
    }

    .hero-scroll {
        display: none;
    }

    .page-hero {
        height: 380px;
        padding: 0 32px;
    }

    .page-hero-h1 {
        font-size: 38px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-content {
        padding-right: 0;
    }

    .dawah-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .aims-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .unique-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .exec-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .leader-featured-container {
        grid-template-columns: 1fr;
    }

    .leader-featured-left {
        padding: 40px 30px;
    }

    .leader-featured-img {
        width: 180px;
        height: 180px;
    }

    .leader-featured-right {
        padding: 36px 30px;
    }

    .founder-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .founder-right {
        order: -1;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item+.stat-item::before {
        display: none;
    }

    .events-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .org-level-two,
    .org-level-three {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .org-box {
        min-width: 200px;
        width: 100%;
        max-width: 320px;
    }

    .org-box-grey {
        min-width: auto;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 32px;
    }

    .section {
        padding: 60px 32px;
    }

    .books-intro-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .book-illustration {
        max-width: 240px;
    }

    .book-stat-card {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 16px;
        text-align: center;
        white-space: normal;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --------------------------------------
     RESPONSIVE — =768px
   -------------------------------------- */
@media (max-width: 768px) {
    .section {
        padding: 50px 24px;
    }

    .hero-h1 {
        font-size: clamp(28px, 7vw, 40px);
    }

    .hero-sub {
        font-size: 15px;
    }

    .page-hero {
        height: 320px;
        padding: 0 24px;
    }

    .page-hero-h1 {
        font-size: 30px;
    }

    .page-hero-sub {
        font-size: 15px;
    }

    .aims-grid {
        grid-template-columns: 1fr;
    }

    .unique-grid {
        grid-template-columns: 1fr;
    }

    .exec-team-grid {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding: 12px 0 12px 50px;
        left: 0 !important;
    }

    .timeline-item.left {
        padding-right: 0;
        padding-left: 50px;
    }

    .timeline-item.right {
        padding-left: 50px;
    }

    .timeline-item::before {
        left: 13px !important;
        right: auto !important;
        width: 12px;
        height: 12px;
    }

    .timeline-year {
        font-size: 22px;
    }

    .timeline-content {
        padding: 20px 22px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stats-bar {
        padding: 48px 24px;
    }

    .stat-num {
        font-size: 38px;
    }

    .events-section {
        padding: 60px 32px;
    }

    .events-row {
        grid-template-columns: 1fr;
    }

    .events-featured {
        aspect-ratio: 16/9;
    }

    .leader-featured-img {
        width: 140px;
        height: 140px;
    }

    .leader-featured-h2 {
        font-size: 26px;
    }

    .founder-h2 {
        font-size: 28px;
    }

    .founder-text {
        font-size: 14px;
    }

    .values-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cta-banner {
        padding: 80px 24px;
    }

    .cta-banner .section-h2 {
        font-size: 26px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    footer {
        padding: 60px 24px 0;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .hero-stat .num {
        font-size: 22px;
    }

    .leader-featured-contact {
        flex-direction: column;
        gap: 8px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-btn {
        width: 100%;
    }

    nav {
        padding: 0 24px;
    }

    .books-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .book-card-category {
        margin: 12px 16px 5px;
    }

    .book-card-title {
        font-size: 15px;
        padding: 0 16px;
    }

    .book-card-desc {
        padding: 0 16px;
    }

    .book-card-link {
        padding: 0 16px 16px;
    }
}

/* --------------------------------------
     RESPONSIVE — =480px
   -------------------------------------- */
@media (max-width: 480px) {
    .section {
        padding: 40px 16px;
    }

    nav {
        padding: 0 16px;
        height: 64px;
    }

    .nav-links {
        width: 100%;
        right: -100%;
        padding: 20px 20px 30px;
        top: 64px;
    }

    .nav-logo-text .t1 {
        font-size: 12px;
    }

    .nav-logo-text .t2 {
        font-size: 10px;
    }

    .hero-h1 {
        font-size: 26px;
    }

    .hero-sub {
        font-size: 14px;
    }

    .hero-label {
        font-size: 10px;
        padding: 4px 14px;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .hero-btns .btn-primary,
    .hero-btns .btn-outline {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .hero-stat {
        padding: 8px 16px;
    }

    .page-hero {
        height: 380px;
        padding: 0 16px;
    }

    .page-hero-h1 {
        font-size: 24px;
    }

    .page-hero-sub {
        font-size: 14px;
    }

    .hero-breadcrumb {
        font-size: 11px;
    }

    .hero-tag {
        font-size: 10px;
        padding: 4px 12px;
    }

    .founder-h2 {
        font-size: 24px;
    }

    .founder-badge {
        font-size: 11px;
        padding: 6px 14px;
        bottom: 14px;
        left: 14px;
    }

    .founder-image {
        aspect-ratio: 3/4;
    }

    .timeline-content {
        padding: 16px 18px;
    }

    .timeline-year {
        font-size: 20px;
    }

    .timeline-title {
        font-size: 15px;
    }

    .timeline-text {
        font-size: 13px;
    }

    .exec-card {
        padding: 28px 20px 22px;
    }

    .exec-card-img {
        width: 180px;
        height: 180px;
    }

    .exec-card-name {
        font-size: 16px;
    }

    .leader-featured-img {
        width: 200px;
        height: 200px;
    }

    .leader-featured-h2 {
        font-size: 22px;
    }

    .leader-featured-left {
        padding: 30px 20px;
    }

    .leader-featured-right {
        padding: 28px 20px;
    }

    .org-box {
        min-width: auto;
        max-width: 100%;
    }

    .org-box strong {
        font-size: 14px;
    }

    .cta-banner {
        padding: 60px 16px;
    }

    .cta-banner .section-h2 {
        font-size: 22px;
    }

    .cta-banner > .cta-inner > p {
        font-size: 15px;
    }

    .cta-btns {
        flex-direction: column;
        align-items: center;
    }

    .cta-btns .btn-white,
    .cta-btns .btn-outline-white {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .section-h2 {
        font-size: clamp(22px, 6vw, 28px);
    }

    .section-sub {
        font-size: 14px;
    }

    .aim-card {
        padding: 28px 20px;
    }

    .unique-card {
        padding: 28px 20px;
    }

    .dawah-img {
        min-height: 240px;
    }

    .events-section {
        padding: 40px 16px;
    }

    .play-btn {
        width: 56px;
        height: 56px;
        box-shadow: 0 0 0 12px rgba(5, 165, 226, 0.14);
    }

    .play-btn::after {
        font-size: 20px;
        margin-left: 3px;
    }

    .event-thumb {
        min-height: 140px;
    }

    .stat-num {
        font-size: 32px;
    }

    footer {
        padding: 48px 16px 0;
    }

    .footer-brand-desc {
        font-size: 12px;
    }

    .footer-col h4 {
        font-size: 10px;
    }

    .footer-col ul a {
        font-size: 12px;
    }

    .contact-text {
        font-size: 12px;
    }

    .footer-bottom p {
        font-size: 11px;
    }

    .footer-bottom-links a {
        font-size: 11px;
    }

    .btn-primary,
    .btn-outline,
    .btn-white,
    .btn-outline-white {
        padding: 10px 24px;
        font-size: 13px;
    }

    .social-icon {
        width: 34px;
        height: 34px;
    }

    .unique-number {
        font-size: 36px;
    }

    .unique-title {
        font-size: 16px;
    }

    .unique-text {
        font-size: 13px;
    }

    .books-intro-text p {
        font-size: 14px;
    }

    .step-card {
        padding: 28px 20px;
    }

    .step-number {
        font-size: 34px;
    }

    .step-title {
        font-size: 16px;
    }

    .book-cover-title {
        font-size: 15px;
    }
}