/* ==========================================================================
   CONCERNED MEDICS FOUNDATION — Medical Blue Theme (Matching Logo)
   Colors: Primary #005390 | Mid #003F6E | Accent #E8C547 | Text #555 | BG #F2F2EE
   Fonts:  DM Sans (body/nav) | Playfair Display (headings)
   ========================================================================== */

/* ─── Variables ────────────────────────────────────────────────────────── */
:root {
    --green:       #005390;      /* Medical Logo Blue */
    --green-mid:   #003f6e;      /* Mid Logo Blue */
    --yellow:      #E8C547;      /* Golden yellow accent */
    --yellow-dark: #c9a82a;      /* Darker yellow for hover */
    --white:       #FFFFFF;
    --off-white:   #F2F2EE;      /* Warm light background */
    --card-white:  #FAFAFA;
    --text:        #555555;
    --text-dark:   #1a1a1a;
    --text-light:  rgba(255,255,255,0.78);
    --border:      rgba(0, 83, 144, 0.12);

    --font-body:   'DM Sans', sans-serif;
    --font-head:   'Playfair Display', serif;

    --max-w:       1230px;
    --pad-x:       40px;

    --radius-sm:   6px;
    --radius-md:   12px;
    --radius-lg:   20px;
    --radius-pill: 9999px;

    --shadow:      0 8px 32px rgba(0, 83, 144, 0.10);
    --shadow-md:   0 16px 48px rgba(0, 83, 144, 0.16);
    --shadow-lg:   0 24px 64px rgba(0, 83, 144, 0.22);
    --trans:       all 0.30s cubic-bezier(0.25, 0.8, 0.25, 1);

    /* Backward compat */
    --e-global-color-primary: #005390;
    --e-global-color-accent: #E8C547;
    --e-global-color-background: #F2F2EE;
}

/* ─── Reset ────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.75;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    color: var(--green);
    line-height: 1.18;
    font-weight: 800;
}
a { text-decoration: none; color: inherit; transition: var(--trans); }
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; padding: 0; margin: 0; }
button { cursor: pointer; font-family: var(--font-body); }

/* ─── Shared Container ─────────────────────────────────────────────────── */
.aasha-container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--pad-x);
}

/* ─── PRELOADER ────────────────────────────────────────────────────────── */
.theme-preloader {
    position: fixed; inset: 0;
    background: var(--green);
    display: flex; align-items: center; justify-content: center;
    z-index: 99999;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}
.theme-preloader.loaded { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { position: relative; width: 180px; height: 180px; display: flex; align-items: center; justify-content: center; }
.preloader-ring {
    position: absolute; inset: 0;
    border: 4px solid rgba(232,197,71,0.25);
    border-top-color: var(--yellow);
    border-radius: 50%;
    animation: spin 1.2s linear infinite;
    box-shadow: 0 0 30px rgba(232, 197, 71, 0.35);
}
.preloader-logo {
    width: 140px; height: 140px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    animation: pulse 1.6s ease-in-out infinite;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
.preloader-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
@keyframes spin  { to { transform: rotate(360deg); } }
@keyframes pulse { 0%,100% { transform: scale(0.94); } 50% { transform: scale(1.06); } }

/* ─── TOP ANNOUNCEMENT BAR ─────────────────────────────────────────────── */
.top-bar {
    background: var(--off-white);
    border-bottom: 1px solid rgba(11,43,34,0.08);
    padding: 8px 0;
    text-align: center;
    font-size: 14px;
    font-family: var(--font-body);
    color: var(--green);
    font-weight: 500;
    position: relative;
    z-index: 1001;
}
.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--pad-x);
}
.top-bar-social {
    display: flex;
    align-items: center;
    gap: 12px;
}
.top-bar-social a {
    color: var(--green);
    font-size: 14px;
    opacity: 0.75;
    transition: var(--trans);
    text-decoration: none;
    line-height: 1;
}
.top-bar-social a:hover {
    opacity: 1;
    color: var(--yellow);
    transform: translateY(-1px);
}
.top-bar-btn {
    background: var(--yellow);
    color: var(--green);
    font-weight: 700;
    font-size: 13px;
    padding: 5px 16px;
    border-radius: var(--radius-pill);
    white-space: nowrap;
    transition: var(--trans);
    text-decoration: none;
}
.top-bar-btn:hover { background: var(--green); color: var(--yellow); }

