/* ==========================================================================
   Akhil Yuva Vahini - Custom Design System
   ========================================================================== */

/* Design Tokens & Theme Variables */
:root {
    --primary-color: #0b1c3c;      /* Trustworthy deep navy */
    --primary-light: #162a53;
    --brand-orange: #f97316;       /* Energetic youth orange */
    --brand-orange-hover: #ea580c;
    --accent-gold: #f59e0b;        /* Prestigious success gold */
    --accent-gold-light: #fef3c7;
    
    /* Backgrounds */
    --bg-main: #f8fafc;
    --bg-card: #ffffff;
    --bg-footer: #081226;
    
    /* Typography & Text */
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --text-white: #ffffff;
    
    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Shadows & Borders */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 20px -2px rgba(0, 0, 0, 0.08), 0 2px 8px -1px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 20px rgba(249, 115, 22, 0.2);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    
    /* Animation Speeds */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Container Width */
    --max-width: 1200px;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.2;
}

p {
    color: var(--text-secondary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-orange), var(--accent-gold));
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition-normal);
    border: none;
    outline: none;
    font-size: 1rem;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.9rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-hover));
    color: var(--text-white);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.35);
}

.btn-secondary {
    background-color: var(--primary-color);
    color: var(--text-white);
}

.btn-secondary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--brand-orange);
    color: var(--brand-orange);
}

.btn-outline:hover {
    background-color: var(--brand-orange);
    color: var(--text-white);
    transform: translateY(-2px);
}

/* Grid & Cards System */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* ==========================================================================
   Sticky Header Wrap
   ========================================================================== */
.sticky-header-wrap {
    position: sticky;
    top: 0;
    z-index: 999;
    width: 100%;
}

/* Header & Utility Bar Style */
.top-bar {
    background-color: var(--primary-color);
    color: var(--text-white);
    font-size: 0.82rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: max-height 0.35s ease, padding 0.35s ease, opacity 0.35s ease;
    overflow: hidden;
}

/* Hide top-bar when scrolled (JS adds .top-bar--hidden) */
.top-bar--hidden {
    max-height: 0 !important;
    padding: 0 !important;
    opacity: 0 !important;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.top-info {
    display: flex;
    gap: 18px;
    flex-shrink: 0;
}

.top-info span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.7);
}

.top-info span i {
    color: var(--brand-orange);
    font-size: 0.75rem;
}

/* Right group: donate + lang + socials */
.top-right-group {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: nowrap;
}

/* Donate Now button in top bar */
.top-donate-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-hover));
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(249,115,22,0.35);
    transition: var(--transition-fast);
    letter-spacing: 0.2px;
}

.top-donate-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(249,115,22,0.5);
    color: #fff;
}

.top-donate-btn i {
    font-size: 0.75rem;
}

/* Language Switcher */
.lang-switcher {
    position: relative;
}

.lang-trigger {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.85);
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition-fast);
    white-space: nowrap;
}

.lang-trigger:hover,
.lang-switcher.ls-open .lang-trigger {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.3);
    color: #fff;
}

.lang-caret {
    font-size: 0.6rem !important;
    transition: transform 0.25s ease;
}

.lang-switcher.ls-open .lang-caret {
    transform: rotate(180deg);
}

/* Language dropdown panel */
.lang-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    box-shadow: 0 12px 40px rgba(11,28,60,0.2);
    border: 1px solid rgba(0,0,0,0.06);
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 1100;
    overflow: hidden;
    padding: 6px;
}

.lang-switcher.ls-open .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 9px;
    width: 100%;
    background: none;
    border: none;
    padding: 8px 10px;
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
    border-radius: 6px;
    text-align: left;
    transition: background var(--transition-fast), color var(--transition-fast);
}

.lang-option:hover {
    background: rgba(249,115,22,0.08);
    color: var(--brand-orange);
}

.lang-option.active {
    background: rgba(249,115,22,0.1);
    color: var(--brand-orange);
    font-weight: 700;
}

.lang-flag {
    font-size: 1rem;
    line-height: 1;
}

/* Top socials */
.top-socials {
    display: flex;
    gap: 12px;
}

.top-socials a {
    color: rgba(255,255,255,0.55);
    font-size: 0.85rem;
    transition: color var(--transition-fast);
}

.top-socials a:hover {
    color: var(--brand-orange);
}

/* Main Navbar */
.site-header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    transition: box-shadow var(--transition-normal);
    position: relative;
    z-index: 999;
}

.site-header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(11,28,60,0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo {
    height: 54px;
    width: 54px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--brand-orange);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

.brand-subname {
    font-size: 0.8rem;
    color: var(--brand-orange);
    font-weight: 600;
    text-transform: uppercase;
}

.desktop-nav ul {
    display: flex;
    gap: 24px;
}

.desktop-nav a {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1rem;
    color: var(--primary-color);
    position: relative;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: var(--brand-orange);
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand-orange);
    transition: var(--transition-fast);
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
    width: 100%;
}

.mobile-nav-toggle {
    display: none;
    background: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    border: none;
    cursor: pointer;
}

/* Mobile Nav Drawer — Full Redesign */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -100%;          /* start fully off-screen */
    width: min(320px, 88vw);
    height: 100dvh;        /* dynamic viewport height — safe on mobile */
    background-color: var(--bg-card);
    z-index: 1050;
    box-shadow: -8px 0 40px rgba(11, 28, 60, 0.18);
    display: flex;
    flex-direction: column;
    overflow: hidden;      /* children handle their own scroll */
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0.4s;
    visibility: hidden;
}

.mobile-nav-drawer.open {
    right: 0;
    visibility: visible;
}

/* ── Header row ── */
.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 22px 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    flex-shrink: 0;
    background: var(--bg-card);
}

.drawer-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.drawer-title::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 20px;
    background: linear-gradient(to bottom, var(--brand-orange), var(--accent-gold));
    border-radius: 2px;
}

.close-drawer-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-main);
    border: 1px solid rgba(0, 0, 0, 0.07);
    font-size: 1rem;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.close-drawer-btn:hover {
    background: var(--brand-orange);
    border-color: var(--brand-orange);
    color: #fff;
}

/* ── Scrollable menu body ── */
.mobile-menu {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 16px 16px 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
    /* Custom thin scrollbar */
    scrollbar-width: thin;
    scrollbar-color: rgba(249,115,22,0.3) transparent;
    -webkit-overflow-scrolling: touch;
}

.mobile-menu::-webkit-scrollbar       { width: 3px; }
.mobile-menu::-webkit-scrollbar-track { background: transparent; }
.mobile-menu::-webkit-scrollbar-thumb { background: rgba(249,115,22,0.3); border-radius: 2px; }

/* ── Each top-level nav item ── */
.mobile-menu > li > a {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    text-decoration: none;
}

.mobile-menu > li > a:hover,
.mobile-menu > li > a.active {
    color: var(--brand-orange);
    background: rgba(249, 115, 22, 0.07);
    padding-left: 18px;
}

/* ── Footer with CTA ── */
.drawer-footer {
    padding: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    background: var(--bg-card);
    flex-shrink: 0;
}

.drawer-footer .btn-block {
    display: flex;
    width: 100%;
    justify-content: center;
}

/* ── Overlay backdrop ── */
.drawer-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 1040;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.drawer-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

