/* =============================================
   UMEED BHARAT FOUNDATION — RESPONSIVE CSS
   One HTML, one CSS, mobile + desktop
   ============================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --green: #1B6B45;
    --green-light: #27A760;
    --green-bg: #E8F5EE;
    --orange: #F26C1D;
    --yellow: #F5A623;
    --blue: #1565C0;
    --purple: #7B1FA2;
    --red: #C62828;
    --teal: #00796B;
    --text: #1A1A2E;
    --muted: #6B7280;
    --border: #E5E7EB;
    --bg: #F8FAF9;
    --white: #fff;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.14);
    --r: 14px;
    --r-sm: 8px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

::selection {
    background: var(--green);
    color: white;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-thumb {
    background: var(--green-light);
    border-radius: 4px;
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 16px;
}

/* =============================================
   TOP BAR  — hidden on mobile, shown on desktop
   ============================================= */
.top-bar {
    display: none;
}

/* =============================================
   HEADER / NAVBAR
   ============================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 900;
    background: var(--white);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.nav-bar {
    padding: 10px 0;
}

.nav-inner {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* hamburger — visible mobile only */
.hamburger {
    background: none;
    border: none;
    font-size: 22px;
    color: var(--green);
    cursor: pointer;
    padding: 6px;
    flex-shrink: 0;
}

/* logo */
.logo-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.logo-img {
    width: 80px;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.logo-title {
    font-size: 14px;
    font-weight: 800;
    color: var(--green);
}

.logo-sub {
    font-size: 9px;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: 1.5px;
}

.logo-tag {
    font-size: 8px;
    color: var(--muted);
}

/* desktop nav links — hidden mobile */
.desktop-nav {
    display: none;
}

/* right side */
.header-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.notif-btn {
    position: relative;
    background: none;
    border: none;
    font-size: 20px;
    color: var(--text);
    cursor: pointer;
}

.badge {
    position: absolute;
    top: -4px;
    right: -6px;
    background: var(--orange);
    color: white;
    font-size: 8px;
    font-weight: 700;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--green);
}

.btn-donate-nav {
    display: flex;
    align-items: center;
    gap: 7px;
    background: var(--green);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    transition: background .2s;
}

.btn-donate-nav:hover {
    background: var(--green-light);
}

/* Login & Register nav buttons — hidden on mobile, shown desktop */
.btn-login-nav,
.btn-register-nav {
    display: none;
}

/* hidden mobile */

/* =============================================
   DRAWER
   ============================================= */
.drawer {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100vh;
    background: white;
    z-index: 1100;
    transition: left .3s ease;
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
}

.drawer.open {
    left: 0;
}

.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 1099;
    display: none;
}

.drawer-overlay.show {
    display: block;
}

.drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 16px;
    background: var(--green);
}

.drawer-head img {
    width: 46px;
    object-fit: contain;
}

.drawer-head button {
    background: none;
    border: none;
    color: white;
    font-size: 22px;
    cursor: pointer;
}

.drawer-links {
    padding: 8px 0;
}

.drawer-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 22px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    transition: background .2s;
}

.drawer-links a i {
    color: var(--green);
    width: 18px;
}

.drawer-links a:hover {
    background: var(--green-bg);
}

.drawer-donate {
    background: var(--green) !important;
    color: white !important;
    margin: 16px;
    border-radius: 30px;
    justify-content: center;
    border: none !important;
}

.drawer-donate i {
    color: white !important;
}

/* Drawer auth buttons */
.drawer-auth-btns {
    display: flex;
    gap: 10px;
    padding: 4px 16px 20px;
}

.drawer-login-btn,
.drawer-register-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 12px 10px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    transition: all .2s;
}

.drawer-login-btn {
    background: var(--green-bg);
    color: var(--green);
    border: 2px solid var(--green);
}

.drawer-login-btn:hover {
    background: var(--green);
    color: white;
}