/* ─── SITE HEADER ──────────────────────────────────────────────────────── */
.site-header {
    position: absolute;
    top: 40px; /* below top bar */
    left: 0; width: 100%;
    z-index: 9999;
    padding: 0;
    background: rgba(0, 50, 90, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.site-header.is-fixed {
    position: fixed;
    top: 0;
    z-index: 9999;
    background: rgba(0, 45, 82, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}

.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 22px var(--pad-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.site-logo-img {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.site-logo:hover .site-logo-img {
    transform: scale(1.06);
}
.logo-icon-wrap {
    width: 44px; height: 44px;
    background: var(--yellow);
    color: var(--green);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 21px;
    box-shadow: 0 4px 14px rgba(232,197,71,0.4);
    flex-shrink: 0;
}
.logo-text {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.3px;
}

/* Desktop Nav */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
    justify-content: center;
}
.nav-item-wrap { position: relative; }
.nav-link {
    font-family: var(--font-body);
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    transition: color 0.2s;
}
.nav-link i { font-size: 11px; transition: transform 0.2s; }
.nav-link:hover, .nav-link.active { color: var(--yellow); }
.nav-item-wrap:hover .nav-link i { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 190px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-6px);
    transition: all 0.22s ease;
    z-index: 300;
}
.nav-item-wrap:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.nav-dropdown-item {
    display: block;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 500;
    color: var(--green);
    transition: background 0.18s, padding-left 0.18s;
}
.nav-dropdown-item:hover { background: var(--off-white); padding-left: 30px; color: var(--green); }

/* Header Right */
.header-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.header-login-btn {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.14);
    border: 1.5px solid rgba(255, 255, 255, 0.28);
    color: var(--white);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--trans);
    text-decoration: none;
    flex-shrink: 0;
}
.header-login-btn:hover {
    background: var(--yellow);
    color: var(--green);
    border-color: var(--yellow);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(232, 197, 71, 0.4);
}

.btn-donate-header {
    background: var(--yellow);
    color: var(--green);
    font-weight: 700;
    font-size: 14px;
    padding: 11px 24px;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    border: 2px solid var(--yellow);
    transition: var(--trans);
}
.btn-donate-header:hover { background: var(--white); color: var(--green); border-color: var(--white); }

/* ─── HAMBURGER BUTTON ─────────────────────────────────────────────────── */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px; height: 44px;
    background: rgba(255,255,255,0.12);
    border: 1.5px solid rgba(255,255,255,0.3);
    border-radius: var(--radius-sm);
    padding: 10px;
    transition: var(--trans);
}
.hamburger-btn:hover { background: rgba(255,255,255,0.2); border-color: var(--yellow); }
.hamburger-btn span {
    display: block;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--trans);
    transform-origin: center;
}
.hamburger-btn.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger-btn.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger-btn.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── MOBILE DRAWER ────────────────────────────────────────────────────── */
.mobile-drawer {
    overflow: hidden;
    max-height: 0;
    background: rgba(11, 43, 34, 0.98);
    backdrop-filter: blur(16px);
    transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-drawer.is-open { max-height: 700px; }
.mobile-drawer-inner {
    display: flex;
    flex-direction: column;
    padding: 12px 28px 28px;
    gap: 2px;
}
.mobile-nav-link {
    display: block;
    color: rgba(255,255,255,0.85);
    font-weight: 600;
    font-size: 16px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    transition: color 0.2s, padding-left 0.2s;
}
.mobile-nav-link:hover, .mobile-nav-link.is-active { color: var(--yellow); padding-left: 10px; }
.btn-donate-mobile {
    display: inline-flex;
    align-items: center;
    background: var(--yellow);
    color: var(--green);
    font-weight: 700;
    font-size: 15px;
    padding: 13px 28px;
    border-radius: var(--radius-sm);
    margin-top: 16px;
    align-self: flex-start;
    transition: var(--trans);
}
.btn-donate-mobile:hover { background: var(--white); color: var(--green); }

/* ─── FLASH MESSAGES ───────────────────────────────────────────────────── */
.flash-msg {
    position: fixed; top: 90px; left: 50%; transform: translateX(-50%);
    z-index: 9000; padding: 14px 24px;
    border-radius: var(--radius-pill);
    font-weight: 600; font-size: 14px;
    display: flex; align-items: center; gap: 10px;
    box-shadow: var(--shadow-md);
    animation: slideDown 0.3s ease;
}
.flash-msg button { background: none; border: none; font-size: 18px; cursor: pointer; }
.flash-success { background: #d4edda; color: #1a5e2a; border: 1px solid #b8dac2; }
.flash-danger  { background: #f8d7da; color: #7b1f24; border: 1px solid #f0b8bb; }
@keyframes slideDown { from { opacity: 0; transform: translateX(-50%) translateY(-12px); } to { opacity: 1; transform: translateX(-50%) translateY(0); } }

/* ─── HERO SECTION ─────────────────────────────────────────────────────── */
.aasha-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #005390;
    overflow: hidden;
}

/* 5 NGO Background Slides */
.hero-slides-wrapper {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.06);
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), transform 6s cubic-bezier(0.25, 1, 0.5, 1);
}
.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