/* ── Mobile Accordion ── */
.mobile-accordion {
    border-radius: var(--radius-sm);
}

.mob-acc-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    padding: 12px 14px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    text-align: left;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.mob-acc-trigger:hover,
.mobile-accordion.mob-acc-open .mob-acc-trigger {
    color: var(--brand-orange);
    background: rgba(249, 115, 22, 0.07);
}

.mob-acc-caret {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    color: var(--text-muted);
}

.mobile-accordion.mob-acc-open .mob-acc-caret {
    transform: rotate(180deg);
    color: var(--brand-orange);
}

/* Sliding sub-panel */
.mob-acc-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    list-style: none;
    margin: 0;
    padding: 0 0 0 12px;
}

.mobile-accordion.mob-acc-open .mob-acc-panel {
    max-height: 500px;
}

.mob-acc-panel li {
    margin: 1px 0;
}

.mob-acc-panel li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    font-family: var(--font-body);
}

.mob-acc-panel li a i {
    width: 18px;
    text-align: center;
    color: var(--brand-orange);
    font-size: 0.8rem;
    flex-shrink: 0;
}

.mob-acc-panel li a:hover,
.mob-acc-panel li a.active {
    background: rgba(249, 115, 22, 0.08);
    color: var(--brand-orange);
    padding-left: 16px;
}

/* Apply Online special row in mobile panel */
.mob-apply-link {
    background: rgba(249, 115, 22, 0.08) !important;
    border: 1px solid rgba(249, 115, 22, 0.18) !important;
    color: var(--brand-orange) !important;
    font-weight: 600 !important;
    margin-top: 4px !important;
}

.mob-apply-link i {
    color: var(--brand-orange) !important;
}

.mob-apply-link:hover {
    background: rgba(249, 115, 22, 0.15) !important;
    padding-left: 16px !important;
}

/* Divider between groups in mobile menu */
.mobile-menu-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.06);
    margin: 6px 4px;
}

/* ==========================================================================
   Hero / Cinematic Full-Width Slider
   ========================================================================== */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    max-height: 860px;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: var(--text-white);
}

/* --- Background image layers --- */
.hero-bg-track {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.05);
    will-change: opacity, transform;
}

.hero-bg.active {
    opacity: 1;
    animation: heroZoom 8s ease-in-out forwards;
}

@keyframes heroZoom {
    from { transform: scale(1.05); }
    to   { transform: scale(1.0); }
}

/* --- Gradient overlay --- */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(to right, rgba(8, 18, 38, 0.92) 0%, rgba(8, 18, 38, 0.65) 55%, rgba(8, 18, 38, 0.25) 100%),
        linear-gradient(to top,   rgba(8, 18, 38, 0.8)  0%, transparent 50%);
}

/* --- Left orange accent bar --- */
.hero-side-accent {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    z-index: 5;
    background: linear-gradient(to bottom, var(--brand-orange), var(--accent-gold), var(--brand-orange));
}

/* --- Slides content wrapper --- */
.hero-slides-wrap {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 120px 0 100px;
}

.hero-slide {
    display: none;
    pointer-events: none;
}

.hero-slide.active {
    display: block;
    pointer-events: auto;
}

.hero-inner {
    max-width: 760px;
}

/* Staggered entry animations for active slide children */
.hero-slide.active .hero-badge   { animation: hsSlideUp 0.55s ease 0.05s both; }
.hero-slide.active h1             { animation: hsSlideUp 0.6s ease  0.18s both; }
.hero-slide.active .hero-sub      { animation: hsSlideUp 0.6s ease  0.32s both; }
.hero-slide.active .hero-cta-group{ animation: hsSlideUp 0.6s ease  0.46s both; }
.hero-slide.active .hero-stats-row{ animation: hsSlideUp 0.6s ease  0.6s  both; }

@keyframes hsSlideUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* --- Badge pill --- */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(249, 115, 22, 0.18);
    border: 1px solid rgba(249, 115, 22, 0.45);
    color: var(--brand-orange);
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 30px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    backdrop-filter: blur(4px);
}

/* --- Heading --- */
.hero-section h1 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    color: var(--text-white);
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-section h1 span {
    color: var(--brand-orange);
}

/* --- Sub text --- */
.hero-sub {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
    max-width: 580px;
    margin-bottom: 32px;
}

/* --- CTA Buttons --- */
.hero-cta-group {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.btn-hero-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1rem;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.45);
    color: var(--text-white);
    transition: var(--transition-normal);
    backdrop-filter: blur(4px);
}

.btn-hero-ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
}

/* --- Inline mini stats row --- */
.hero-stats-row {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    gap: 4px;
}

.hs-item {
    display: flex;
    flex-direction: column;
    padding: 0 20px;
}

.hs-item:first-child {
    padding-left: 0;
}

.hs-num {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--brand-orange);
    line-height: 1;
    margin-bottom: 3px;
}

.hs-lbl {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hs-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

/* --- Floating logo badge (bottom right) --- */
.hero-logo-badge {
    position: absolute;
    bottom: 40px;
    right: 60px;
    z-index: 4;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid rgba(249, 115, 22, 0.6);
    box-shadow: 0 0 30px rgba(249, 115, 22, 0.25), 0 8px 32px rgba(0,0,0,0.4);
    overflow: hidden;
    animation: floatBadge 6s ease-in-out infinite;
    backdrop-filter: blur(4px);
}

.hero-logo-badge img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
}

/* --- Arrow Controls --- */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-white);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-normal);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.hero-arrow:hover {
    background: var(--brand-orange);
    border-color: var(--brand-orange);
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.5);
    transform: translateY(-50%) scale(1.08);
}

.hero-arrow.prev { left: 28px; }
.hero-arrow.next { right: 28px; }

/* --- Progress Dot indicators --- */
.hero-progress-dots {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hpd {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px 0;
    display: flex;
    align-items: center;
}

.hpd span {
    display: block;
    height: 4px;
    width: 24px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.3);
    transition: width 0.35s ease, background 0.35s ease;
}

.hpd.active span {
    width: 48px;
    background: var(--brand-orange);
    box-shadow: 0 0 8px rgba(249, 115, 22, 0.6);
}

.hpd:hover span {
    background: rgba(255, 255, 255, 0.6);
}

/* --- Slide counter top-right --- */
.hero-counter {
    position: absolute;
    top: 32px;
    right: 60px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
}

#heroCurrentNum {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1;
}

.hc-sep {
    display: block;
    width: 30px;
    height: 2px;
    background: var(--brand-orange);
    transform: rotate(-60deg);
}

.hc-total {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.45);
}

/* Feature/Objective Box */
.focus-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition-normal);
}

.focus-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(249, 115, 22, 0.1);
}

.card-icon {
    width: 60px;
    height: 60px;
    background-color: var(--accent-gold-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--brand-orange);
    margin-bottom: 24px;
}

.focus-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.focus-card p {
    font-size: 0.95rem;
}

/* Founder Inspiration Spotlight Section */
.founder-spotlight {
    padding: 20px;
  
}

.founder-img-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-right: 1px solid var(--border-color);
    padding-right: 40px;
}

.founder-avatar {
    object-fit: cover;
    border: 4px solid var(--brand-orange);
    margin-bottom: 20px;
    box-shadow: var(--shadow-md);
}

