/* ==========================================================
   NGO CUSTOM CSS – National Human Rights Social Justice Council of India
   Brand: Navy Blue #0a1f5c | Gold #c9a84c | White #fff | Light Grey #f4f6f9
   ========================================================== */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;500;600;700&family=Open+Sans:wght@300;400;600;700&display=swap');

/* --- Root Variables --- */
:root {
    --navy: #0a1f5c;
    --navy-dark: #061240;
    --gold: #c9a84c;
    --gold-light: #e8c97a;
    --white: #ffffff;
    --grey-bg: #f4f6f9;
    --grey-text: #6c757d;
    --dark-text: #1a1a2e;
    --border: #dce3f0;
    --shadow: 0 4px 24px rgba(10, 31, 92, 0.10);
    --radius: 8px;
    --transition: all 0.3s ease;
}

/* --- Global Reset & Base --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--dark-text);
    background: var(--white);
    line-height: 1.7;
    font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'EB Garamond', serif;
    color: var(--navy);
    font-weight: 600;
    line-height: 1.3;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--navy);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-pad {
    padding: 80px 0;
}

.section-pad-sm {
    padding: 50px 0;
}

/* --- Section Titles --- */
.ngo-section-title {
    text-align: center;
    margin-bottom: 50px;
}

.ngo-section-title .subtitle {
    display: inline-block;
    font-size: 13px;
    font-family: 'Open Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 10px;
}

.ngo-section-title h2 {
    font-size: 38px;
    color: var(--navy);
    position: relative;
    padding-bottom: 18px;
}

.ngo-section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}

.ngo-section-title.left-align {
    text-align: left;
}

.ngo-section-title.left-align h2::after {
    left: 0;
    transform: none;
}

/* --- Buttons --- */
.btn-ngo {
    display: inline-block;
    padding: 13px 34px;
    border-radius: 4px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.btn-ngo-primary {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

.btn-ngo-primary:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.btn-ngo-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-ngo-outline:hover {
    background: var(--white);
    color: var(--navy);
}

.btn-ngo-navy {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.btn-ngo-navy:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

/* ============================================================
   HEADER
   ============================================================ */
.ngo-header-topbar {
    background: var(--navy-dark);
    padding: 8px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
}

.ngo-header-topbar .topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ngo-header-topbar a {
    color: rgba(255, 255, 255, 0.75);
}

.ngo-header-topbar a:hover {
    color: var(--gold);
}

.ngo-header-upper {
    background: var(--white);
    padding: 18px 0;
    box-shadow: 0 2px 12px rgba(10, 31, 92, 0.08);
}

.ngo-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.ngo-logo-block {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.ngo-logo-block img {
    height: 70px;
    width: auto;
}

.ngo-logo-text .org-name {
    font-family: 'EB Garamond', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    display: block;
}

.ngo-logo-text .org-tagline {
    font-size: 11px;
    color: var(--gold);
    font-style: italic;
    display: block;
    margin-top: 3px;
    letter-spacing: 0.5px;
}

/* --- Main Nav --- */
.ngo-main-nav {
    background: var(--navy);
    position: relative;
    z-index: 100;
}

.ngo-main-nav .container {
    display: flex;
    align-items: center;
}

.ngo-nav-list {
    display: flex;
    align-items: center;
}

.ngo-nav-list li a {
    display: block;
    padding: 16px 14px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: var(--transition);
}

.ngo-nav-list li a:hover,
.ngo-nav-list li.active a {
    color: var(--gold);
}

.ngo-nav-list li.active>a {
    border-bottom: 3px solid var(--gold);
}

/* Mobile toggle */
.ngo-mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.ngo-mobile-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    margin: 5px 0;
    transition: var(--transition);
}

/* ============================================================
   HERO BANNER
   ============================================================ */
.ngo-hero {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #1a3a7a 100%);
    padding: 110px 0 90px;
    position: relative;
    overflow: hidden;
}

.ngo-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Ccircle cx='50' cy='50' r='40' fill='none' stroke='rgba(201,168,76,0.06)' stroke-width='1'/%3E%3C/svg%3E") repeat;
    background-size: 120px 120px;
}

.ngo-hero .hero-badge {
    display: inline-block;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid rgba(201, 168, 76, 0.4);
    color: var(--gold-light);
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 2px;
    margin-bottom: 22px;
}

.ngo-hero h1 {
    font-size: 52px;
    color: var(--white);
    font-family: 'EB Garamond', serif;
    line-height: 1.18;
    margin-bottom: 24px;
}

.ngo-hero h1 em {
    color: var(--gold);
    font-style: normal;
}

.ngo-hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.80);
    max-width: 620px;
    margin-bottom: 36px;
    line-height: 1.8;
}