/* Hero Controls */
.hero-slider-controls {
    position: absolute;
    bottom: 30px;
    right: 40px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(11, 43, 34, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 10px 18px;
    border-radius: var(--radius-pill);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}
.hero-control-btn {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: var(--trans);
}
.hero-control-btn:hover {
    background: var(--yellow);
    color: var(--green);
    border-color: var(--yellow);
    transform: scale(1.1);
}
.hero-slider-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}
.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: all 0.3s ease;
}
.hero-dot.active {
    width: 26px;
    border-radius: 12px;
    background: var(--yellow);
    box-shadow: 0 0 10px rgba(232, 197, 71, 0.6);
}

/* Blue logo overlay — strong left, fades to right */
.hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(
        100deg,
        rgba(0, 50, 90, 0.92) 0%,
        rgba(0, 50, 90, 0.78) 35%,
        rgba(0, 50, 90, 0.50) 65%,
        rgba(0, 50, 90, 0.22) 100%
    );
}

/* Hero content sits above overlay */
.hero-body {
    position: relative; z-index: 2;
    display: flex;
    flex-direction: column;
    flex: 1;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--pad-x);
    width: 100%;
    /* Push content down — top area is transparent for hero image visibility */
    padding-top: 180px;
    padding-bottom: 80px;
    min-height: 100vh;
}

/* Badge row */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.14);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: var(--radius-pill);
    padding: 6px 18px 6px 8px;
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-body);
    width: fit-content;
    margin-bottom: 28px;
}
.hero-avatars { display: flex; }
.hero-avatars img {
    width: 30px; height: 30px;
    border-radius: 50%;
    border: 2px solid var(--white);
    margin-left: -8px;
    object-fit: cover;
}
.hero-avatars img:first-child { margin-left: 0; }

/* Main heading */
.hero-title {
    font-family: var(--font-head);
    font-size: clamp(40px, 5.5vw, 72px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.08;
    letter-spacing: -2px;
    margin-bottom: 0;
    max-width: 680px;
}

/* Bottom row: desc+CTA left | glass box right */
.hero-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-top: auto;
    padding-top: 60px;
}
.hero-bottom-left { max-width: 520px; }

.hero-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.82);
    line-height: 1.72;
    margin-bottom: 32px;
    font-family: var(--font-body);
}

/* Yellow CTA */
.btn-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--yellow);
    color: var(--green);
    font-weight: 700;
    font-size: 15px;
    padding: 14px 30px;
    border-radius: var(--radius-sm);
    border: 2px solid var(--yellow);
    font-family: var(--font-body);
    transition: var(--trans);
}
.btn-hero-cta:hover { background: var(--white); color: var(--green); border-color: var(--white); transform: translateY(-2px); }

/* Glass counter card */
.hero-glass-card {
    flex-shrink: 0;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border: 1px solid rgba(255,255,255,0.20);
    border-radius: var(--radius-lg);
    padding: 32px 30px;
    min-width: 280px;
    color: var(--white);
    box-shadow: 0 20px 60px rgba(0,0,0,0.28);
}
.glass-count {
    font-family: var(--font-head);
    font-size: 56px;
    font-weight: 900;
    color: var(--yellow);
    line-height: 1;
    margin-bottom: 6px;
}
.glass-label {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}
.glass-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.70);
    line-height: 1.6;
    margin: 0;
}