.founder-name {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.founder-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--brand-orange);
    text-transform: uppercase;
}

.founder-content-col {
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.founder-quote {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.5;
    position: relative;
}

.founder-quote::before {
    content: '“';
    font-size: 4rem;
    color: rgba(249, 115, 22, 0.15);
    position: absolute;
    top: -30px;
    left: -15px;
    font-family: serif;
}

.founder-desc {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* Stat Banner */
.stat-banner {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--text-white);
    padding: 60px 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--brand-orange);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
}

/* Sub-Hero / Breadcrumbs */
.page-title-banner {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    padding: 80px 0;
    color: var(--text-white);
    text-align: center;
    position: relative;
}

.page-title-banner h1 {
    font-size: 3rem;
    color: var(--text-white);
    margin-bottom: 10px;
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.breadcrumbs a {
    color: var(--brand-orange);
}

/* About Page Objectives */
.objective-item {
    background-color: var(--bg-card);
    border-radius: var(--radius-sm);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    border-left: 4px solid var(--brand-orange);
}

.objective-item i {
    font-size: 1.25rem;
    color: var(--brand-orange);
    margin-top: 4px;
}

.objective-item h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.objective-item p {
    font-size: 0.9rem;
}

/* Timeline Layout for Vision & Mission */
.split-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.styled-card {
    background-color: var(--bg-card);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.styled-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background-color: var(--brand-orange);
}

.styled-card-alt::before {
    background-color: var(--accent-gold);
}

.styled-card h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.styled-card h3 i {
    color: var(--brand-orange);
}

.styled-card-alt h3 i {
    color: var(--accent-gold);
}

.styled-card ul {
    margin-top: 20px;
}

.styled-card ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 1rem;
    color: var(--text-secondary);
}

.styled-card ul li::before {
    content: '➔';
    position: absolute;
    left: 0;
    color: var(--brand-orange);
}

.styled-card-alt ul li::before {
    color: var(--accent-gold);
}

/* Services Grid & Accordions */
.service-block {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.service-block h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--bg-main);
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-block h3 i {
    color: var(--brand-orange);
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.service-item-icon {
    width: 36px;
    height: 36px;
    background-color: rgba(249, 115, 22, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--brand-orange);
    flex-shrink: 0;
}

.service-item-text h4 {
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.service-item-text p {
    font-size: 0.9rem;
}

/* Certificates downloads page */
.cert-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.03);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-normal);
}

.cert-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(249, 115, 22, 0.1);
}

.cert-icon {
    font-size: 3rem;
    color: #ef4444; /* PDF Red */
    margin-bottom: 15px;
}

.cert-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.cert-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    flex-grow: 1;
}

.cert-btn-group {
    display: flex;
    gap: 10px;
}

.cert-btn-group a {
    flex: 1;
}

/* Forms (Membership & Contact) */
.form-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    background-color: var(--bg-main);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-control:focus {
    border-color: var(--brand-orange);
    background-color: var(--bg-card);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
    outline: none;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Grid helper for forms */
.form-row-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Form success alert */
.alert {
    padding: 15px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 30px;
    font-weight: 500;
}

.alert-success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

/* Legal & Policy Pages formatting */
.legal-content {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-sm);
}

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 35px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 12px;
}

.legal-content ul, .legal-content ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.legal-content li {
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.legal-content hr {
    border: 0;
    height: 1px;
    background-color: var(--border-color);
    margin: 40px 0;
}

/* ==========================================================================
   Footer — Full Redesign
   ========================================================================== */

/* ── Wave top ── */
.footer-wave {
    background: var(--bg-main);
    line-height: 0;
    margin-bottom: -2px;
}

.footer-wave svg {
    width: 100%;
    height: 60px;
    display: block;
}

/* ── Main footer body ── */
.site-footer {
    background-color: var(--bg-footer);
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    border-top: none;
    position: relative;
}

.footer-body {
    padding: 70px 0 50px;
    position: relative;
}

/* subtle radial glow */
.footer-body::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(249,115,22,0.07) 0%, transparent 70%);
    pointer-events: none;
}

/* ── 4-col grid ── */
.footer-main-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.9fr 1.1fr 1fr;
    gap: 48px;
    align-items: start;
}

/* ── Brand column ── */
.footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.footer-brand-logo img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid var(--brand-orange);
    object-fit: cover;
    flex-shrink: 0;
}

.footer-brand-name {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.fbn-hindi {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.1;
}

.fbn-eng {
    font-size: 0.72rem;
    color: var(--brand-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.footer-tagline {
    font-style: italic;
    color: var(--accent-gold);
    font-size: 0.88rem;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.4;
}

.footer-tagline i {
    font-size: 0.7rem;
    opacity: 0.6;
}

.footer-about-text {
    font-size: 0.85rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.5);
    margin-bottom: 22px;
}

/* Social icons */
.footer-socials {
    display: flex;
    gap: 10px;
    margin-bottom: 22px;
    flex-wrap: wrap;
}

.fs-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    transition: var(--transition-normal);
    text-decoration: none;
}

.fs-icon:hover      { transform: translateY(-4px); color: #fff; }
.fs-fb:hover { background: #1877f2; border-color: #1877f2; box-shadow: 0 6px 16px rgba(24,119,242,0.4); }
.fs-tw:hover { background: #000;    border-color: #555;    box-shadow: 0 6px 16px rgba(0,0,0,0.4); }
.fs-ig:hover { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); border-color: #dc2743; box-shadow: 0 6px 16px rgba(220,39,67,0.4); }
.fs-yt:hover { background: #ff0000; border-color: #ff0000; box-shadow: 0 6px 16px rgba(255,0,0,0.4); }
.fs-wa:hover { background: #25d366; border-color: #25d366; box-shadow: 0 6px 16px rgba(37,211,102,0.4); }

/* Certification badges */
.footer-cert-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.fcb {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255,255,255,0.55);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.fcb i {
    color: var(--accent-gold);
    font-size: 0.65rem;
}

/* ── Column heading ── */
.footer-col-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 22px;
    padding-bottom: 12px;
    position: relative;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-orange), var(--accent-gold));
    border-radius: 2px;
}

/* ── Quick links ── */
.footer-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.55);
    font-size: 0.88rem;
    text-decoration: none;
    transition: var(--transition-fast);
    padding: 4px 0;
}

.footer-link-list li a i {
    width: 18px;
    color: var(--brand-orange);
    font-size: 0.78rem;
    flex-shrink: 0;
    transition: transform var(--transition-fast);
}

.footer-link-list li a:hover {
    color: var(--text-white);
    padding-left: 4px;
}

.footer-link-list li a:hover i {
    transform: translateX(3px);
}

/* ── Registration list ── */
.footer-reg-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.footer-reg-list li {
    display: flex;
    flex-direction: column;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-reg-list li:last-child {
    border-bottom: none;
}

.frl-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--brand-orange);
    font-weight: 600;
    margin-bottom: 2px;
}

.frl-value {
    font-size: 0.83rem;
    color: rgba(255,255,255,0.65);
    font-family: 'Courier New', monospace;
    letter-spacing: 0.3px;
}

/* ── Contact list ── */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.87rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.5;
}