.ngo-hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.ngo-hero-seal {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 260px;
    opacity: 0.12;
}

/* ============================================================
   ABOUT STRIP
   ============================================================ */
.ngo-about-strip {
    padding: 70px 0;
    background: var(--white);
}

.ngo-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ngo-about-img-wrapper {
    position: relative;
}

.ngo-about-img-wrapper img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.ngo-about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gold);
    color: var(--navy);
    padding: 18px 22px;
    text-align: center;
    font-family: 'EB Garamond', serif;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.ngo-about-badge .year {
    font-size: 36px;
    font-weight: 700;
    display: block;
}

.ngo-about-badge .label {
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ngo-about-text h2 {
    font-size: 34px;
    margin-bottom: 18px;
}

.ngo-about-text p {
    color: var(--grey-text);
    margin-bottom: 16px;
}

.ngo-about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 24px 0;
}

.ngo-highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ngo-highlight-item .icon {
    color: var(--gold);
    font-size: 18px;
}

.ngo-highlight-item span {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
}

/* ============================================================
   WINGS / DEPARTMENTS CARDS
   ============================================================ */
.ngo-wings {
    background: var(--grey-bg);
    padding: 80px 0;
}

.ngo-wings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 24px;
}

.ngo-wing-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow);
    border-top: 3px solid var(--gold);
    transition: var(--transition);
}

.ngo-wing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(10, 31, 92, 0.14);
}

.ngo-wing-card .wing-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--navy), #1e3a8a);
    border-radius: 50%;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--gold);
}

.ngo-wing-card h4 {
    color: var(--navy);
    font-size: 17px;
    margin-bottom: 10px;
}

.ngo-wing-card p {
    font-size: 13px;
    color: var(--grey-text);
    margin-bottom: 18px;
}

.ngo-wing-card a.card-link {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
    border-bottom: 1px solid transparent;
}

.ngo-wing-card a.card-link:hover {
    border-color: var(--gold);
}

/* ============================================================
   PROGRAMS GRID
   ============================================================ */
.ngo-programs {
    background: var(--white);
    padding: 80px 0;
}

.ngo-programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 28px;
    margin-bottom: 40px;
}

.ngo-program-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

.ngo-program-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(10, 31, 92, 0.14);
}

.ngo-program-card .card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: linear-gradient(135deg, var(--navy) 0%, #1e3a8a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--gold);
}

.ngo-program-card .card-body {
    padding: 22px;
}

.ngo-program-card .card-meta {
    font-size: 12px;
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.ngo-program-card h4 {
    font-size: 18px;
    color: var(--navy);
    margin-bottom: 10px;
}

.ngo-program-card p {
    font-size: 14px;
    color: var(--grey-text);
}

/* ============================================================
   LEADERSHIP SECTION
   ============================================================ */
.ngo-leadership {
    background: var(--grey-bg);
    padding: 80px 0;
}

.ngo-leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.ngo-leader-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.ngo-leader-card:hover {
    transform: translateY(-6px);
}

.ngo-leader-card .leader-photo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    margin: 0 auto 18px;
    background: linear-gradient(135deg, var(--navy), #1e3a8a);
    object-fit: cover;
    border: 4px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--gold);
    overflow: hidden;
}