/* ─── TICKER BAR ───────────────────────────────────────────────────────── */
/* YELLOW background with dark green text — exactly as in screenshot */
.ticker-bar {
    background: var(--yellow);
    padding: 16px 0;
    overflow: hidden;
    white-space: nowrap;
}
.ticker-track {
    display: inline-flex;
    gap: 0;
    animation: ticker 30s linear infinite;
}
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 0 24px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    color: var(--green);
}
.ticker-item i { color: var(--green); font-size: 10px; }

/* ─── ABOUT SECTION ────────────────────────────────────────────────────── */
.about-section { background: var(--off-white); padding: 100px 0; }

/* Left image cluster */
.about-img-cluster {
    position: relative;
    height: 520px;
}
.about-img-main {
    position: absolute;
    top: 0; left: 0;
    width: 68%;
    height: 400px;
    object-fit: cover;
    border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%; /* oval/circle clip */
    border-radius: 200px 200px 200px 200px;
}
.about-img-secondary {
    position: absolute;
    bottom: 0; right: 0;
    width: 58%;
    height: 320px;
    object-fit: cover;
    border-radius: 200px;
}
.about-img-badge {
    position: absolute;
    bottom: 40px; left: 30px;
    background: var(--yellow);
    color: var(--green);
    border-radius: var(--radius-md);
    padding: 18px 22px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(232,197,71,0.4);
    z-index: 10;
    min-width: 120px;
}
.about-badge-number {
    font-family: var(--font-head);
    font-size: 38px;
    font-weight: 900;
    line-height: 1;
    color: var(--green);
    display: block;
}
.about-badge-label {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--green);
    display: block;
    margin-top: 4px;
}
.about-img-text {
    position: absolute;
    bottom: 40px;
    left: 165px;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    font-family: var(--font-head);
    font-size: 17px;
    font-weight: 800;
    color: var(--green);
    line-height: 1.3;
    box-shadow: var(--shadow);
    z-index: 10;
}

/* Right text content */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-pill);
    padding: 6px 16px 6px 10px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--green);
    margin-bottom: 20px;
}
.section-tag::before {
    content: '';
    width: 8px; height: 8px;
    background: var(--yellow);
    border-radius: 50%;
    flex-shrink: 0;
}
.section-heading {
    font-family: var(--font-head);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    color: var(--green);
    line-height: 1.15;
    margin-bottom: 18px;
}
.section-body {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text);
    line-height: 1.78;
    margin-bottom: 28px;
}

/* Feature item in about */
.about-feature {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 22px 20px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: var(--trans);
}
.about-feature:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.about-feature-icon {
    width: 48px; height: 48px;
    background: rgba(232,197,71,0.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    color: var(--yellow-dark);
    margin-bottom: 12px;
}
.about-feature-title { font-family: var(--font-body); font-size: 16px; font-weight: 700; color: var(--green); margin-bottom: 4px; }
.about-feature-check {
    display: flex; align-items: flex-start; gap: 8px;
    font-size: 14px; color: var(--text);
}
.about-feature-check i { color: var(--yellow-dark); font-size: 13px; margin-top: 3px; flex-shrink: 0; }

/* About right image */
.about-right-img {
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 200px;
    margin-left: 16px;
}
.about-right-img img { width: 100%; height: 100%; object-fit: cover; }

/* ─── PRIMARY BUTTONS ──────────────────────────────────────────────────── */
.btn-primary-green {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--yellow);
    color: var(--green);
    font-weight: 700; font-size: 15px;
    padding: 14px 30px;
    border-radius: var(--radius-sm);
    border: 2px solid var(--yellow);
    font-family: var(--font-body);
    transition: var(--trans);
}
.btn-primary-green:hover { background: var(--green); color: var(--white); border-color: var(--green); transform: translateY(-2px); }