.drawer-register-btn {
    background: var(--green);
    color: white;
    border: 2px solid var(--green);
}

.drawer-register-btn:hover {
    background: var(--green-light);
    border-color: var(--green-light);
}

/* =============================================
   HERO SLIDER
   ============================================= */
.hero-slider {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity .6s ease;
}

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, .65) 40%, rgba(0, 0, 0, .15));
}

.slide-content {
    position: relative;
    z-index: 2;
    padding: 50px 20px 0;
    max-width: 480px;
}

.slide-content h1 {
    font-size: 24px;
    font-weight: 800;
    color: white;
    line-height: 1.3;
    margin-bottom: 8px;
}

.slide-content h1 span {
    color: var(--yellow);
}

.slide-content p {
    font-size: 13px;
    color: rgba(255, 255, 255, .85);
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green);
    color: white;
    padding: 11px 22px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    transition: background .2s;
}

.btn-hero:hover {
    background: var(--green-light);
}

.slider-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 3;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .5);
    cursor: pointer;
    transition: all .3s;
}

.dot.active {
    background: white;
    width: 22px;
    border-radius: 4px;
}

.slider-arrow {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(255, 255, 255, .2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: background .2s;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, .35);
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

/* =============================================
   QUICK CATEGORIES
   ============================================= */
.quick-cats {
    background: white;
    padding: 20px 0;
    box-shadow: var(--shadow);
}

.cats-grid {
    display: flex;
    justify-content: space-between;
    gap: 6px;
    overflow-x: auto;
}

.cats-grid::-webkit-scrollbar {
    display: none;
}

.cat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 58px;
    cursor: pointer;
}

.cat-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: transform .2s;
}

.cat-icon:hover {
    transform: scale(1.08);
}

.cat-item span {
    font-size: 10px;
    font-weight: 500;
    text-align: center;
    color: var(--text);
    line-height: 1.3;
}

.cat-icon.green {
    background: #E8F5EE;
    color: var(--green);
}

.cat-icon.blue {
    background: #E3F2FD;
    color: var(--blue);
}

.cat-icon.red {
    background: #FFEBEE;
    color: var(--red);
}

.cat-icon.orange {
    background: #FFF3E0;
    color: var(--orange);
}

.cat-icon.teal {
    background: #E0F2F1;
    color: var(--teal);
}

.cat-icon.yellow {
    background: #FFFDE7;
    color: var(--yellow);
}

.cat-icon.purple {
    background: #F3E5F5;
    color: var(--purple);
}

/* =============================================
   SECTION UTILITIES
   ============================================= */
.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.section-head h2 {
    font-size: 17px;
    font-weight: 700;
}

.view-all {
    font-size: 13px;
    color: var(--green);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

.section-title-center {
    text-align: center;
    margin-bottom: 36px;
}

.section-title-center h2 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 10px;
}

.section-title-center p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
    max-width: 500px;
    margin: 0 auto;
}