.ngo-leader-card h4 {
    font-size: 19px;
    color: var(--navy);
    margin-bottom: 6px;
}

.ngo-leader-card .designation {
    font-size: 13px;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 14px;
}

.ngo-leader-card p {
    font-size: 13px;
    color: var(--grey-text);
}

/* ============================================================
   MEMBERSHIP CTA BAND
   ============================================================ */
.ngo-membership-cta {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    padding: 70px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ngo-membership-cta::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.08);
}

.ngo-membership-cta h2 {
    color: var(--white);
    font-size: 36px;
    margin-bottom: 14px;
}

.ngo-membership-cta p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 17px;
    max-width: 580px;
    margin: 0 auto 30px;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.ngo-stats {
    background: var(--gold);
    padding: 36px 0;
}

.ngo-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.ngo-stat-item .number {
    font-family: 'EB Garamond', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
}

.ngo-stat-item .label {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.ngo-footer {
    background: var(--navy-dark);
    padding: 60px 0 0;
}

.ngo-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
}

.ngo-footer h5 {
    color: var(--gold);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.3);
}

.ngo-footer p,
.ngo-footer-links li a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    line-height: 1.9;
}

.ngo-footer-links li a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.ngo-footer-links li {
    margin-bottom: 4px;
}

.ngo-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    margin-bottom: 12px;
}

.ngo-footer-contact li .icon {
    color: var(--gold);
    margin-top: 2px;
    min-width: 16px;
}

.ngo-footer-logo-text {
    font-family: 'EB Garamond', serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 14px;
}

.ngo-footer-social {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.ngo-footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.ngo-footer-social a:hover {
    background: var(--gold);
    color: var(--navy);
}

.ngo-footer-newsletter input {
    width: 100%;
    padding: 10px 14px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-size: 13px;
    margin-top: 6px;
    margin-bottom: 8px;
}

.ngo-footer-newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.ngo-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    padding: 20px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.45);
    font-size: 13px;
}

/* ============================================================
   PAGE BANNER / BREADCRUMB
   ============================================================ */
.ngo-page-banner {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    padding: 60px 0;
    text-align: center;
    position: relative;
}

.ngo-page-banner h1 {
    color: var(--white);
    font-size: 40px;
    margin-bottom: 10px;
}

.ngo-page-banner .breadcrumb-bar {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.ngo-page-banner .breadcrumb-bar a {
    color: var(--gold);
}

.ngo-page-banner .breadcrumb-bar a:hover {
    color: var(--white);
}

.breadcrumb-sep {
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.4);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.ngo-about-page {
    padding: 70px 0;
}

.ngo-info-box {
    background: var(--grey-bg);
    border-left: 4px solid var(--gold);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 28px 32px;
    margin-bottom: 40px;
}

.ngo-info-box h3 {
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 10px;
}

.ngo-info-box p {
    color: var(--grey-text);
}

.ngo-objectives-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: var(--dark-text);
    font-size: 15px;
    border-bottom: 1px solid var(--border);
}

.ngo-objectives-list li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 12px;
    top: 14px;
}

.ngo-un-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--navy);
    color: var(--white);
    padding: 20px 28px;
    border-radius: var(--radius);
    margin-top: 30px;
}

.ngo-un-badge .badge-icon {
    font-size: 36px;
    color: var(--gold);
}

.ngo-un-badge h4 {
    font-size: 17px;
    color: var(--white);
    margin-bottom: 4px;
}

.ngo-un-badge p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================================
   LEADERSHIP PAGE
   ============================================================ */
.ngo-leader-profile {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 50px;
    align-items: start;
    padding: 50px 0;
    border-bottom: 1px solid var(--border);
}

.ngo-leader-profile:last-child {
    border-bottom: none;
}