.btn-outline-green {
    display: inline-flex; align-items: center; gap: 10px;
    background: transparent;
    color: var(--green);
    font-weight: 700; font-size: 15px;
    padding: 14px 30px;
    border-radius: var(--radius-sm);
    border: 2px solid var(--green);
    font-family: var(--font-body);
    transition: var(--trans);
}
.btn-outline-green:hover { background: var(--green); color: var(--white); }

.btn-text-play {
    display: inline-flex; align-items: center; gap: 12px;
    font-weight: 700; font-size: 15px;
    color: var(--green);
    font-family: var(--font-body);
    transition: var(--trans);
}
.btn-play-icon {
    width: 44px; height: 44px;
    background: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--green);
    font-size: 16px;
    box-shadow: var(--shadow);
    transition: var(--trans);
}
.btn-text-play:hover .btn-play-icon { background: var(--yellow); }

/* ─── SERVICES SECTION ─────────────────────────────────────────────────── */
.services-section { background: var(--off-white); padding: 100px 0; }
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: var(--trans);
    height: 100%;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-icon {
    width: 62px; height: 62px;
    background: rgba(232,197,71,0.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px;
    color: var(--yellow-dark);
    margin-bottom: 20px;
    transition: var(--trans);
}
.service-card:hover .service-icon { background: var(--yellow); color: var(--green); }
.service-title { font-family: var(--font-head); font-size: 22px; font-weight: 800; color: var(--green); margin-bottom: 12px; }
.service-desc { font-family: var(--font-body); font-size: 14px; color: var(--text); line-height: 1.75; margin-bottom: 20px; }
.service-link { font-family: var(--font-body); font-size: 14px; font-weight: 700; color: var(--yellow-dark); display: inline-flex; align-items: center; gap: 6px; }
.service-link:hover { color: var(--green); gap: 10px; }

/* ─── PROJECTS / CAUSES SECTION ────────────────────────────────────────── */
.causes-section { background: var(--white); padding: 100px 0; }
.cause-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: var(--trans);
    height: 100%;
}
.cause-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.cause-img-wrap { height: 220px; overflow: hidden; }
.cause-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.cause-card:hover .cause-img-wrap img { transform: scale(1.06); }
.cause-body { padding: 28px; }
.cause-tag {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(232,197,71,0.15);
    color: var(--yellow-dark);
    font-family: var(--font-body);
    font-size: 12px; font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    margin-bottom: 12px;
}
.cause-title { font-family: var(--font-head); font-size: 20px; font-weight: 800; color: var(--green); margin-bottom: 10px; line-height: 1.25; }
.cause-desc { font-family: var(--font-body); font-size: 14px; color: var(--text); line-height: 1.72; margin-bottom: 16px; }
.cause-progress-wrap { margin-bottom: 10px; }
.cause-progress-bg { background: #eee; height: 7px; border-radius: var(--radius-pill); overflow: hidden; }
.cause-progress-fill { height: 100%; border-radius: var(--radius-pill); background: linear-gradient(90deg, var(--green) 0%, var(--yellow) 100%); }
.cause-stats { display: flex; justify-content: space-between; font-family: var(--font-body); font-size: 13px; font-weight: 600; color: var(--text); }
.cause-stats .raised { color: var(--green); }

/* ─── EVENTS SECTION ───────────────────────────────────────────────────── */
.events-section { background: var(--off-white); padding: 100px 0; }
.event-item {
    display: flex; align-items: center; gap: 22px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: var(--trans);
}
.event-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.event-date {
    background: var(--yellow);
    color: var(--green);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    text-align: center;
    min-width: 76px;
    flex-shrink: 0;
    box-shadow: 0 6px 18px rgba(232,197,71,0.35);
}
.event-day { font-family: var(--font-head); font-size: 30px; font-weight: 900; line-height: 1; display: block; }
.event-month { font-family: var(--font-body); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; display: block; margin-top: 2px; }
.event-info-title { font-family: var(--font-head); font-size: 18px; font-weight: 800; color: var(--green); margin-bottom: 6px; }
.event-location { font-family: var(--font-body); font-size: 13px; color: var(--text); margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
.event-location i { color: var(--yellow-dark); }
.event-reg-link { font-family: var(--font-body); font-size: 13px; font-weight: 700; color: var(--green); text-decoration: underline; text-underline-offset: 3px; }
.event-reg-link:hover { color: var(--yellow-dark); }

/* ─── STATS STRIP ──────────────────────────────────────────────────────── */
.stats-strip { background: var(--green); padding: 70px 0; }
.stat-item { text-align: center; }
.stat-number {
    font-family: var(--font-head);
    font-size: clamp(40px, 5vw, 60px);
    font-weight: 900;
    color: var(--yellow);
    line-height: 1;
    display: block;
    margin-bottom: 8px;
}
.stat-label {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.70);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
.stat-divider { width: 1px; background: rgba(255,255,255,0.12); align-self: stretch; margin: 0 20px; }

/* ─── TESTIMONIALS ─────────────────────────────────────────────────────── */
.testimonials-section { background: var(--green); padding: 100px 0; }
.testi-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: var(--trans);
    height: 100%;
}
.testi-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-4px); }
.testi-stars { color: var(--yellow); font-size: 17px; letter-spacing: 3px; margin-bottom: 16px; }
.testi-text { font-family: var(--font-body); font-size: 15px; color: rgba(255,255,255,0.80); line-height: 1.78; font-style: italic; margin-bottom: 24px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 2.5px solid var(--yellow); }
.testi-name { font-family: var(--font-body); font-size: 15px; font-weight: 700; color: var(--white); display: block; margin-bottom: 2px; }
.testi-role { font-family: var(--font-body); font-size: 13px; color: rgba(255,255,255,0.55); }