.fcl-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(249,115,22,0.12);
    border: 1px solid rgba(249,115,22,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-orange);
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.footer-contact-list li a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-contact-list li a:hover {
    color: var(--brand-orange);
}

/* Donate CTA */
.footer-donate-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-hover));
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    padding: 11px 22px;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(249,115,22,0.35);
    transition: var(--transition-normal);
    width: 100%;
    justify-content: center;
}

.footer-donate-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(249,115,22,0.5);
    color: #fff;
}

/* ── Divider ── */
.footer-divider {
    padding: 0;
}

.footer-divider-inner {
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(249,115,22,0.4) 20%,
        rgba(245,158,11,0.5) 50%,
        rgba(249,115,22,0.4) 80%,
        transparent 100%);
}

/* ── Bottom bar ── */
.footer-bottom {
    padding: 20px 0;
    background: rgba(0,0,0,0.2);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copy {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin: 0;
}

.footer-copy strong {
    color: rgba(255,255,255,0.65);
}

.footer-made {
    color: rgba(255,255,255,0.3);
    font-size: 0.78rem;
    display: flex;
    align-items: center;
    gap: 4px;
}

.footer-policy-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-policy-links a {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-policy-links a:hover {
    color: var(--brand-orange);
}

.fp-sep {
    width: 1px;
    height: 12px;
    background: rgba(255,255,255,0.15);
    display: inline-block;
}

/* ── Responsive Footer ── */
@media (max-width: 1100px) {
    .footer-main-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .footer-main-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-body {
        padding: 50px 0 40px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-policy-links {
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-copy {
        justify-content: center;
    }

    .footer-made {
        display: none;
    }
}

/* Contact Info Layout Cards */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-card {
    background-color: var(--bg-card);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border-left: 4px solid var(--accent-gold);
}

.contact-info-card i {
    font-size: 1.5rem;
    color: var(--brand-orange);
    background-color: rgba(249, 115, 22, 0.08);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-card h4 {
    font-size: 1.15rem;
    margin-bottom: 6px;
}

.contact-info-card p, .contact-info-card a {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.contact-info-card a:hover {
    color: var(--brand-orange);
}

/* Map Card wrapper */
.map-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.map-placeholder {
    height: 400px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e2e8f0;
    color: var(--text-secondary);
    flex-direction: column;
    gap: 15px;
}

.map-placeholder i {
    font-size: 3rem;
    color: var(--brand-orange);
}

/* Responsiveness Media Queries */
@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

/* Hero responsive */
@media (max-width: 991px) {
    .hero-section {
        min-height: 80vh;
        max-height: none;
    }

    .hero-slides-wrap {
        padding: 100px 0 90px;
    }

    .hero-logo-badge {
        width: 80px;
        height: 80px;
        right: 30px;
        bottom: 80px;
    }

    .hero-counter {
        right: 30px;
        top: 24px;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .founder-spotlight {
        padding: 30px;
    }

    .founder-spotlight > .grid-2 {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .founder-img-col {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding-right: 0;
        padding-bottom: 30px;
    }

    .founder-content-col {
        padding-left: 0;
    }

    .split-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 85vh;
        max-height: none;
    }

    .hero-slides-wrap {
        padding: 80px 0 100px;
    }

    .hero-arrow {
        width: 40px;
        height: 40px;
        font-size: 0.85rem;
    }

    .hero-arrow.prev { left: 12px; }
    .hero-arrow.next { right: 12px; }

    .hero-counter {
        display: none;
    }

    .hero-logo-badge {
        width: 64px;
        height: 64px;
        right: 16px;
        bottom: 70px;
    }

    .hero-sub {
        font-size: 0.95rem;
    }

    .hs-item { padding: 0 12px; }
    .hs-num  { font-size: 1.3rem; }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 90vh;
    }

    .hero-badge {
        font-size: 0.74rem;
        padding: 5px 12px;
    }

    .hero-cta-group {
        flex-direction: column;
        gap: 10px;
    }

    .btn-hero-ghost,
    .hero-section .btn-primary {
        width: 100%;
        justify-content: center;
    }

    .hero-stats-row {
        gap: 2px;
    }

    .hs-item { padding: 0 8px; }
    .hs-num  { font-size: 1.1rem; }
    .hs-lbl  { font-size: 0.7rem; }
    .hs-divider { height: 28px; }

    .hero-logo-badge {
        display: none;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .desktop-nav, .header-cta {
        display: none;
    }
    
    .mobile-nav-toggle {
        display: block;
    }
    
    /* top-bar handled by new responsive block at bottom of file */
    
    .slider-control {
        width: 38px;
        height: 38px;
        background: rgba(11, 28, 60, 0.5);
    }
    
    .slider-control.prev {
        left: 8px;
    }
    
    .slider-control.next {
        right: 8px;
    }
    
    .slider-dots {
        bottom: 12px;
    }
    
    .grid-3, .grid-2 {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .form-row-2 {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-card, .legal-content {
        padding: 30px 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .page-title-banner h1 {
        font-size: 2.2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
}

/* ==========================================================================
   Quick Access Software Strip
   ========================================================================== */
.quick-access-strip {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    padding: 0;
    position: relative;
    z-index: 10;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 4px solid var(--brand-orange);
    overflow: hidden;
}

/* subtle background shimmer */
.quick-access-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 120%, rgba(249,115,22,0.12) 0%, transparent 65%);
    pointer-events: none;
}

.qa-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
    z-index: 1;
}

/* Vertical divider between items */
.qa-item + .qa-item {
    border-left: 1px solid rgba(255,255,255,0.08);
}

.qa-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 24px;
    color: var(--text-white);
    text-decoration: none;
    position: relative;
    transition: var(--transition-normal);
    overflow: hidden;
    cursor: pointer;
}

.qa-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.04);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.qa-item:hover::before {
    opacity: 1;
}

/* Active bottom border on hover */
.qa-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-orange), var(--accent-gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}

.qa-item:hover::after {
    transform: scaleX(1);
}

/* Icon */
.qa-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--accent-gold);
    flex-shrink: 0;
    transition: var(--transition-normal);
}

.qa-item:hover .qa-icon-wrap {
    background: var(--brand-orange);
    border-color: var(--brand-orange);
    color: #fff;
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 6px 20px rgba(249,115,22,0.4);
}

/* Text */
.qa-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
    min-width: 0;
}

.qa-label {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
}

.qa-sub {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.45);
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Arrow */
.qa-arrow {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.25);
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.qa-item:hover .qa-arrow {
    color: var(--brand-orange);
    transform: translateX(4px);
}

/* Highlighted donate item */
.qa-item--highlight .qa-icon-wrap {
    background: rgba(249,115,22,0.2);
    border-color: rgba(249,115,22,0.35);
    color: var(--brand-orange);
}

.qa-item--highlight .qa-label {
    color: var(--brand-orange);
}

.qa-item--highlight:hover .qa-icon-wrap {
    background: var(--brand-orange);
    color: #fff;
}

/* ==========================================================================
   Quick Access Responsive
   ========================================================================== */
@media (max-width: 900px) {
    .qa-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .qa-item + .qa-item {
        border-left: none;
    }

    .qa-item:nth-child(odd) {
        border-right: 1px solid rgba(255,255,255,0.08);
    }

    .qa-item:nth-child(1),
    .qa-item:nth-child(2) {
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }
}

@media (max-width: 500px) {
    .qa-grid {
        grid-template-columns: 1fr;
    }

    .qa-item:nth-child(odd) {
        border-right: none;
    }

    .qa-item:nth-child(1),
    .qa-item:nth-child(2) {
        border-bottom: none;
    }

    .qa-item {
        border-bottom: 1px solid rgba(255,255,255,0.06);
        padding: 18px 20px;
    }

    .qa-item:last-child {
        border-bottom: none;
    }

    .qa-icon-wrap {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }

    .qa-label {
        font-size: 0.95rem;
    }
}
.pillars-section-v2 {
    background: var(--bg-main);
    position: relative;
    overflow: hidden;
}

/* Subtle background pattern */
.pillars-section-v2::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(249,115,22,0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(245,158,11,0.05) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

/* --- Header block --- */
.pillars-header {
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.pillars-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--brand-orange);
    background: rgba(249,115,22,0.08);
    border: 1px solid rgba(249,115,22,0.2);
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.pillars-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--primary-color);
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
    padding-bottom: 18px;
}

.pillars-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-orange), var(--accent-gold));
    border-radius: 2px;
}