.ngo-leader-profile-img {
    width: 260px;
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    background: linear-gradient(135deg, var(--navy), #1e3a8a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 80px;
}

.ngo-leader-profile-info h2 {
    font-size: 30px;
    margin-bottom: 6px;
}

.ngo-leader-profile-info .role {
    color: var(--gold);
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: block;
}

.ngo-leader-profile-info p {
    color: var(--grey-text);
    margin-bottom: 16px;
}

.ngo-achievements-list {
    padding: 18px 0 0;
}

.ngo-achievements-list li {
    padding: 8px 0 8px 26px;
    position: relative;
    font-size: 14px;
    color: var(--dark-text);
}

.ngo-achievements-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--gold);
}

/* ============================================================
   DEPARTMENTS PAGE
   ============================================================ */
.ngo-dept-section {
    padding: 50px 0;
    border-bottom: 1px solid var(--border);
}

.ngo-dept-section:last-child {
    border-bottom: none;
}

.ngo-dept-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
}

.ngo-dept-header .dept-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    flex-shrink: 0;
}

.ngo-dept-header h2 {
    font-size: 28px;
    color: var(--navy);
}

.ngo-dept-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.ngo-dept-col h4 {
    font-size: 16px;
    color: var(--navy);
    margin-bottom: 12px;
}

.ngo-dept-col ul li {
    padding: 6px 0 6px 20px;
    position: relative;
    font-size: 14px;
    color: var(--grey-text);
}

.ngo-dept-col ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gold);
}

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.ngo-gallery {
    padding: 70px 0;
    background: var(--white);
}

.ngo-gallery-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.ngo-tab-btn {
    padding: 9px 22px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    cursor: pointer;
    color: var(--navy);
    background: var(--white);
    transition: var(--transition);
}

.ngo-tab-btn.active,
.ngo-tab-btn:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.ngo-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.ngo-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    aspect-ratio: 1;
    cursor: pointer;
    background: linear-gradient(135deg, var(--navy), #1e3a8a);
}

.ngo-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.ngo-gallery-item:hover img {
    transform: scale(1.06);
}

.ngo-gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 31, 92, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    color: var(--white);
    font-size: 24px;
}

.ngo-gallery-item:hover .ngo-gallery-overlay {
    opacity: 1;
}

/* Lightbox */
.ngo-lightbox-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.92);
    display: none;
    align-items: center;
    justify-content: center;
}

.ngo-lightbox-overlay.active {
    display: flex;
}

.ngo-lightbox-inner {
    max-width: 900px;
    width: 90%;
    position: relative;
}

.ngo-lightbox-inner img {
    width: 100%;
    border-radius: var(--radius);
}

.ngo-lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
    background: none;
    border: none;
}

/* ============================================================
   MEMBERSHIP PAGE
   ============================================================ */
.ngo-membership {
    padding: 70px 0;
}

.ngo-membership-cats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.ngo-member-cat-card {
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 22px;
    text-align: center;
    transition: var(--transition);
}

.ngo-member-cat-card:hover,
.ngo-member-cat-card.featured {
    border-color: var(--gold);
    box-shadow: var(--shadow);
}

.ngo-member-cat-card .cat-icon {
    font-size: 36px;
    color: var(--gold);
    margin-bottom: 12px;
}

.ngo-member-cat-card h4 {
    font-size: 19px;
    color: var(--navy);
    margin-bottom: 8px;
}

.ngo-member-cat-card p {
    font-size: 13px;
    color: var(--grey-text);
}

.ngo-conduct-list li {
    padding: 10px 0 10px 28px;
    position: relative;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    color: var(--dark-text);
}

.ngo-conduct-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.ngo-contact {
    padding: 70px 0;
}

.ngo-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.ngo-contact-info-block {
    background: var(--navy);
    padding: 40px;
    border-radius: var(--radius);
    color: var(--white);
}

.ngo-contact-info-block h3 {
    color: var(--gold);
    font-size: 24px;
    margin-bottom: 28px;
}

.ngo-contact-info-item {
    display: flex;
    gap: 14px;
    margin-bottom: 22px;
    align-items: flex-start;
}