.tag-label {
    display: inline-block;
    background: var(--green-bg);
    color: var(--green);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* =============================================
   IMPACT SECTION
   ============================================= */
.impact-section {
    background: white;
    padding: 24px 0;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.impact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px 6px;
    border-radius: var(--r-sm);
    background: var(--bg);
}

.impact-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.impact-icon.orange {
    background: #FFF3E0;
    color: var(--orange);
}

.impact-icon.blue {
    background: #E3F2FD;
    color: var(--blue);
}

.impact-icon.red {
    background: #FFEBEE;
    color: var(--red);
}

.impact-icon.yellow {
    background: #FFFDE7;
    color: var(--yellow);
}

.impact-icon.teal {
    background: #E0F2F1;
    color: var(--teal);
}

.impact-num {
    font-size: 13px;
    font-weight: 800;
    color: var(--text);
}

.impact-label {
    font-size: 9px;
    color: var(--muted);
    text-align: center;
    line-height: 1.4;
}

/* =============================================
   DONATE BANNER
   ============================================= */
.donate-banner {
    padding: 32px 0;
    background: linear-gradient(135deg, #E8F5EE 0%, #C8E6C9 100%);
}

.donate-inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.donate-img img {
    width: 100%;
    max-height: 260px;
    object-fit: cover;
    border-radius: var(--r);
}

.donate-content h2 {
    font-size: 22px;
    font-weight: 800;
    margin: 10px 0 8px;
    line-height: 1.35;
}

.donate-content h2 span {
    color: var(--green);
}

.donate-content>p {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 16px;
    line-height: 1.6;
}

.amount-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.amt-btn {
    padding: 8px 18px;
    border-radius: 30px;
    border: 2px solid var(--border);
    background: white;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    color: var(--text);
    transition: all .2s;
    font-family: 'Poppins', sans-serif;
}

.amt-btn.active,
.amt-btn:hover {
    border-color: var(--green);
    background: var(--green);
    color: white;
}

.custom-amount {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid var(--border);
    border-radius: var(--r-sm);
    font-size: 14px;
    margin-bottom: 12px;
    outline: none;
    font-family: 'Poppins', sans-serif;
    transition: border-color .2s;
}

.custom-amount:focus {
    border-color: var(--green);
}

.btn-donate-big {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--green);
    color: white;
    padding: 14px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
    transition: background .2s;
}

.btn-donate-big:hover {
    background: var(--green-light);
}

.secure-note {
    font-size: 12px;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.secure-note i {
    color: var(--green);
}

/* =============================================
   CAUSES / OUR WORK
   ============================================= */
.causes-section {
    padding: 40px 0;
    background: var(--bg);
}

.causes-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.cause-card {
    background: white;
    border-radius: var(--r);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform .3s, box-shadow .3s;
}

.cause-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.cause-img {
    position: relative;
    overflow: hidden;
}

.cause-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform .4s;
}

.cause-card:hover .cause-img img {
    transform: scale(1.05);
}

.cause-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--green);
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 12px;
    border-radius: 20px;
}

.cause-body {
    padding: 18px;
}

.cause-body h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}

.cause-body p {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 14px;
    line-height: 1.6;
}

.progress-wrap {
    margin-bottom: 14px;
}

.progress-bar {
    height: 6px;
    background: var(--border);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 5px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--green-light), var(--green));
    border-radius: 4px;
}

.progress-labels {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: var(--muted);
}

.btn-cause {
    display: inline-block;
    background: var(--green);
    color: white;
    padding: 9px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    transition: background .2s;
}

.btn-cause:hover {
    background: var(--green-light);
}

/* =============================================
   ACTIVITIES
   ============================================= */
.activities-section {
    background: white;
    padding: 24px 0;
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: var(--bg);
    border-radius: var(--r-sm);
}

.act-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.act-avatar.blue {
    background: #E3F2FD;
    color: var(--blue);
}

.act-avatar.purple {
    background: #F3E5F5;
    color: var(--purple);
}

.act-avatar.orange {
    background: #FFF3E0;
    color: var(--orange);
}

.act-avatar.teal {
    background: #E0F2F1;
    color: var(--teal);
}

.act-info {
    flex: 1;
}

.act-info strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
}

.act-info span {
    font-size: 11px;
    color: var(--muted);
}

.act-time {
    font-size: 10px;
    color: var(--muted);
    white-space: nowrap;
}

/* =============================================
   TEAM
   ============================================= */
.team-section {
    padding: 50px 0;
    background: var(--bg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.team-card {
    background: white;
    border-radius: var(--r);
    padding: 22px 16px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform .3s, box-shadow .3s;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.team-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--green-light);
    margin: 0 auto 12px;
}

.team-card h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 3px;
}

.team-card span {
    font-size: 12px;
    color: var(--muted);
    display: block;
    margin-bottom: 12px;
}