.pillars-header h2 span {
    color: var(--brand-orange);
}

.pillars-header p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.7;
}

/* --- Cards grid --- */
.pillars-v2-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

/* --- Individual card --- */
.pv2-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    transition: var(--transition-normal);
    position: relative;
}

.pv2-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 48px -8px rgba(11,28,60,0.18);
    border-color: rgba(249,115,22,0.15);
}

/* Bottom left accent line */
.pv2-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-orange), var(--accent-gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}

.pv2-card:hover::after {
    transform: scaleX(1);
}

/* --- Image wrapper --- */
.pv2-img-wrap {
    position: relative;
    overflow: hidden;
    height: 334px;
    flex-shrink: 0;
}

.pv2-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
    filter: brightness(0.88);
}

.pv2-card:hover .pv2-img-wrap img {
    transform: scale(1.08);
    filter: brightness(0.75);
}

.pv2-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11,28,60,0.6) 0%, transparent 55%);
}

/* Slide number badge on image */
.pv2-num {
    position: absolute;
    top: 14px;
    right: 16px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: rgba(255,255,255,0.85);
    line-height: 1;
    background: rgba(249,115,22,0.75);
    backdrop-filter: blur(4px);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    letter-spacing: 1px;
}

/* --- Card body --- */
.pv2-body {
    padding: 24px 24px 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Icon circle */
.pv2-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent-gold-light), #fff3d6);
    border: 1.5px solid rgba(249,115,22,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--brand-orange);
    margin-top: -42px;  /* pulls it up over the image */
    margin-bottom: 16px;
    box-shadow: 0 4px 16px rgba(249,115,22,0.2);
    transition: var(--transition-normal);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.pv2-card:hover .pv2-icon {
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-hover));
    color: #fff;
    box-shadow: 0 8px 24px rgba(249,115,22,0.4);
    transform: rotate(-6deg) scale(1.08);
}

.pv2-body h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.pv2-body > p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 16px;
}

/* Feature list */
.pv2-list {
    list-style: none;
    margin: 0 0 20px 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
    flex-grow: 1;
}

.pv2-list li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 0.84rem;
    color: var(--text-secondary);
}

.pv2-list li i {
    color: var(--brand-orange);
    font-size: 0.72rem;
    flex-shrink: 0;
    background: rgba(249,115,22,0.1);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* CTA link at bottom */
.pv2-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--brand-orange);
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 16px;
    margin-top: auto;
    transition: var(--transition-fast);
}

.pv2-link i {
    transition: transform var(--transition-fast);
}

.pv2-link:hover {
    color: var(--brand-orange-hover);
}

.pv2-link:hover i {
    transform: translateX(5px);
}

/* ==========================================================================
   Pillars v2 Responsive
   ========================================================================== */
@media (max-width: 1100px) {
    .pillars-v2-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }
}

@media (max-width: 600px) {
    .pillars-header {
        padding: 60px 0 40px;
    }

    .pillars-v2-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pv2-img-wrap {
        height: 220px;
    }
}

/* ==========================================================================
   Team / Management Committee Section
   ========================================================================== */
.team-section {
    background: linear-gradient(160deg, var(--primary-color) 0%, var(--primary-light) 100%);
    position: relative;
    overflow: hidden;
}

.team-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.team-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* Override section-header text colors for dark background */
.team-section .section-header h2 {
    color: var(--text-white);
}

.team-section .section-header h2::after {
    background: linear-gradient(90deg, var(--brand-orange), var(--accent-gold));
}

.team-section .section-header p {
    color: rgba(255, 255, 255, 0.65);
}

.highlight-orange {
    color: var(--brand-orange);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    position: relative;
    z-index: 1;
}

.team-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-normal);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    text-align: center;
}

.team-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(249, 115, 22, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(249, 115, 22, 0.15);
}

.team-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    width: 100%;
}

.team-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.92);
}

.team-card:hover .team-img-wrap img {
    transform: scale(1.08);
    filter: brightness(0.7);
}

.team-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 28, 60, 0.85) 0%, transparent 55%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 18px;
    opacity: 0;
    transition: var(--transition-normal);
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-socials {
    display: flex;
    gap: 10px;
    transform: translateY(12px);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card:hover .team-socials {
    transform: translateY(0);
}

.team-socials a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: var(--brand-orange);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

.team-socials a:hover {
    background-color: var(--accent-gold);
    transform: scale(1.12);
}

.team-info {
    padding: 20px 18px 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.team-info h3 {
    font-size: 1.1rem;
    color: var(--text-white);
    margin-bottom: 5px;
    font-weight: 700;
}

.team-role {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--brand-orange);
    background: rgba(249, 115, 22, 0.12);
    border: 1px solid rgba(249, 115, 22, 0.25);
    border-radius: 30px;
    padding: 3px 12px;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.team-org {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
}

/* ==========================================================================
   Responsiveness for Pillars & Team
   ========================================================================== */
@media (max-width: 1024px) {
    .pillars-v2-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }
}

@media (max-width: 600px) {
    .pillars-v2-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .team-info h3 {
        font-size: 0.95rem;
    }

    .team-role {
        font-size: 0.72rem;
    }
}

@media (max-width: 400px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Gallery Slider Section
   ========================================================================== */
.gallery-section {
    background: var(--bg-card);
    padding: 80px 0 60px;
    overflow: hidden;
}

.gallery-section .section-header {
    margin-bottom: 40px;
}

/* --- Slider viewport wrapper --- */
.gallery-slider-wrap {
    position: relative;
    overflow: hidden;
    /* mask: fade edges */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
    cursor: grab;
    user-select: none;
}

.gallery-slider-wrap:active {
    cursor: grabbing;
}

/* --- Track --- */
.gallery-track {
    display: flex;
    gap: 20px;
    will-change: transform;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 10px 0 14px;
}

/* --- Individual slide --- */
.gallery-slide {
    flex: 0 0 calc((100% - 60px) / 4);   /* 4 per row on desktop */
    min-width: 0;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.35s ease;
}

.gallery-slide:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 40px rgba(11, 28, 60, 0.2);
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.gallery-slide:hover img {
    transform: scale(1.06);
}

/* Hover overlay with zoom icon */
.gallery-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(11, 28, 60, 0.6) 0%,
        rgba(249, 115, 22, 0.4) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-slide-overlay i {
    font-size: 2rem;
    color: #fff;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.gallery-slide:hover .gallery-slide-overlay {
    opacity: 1;
}

.gallery-slide:hover .gallery-slide-overlay i {
    transform: scale(1);
}

/* --- Arrow buttons --- */
.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(11, 28, 60, 0.12);
    background: var(--bg-card);
    color: var(--primary-color);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    transition: var(--transition-normal);
}

.gallery-arrow:hover {
    background: var(--brand-orange);
    border-color: var(--brand-orange);
    color: #fff;
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.gallery-prev { left: 12px; }
.gallery-next { right: 12px; }

/* --- Dot indicators --- */
.gallery-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
}

.gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(11, 28, 60, 0.15);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: var(--transition-fast);
}