.ngo-contact-info-item .icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.15);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.ngo-contact-info-item .text strong {
    color: var(--white);
    font-size: 15px;
    display: block;
}

.ngo-contact-info-item .text span {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
}

/* Forms */
.ngo-form-section {
    background: var(--grey-bg);
    border-radius: var(--radius);
    padding: 40px;
}

.ngo-form-section h3 {
    font-size: 24px;
    color: var(--navy);
    margin-bottom: 24px;
}

.ngo-form-group {
    margin-bottom: 20px;
}

.ngo-form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ngo-form-group input,
.ngo-form-group textarea,
.ngo-form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    color: var(--dark-text);
    background: var(--white);
    transition: var(--transition);
}

.ngo-form-group input:focus,
.ngo-form-group textarea:focus,
.ngo-form-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
}

.ngo-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* ============================================================
   EXTRA PROFESSIONAL PAGES
   ============================================================ */
.ngo-extra-page {
    padding: 70px 0;
}

.ngo-verify-widget {
    max-width: 560px;
    margin: 0 auto;
    background: var(--grey-bg);
    padding: 50px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.ngo-verify-widget .verify-icon {
    font-size: 52px;
    color: var(--gold);
    margin-bottom: 20px;
}

.ngo-verify-widget h3 {
    font-size: 26px;
    color: var(--navy);
    margin-bottom: 12px;
}

.ngo-verify-widget p {
    color: var(--grey-text);
    margin-bottom: 28px;
}

.ngo-verify-input-row {
    display: flex;
    gap: 0;
}

.ngo-verify-input-row input {
    flex: 1;
    padding: 13px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius) 0 0 var(--radius);
    font-size: 15px;
    border-right: none;
}

.ngo-verify-input-row button {
    background: var(--navy);
    color: var(--white);
    border: 2px solid var(--navy);
    padding: 13px 24px;
    border-radius: 0 var(--radius) var(--radius) 0;
    font-weight: 700;
    cursor: pointer;
    font-size: 14px;
    transition: var(--transition);
}

.ngo-verify-input-row button:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

/* Press release cards */
.ngo-press-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.ngo-press-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 28px;
    border-left: 4px solid var(--gold);
    transition: var(--transition);
}

.ngo-press-card:hover {
    transform: translateX(4px);
}

.ngo-press-card .press-date {
    font-size: 12px;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.ngo-press-card h4 {
    font-size: 19px;
    color: var(--navy);
    margin-bottom: 10px;
}

.ngo-press-card p {
    font-size: 14px;
    color: var(--grey-text);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .ngo-hero h1 {
        font-size: 40px;
    }

    .ngo-footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .ngo-about-grid {
        grid-template-columns: 1fr;
    }

    .ngo-leader-profile {
        grid-template-columns: 1fr;
    }

    .ngo-leader-profile-img {
        width: 100%;
        height: 240px;
    }

    .ngo-contact-grid {
        grid-template-columns: 1fr;
    }

    .ngo-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .ngo-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .ngo-hero {
        padding: 70px 0 60px;
    }

    .ngo-hero h1 {
        font-size: 28px;
    }

    .ngo-nav-list {
        display: none;
        flex-direction: column;
        width: 100%;
    }

    .ngo-nav-list.open {
        display: flex;
    }

    .ngo-mobile-toggle {
        display: block;
        margin-left: auto;
    }

    .ngo-wings-grid {
        grid-template-columns: 1fr 1fr;
    }

    .ngo-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ngo-footer-grid {
        grid-template-columns: 1fr;
    }

    .ngo-dept-cols {
        grid-template-columns: 1fr;
    }

    .ngo-form-row {
        grid-template-columns: 1fr;
    }

    .ngo-section-title h2 {
        font-size: 28px;
    }

    .ngo-about-badge {
        position: static;
        margin-top: 16px;
        display: inline-flex;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .ngo-gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .ngo-stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .ngo-membership-cats {
        grid-template-columns: 1fr;
    }
}