.team-socials {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.team-socials a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--green-bg);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all .2s;
}

.team-socials a:hover {
    background: var(--green);
    color: white;
}

/* =============================================
   GALLERY
   ============================================= */
.gallery-section {
    padding: 50px 0;
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.g-item {
    border-radius: var(--r-sm);
    overflow: hidden;
    cursor: pointer;
}

.g-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform .4s;
    display: block;
}

.g-item:hover img {
    transform: scale(1.06);
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-section {
    padding: 50px 0;
    background: var(--green-bg);
}

.testimonials-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
}

.testimonials-grid::-webkit-scrollbar {
    display: none;
}

.t-card {
      max-width: 100%;
    background: white;
    border-radius: var(--r);
    padding: 22px;
    box-shadow: var(--shadow);
    scroll-snap-align: start;
    flex-shrink: 0;
}

.t-card.featured {
    background: var(--green);
}

.t-card.featured p,
.t-card.featured .t-author strong,
.t-card.featured .t-stars {
    color: white;
}

.t-card.featured .t-author span,
.t-card.featured .t-quote i {
    color: rgba(255, 255, 255, .7);
}

.t-quote {
    margin-bottom: 12px;
}

.t-quote i {
    font-size: 24px;
    color: var(--green-light);
}

.t-card p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 16px;
}

.t-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.t-author img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.t-author strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
}

.t-author span {
    font-size: 11px;
    color: var(--muted);
}

.t-stars {
    color: var(--yellow);
    font-size: 12px;
}

/* =============================================
   FOOTER — REDESIGNED
   Theme: Deep green + orange accents (logo match)
   ============================================= */

.site-footer {
    background: #0a2416;
    position: relative;
}

/* Wave top divider */
.footer-wave {
    line-height: 0;
    margin-bottom: -2px;
}
.footer-wave svg {
    display: block;
    width: 100%;
    height: 50px;
}

/* ---- BRAND STRIP ---- */
.footer-brand-strip {
    background: linear-gradient(135deg, #0f3320 0%, #163d27 100%);
    border-bottom: 1px solid rgba(255,255,255,.07);
    padding: 22px 0;
}
.footer-brand-inner {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
}
.footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.footer-brand-logo img {
    width: 54px;
    height: 54px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(242,108,29,.3));
}
.fbrand-title {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
}
.fbrand-sub {
    display: block;
    font-size: 9px;
    font-weight: 700;
    color: #F5A623;
    letter-spacing: 2.5px;
    margin-top: 1px;
}
.fbrand-tag {
    display: block;
    font-size: 10px;
    color: rgba(255,255,255,.5);
    margin-top: 3px;
    font-style: italic;
}
.footer-brand-socials {
    display: flex;
    gap: 10px;
}
.footer-brand-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all .25s;
}
.footer-brand-socials a:hover {
    background: #F26C1D;
    border-color: #F26C1D;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(242,108,29,.35);
}

/* ---- STATS BAR ---- */
.footer-stats-bar {
    background: linear-gradient(90deg, #1B6B45 0%, #27A760 50%, #1B6B45 100%);
    padding: 18px 0;
}
.footer-stats-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    row-gap: 14px;
}
.fstat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 0 20px;
    text-align: center;
}
.fstat i {
    font-size: 18px;
    color: #F5A623;
    margin-bottom: 3px;
}
.fstat strong {
    font-size: 18px;
    font-weight: 800;
    color: white;
    line-height: 1;
}
.fstat span {
    font-size: 10px;
    color: rgba(255,255,255,.75);
    font-weight: 500;
}
.fstat-div {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,.25);
    flex-shrink: 0;
}

/* ---- MAIN FOOTER GRID ---- */
.footer-main {
    padding: 40px 0 32px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

/* col headings */
.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    color: #F5A623;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,.1);
    display: flex;
    align-items: center;
    gap: 7px;
}
.footer-col h4 i {
    font-size: 13px;
    color: #F5A623;
}