.gallery-dot.active {
    width: 28px;
    border-radius: 4px;
    background: var(--brand-orange);
    box-shadow: 0 0 8px rgba(249, 115, 22, 0.5);
}

.gallery-dot:hover:not(.active) {
    background: rgba(11, 28, 60, 0.35);
}

/* ==========================================================================
   Lightbox
   ========================================================================== */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(5, 10, 22, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s;
}

.gallery-lightbox.open {
    opacity: 1;
    visibility: visible;
}

.lb-img-wrap {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lb-img-wrap img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: 0 24px 80px rgba(0,0,0,0.6);
    display: block;
    transition: opacity 0.25s ease;
}

.lb-close {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.lb-close:hover {
    background: var(--brand-orange);
    border-color: var(--brand-orange);
}

.lb-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.lb-nav:hover {
    background: var(--brand-orange);
    border-color: var(--brand-orange);
}

.lb-prev { left: 24px; }
.lb-next { right: 24px; }

.lb-counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    background: rgba(255,255,255,0.06);
    padding: 5px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
}

/* ==========================================================================
   Gallery Responsive
   ========================================================================== */
@media (max-width: 1024px) {
    .gallery-slide {
        flex: 0 0 calc((100% - 40px) / 3);  /* 3 per row */
    }
}

@media (max-width: 700px) {
    .gallery-slide {
        flex: 0 0 calc((100% - 20px) / 2);  /* 2 per row */
    }

    .gallery-arrow {
        width: 38px;
        height: 38px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .gallery-slide {
        flex: 0 0 calc(100% - 32px);  /* 1 per row */
    }

    .gallery-section {
        padding: 60px 0 40px;
    }

    .lb-nav {
        width: 40px;
        height: 40px;
    }

    .lb-prev { left: 8px; }
    .lb-next { right: 8px; }
}

/* ==========================================================================
   About Page Styles
   ========================================================================== */

/* ── About Intro Section ── */
.about-intro-section {
    background: var(--bg-card);
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 70px;
    align-items: center;
}

/* --- Image Block --- */
.about-img-block {
    position: relative;
}

.about-img-main-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg), 0 0 40px rgba(249,115,22,0.12);
    aspect-ratio: 4 / 4.5;
}

.about-img-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.6s ease;
}

.about-img-main-wrap:hover .about-img-main {
    transform: scale(1.04);
}

/* Year badge overlaid on image bottom-right */
.about-img-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-hover));
    color: #fff;
    border-radius: var(--radius-sm);
    padding: 12px 18px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(249,115,22,0.4);
}

.aib-year {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}

.aib-label {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.85;
    margin-top: 2px;
}

/* Floating stat cards */
.about-stat-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    padding: 12px 18px;
    box-shadow: 0 8px 30px rgba(11,28,60,0.15);
    border: 1px solid rgba(249,115,22,0.15);
    z-index: 2;
    min-width: 160px;
}

.about-stat-card i {
    font-size: 1.4rem;
    color: var(--brand-orange);
    background: rgba(249,115,22,0.1);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-stat-card div {
    display: flex;
    flex-direction: column;
}

.about-stat-card strong {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.1;
}

.about-stat-card span {
    font-size: 0.72rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.asc-left {
    bottom: -20px;
    left: -24px;
}

.asc-right {
    top: 40px;
    right: -28px;
}

/* --- Content Block --- */
.about-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--brand-orange);
    background: rgba(249,115,22,0.08);
    border: 1px solid rgba(249,115,22,0.2);
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 18px;
}

.about-content-block h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--primary-color);
    margin-bottom: 18px;
    line-height: 1.15;
}

.about-content-block h2 span {
    color: var(--brand-orange);
    position: relative;
}

.about-lead {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 14px;
}

.about-body {
    font-size: 0.96rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 28px;
}

/* Objectives box */
.about-objectives {
    background: var(--bg-main);
    border-radius: var(--radius-md);
    padding: 24px 26px;
    margin-bottom: 32px;
    border-left: 4px solid var(--brand-orange);
}

.about-objectives h4 {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 9px;
}

.about-objectives h4 i {
    color: var(--brand-orange);
}

.about-obj-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.about-obj-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.91rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.about-obj-list li i {
    color: var(--brand-orange);
    font-size: 0.85rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.about-cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* ── Vision & Mission Grid ── */
.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.vm-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 44px 40px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
}

.vm-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
}

.vm-vision::before {
    background: linear-gradient(90deg, var(--brand-orange), var(--accent-gold));
}

.vm-mission::before {
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
}

/* Big background icon */
.vm-card::after {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    bottom: -16px;
    right: 20px;
    font-size: 8rem;
    opacity: 0.03;
    pointer-events: none;
    line-height: 1;
    color: var(--primary-color);
}

.vm-vision::after  { content: '\f06e'; }
.vm-mission::after { content: '\f135'; }

.vm-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 22px;
}