/* ─── CTA DONATE SECTION ───────────────────────────────────────────────── */
.cta-section { background: var(--off-white); padding: 80px 0; }
.cta-inner {
    background: linear-gradient(130deg, var(--green) 0%, #1a5c42 100%);
    border-radius: 24px;
    padding: 70px 60px;
    position: relative; overflow: hidden;
}
.cta-inner::after {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 300px; height: 300px;
    background: rgba(232,197,71,0.07);
    border-radius: 50%;
}
.cta-tag { color: var(--yellow); font-family: var(--font-body); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px; display: block; }
.cta-heading { font-family: var(--font-head); font-size: clamp(28px, 4vw, 44px); color: var(--white); font-weight: 900; margin-bottom: 14px; }
.cta-body { font-family: var(--font-body); font-size: 15px; color: rgba(255,255,255,0.72); line-height: 1.72; }
.btn-outline-white {
    display: inline-flex; align-items: center; gap: 10px;
    background: transparent; color: var(--white);
    font-weight: 700; font-size: 15px;
    padding: 14px 30px;
    border-radius: var(--radius-sm);
    border: 2px solid rgba(255,255,255,0.45);
    font-family: var(--font-body);
    transition: var(--trans);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: var(--white); color: var(--white); }

/* ─── FOOTER ───────────────────────────────────────────────────────────── */
.site-footer { background: var(--green); color: rgba(255,255,255,0.75); padding: 80px 0 30px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-about { font-family: var(--font-body); font-size: 14px; line-height: 1.78; color: rgba(255,255,255,0.65); margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.footer-social a {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    line-height: 1;
    text-decoration: none;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-social a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}
.footer-social a[aria-label="Facebook"]:hover { background: #1877F2; color: #ffffff; }
.footer-social a[aria-label*="Twitter"]:hover,
.footer-social a[aria-label*="X"]:hover { background: #000000; color: #ffffff; }
.footer-social a[aria-label="Instagram"]:hover { background: #E4405F; color: #ffffff; }
.footer-social a[aria-label="LinkedIn"]:hover { background: #0A66C2; color: #ffffff; }
.footer-social a[aria-label="YouTube"]:hover { background: #FF0000; color: #ffffff; }
.footer-social a[aria-label="WhatsApp"]:hover { background: #25D366; color: #ffffff; }
.footer-heading { font-family: var(--font-body); font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 18px; }
.footer-link { display: block; font-family: var(--font-body); font-size: 14px; color: rgba(255,255,255,0.62); margin-bottom: 10px; transition: var(--trans); }
.footer-link:hover { color: var(--yellow); padding-left: 6px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-family: var(--font-body); font-size: 14px; color: rgba(255,255,255,0.65); margin-bottom: 12px; }
.footer-contact-item i { color: var(--yellow); font-size: 14px; margin-top: 3px; flex-shrink: 0; }
.footer-newsletter-input {
    width: 100%; border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.08);
    color: var(--white); padding: 12px 16px;
    font-family: var(--font-body); font-size: 14px;
    border-bottom: none;
}
.footer-newsletter-input::placeholder { color: rgba(255,255,255,0.45); }
.footer-newsletter-input:focus { outline: none; background: rgba(255,255,255,0.12); }
.footer-newsletter-btn {
    width: 100%; background: var(--yellow); color: var(--green);
    border: none; padding: 12px 16px;
    font-family: var(--font-body); font-weight: 700; font-size: 14px;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    transition: var(--trans);
}
.footer-newsletter-btn:hover { background: var(--white); }
.footer-divider { border-color: rgba(255,255,255,0.10); margin: 40px 0 20px; }
.footer-copy { font-family: var(--font-body); font-size: 13px; color: rgba(255,255,255,0.45); text-align: center; }

/* ─── COOKIE BAR ───────────────────────────────────────────────────────── */
.cookie-bar {
    display: none;
    position: fixed; bottom: 0; left: 0; right: 0;
    background: #1a1a1a; color: rgba(255,255,255,0.85);
    padding: 18px 0;
    z-index: 9000;
    border-top: 3px solid var(--yellow);
}
.cookie-bar-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x); display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.cookie-bar p { font-family: var(--font-body); font-size: 14px; margin: 0; }
.cookie-accept-btn { background: var(--yellow); color: var(--green); border: none; padding: 10px 24px; border-radius: var(--radius-pill); font-weight: 700; font-size: 14px; font-family: var(--font-body); transition: var(--trans); }
.cookie-accept-btn:hover { background: var(--white); }

/* ─── SECTION SPACING UTILITY ──────────────────────────────────────────── */
.section-intro { text-align: center; max-width: 680px; margin: 0 auto 60px; }
.section-intro .section-tag { justify-content: center; }

/* ─── RESPONSIVE ───────────────────────────────────────────────────────── */
@media (max-width: 1199px) {
    :root { --pad-x: 30px; }
    .hero-title { font-size: 52px; }
}

@media (max-width: 991px) {
    :root { --pad-x: 24px; }
    /* Hide desktop nav, show hamburger */
    .desktop-nav { display: none; }
    .hamburger-btn { display: flex; }
    .btn-donate-header { display: none; } /* shown in mobile drawer instead */

    /* Hero adjustments */
    .hero-bottom { flex-direction: column; align-items: flex-start; gap: 28px; }
    .hero-glass-card { min-width: unset; width: 100%; max-width: 320px; }

    /* About image cluster simplify */
    .about-img-cluster { height: 360px; }
    .about-img-main { width: 60%; height: 280px; }
    .about-img-secondary { width: 55%; height: 220px; }

    .cta-inner { padding: 50px 36px; }
}

@media (max-width: 767px) {
    :root { --pad-x: 18px; }
    .top-bar-inner { flex-direction: column; gap: 6px; text-align: center; }
    .site-header { top: 60px; }

    .hero-title { font-size: 36px; letter-spacing: -1px; }
    .hero-body { padding-top: 150px; padding-bottom: 50px; }
    .hero-bottom { padding-top: 36px; }

    .about-img-cluster { height: 280px; margin-bottom: 30px; }
    .about-img-badge { left: 10px; bottom: 20px; }
    .about-img-text { left: 130px; }

    .cta-inner { padding: 40px 24px; text-align: center; }

    .stat-divider { display: none; }
    .stats-strip .row > [class*="col"] + [class*="col"] { border-top: 1px solid rgba(255,255,255,0.10); padding-top: 28px; margin-top: 28px; }
}

@media (max-width: 575px) {
    .hero-glass-card { max-width: 100%; }
    .glass-count { font-size: 44px; }
    .section-heading { font-size: 28px; }
    .cta-heading { font-size: 26px; }
    .about-img-cluster { display: none; }
    .hero-badge { font-size: 12px; }
}

/* ─── UTILITY ──────────────────────────────────────────────────────────── */
/* ─── CARD COMPONENTS & ALIGNMENT ──────────────────────────────────────── */
.aasha-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--trans);
}
.aasha-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.aasha-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
    transition: transform 0.4s ease;
}
.aasha-card:hover .aasha-card-img {
    transform: scale(1.04);
}
.aasha-card-body {
    padding: 26px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
    text-align: left;
}
.aasha-card-category {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    color: var(--yellow-dark);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 8px;
}
.aasha-card-title {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 800;
    color: var(--green);
    line-height: 1.35;
    margin-top: 0;
    margin-bottom: 10px;
    padding: 0;
    word-break: break-word;
}
.aasha-card-desc {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text);
    line-height: 1.65;
    margin-bottom: 16px;
}

.progress-bar-container { background: #e8e8e8; height: 7px; border-radius: var(--radius-pill); overflow: hidden; margin: 14px 0 8px; }
.progress-bar-fill { height: 100%; border-radius: var(--radius-pill); background: linear-gradient(90deg, var(--green) 0%, var(--yellow) 100%); }
.btn-aasha-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--yellow); color: var(--green); font-weight: 700; font-size: 14px; padding: 13px 26px; border-radius: var(--radius-sm); border: 2px solid var(--yellow); font-family: var(--font-body); transition: var(--trans); }
.btn-aasha-primary:hover { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-aasha-outline { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--green); font-weight: 700; font-size: 14px; padding: 13px 26px; border-radius: var(--radius-sm); border: 2px solid var(--border); font-family: var(--font-body); transition: var(--trans); }
.btn-aasha-outline:hover { background: var(--green); color: var(--white); border-color: var(--green); }
.counter-number { display: inline-block; }

/* ─── PAGE HEADER BANNER (ROOM BETWEEN MENU AND PAGE TITLE) ───────────── */
.page-header-banner {
    background: var(--green);
    color: var(--white);
    padding-top: 185px !important;  /* Ample room between fixed header menu and page title */
    padding-bottom: 75px !important;
    position: relative;
    overflow: hidden;
}
.page-header-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 85% 25%, rgba(232, 197, 71, 0.16) 0%, transparent 65%);
    pointer-events: none;
}
.page-header-banner .display-4,
.page-header-banner h1 {
    font-family: var(--font-head);
    font-weight: 900;
    margin-bottom: 12px;
    letter-spacing: -1px;
}
.page-header-banner p.lead {
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.65;
}