/* About col */
.about-col p {
    font-size: 13px;
    color: rgba(255,255,255,.55);
    line-height: 1.85;
    margin-bottom: 18px;
}
.footer-donate-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #F26C1D, #F5A623);
    color: white;
    padding: 11px 22px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    transition: all .25s;
    box-shadow: 0 4px 16px rgba(242,108,29,.35);
}
.footer-donate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(242,108,29,.45);
}
.footer-donate-btn i {
    animation: heartbeat 1.4s ease infinite;
}
@keyframes heartbeat {
    0%,100% { transform: scale(1); }
    50%      { transform: scale(1.25); }
}

/* Link lists */
.footer-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.footer-list a {
    font-size: 13px;
    color: rgba(255,255,255,.55);
    display: flex;
    align-items: center;
    gap: 7px;
    transition: all .2s;
    padding: 1px 0;
}
.footer-list a i {
    font-size: 9px;
    color: #27A760;
    transition: transform .2s;
}
.footer-list a:hover {
    color: #fff;
    padding-left: 4px;
}
.footer-list a:hover i {
    transform: translateX(2px);
    color: #F5A623;
}

/* Contact list */
.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 18px;
}
.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: rgba(255,255,255,.55);
    line-height: 1.5;
}
.footer-contact-list li a {
    color: rgba(255,255,255,.55);
    transition: color .2s;
}
.footer-contact-list li a:hover { color: #F5A623; }
.fc-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: rgba(39,167,96,.18);
    border: 1px solid rgba(39,167,96,.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}
.fc-icon i {
    font-size: 12px;
    color: #27A760;
}

/* Newsletter */
.newsletter-box {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 12px;
    padding: 14px;
}
.nl-label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,.7);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.nl-label i { color: #F5A623; }
.nl-input-row {
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.15);
}
.nl-input-row input {
    flex: 1;
    padding: 11px 12px;
    background: rgba(255,255,255,.08);
    border: none;
    color: white;
    font-size: 13px;
    outline: none;
    font-family: 'Poppins', sans-serif;
}
.nl-input-row input::placeholder { color: rgba(255,255,255,.35); }
.nl-input-row button {
    background: linear-gradient(135deg, #1B6B45, #27A760);
    color: white;
    border: none;
    padding: 11px 16px;
    cursor: pointer;
    font-size: 14px;
    transition: background .2s;
    font-family: 'Poppins', sans-serif;
}
.nl-input-row button:hover { background: #F26C1D; }

/* ---- FOOTER BOTTOM ---- */
.footer-bottom {
    background: rgba(0,0,0,.4);
    padding: 16px 0;
    border-top: 1px solid rgba(255,255,255,.06);
}
.footer-bottom-inner {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    text-align: center;
}
.footer-bottom p {
    font-size: 12px;
    color: rgba(255,255,255,.35);
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
    justify-content: center;
}
.footer-bottom p span { color: rgba(255,255,255,.6); font-weight: 600; }
.footer-bottom p i { color: #e53935; font-size: 11px; }
.footer-links {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}
.footer-links a {
    font-size: 11px;
    color: rgba(255,255,255,.35);
    transition: color .2s;
    position: relative;
}
.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0; right: 0;
    height: 1px;
    background: #F5A623;
    transform: scaleX(0);
    transition: transform .2s;
}
.footer-links a:hover { color: #F5A623; }
.footer-links a:hover::after { transform: scaleX(1); }

/* ---- DESKTOP FOOTER ---- */
@media (min-width: 768px) {
    .footer-brand-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .footer-grid {
        grid-template-columns: 1.6fr 1fr 1fr 1.5fr;
        gap: 36px;
    }
    .footer-bottom-inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
    .fstat strong { font-size: 22px; }
    .fstat span   { font-size: 11px; }
    .fstat i      { font-size: 20px; }
}

/* =============================================
   MOBILE BOTTOM NAV
   ============================================= */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 62px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, .1);
    z-index: 800;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    font-size: 10px;
    color: var(--muted);
    font-weight: 500;
    padding: 4px 8px;
    transition: color .2s;
}

.nav-item.active {
    color: var(--green);
}

.nav-item i {
    font-size: 18px;
}

.donate-center {
    margin-top: -18px;
}

.donate-circle {
    width: 50px;
    height: 50px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(27, 107, 69, .35);
}

.donate-circle i {
    color: white;
    font-size: 20px;
}

.donate-center span {
    color: var(--green);
    font-weight: 600;
}

/* extra bottom padding so content isn't hidden behind bottom nav */
body {
    padding-bottom: 70px;
}

/* =============================================
   SCROLL REVEAL ANIMATION BASE
   ============================================= */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .55s ease, transform .55s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   DESKTOP — 768px and above
   ============================================= */
@media (min-width: 768px) {

    body {
        padding-bottom: 0;
    }

    /* TOP BAR */
    .top-bar {
        display: block;
        background: var(--green);
        padding: 8px 0;
    }

    .top-bar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .top-bar-left {
        display: flex;
        gap: 22px;
    }

    .top-bar-left span {
        color: rgba(255, 255, 255, .9);
        font-size: 13px;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .top-bar-left i {
        color: var(--yellow);
    }

    .top-bar-right {
        display: flex;
        gap: 10px;
    }

    .top-bar-right a {
        color: rgba(255, 255, 255, .75);
        font-size: 13px;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .15);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background .2s;
    }

    .top-bar-right a:hover {
        background: rgba(255, 255, 255, .3);
        color: white;
    }

    /* NAVBAR */
    .nav-bar {
        padding: 17px 0;
    }

    .hamburger {
        display: none;
    }

     .logo-img {
        width: 100px;
        height: auto;
    }

    .logo-title {
        font-size: 20px;
    }

    .logo-sub {
        font-size: 10px;
    }

    .logo-tag {
        font-size: 10px;
    }

    .desktop-nav {
        display: flex;
        gap: 2px;
    }

    .desktop-nav a {
        padding: 8px 14px;
        font-size: 14px;
        font-weight: 500;
        color: var(--text);
        border-radius: var(--r-sm);
        transition: all .2s;
    }

    .desktop-nav a:hover {
        background: var(--green-bg);
        color: var(--green);
    }

    .btn-donate-nav {
        display: flex;
        align-items: center;
        gap: 7px;
        background: var(--green);
        color: white;
        padding: 10px 20px;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 600;
        white-space: nowrap;
        transition: background .2s;
    }

    .btn-donate-nav:hover {
        background: var(--green-light);
    }

    /* Login & Register nav buttons — shown on desktop */
    .btn-login-nav,
    .btn-register-nav {
        display: flex;
        align-items: center;
        gap: 7px;
        padding: 9px 18px;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 600;
        white-space: nowrap;
        transition: all .2s;
    }

    .btn-login-nav {
        background: transparent;
        color: var(--green);
        border: 2px solid var(--green);
    }

    .btn-login-nav:hover {
        background: var(--green);
        color: white;
    }

    .btn-register-nav {
        background: var(--orange);
        color: white;
        border: 2px solid var(--orange);
    }

    .btn-register-nav:hover {
        background: #d45a0f;
        border-color: #d45a0f;
    }

    /* HERO */
    .hero-slider {
        height: 560px;
    }

    .slide-content {
        padding: 120px 60px 0;
        max-width: 600px;
    }

    .slide-content h1 {
        font-size: 48px;
    }

    .slide-content p {
        font-size: 17px;
    }

    .btn-hero {
        padding: 14px 30px;
        font-size: 16px;
    }

    .slider-arrow {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* QUICK CATS */
    .quick-cats {
        padding: 28px 0;
    }

    .cats-grid {
        justify-content: center;
        gap: 16px;
    }

  .cat-item {
        min-width: 20%;
    }

    .cat-icon {
        width: 64px;
        height: 64px;
        font-size: 26px;
        border-radius: 18px;
    }

    .cat-item span {
        font-size: 12px;
    }

    /* SECTION HEADS */
    .section-head h2 {
        font-size: 22px;
    }

    .section-title-center h2 {
        font-size: 36px;
    }

    .section-title-center p {
        font-size: 16px;
    }

    /* IMPACT */
    .impact-section {
        padding: 60px 0;
    }

    .impact-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 20px;
    }

    .impact-card {
        padding: 22px 12px;
        border-radius: var(--r);
    }

    .impact-icon {
        width: 54px;
        height: 54px;
        font-size: 24px;
    }

    .impact-num {
        font-size: 26px;
        font-weight: 800;
    }

    .impact-label {
        font-size: 12px;
    }

    /* DONATE BANNER */
    .donate-banner {
        padding: 80px 0;
    }

    .donate-inner {
        flex-direction: row;
        gap: 60px;
        align-items: center;
    }

    .donate-img {
        flex: 1;
    }

    .donate-img img {
        max-height: 460px;
        border-radius: 20px;
    }

    .donate-content {
        flex: 1;
    }

    .donate-content h2 {
        font-size: 34px;
    }

    .donate-content>p {
        font-size: 15px;
    }

    /* CAUSES */
    .causes-section {
        padding: 80px 0;
    }

    .causes-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .cause-img img {
        height: 220px;
    }

    /* ACTIVITIES */
    .activities-section {
        padding: 60px 0;
    }

    .activity-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .activity-item {
        padding: 16px;
    }

    /* TEAM */
    .team-section {
        padding: 80px 0;
    }

    .team-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }

    .team-card {
        padding: 28px 20px;
    }

    .team-card img {
        width: 90px;
        height: 90px;
    }

    /* GALLERY */
    .gallery-section {
        padding: 80px 0;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .g-item img {
        height: 220px;
    }

    /* TESTIMONIALS */
    .testimonials-section {
        padding: 80px 0;
    }

    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        overflow: visible;
        padding-bottom: 0;
    }

    .t-card {
        min-width: unset;
    }

    /* FOOTER */
    .footer-top {
        padding: 60px 0;
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: 36px;
    }

    .footer-bottom-inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    /* HIDE mobile bottom nav */
    .mobile-bottom-nav {
        display: none;
    }
}