.vm-vision  .vm-icon { background: linear-gradient(135deg,#fff3e0,#ffe0b2); color: var(--brand-orange); }
.vm-mission .vm-icon { background: linear-gradient(135deg,#e8edf7,#d0daf2); color: var(--primary-color); }

.vm-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.vm-card p {
    font-size: 0.96rem;
    line-height: 1.75;
    color: var(--text-secondary);
}

.vm-quote {
    margin-top: 20px;
    padding: 12px 18px;
    background: rgba(249,115,22,0.06);
    border-left: 3px solid var(--brand-orange);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.vm-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vm-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.vm-card ul li i {
    color: var(--brand-orange);
    font-size: 0.75rem;
    margin-top: 4px;
    flex-shrink: 0;
}

/* ── Founder Section ── */
.founder-section {
    background: var(--bg-card);
}

.founder-card-wrap {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 60px;
    align-items: start;
    background: var(--bg-main);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.founder-card-img {
    position: relative;
    height: 100%;
    min-height: 500px;
    overflow: hidden;
}

.founder-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.6s ease;
}

.founder-card-img:hover img {
    transform: scale(1.04);
}

.founder-card-name-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(11,28,60,0.95) 0%, transparent 100%);
    padding: 50px 24px 24px;
    color: #fff;
}

.founder-card-name-badge strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 4px;
}

.founder-card-name-badge span {
    font-size: 0.78rem;
    color: var(--brand-orange);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.founder-card-content {
    padding: 44px 44px 44px 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.founder-big-quote {
    position: relative;
    padding: 24px 28px;
    background: rgba(249,115,22,0.05);
    border-radius: var(--radius-md);
    border: 1px solid rgba(249,115,22,0.12);
    margin-bottom: 6px;
}

.founder-qmark {
    position: absolute;
    top: -14px;
    left: 20px;
    font-size: 2.5rem;
    color: var(--brand-orange);
    opacity: 0.3;
}

.founder-big-quote p {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--primary-color);
    line-height: 1.75;
    margin: 0;
}

.founder-card-content > p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

.founder-commitment {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    background: linear-gradient(135deg, rgba(11,28,60,0.04), rgba(249,115,22,0.04));
    border-radius: var(--radius-sm);
    border: 1px solid rgba(249,115,22,0.1);
    margin-top: 4px;
}

.founder-commitment > i {
    color: var(--brand-orange);
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.founder-commitment p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
}

.founder-commitment strong {
    color: var(--primary-color);
}

/* ── About Impact Banner ── */
.about-impact-banner {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    padding: 60px 0;
}

.aib-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    text-align: center;
}

.aib-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 10px;
    border-right: 1px solid rgba(255,255,255,0.08);
}

.aib-item:last-child {
    border-right: none;
}

.aib-item > i {
    font-size: 1.8rem;
    color: var(--brand-orange);
    background: rgba(249,115,22,0.12);
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aib-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1;
}

.aib-lbl {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   About Page Responsive
   ========================================================================== */
@media (max-width: 1024px) {
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-img-block {
        max-width: 480px;
        margin: 0 auto;
    }

    .asc-right {
        right: -10px;
    }

    .founder-card-wrap {
        grid-template-columns: 280px 1fr;
        gap: 0;
    }

    .founder-card-img {
        min-height: 400px;
    }

    .aib-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .aib-item:nth-child(3) {
        border-right: none;
    }
}

@media (max-width: 768px) {
    .vm-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .vm-card {
        padding: 32px 26px;
    }

    .founder-card-wrap {
        grid-template-columns: 1fr;
    }

    .founder-card-img {
        min-height: 300px;
    }

    .founder-card-content {
        padding: 30px 24px;
    }

    .aib-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }

    .aib-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        padding: 24px 16px;
    }

    .aib-item:nth-child(odd) {
        border-right: 1px solid rgba(255,255,255,0.08);
    }

    .aib-item:last-child {
        grid-column: span 2;
        border-bottom: none;
    }
}

@media (max-width: 480px) {
    .asc-left,
    .asc-right {
        display: none;
    }

    .about-cta-row {
        flex-direction: column;
    }

    .about-cta-row .btn {
        width: 100%;
        justify-content: center;
    }

    .aib-grid {
        grid-template-columns: 1fr;
    }

    .aib-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .aib-item:nth-child(odd) {
        border-right: none;
    }

    .aib-item:last-child {
        grid-column: span 1;
    }
}

/* ==========================================================================
   Desktop Nav Dropdown — Our Services
   ========================================================================== */
.desktop-nav ul {
    position: relative;
}

.nav-dropdown-wrap {
    position: relative;
}

.nav-dropdown-trigger {
    display: inline-flex !important;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.nav-caret {
    font-size: 0.65rem !important;
    transition: transform 0.3s ease;
    margin-top: 1px;
}

.nav-dropdown-wrap:hover .nav-caret,
.nav-dropdown-wrap.dd-open .nav-caret {
    transform: rotate(180deg);
}

/* Dropdown panel */
.nav-dropdown {
    position: absolute;
    top: calc(100% + 0px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    width: 320px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    box-shadow: 0 20px 60px -8px rgba(11,28,60,0.2), 0 4px 16px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.06);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    z-index: 500;
    overflow: hidden;
}

/* Arrow tip pointing up */
.nav-dropdown::before {
    content: '';
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    background: var(--bg-card);
    border-left: 1px solid rgba(0,0,0,0.06);
    border-top: 1px solid rgba(0,0,0,0.06);
    rotate: 45deg;
    z-index: 1;
}

.nav-dropdown-wrap:hover .nav-dropdown,
.nav-dropdown-wrap.dd-open .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-inner {
    padding: 8px;
}

/* Each dropdown item */
.ndd-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: background var(--transition-fast), transform var(--transition-fast);
    color: var(--text-primary);
}

.ndd-item:hover,
.ndd-item.ndd-active {
    background: rgba(249,115,22,0.07);
    transform: translateX(3px);
}

/* "All Services" special item */
.ndd-all {
    background: linear-gradient(135deg, rgba(249,115,22,0.08), rgba(245,158,11,0.06));
    border: 1px solid rgba(249,115,22,0.12);
    margin-bottom: 2px;
}

.ndd-all:hover {
    background: linear-gradient(135deg, rgba(249,115,22,0.14), rgba(245,158,11,0.1));
}

/* Icon box */
.ndd-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: rgba(249,115,22,0.1);
    color: var(--brand-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.ndd-item:hover .ndd-icon,
.ndd-item.ndd-active .ndd-icon {
    background: var(--brand-orange);
    color: #fff;
}

.ndd-all .ndd-icon {
    background: var(--brand-orange);
    color: #fff;
}

/* Text */
.ndd-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}

.ndd-text strong {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.2;
}

.ndd-text small {
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.3;
}

.ndd-item:hover .ndd-text strong,
.ndd-item.ndd-active .ndd-text strong {
    color: var(--brand-orange);
}

/* Divider inside dropdown */
.ndd-divider {
    height: 1px;
    background: rgba(0,0,0,0.05);
    margin: 4px 8px 6px;
}

/* ==========================================================================
   Membership Dropdown extras
   ========================================================================== */
.nav-dropdown--right {
    left: auto;
    right: 0;
    transform: translateX(0) translateY(8px);
}

.nav-dropdown--right::before {
    left: auto;
    right: 28px;
    transform: none;
}

.nav-dropdown-wrap:hover .nav-dropdown--right,
.nav-dropdown-wrap.dd-open .nav-dropdown--right {
    transform: translateX(0) translateY(0);
}

/* Apply Online item — highlighted row */
.ndd-apply {
    background: linear-gradient(135deg, rgba(11,28,60,0.04), rgba(249,115,22,0.05));
    border: 1px solid rgba(249,115,22,0.12);
    margin-top: 2px;
}

.ndd-apply:hover {
    background: linear-gradient(135deg, rgba(249,115,22,0.1), rgba(245,158,11,0.07));
}

.ndd-icon--orange {
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-hover)) !important;
    color: #fff !important;
}

/* Badge pill on Apply item */
.ndd-badge {
    display: inline-flex;
    align-items: center;
    font-size: 0.68rem;
    font-weight: 700;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 9px;
    border-radius: 20px;
    background: var(--brand-orange);
    color: #fff;
    flex-shrink: 0;
    margin-left: auto;
    box-shadow: 0 2px 8px rgba(249,115,22,0.35);
}

/* Mobile Apply link — distinct style */
.mob-apply-link {
    background: rgba(249,115,22,0.08) !important;
    border: 1px solid rgba(249,115,22,0.2) !important;
    color: var(--brand-orange) !important;
    font-weight: 600 !important;
    border-radius: var(--radius-sm) !important;
}

.mob-apply-link i {
    color: var(--brand-orange) !important;
}