/* Standalone pages (Login, Register) top spacing */
.page-header-spacer {
    padding-top: 175px !important;
    padding-bottom: 80px !important;
}

/* News Section Spacing */
.news-page-section {
    padding-top: 70px !important;
    padding-bottom: 90px !important;
}
.news-card-wrapper {
    margin-bottom: 30px;
}

/* ─── STANDALONE AUTH CONSOLE STYLES ──────────────────────────────────── */
.auth-page-bg {
    position: relative;
    background: #003f6e;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    font-family: var(--font-body);
    overflow: hidden;
}

/* 3-Image Sliding/Fading Background */
.auth-bg-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
.auth-bg-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 1.8s ease-in-out, transform 6s ease-out;
    z-index: 0;
}
.auth-bg-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.auth-page-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 50, 90, 0.88) 0%,
        rgba(0, 65, 115, 0.78) 50%,
        rgba(0, 50, 90, 0.90) 100%
    );
    z-index: 1;
}

.auth-console-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}

.auth-console-header .logo-text {
    color: var(--white) !important;
}

.auth-card {
    border-radius: 20px !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3) !important;
}

.auth-icon-badge {
    width: 60px;
    height: 60px;
    background: rgba(232, 197, 71, 0.15);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--yellow-dark);
}

.text-green {
    color: var(--green);
}

/* ─── GALLERY INTERACTIVE LIGHTBOX & CAROUSEL ───────────────────────────── */
.gallery-item-card {
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.gallery-img {
    transition: transform 0.4s ease;
}

.gallery-item-card:hover .gallery-img {
    transform: scale(1.08);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 50, 90, 0.88) 0%, rgba(0, 50, 90, 0.2) 60%, rgba(0, 0, 0, 0) 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 2;
}

.gallery-item-card:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-zoom-icon {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.6);
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
}

.gallery-item-card:hover .gallery-zoom-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

#galleryLightboxModal .carousel-item img {
    border: 2px solid rgba(255, 255, 255, 0.15);
}