/* =============================================
   LARGE DESKTOP — 1100px
   ============================================= */
@media (min-width: 1100px) {
    .causes-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-slider {
        height: 620px;
    }

    .slide-content {
        padding: 140px 80px 0;
    }
}


/* =============================================
   ABOUT US SECTION
   ============================================= */
.about-section {
    padding: 56px 0;
    background: var(--white);
}

.about-inner {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

/* Image side */
.about-img-wrap {
    position: relative;
    flex-shrink: 0;
}

.about-main-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--r);
    box-shadow: var(--shadow-lg);
}

.about-badge-card {
    position: absolute;
    bottom: -18px;
    left: 20px;
    background: var(--green);
    color: white;
    padding: 14px 20px;
    border-radius: var(--r-sm);
    text-align: center;
    box-shadow: 0 8px 24px rgba(27,107,69,.4);
}

.about-badge-num {
    font-size: 26px;
    font-weight: 800;
    line-height: 1;
}

.about-badge-text {
    font-size: 11px;
    font-weight: 500;
    opacity: .9;
    white-space: nowrap;
}

.about-img-small {
    display: none;
}

/* Content side */
.about-content {
    padding-top: 28px;
}

.about-content h2 {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.3;
    margin: 10px 0 14px;
}

.about-content h2 span {
    color: var(--green);
}