.mob-apply-link:hover {
    background: rgba(249,115,22,0.15) !important;
}

/* ==========================================================================
   Drawer Logo + Language Row + Mobile Language Buttons
   ========================================================================== */

/* Drawer header with logo */
.drawer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.drawer-logo img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid var(--brand-orange);
    object-fit: cover;
    flex-shrink: 0;
}

/* Drawer footer: donate + language */
.drawer-lang-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(0,0,0,0.06);
    flex-wrap: wrap;
}

.drawer-lang-row > span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    flex-shrink: 0;
}

.drawer-lang-row > span i {
    color: var(--brand-orange);
    font-size: 0.75rem;
}

.drawer-lang-btns {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

/* Individual language pill buttons in drawer */
.dlb {
    background: var(--bg-main);
    border: 1px solid rgba(0,0,0,0.1);
    color: var(--text-secondary);
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 9px;
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition-fast);
    letter-spacing: 0.3px;
}

.dlb:hover {
    border-color: var(--brand-orange);
    color: var(--brand-orange);
    background: rgba(249,115,22,0.06);
}

.dlb.active {
    background: var(--brand-orange);
    border-color: var(--brand-orange);
    color: #fff;
    box-shadow: 0 2px 8px rgba(249,115,22,0.35);
}

/* header-actions (replaces header-cta) */
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

/* Hide Google Translate toolbar injected at top */
.goog-te-banner-frame,
.skiptranslate > iframe,
body > .goog-te-spinner-pos {
    display: none !important;
}

body {
    top: 0 !important;   /* prevent Google Translate from pushing body down */
}

/* ==========================================================================
   Top-bar responsive — show on mobile but compact
   ========================================================================== */
@media (max-width: 768px) {
    .top-bar {
        display: block; /* keep visible — was hidden before */
        padding: 6px 0;
    }

    .top-bar-content {
        flex-direction: column;
        gap: 6px;
        align-items: flex-start;
    }

    .top-info {
        font-size: 0.76rem;
        gap: 12px;
    }

    .top-right-group {
        gap: 8px;
        width: 100%;
        justify-content: space-between;
    }

    .top-socials {
        display: none; /* hide socials on mobile to keep it clean */
    }

    .top-donate-btn span {
        display: none; /* show only icon on very small screens */
    }
}

@media (max-width: 480px) {
    .top-info {
        flex-direction: column;
        gap: 4px;
    }
}


/* ==========================================================================
   Utility & Page-Specific Classes (Migrated from inline styles)
   ========================================================================== */

/* ── Breadcrumb Chevron Icon ── */
.breadcrumb-chevron {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* ── Coming Soon Page Section ── */
.coming-soon-section {
    background: var(--bg-card);
    min-height: 40vh;
    display: flex;
    align-items: center;
}

.coming-soon-container {
    text-align: center;
}

.coming-soon-icon {
    font-size: 3.5rem;
    color: var(--brand-orange);
    margin-bottom: 20px;
    display: block;
}

.coming-soon-title {
    margin-bottom: 14px;
}

.coming-soon-desc {
    max-width: 520px;
    margin: 0 auto 28px;
    color: var(--text-secondary);
}

/* ── Certificates Page ── */
.legal-content {
    margin-bottom: 50px;
}

.reg-numbers-title {
    margin-top: 0;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.reg-numbers-grid {
    gap: 20px;
}

.reg-number-card {
    background-color: var(--bg-main);
    padding: 20px;
    border-radius: var(--radius-sm);
}

.reg-number-label {
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
}

.reg-number-value {
    font-family: monospace;
    font-size: 1rem;
    color: var(--brand-orange);
    font-weight: 600;
}

.cert-section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
    color: var(--primary-color);
}

/* ── Services Page ── */
.service-block-desc {
    margin-bottom: 25px;
}

.service-block-lower {
    margin-top: 30px;
}

.section-bg-card {
    background-color: var(--bg-card);
}

.cta-section-desc {
    margin-bottom: 30px;
    margin-top: 10px;
}

/* ── Projects Page ── */
.focus-card-icon-gold {
    background-color: var(--accent-gold-light);
}

.focus-card-icon-orange {
    background-color: rgba(249, 115, 22, 0.08);
}

.focus-card-title {
    font-size: 1.25rem;
}

.focus-card-desc {
    font-size: 0.9rem;
}

.achievements-section {
    background-color: var(--bg-card);
    border-top: 1px solid var(--border-color);
}

.achievements-heading {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.achievements-intro {
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.achievements-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.achievement-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.achievement-icon {
    color: var(--accent-gold);
    font-size: 1.5rem;
    margin-top: 4px;
}

.achievement-item-title {
    font-size: 1.15rem;
    color: var(--primary-color);
}

.achievement-item-desc {
    font-size: 0.95rem;
}

.achievements-right-col {
    display: flex;
    align-items: center;
    justify-content: center;
}

.transparency-card {
    background-color: var(--bg-main);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    text-align: center;
    width: 100%;
}

.transparency-stat {
    font-size: 4.5rem;
    margin-bottom: 10px;
}

.transparency-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.transparency-desc {
    color: var(--text-secondary);
    margin-bottom: 25px;
}

/* ── About Page ── */
.about-vision-section {
    background: var(--bg-main);
}

.founder-tribute-para {
    margin-top: 14px;
}

.founder-section-title span {
    color: var(--brand-orange);
}

/* ── Index Page ── */
.founder-cta-wrap {
    margin-top: 25px;
}

.pillars-more-wrap {
    margin-top: 60px;
    padding-bottom: 80px;
}

.team-more-wrap {
    margin-top: 50px;
}

.gallery-heading-highlight {
    color: var(--brand-orange);
}

.cta-banner-section {
    background-color: var(--bg-card);
}

.cta-banner-container {
    max-width: 800px;
}

.cta-banner-heading {
    font-size: 2.3rem;
    margin-bottom: 20px;
}

.cta-banner-desc {
    font-size: 1.1rem;
    margin-bottom: 35px;
    color: var(--text-secondary);
}

/* ── Membership Page ── */
.membership-heading {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.membership-intro {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.membership-benefits-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.membership-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.membership-benefit-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.benefit-icon-wrap {
    background-color: var(--accent-gold-light);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-orange);
    flex-shrink: 0;
}

.benefit-item-title {
    font-size: 1.1rem;
    color: var(--primary-color);
}

.benefit-item-desc {
    font-size: 0.9rem;
}

.form-card-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
    color: var(--primary-color);
}

.required-star {
    color: red;
}

.form-submit-btn {
    margin-top: 15px;
}

/* ── Contact Page ── */
.contact-sidebar-heading {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-sidebar-desc {
    margin-bottom: 30px;
}

.contact-email-card {
    border-left-color: var(--brand-orange);
}

.contact-phone-note {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.map-section {
    background-color: var(--bg-card);
    border-top: 1px solid var(--border-color);
}

.map-placeholder-heading {
    margin: 0;
    color: var(--primary-color);
}

.map-placeholder-desc {
    margin: 0;
    color: var(--text-secondary);
}

.map-placeholder-address {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-family: monospace;
}


/* Google Translate hidden element */
.google-translate-hidden {
    display: none;
}


.founder-section-title-highlight {
    color: var(--brand-orange);
}