.about-content p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 12px;
}

.about-stats-row {
    display: flex;
    gap: 16px;
    margin: 22px 0;
    flex-wrap: wrap;
}

.astat {
    flex: 1;
    min-width: 80px;
    background: var(--green-bg);
    border-radius: var(--r-sm);
    padding: 14px 12px;
    text-align: center;
}

.astat strong {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: var(--green);
}

.astat span {
    font-size: 10px;
    color: var(--muted);
    font-weight: 500;
}

.btn-about-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green);
    color: white;
    padding: 13px 28px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    transition: background .2s, transform .2s;
    box-shadow: 0 4px 16px rgba(27,107,69,.3);
}

.btn-about-cta:hover {
    background: var(--green-light);
    transform: translateY(-2px);
}

/* =============================================
   VISION & MISSION SECTION
   ============================================= */
.vision-mission-section {
    padding: 56px 0 60px;
    background: var(--bg);
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.vm-card {
    background: var(--white);
    border-radius: var(--r);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform .3s, box-shadow .3s;
}

.vm-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.vm-img-wrap {
    position: relative;
    overflow: hidden;
}

.vm-img-wrap img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform .5s;
}

.vm-card:hover .vm-img-wrap img {
    transform: scale(1.06);
}

.vm-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(27,107,69,.5) 0%, rgba(0,0,0,.4) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-card .vm-img-overlay {
    background: linear-gradient(to bottom, rgba(242,108,29,.5) 0%, rgba(0,0,0,.4) 100%);
}

.vm-icon-big {
    font-size: 48px;
    color: rgba(255,255,255,.85);
    filter: drop-shadow(0 4px 8px rgba(0,0,0,.3));
}

.vm-body {
    padding: 24px;
}

.vm-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.vm-icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.vision-icon {
    background: var(--green-bg);
    color: var(--green);
}

.mission-icon {
    background: #FFF3E0;
    color: var(--orange);
}

.vm-header h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--text);
}

.vm-body p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.vm-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.vm-list li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 13px;
    color: var(--text);
    line-height: 1.5;
}

.vm-list li i {
    color: var(--green);
    font-size: 14px;
    margin-top: 2px;
    flex-shrink: 0;
}

.mission-card .vm-list li i {
    color: var(--orange);
}

/* Core Values Row */
.core-values-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.cv-item {
    background: var(--white);
    border-radius: var(--r-sm);
    padding: 20px 16px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform .25s;
}

.cv-item:hover {
    transform: translateY(-4px);
}

.cv-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--green-bg);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin: 0 auto 10px;
}

.cv-item strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
}

.cv-item span {
    font-size: 11px;
    color: var(--muted);
}

/* =============================================
   ABOUT + VISION DESKTOP OVERRIDES
   ============================================= */
@media (min-width: 768px) {

    /* ABOUT */
    .about-section {
        padding: 80px 0;
    }

    .about-inner {
        flex-direction: row;
        align-items: center;
        gap: 60px;
    }

    .about-img-wrap {
        width: 48%;
        flex-shrink: 0;
    }

    .about-main-img {
        height: 420px;
    }

    .about-img-small {
        display: block;
        position: absolute;
        bottom: -24px;
        right: -24px;
        width: 160px;
        height: 130px;
        border-radius: var(--r-sm);
        overflow: hidden;
        border: 4px solid var(--white);
        box-shadow: var(--shadow-lg);
    }

    .about-img-small img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .about-content {
        padding-top: 0;
        flex: 1;
    }

    .about-content h2 {
        font-size: 32px;
    }

    /* VISION MISSION */
    .vision-mission-section {
        padding: 80px 0;
    }

    .vm-grid {
        grid-template-columns: 1fr 1fr;
    }

    .vm-img-wrap img {
        height: 240px;
    }

    .core-values-row {
        grid-template-columns: repeat(4, 1fr);
    }
}
