/* ============================================================
   DANVEER FOUNDATION - PREMIUM CREATIVE FRONTEND CSS
   Navy/Teal/Gold nonprofit design system
   Production-Ready | Fully Responsive
   ============================================================ */

/* ---- CSS CUSTOM PROPERTIES ---- */
:root {
    --navy: #1E2F5C;
    --primary: #0B5C84;
    --teal: #2FA4C9;
    --gold: #F6B21A;
    --soft-gold: #FFD166;
    --dark: #0B1F2A;
    --white: #ffffff;
    --gold-dark: #d49a10;
    --gold-glow: rgba(246, 178, 26, 0.5);
    --cream: #f9fbfd;
    --gray: #64748b;
    --gray-light: #f1f5f9;
    --text: #1e293b;
    --green: #2ecc71;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.18);
    --shadow-gold: 0 10px 40px rgba(246, 178, 26, 0.35);
    --radius: 20px;
    --radius-sm: 12px;
    --trans: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    --trans-fast: all 0.25s ease;
    --gradient-blue: linear-gradient(135deg, #1E2F5C 0%, #0B5C84 50%, #2FA4C9 100%);
    --gradient-gold: linear-gradient(135deg, #F6B21A 0%, #FFD166 50%, #F6B21A 100%);
    --gradient-dark: linear-gradient(135deg, #0B1F2A 0%, #1E2F5C 50%, #0B1F2A 100%);
    --gradient-hero: linear-gradient(135deg, #0B1F2A 0%, #1E2F5C 30%, #0B5C84 60%, #2FA4C9 100%);
    --gradient-vibrant: linear-gradient(135deg, #F6B21A, #2FA4C9, #1E2F5C);
}

/* ============================================================
   KEYFRAME ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(45px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-35px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-45px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(45px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.82);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        transform: scale(1.08);
    }
    70% {
        transform: scale(0.94);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.07);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes kenBurns {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.2);
    }
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 6px var(--gold-glow);
    }
    50% {
        box-shadow: 0 0 28px var(--gold-glow), 0 0 56px rgba(201, 168, 76, 0.18);
    }
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 0.55;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

@keyframes scrollIndicator {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    50% {
        opacity: 0.4;
        transform: translateY(12px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes borderGlow {
    0%, 100% {
        border-color: var(--gold);
    }
    50% {
        border-color: var(--soft-gold);
    }
}

/* ============================================================
   GLOBAL RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background-color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--navy);
}

p {
    margin-bottom: 15px;
    color: var(--gray);
    font-size: 15px;
    line-height: 1.8;
}

section {
    position: relative;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

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

.text-gold span {
    color: var(--gold);
    font-weight: 700;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
    background: linear-gradient(90deg, var(--dark), var(--navy));
    color: #fff;
    font-size: 14px;
    padding: 8px 20px;
    border-bottom: none;
    position: relative;
    z-index: 1001;
}

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

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.top-bar-left span {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
}

.top-bar-left span i {
    color: var(--gold);
    font-size: 13px;
    width: 16px;
    text-align: center;
}

.top-bar-left a {
    color: rgba(255, 255, 255, 0.75);
    transition: var(--trans-fast);
}

.top-bar-left a:hover {
    color: var(--gold);
}

.top-bar-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-bar-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    transition: var(--trans-fast);
}

.top-bar-social a:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-2px);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar-main {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(135deg, var(--navy) 0%, var(--primary) 50%, var(--teal) 100%);
    padding: 0;
    transition: var(--trans);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.navbar-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
}

.navbar-main.scrolled {
    background: linear-gradient(135deg, var(--navy) 0%, var(--primary) 60%, var(--teal) 100%);
    box-shadow: 0 6px 40px rgba(0, 0, 0, 0.25);
    padding: 0;
}

.navbar-main.scrolled .navbar-logo-wrap img {
    height: 55px;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--white);
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.5px;
}

.navbar-logo-wrap {
    background: var(--white);
    padding: 6px 10px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    overflow: visible;
    transition: var(--trans);
    flex-shrink: 0;
}

.navbar-logo-wrap img {
    height: 90px;
    width: auto;
    object-fit: contain;
}

.navbar-logo span {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 5px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-menu li {
    position: relative;
}

.navbar-menu li a {
    display: block;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14.5px;
    font-weight: 500;
    padding: 10px 16px;
    border-radius: 8px;
    transition: var(--trans-fast);
    white-space: nowrap;
    position: relative;
    letter-spacing: 0.3px;
}

.navbar-menu li a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: var(--trans-fast);
}

.navbar-menu li a:hover::after,
.navbar-menu li a.active::after {
    transform: translateX(-50%) scaleX(1);
}

.navbar-menu li a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.navbar-menu li a.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    font-weight: 600;
}

.nav-donate {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--soft-gold) 100%);
    color: var(--dark);
    font-weight: 700;
    font-size: 14px;
    padding: 10px 26px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--trans);
    box-shadow: 0 4px 20px rgba(246, 178, 26, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.nav-donate:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(246, 178, 26, 0.55);
    background: linear-gradient(135deg, var(--soft-gold) 0%, var(--gold) 100%);
    color: var(--dark);
}

.nav-donate::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.nav-donate:hover::before {
    left: 100%;
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    transition: var(--trans-fast);
}

.navbar-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--trans-fast);
}

.navbar-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.navbar-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggle.active span:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.2s ease;
}
.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(11, 31, 42, 0.92) 0%,
        rgba(30, 47, 92, 0.88) 30%,
        rgba(11, 92, 132, 0.82) 60%,
        rgba(47, 164, 201, 0.75) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 120px 0 80px;
    width: 100%;
}

.hero-text {
    max-width: 600px;
}

.hero-text h1 {
    font-size: 56px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 22px;
    letter-spacing: -1px;
}

.hero-text h1 span {
    background: linear-gradient(135deg, var(--gold), var(--soft-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    color: #EAF6FB;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 520px;
    opacity: 0.92;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(246, 178, 26, 0.15);
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid rgba(246, 178, 26, 0.25);
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-badge i {
    font-size: 14px;
}

.hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.hero-stats-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px 35px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.hero-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.hero-stat-item {
    text-align: center;
    padding: 20px 10px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--trans);
}

.hero-stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.hero-stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--soft-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    box-shadow: 0 6px 20px rgba(246, 178, 26, 0.35);
}

.hero-stat-icon i {
    font-size: 20px;
    color: var(--dark);
}

.hero-stat-item h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 4px;
    line-height: 1.1;
}

.hero-stat-item p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    margin-bottom: 0;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--gold), var(--soft-gold));
    color: var(--dark);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 34px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--trans);
    box-shadow: 0 6px 25px rgba(246, 178, 26, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
    overflow: hidden;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(246, 178, 26, 0.55);
    background: linear-gradient(135deg, var(--soft-gold), var(--gold));
    color: var(--dark);
}

.btn-gold:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(246, 178, 26, 0.4);
}

.btn-outline-light {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--gold);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 15px;
    padding: 13px 34px;
    border-radius: 50px;
    border: 2px solid var(--gold);
    cursor: pointer;
    transition: var(--trans);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
    overflow: hidden;
}

.btn-outline-light:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(246, 178, 26, 0.35);
}

.btn-outline-light:active {
    transform: translateY(-1px);
}

.btn-card {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary), var(--teal));
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 24px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--trans);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(11, 92, 132, 0.35);
    color: var(--white);
}

.shine {
    position: relative;
    overflow: hidden;
}

.shine::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.shine:hover::before {
    left: 100%;
}

/* ============================================================
   SECTION BASE
   ============================================================ */
.section {
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.section-light {
    background: #f9fbfd;
}

.section-title {
    text-align: center;
    margin-bottom: 55px;
}

.section-title h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.section-title p {
    font-size: 16px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(246, 178, 26, 0.1);
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 50px;
    border: 1px solid rgba(246, 178, 26, 0.2);
    margin-bottom: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.section-title-light {
    text-align: center;
    margin-bottom: 55px;
}

.section-title-light h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.section-title-light p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-tag-light {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(246, 178, 26, 0.15);
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 50px;
    border: 1px solid rgba(246, 178, 26, 0.25);
    margin-bottom: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
    padding: 90px 0;
    position: relative;
    overflow: hidden;
    background: var(--white);
}

.about-home {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-home-img {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.about-home-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: var(--trans);
}

.about-home-img:hover img {
    transform: scale(1.03);
}

.about-home-img::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 3px;
    background: linear-gradient(135deg, var(--gold), var(--teal), var(--navy));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: 1;
    pointer-events: none;
}

.about-img-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--soft-gold));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(246, 178, 26, 0.4);
    z-index: 2;
    border: 4px solid var(--white);
}

.about-img-badge span {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}

.about-img-badge small {
    font-size: 11px;
    font-weight: 600;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-home-text {
    padding-left: 10px;
}

.about-home-text h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 18px;
    line-height: 1.2;
}

.about-home-text p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 28px;
    margin-bottom: 30px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    background: var(--cream);
    border-radius: 12px;
    transition: var(--trans-fast);
}

.about-feature:hover {
    background: rgba(246, 178, 26, 0.08);
    transform: translateX(4px);
}

.about-feature i {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--soft-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 12px;
    margin-top: 2px;
}

.about-feature span {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.4;
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--navy) 50%, var(--primary) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80"><circle cx="40" cy="40" r="1" fill="rgba(255,255,255,0.03)"/></svg>') repeat;
    background-size: 80px 80px;
    pointer-events: none;
}

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

.stat-item {
    text-align: center;
    padding: 35px 20px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--trans);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-6px);
    border-color: rgba(246, 178, 26, 0.3);
}

.stat-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--soft-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    box-shadow: 0 8px 25px rgba(246, 178, 26, 0.35);
    transition: var(--trans);
}

.stat-item:hover .stat-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 35px rgba(246, 178, 26, 0.5);
}

.stat-icon i {
    font-size: 24px;
    color: var(--dark);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--gold);
    line-height: 1.1;
    margin-bottom: 6px;
    display: block;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================================
   CARDS / CAUSES
   ============================================================ */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: var(--trans);
    position: relative;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.card-img-wrap {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.card-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 31, 42, 0.85) 0%, transparent 60%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--trans);
}

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

.card-img-overlay a,
.card-img-overlay button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 18px;
    border: none;
    cursor: pointer;
    transition: var(--trans);
    transform: translateY(20px);
    opacity: 0;
}

.card:hover .card-img-overlay a,
.card:hover .card-img-overlay button {
    transform: translateY(0);
    opacity: 1;
}

.card-img-overlay a:hover,
.card-img-overlay button:hover {
    background: var(--soft-gold);
    transform: scale(1.1);
}

.card-body {
    padding: 26px;
}

.card-body h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.4;
    transition: var(--trans-fast);
}

.card-body h3 a {
    color: var(--navy);
}

.card-body h3 a:hover,
.card:hover .card-body h3 {
    color: var(--primary);
}

.card-body p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ============================================================
   WHY CHOOSE US SECTION
   ============================================================ */
.why-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--navy) 50%, var(--primary) 100%);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1.5" fill="rgba(255,255,255,0.02)"/></svg>') repeat;
    background-size: 100px 100px;
    pointer-events: none;
}

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

.why-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: var(--trans);
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-8px);
    border-color: rgba(246, 178, 26, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.why-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--soft-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    box-shadow: 0 8px 25px rgba(246, 178, 26, 0.35);
    transition: var(--trans);
}

.why-card:hover .why-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(246, 178, 26, 0.5);
}

.why-icon i {
    font-size: 26px;
    color: var(--dark);
}

.why-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.3;
}

.why-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: 0;
}

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

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 31, 42, 0.85) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: var(--trans);
}

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

.gallery-overlay h4 {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    transform: translateY(15px);
    transition: var(--trans);
}

.gallery-item:hover .gallery-overlay h4 {
    transform: translateY(0);
}

.gallery-overlay i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 16px;
    transition: var(--trans);
}

.gallery-item:hover .gallery-overlay i {
    transform: translate(-50%, -50%) scale(1);
}

/* ============================================================
   TEAM SECTION
   ============================================================ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    background: var(--white);
    border-radius: 20px;
    padding: 35px 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: var(--trans);
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--teal));
    transform: scaleX(0);
    transition: var(--trans);
}

.team-card:hover::before {
    transform: scaleX(1);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.team-card-img-wrap {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    margin: 0 auto 20px;
    position: relative;
    overflow: hidden;
    border: 4px solid var(--cream);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--trans);
}

.team-card:hover .team-card-img-wrap {
    border-color: var(--gold);
    box-shadow: 0 6px 25px rgba(246, 178, 26, 0.3);
}

.team-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: var(--trans);
}

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

.team-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.team-designation {
    font-size: 13px;
    color: var(--teal);
    font-weight: 500;
    margin-bottom: 14px;
    display: block;
}

.team-card p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 16px;
}

.team-card-social {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.team-card-social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 14px;
    transition: var(--trans-fast);
}

.team-card-social a:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-3px);
}

/* ============================================================
   NEWS SECTION
   ============================================================ */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
    display: flex;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: var(--trans);
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.14);
}

.news-card-date {
    min-width: 90px;
    background: linear-gradient(135deg, var(--primary), var(--teal));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 10px;
    color: var(--white);
    flex-shrink: 0;
}

.news-card-date .day {
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
    display: block;
}

.news-card-date .month {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-top: 4px;
}

.news-card-date .year {
    font-size: 11px;
    font-weight: 400;
    opacity: 0.75;
    display: block;
    margin-top: 2px;
}

.news-card-content {
    padding: 22px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-card-content h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.4;
    transition: var(--trans-fast);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card:hover .news-card-content h3 {
    color: var(--primary);
}

.news-card-content p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-content .news-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
    font-size: 12px;
    color: var(--gray);
}

.news-card-content .news-meta i {
    color: var(--gold);
    margin-right: 4px;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
    background: linear-gradient(135deg, var(--navy) 0%, var(--primary) 50%, var(--teal) 100%);
    text-align: center;
    padding: 90px 20px;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><circle cx="30" cy="30" r="1" fill="rgba(255,255,255,0.04)"/></svg>') repeat;
    background-size: 60px 60px;
    pointer-events: none;
}

.cta-banner .container {
    position: relative;
    z-index: 1;
}

.cta-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(246, 178, 26, 0.15);
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 50px;
    border: 1px solid rgba(246, 178, 26, 0.25);
    margin-bottom: 18px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.cta-banner h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta-banner p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: linear-gradient(135deg, var(--dark) 0%, var(--navy) 100%);
    padding: 70px 0 0;
    color: rgba(255, 255, 255, 0.75);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--teal), var(--gold));
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.footer-logo img {
    height: 75px;
    width: auto;
    object-fit: contain;
}

.footer-logo span {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
}

.footer h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--soft-gold);
    margin-bottom: 26px;
    line-height: 1.3;
}

.footer p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: 12px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    transition: var(--trans-fast);
    padding: 3px 0;
}

.footer-links li a::before {
    content: '\f105';
    font-family: 'FontAwesome';
    font-weight: normal;
    font-size: 11px;
    color: var(--gold);
    width: 16px;
    flex-shrink: 0;
    transition: var(--trans-fast);
}

.footer-links li a:hover {
    color: var(--gold);
    padding-left: 6px;
}

.footer-links li a:hover::before {
    transform: translateX(3px);
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: var(--soft-gold);
    font-size: 16px;
    transition: var(--trans);
    border: none;
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-3px);
    border-color: var(--gold);
    box-shadow: 0 6px 20px rgba(246, 178, 26, 0.35);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 14px;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 0;
}

.footer-contact p i {
    color: var(--gold);
    font-size: 15px;
    margin-top: 4px;
    width: 18px;
    flex-shrink: 0;
    text-align: center;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.65);
    transition: var(--trans-fast);
}

.footer-contact a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 22px 0;
    text-align: center;
    margin-top: 50px;
}

.footer-bottom p {
    font-size: 14px;
    color: #CFE6F1;
    margin-bottom: 0;
}

.footer-bottom a {
    color: var(--gold);
    font-weight: 500;
    transition: var(--trans-fast);
}

.footer-bottom a:hover {
    color: var(--soft-gold);
}

/* ============================================================
   PAGE BANNER
   ============================================================ */
.page-banner {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--dark) 0%, var(--navy) 40%, var(--primary) 70%, var(--teal) 100%);
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80"><circle cx="40" cy="40" r="1" fill="rgba(255,255,255,0.03)"/></svg>') repeat;
    background-size: 80px 80px;
    pointer-events: none;
}

.page-banner .container {
    position: relative;
    z-index: 1;
}

.page-banner h1 {
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.page-banner .breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.page-banner .breadcrumb a {
    color: var(--gold);
    font-weight: 500;
    transition: var(--trans-fast);
}

.page-banner .breadcrumb a:hover {
    color: var(--soft-gold);
}

.page-banner .breadcrumb span {
    color: rgba(255, 255, 255, 0.5);
}

.page-banner .breadcrumb .current {
    color: var(--white);
    font-weight: 500;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

.contact-form {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-form h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 24px;
}

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

.contact-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-light);
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: var(--text);
    background: var(--white);
    transition: var(--trans-fast);
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 4px rgba(47, 164, 201, 0.12);
}

.contact-form textarea {
    min-height: 130px;
    resize: vertical;
}

.contact-form button[type="submit"] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--gold), var(--soft-gold));
    color: var(--dark);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 34px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--trans);
    box-shadow: 0 6px 25px rgba(246, 178, 26, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.contact-form button[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(246, 178, 26, 0.55);
}

.contact-info {
    padding: 20px 0;
}

.contact-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 18px;
}

.contact-info p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 25px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    padding: 18px;
    background: var(--cream);
    border-radius: 14px;
    transition: var(--trans-fast);
}

.contact-info-item:hover {
    background: rgba(246, 178, 26, 0.06);
    transform: translateX(4px);
}

.contact-info-item i {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--soft-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 18px;
}

.contact-info-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px;
}

.contact-info-item span {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.5;
}

.contact-info-item a {
    color: var(--gray);
    transition: var(--trans-fast);
}

.contact-info-item a:hover {
    color: var(--gold);
}

/* ============================================================
   LIGHTBOX MODAL
   ============================================================ */
.lightbox-modal {
    position: fixed;
    inset: 0;
    background: rgba(11, 31, 42, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--trans);
    padding: 30px;
}

.lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-modal img {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: var(--trans);
}

.lightbox-modal.active img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--trans);
    z-index: 10001;
}

.lightbox-close:hover {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--trans);
    z-index: 10001;
}

.lightbox-nav:hover {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
}

.lightbox-nav.prev {
    left: 25px;
}

.lightbox-nav.next {
    right: 25px;
}

/* ============================================================
   SCROLL INDICATOR
   ============================================================ */
.scroll-indicator {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--soft-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(246, 178, 26, 0.4);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--trans);
    animation: scrollIndicator 2s ease-in-out infinite;
}

.scroll-indicator.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-indicator:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(246, 178, 26, 0.55);
}

/* ============================================================
   FADE ANIMATIONS (data-fade)
   ============================================================ */
[data-fade] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-fade].faded-in {
    opacity: 1;
    transform: translateY(0);
}

[data-fade="left"] {
    transform: translateX(-30px);
}

[data-fade="left"].faded-in {
    transform: translateX(0);
}

[data-fade="right"] {
    transform: translateX(30px);
}

[data-fade="right"].faded-in {
    transform: translateX(0);
}

[data-fade="scale"] {
    transform: scale(0.9);
}

[data-fade="scale"].faded-in {
    transform: scale(1);
}

/* ============================================================
   DONATION / PROGRESS BAR
   ============================================================ */
.donation-progress {
    margin-bottom: 18px;
}

.donation-progress-bar {
    height: 8px;
    background: var(--gray-light);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 8px;
}

.donation-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--soft-gold));
    border-radius: 10px;
    transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
}

.donation-progress-fill::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

.donation-meta {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--gray);
}

.donation-meta strong {
    color: var(--navy);
    font-weight: 700;
}

/* ============================================================
   TESTIMONIALS (dark carousel - Daanveer style)
   ============================================================ */
.testimonials {
    padding: 90px 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--navy) 100%);
}
.testimonials-head {
    text-align: center;
    margin-bottom: 50px;
}
.testimonials-head h2 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}
.testimonials-head h2 span {
    color: var(--gold);
}
.testimonials-head p {
    color: rgba(255,255,255,.7);
    font-size: 16px;
}
.testimonial-wrapper {
    overflow: hidden;
}
.testimonial-track {
    display: flex;
    transition: transform 0.7s ease;
}
.testimonial-card {
    min-width: 50%;
    padding: 0 12px;
    box-sizing: border-box;
    background: none;
    box-shadow: none;
    position: static;
}
.testimonial-card::before {
    display: none;
}
.testimonial-card:hover {
    transform: none;
    box-shadow: none;
}
.testimonial-inner {
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px;
    padding: 35px 30px;
}
.testimonial-inner .stars {
    margin-bottom: 18px;
}
.testimonial-inner .stars i {
    color: var(--gold);
    font-size: 16px;
    margin-right: 2px;
}
.testimonial-inner > p {
    color: rgba(255,255,255,.85);
    font-size: 15px;
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 25px;
}
.testimonial-user {
    display: flex;
    align-items: center;
    gap: 14px;
}
.testimonial-user img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(246,178,26,.4);
}
.testimonial-user h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 2px;
}
.testimonial-user span {
    color: rgba(255,255,255,.6);
    font-size: 13px;
}

/* ============================================================
   EVENT CARD
   ============================================================ */
.event-card {
    display: flex;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: var(--trans);
    margin-bottom: 25px;
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.13);
}

.event-card-img {
    width: 280px;
    min-height: 200px;
    flex-shrink: 0;
}

.event-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-card-body {
    padding: 28px;
    flex: 1;
}

.event-card-body h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.event-card-body p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 14px;
}

.event-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--gray);
}

.event-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.event-meta i {
    color: var(--gold);
    font-size: 14px;
}

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    background: var(--white);
    border: 2px solid var(--gray-light);
    transition: var(--trans-fast);
}

.pagination a:hover {
    border-color: var(--teal);
    color: var(--teal);
    transform: translateY(-2px);
}

.pagination .active {
    background: linear-gradient(135deg, var(--primary), var(--teal));
    color: var(--white);
    border-color: transparent;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb-bar {
    background: var(--cream);
    padding: 14px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.breadcrumb-bar ul {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    font-size: 13px;
}

.breadcrumb-bar li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray);
}

.breadcrumb-bar li a {
    color: var(--primary);
    font-weight: 500;
    transition: var(--trans-fast);
}

.breadcrumb-bar li a:hover {
    color: var(--gold);
}

.breadcrumb-bar li::after {
    content: '/';
    color: var(--gray);
    opacity: 0.5;
}

.breadcrumb-bar li:last-child::after {
    display: none;
}

.breadcrumb-bar li:last-child {
    color: var(--navy);
    font-weight: 600;
}

/* ============================================================
   VOLUNTEER / PARTNER SECTIONS
   ============================================================ */
.volunteer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.volunteer-card {
    background: var(--white);
    border-radius: 16px;
    padding: 35px 28px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: var(--trans);
    border: 1px solid transparent;
}

.volunteer-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.14);
    border-color: rgba(246, 178, 26, 0.2);
}

.volunteer-card-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--soft-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(246, 178, 26, 0.3);
}

.volunteer-card-icon i {
    font-size: 28px;
    color: var(--dark);
}

.volunteer-card h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.volunteer-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
}

/* ============================================================
   PARTNERS / LOGO SLIDER
   ============================================================ */
.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 20px 0;
}

.partner-logo {
    width: 140px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: var(--trans);
}

.partner-logo:hover {
    filter: grayscale(0);
    opacity: 1;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* ============================================================
   ALERTS / NOTICES
   ============================================================ */
.alert {
    padding: 16px 22px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
}

.alert-success {
    background: rgba(46, 204, 113, 0.1);
    color: #1a8a4a;
    border: 1px solid rgba(46, 204, 113, 0.2);
}

.alert-danger {
    background: rgba(231, 76, 60, 0.1);
    color: #c0392b;
    border: 1px solid rgba(231, 76, 60, 0.2);
}

.alert-info {
    background: rgba(47, 164, 201, 0.1);
    color: var(--primary);
    border: 1px solid rgba(47, 164, 201, 0.2);
}

.alert-warning {
    background: rgba(246, 178, 26, 0.1);
    color: var(--gold-dark);
    border: 1px solid rgba(246, 178, 26, 0.2);
}

/* ============================================================
   LOADING / SKELETON
   ============================================================ */
.skeleton {
    background: linear-gradient(90deg, var(--gray-light) 25%, #e2e8f0 50%, var(--gray-light) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 8px;
}

.skeleton-text {
    height: 14px;
    margin-bottom: 10px;
}

.skeleton-title {
    height: 22px;
    width: 60%;
    margin-bottom: 12px;
}

.skeleton-img {
    height: 200px;
    margin-bottom: 16px;
}

.skeleton-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--soft-gold));
    color: var(--dark);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(246, 178, 26, 0.4);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--trans);
    border: none;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(246, 178, 26, 0.55);
}

/* ============================================================
   DROPDOWN MENU
   ============================================================ */
.navbar-menu li.has-dropdown {
    position: relative;
}

.navbar-menu li.has-dropdown > a::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 10px;
    margin-left: 5px;
    transition: var(--trans-fast);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--trans);
    z-index: 100;
}

.navbar-menu li.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 16px;
    font-size: 14px;
    color: var(--navy) !important;
    border-radius: 8px;
    transition: var(--trans-fast);
}

.dropdown-menu li a:hover {
    background: var(--cream);
    color: var(--gold) !important;
    padding-left: 20px;
}

/* ============================================================
   TABS
   ============================================================ */
.tab-nav {
    display: flex;
    gap: 5px;
    border-bottom: 2px solid var(--gray-light);
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.tab-nav button {
    padding: 12px 24px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray);
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    cursor: pointer;
    transition: var(--trans-fast);
}

.tab-nav button:hover {
    color: var(--navy);
}

.tab-nav button.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeInUp 0.4s ease;
}

/* ============================================================
   ACCORDION / FAQ
   ============================================================ */
.accordion-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid var(--gray-light);
    transition: var(--trans-fast);
}

.accordion-item.active {
    border-color: rgba(246, 178, 26, 0.3);
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    transition: var(--trans-fast);
}

.accordion-header:hover {
    background: var(--cream);
}

.accordion-header i {
    font-size: 14px;
    color: var(--gold);
    transition: var(--trans-fast);
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion-item.active .accordion-body {
    max-height: 500px;
}

.accordion-body-inner {
    padding: 0 22px 20px;
    font-size: 14px;
    color: var(--gray);
    line-height: 1.8;
}

/* ============================================================
   PRELOADER
   ============================================================ */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--gray-light);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* ============================================================
   MOBILE OVERLAY
   ============================================================ */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(11, 31, 42, 0.6);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--trans);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-center {
    text-align: center;
}

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

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

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

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

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

.bg-white {
    background: var(--white);
}

.bg-cream {
    background: var(--cream);
}

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }
.pt-1 { padding-top: 10px; }
.pt-2 { padding-top: 20px; }
.pb-1 { padding-bottom: 10px; }
.pb-2 { padding-bottom: 20px; }

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

.gap-1 { gap: 10px; }
.gap-2 { gap: 20px; }
.gap-3 { gap: 30px; }

.rounded { border-radius: var(--radius); }
.rounded-sm { border-radius: var(--radius-sm); }
.rounded-full { border-radius: 50%; }

.shadow { box-shadow: var(--shadow); }
.shadow-lg { box-shadow: var(--shadow-lg); }

.overflow-hidden { overflow: hidden; }
.relative { position: relative; }

.w-100 { width: 100%; }

.d-flex { display: flex; }
.d-grid { display: grid; }
.d-none { display: none; }
.d-block { display: block; }

.fw-400 { font-weight: 400; }
.fw-500 { font-weight: 500; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }

.fs-sm { font-size: 13px; }
.fs-md { font-size: 15px; }
.fs-lg { font-size: 18px; }
.fs-xl { font-size: 24px; }
.fs-xxl { font-size: 36px; }

/* ============================================================
   RESPONSIVE - 1024px (Tablet Landscape)
   ============================================================ */
@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }

    .navbar-toggle {
        display: flex;
    }

    .navbar-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, var(--navy), var(--primary));
        flex-direction: column;
        padding: 20px;
        gap: 2px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.3s ease;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    }

    .navbar-menu.open {
        max-height: 500px;
        padding: 20px;
    }

    .navbar-menu li a {
        padding: 12px 18px;
        font-size: 15px;
        width: 100%;
        border-radius: 10px;
    }

    .navbar-menu li a::after {
        display: none;
    }

    .nav-donate {
        margin-top: 10px;
        text-align: center;
        justify-content: center;
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 10px;
        margin-top: 5px;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .dropdown-menu.open {
        max-height: 300px;
    }

    .dropdown-menu li a {
        color: rgba(255, 255, 255, 0.8) !important;
        font-size: 13px;
    }

    .dropdown-menu li a:hover {
        background: rgba(255, 255, 255, 0.08);
        color: var(--gold) !important;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 100px 0 60px;
    }

    .hero-text h1 {
        font-size: 44px;
    }

    .hero-stats-card {
        max-width: 500px;
    }

    .about-home {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-home-text {
        padding-left: 0;
    }

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

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

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

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

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

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

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

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

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

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

    .section-title h2,
    .section-title-light h2 {
        font-size: 34px;
    }

    .cta-banner h2 {
        font-size: 34px;
    }

    .section {
        padding: 70px 0;
    }

    .cta-banner {
        padding: 70px 20px;
    }

    .event-card {
        flex-direction: column;
    }

    .event-card-img {
        width: 100%;
        min-height: 180px;
    }
}

/* ============================================================
   RESPONSIVE - 768px (Tablet Portrait)
   ============================================================ */
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    .container {
        padding: 0 18px;
    }

    .top-bar .container {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }

    .top-bar-left {
        justify-content: center;
        gap: 14px;
    }

    .top-bar-social {
        justify-content: center;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 90px 0 50px;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-text p {
        font-size: 15px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-stats-card {
        max-width: 400px;
        margin: 0 auto;
        padding: 30px 25px;
    }

    .hero-stats-grid {
        gap: 18px;
    }

    .hero-stat-item h3 {
        font-size: 26px;
    }

    .about-home {
        gap: 30px;
    }

    .about-home-text h2 {
        font-size: 28px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-img-badge {
        width: 100px;
        height: 100px;
        bottom: -10px;
        right: -10px;
    }

    .about-img-badge span {
        font-size: 26px;
    }

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

    .stat-number {
        font-size: 38px;
    }

    .stat-icon {
        width: 55px;
        height: 55px;
    }

    .card-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }

    .why-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

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

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

    .team-card-img-wrap {
        width: 110px;
        height: 110px;
    }

    .news-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

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

    .section-title h2,
    .section-title-light h2 {
        font-size: 28px;
    }

    .section-title p,
    .section-title-light p {
        font-size: 14px;
    }

    .cta-banner {
        padding: 60px 18px;
    }

    .cta-banner h2 {
        font-size: 28px;
    }

    .cta-banner p {
        font-size: 15px;
    }

    .cta-btns {
        flex-direction: column;
        align-items: center;
    }

    .page-banner {
        height: 240px;
    }

    .page-banner h1 {
        font-size: 32px;
    }

    .contact-form {
        padding: 28px;
    }

    .section {
        padding: 60px 0;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }

    .volunteer-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .tab-nav {
        justify-content: center;
    }

    .tab-nav button {
        padding: 10px 18px;
        font-size: 13px;
    }

    .lightbox-modal img {
        max-width: 95%;
    }

    .lightbox-close {
        top: 15px;
        right: 15px;
        width: 42px;
        height: 42px;
    }

    .lightbox-nav {
        width: 42px;
        height: 42px;
    }

    .lightbox-nav.prev {
        left: 10px;
    }

    .lightbox-nav.next {
        right: 10px;
    }
}

/* ============================================================
   RESPONSIVE - 480px (Mobile)
   ============================================================ */
@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 15px;
    }

    .top-bar {
        padding: 6px 0;
        font-size: 12px;
    }

    .top-bar-left span {
        font-size: 11px;
    }

    .top-bar-left {
        gap: 10px;
    }

    .top-bar-social a {
        width: 26px;
        height: 26px;
        font-size: 11px;
    }

    .navbar-main .container {
        min-height: 60px;
    }

    .navbar-logo-wrap img {
        height: 50px;
    }

    .navbar-logo span {
        font-size: 16px;
    }

    .hero {
        min-height: auto;
        padding: 80px 0 50px;
    }

    .hero-content {
        padding: 40px 0;
    }

    .hero-text h1 {
        font-size: 28px;
        letter-spacing: -0.5px;
    }

    .hero-text p {
        font-size: 14px;
    }

    .hero-badge {
        font-size: 11px;
        padding: 6px 14px;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .hero-btns .btn-gold,
    .hero-btns .btn-outline-light {
        width: 100%;
        justify-content: center;
        padding: 12px 24px;
        font-size: 13px;
    }

    .hero-stats-card {
        padding: 22px 18px;
        border-radius: 16px;
    }

    .hero-stats-grid {
        gap: 12px;
    }

    .hero-stat-item {
        padding: 14px 8px;
        border-radius: 12px;
    }

    .hero-stat-item h3 {
        font-size: 22px;
    }

    .hero-stat-item p {
        font-size: 10px;
    }

    .hero-stat-icon {
        width: 42px;
        height: 42px;
    }

    .hero-stat-icon i {
        font-size: 16px;
    }

    .section {
        padding: 50px 0;
    }

    .section-title h2,
    .section-title-light h2 {
        font-size: 24px;
    }

    .section-title p,
    .section-title-light p {
        font-size: 13px;
    }

    .section-title {
        margin-bottom: 35px;
    }

    .section-tag,
    .section-tag-light {
        font-size: 10px;
        padding: 5px 14px;
    }

    .about-home-text h2 {
        font-size: 24px;
    }

    .about-home-img {
        border-radius: 14px;
    }

    .about-img-badge {
        width: 80px;
        height: 80px;
        bottom: -8px;
        right: -8px;
    }

    .about-img-badge span {
        font-size: 22px;
    }

    .about-img-badge small {
        font-size: 9px;
    }

    .about-feature {
        padding: 12px;
    }

    .about-feature span {
        font-size: 13px;
    }

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

    .stat-item {
        padding: 24px 12px;
        border-radius: 14px;
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-label {
        font-size: 11px;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }

    .stat-icon i {
        font-size: 20px;
    }

    .card-grid {
        gap: 20px;
    }

    .card-body {
        padding: 20px;
    }

    .card-body h3 {
        font-size: 17px;
    }

    .card-body p {
        font-size: 13px;
    }

    .card-img-wrap {
        height: 180px;
    }

    .why-card {
        padding: 30px 22px;
    }

    .why-icon {
        width: 60px;
        height: 60px;
    }

    .why-icon i {
        font-size: 22px;
    }

    .why-card h3 {
        font-size: 18px;
    }

    .why-card p {
        font-size: 13px;
    }

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

    .gallery-item {
        border-radius: 10px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
        gap: 16px;
    }

    .team-card {
        padding: 28px 18px;
    }

    .team-card-img-wrap {
        width: 100px;
        height: 100px;
    }

    .news-card {
        flex-direction: column;
    }

    .news-card-date {
        min-width: auto;
        flex-direction: row;
        gap: 8px;
        padding: 14px 20px;
    }

    .news-card-date .day {
        font-size: 22px;
    }

    .news-card-content {
        padding: 18px;
    }

    .news-card-content h3 {
        font-size: 15px;
    }

    .cta-banner {
        padding: 45px 15px;
    }

    .cta-banner h2 {
        font-size: 22px;
    }

    .cta-banner p {
        font-size: 13px;
    }

    .cta-tag {
        font-size: 10px;
        padding: 5px 14px;
    }

    .cta-btns .btn-gold,
    .cta-btns .btn-outline-light {
        width: 100%;
        justify-content: center;
        font-size: 13px;
        padding: 12px 24px;
    }

    .footer {
        padding: 50px 0 0;
    }

    .footer-grid {
        gap: 25px;
        padding-bottom: 30px;
    }

    .footer h4 {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .footer-social a {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .footer-bottom {
        padding: 16px 0;
    }

    .footer-bottom p {
        font-size: 11px;
    }

    .page-banner {
        height: 200px;
    }

    .page-banner h1 {
        font-size: 24px;
    }

    .page-banner .breadcrumb {
        font-size: 12px;
    }

    .contact-form {
        padding: 22px 18px;
        border-radius: 14px;
    }

    .contact-form h3 {
        font-size: 20px;
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form select {
        padding: 10px 14px;
        font-size: 13px;
    }

    .contact-info-item {
        padding: 14px;
    }

    .contact-info-item i {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 16px;
    }

    .btn-gold {
        padding: 12px 26px;
        font-size: 13px;
    }

    .btn-outline-light {
        padding: 11px 26px;
        font-size: 13px;
    }

    .btn-card {
        padding: 9px 20px;
        font-size: 12px;
    }

    .lightbox-modal {
        padding: 15px;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 38px;
        height: 38px;
        font-size: 18px;
    }

    .lightbox-nav {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

    .lightbox-nav.prev {
        left: 5px;
    }

    .lightbox-nav.next {
        right: 5px;
    }

    .scroll-indicator {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    .accordion-header {
        padding: 14px 16px;
        font-size: 14px;
    }

    .accordion-body-inner {
        padding: 0 16px 16px;
        font-size: 13px;
    }

    .pagination a,
    .pagination span {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }

    .partners-grid {
        gap: 20px;
    }

    .partner-logo {
        width: 100px;
        height: 55px;
    }

    .volunteer-card {
        padding: 28px 20px;
    }

    .volunteer-card-icon {
        width: 60px;
        height: 60px;
    }

    .volunteer-card-icon i {
        font-size: 24px;
    }

    .testimonial-card {
        padding: 25px;
    }

    .event-card-body {
        padding: 20px;
    }

    .event-card-body h3 {
        font-size: 17px;
    }

    .event-meta {
        gap: 12px;
        font-size: 12px;
    }
}

/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {
    .navbar-main,
    .top-bar,
    .footer-social,
    .scroll-indicator,
    .back-to-top,
    .lightbox-modal,
    .navbar-toggle,
    .mobile-overlay,
    .preloader,
    .nav-donate {
        display: none !important;
    }

    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
        line-height: 1.5;
    }

    .container {
        max-width: 100%;
        padding: 0;
    }

    .section {
        padding: 20px 0;
        page-break-inside: avoid;
    }

    h1, h2, h3, h4, h5, h6 {
        color: #000;
        page-break-after: avoid;
    }

    a {
        color: #000;
        text-decoration: underline;
    }

    .hero {
        min-height: auto;
        padding: 30px 0;
        background: none;
    }

    .hero-overlay {
        display: none;
    }

    .hero-text h1 {
        color: #000;
        font-size: 24pt;
    }

    .card {
        box-shadow: none;
        border: 1px solid #ddd;
        page-break-inside: avoid;
    }

    .footer {
        background: none;
        color: #000;
        padding: 20px 0;
    }

    .footer h4 {
        color: #000;
    }

    .footer-links li a {
        color: #000;
    }

    .footer-bottom {
        border-top: 1px solid #ddd;
    }

    img {
        max-width: 100%;
        page-break-inside: avoid;
    }

    .page-banner {
        background: none;
        height: auto;
        padding: 20px 0;
    }

    .page-banner h1 {
        color: #000;
    }

    .stats-section,
    .why-section,
    .cta-banner {
        background: none;
        color: #000;
    }

    .stat-number {
        color: #000;
    }

    .stat-label {
        color: #333;
    }

    .why-card h3 {
        color: #000;
    }

    .why-card p {
        color: #333;
        opacity: 1;
    }

    .cta-banner h2 {
        color: #000;
    }

    .cta-banner p {
        color: #333;
    }

    [data-fade] {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ============================================================
   DAANVEER EXACT-MATCH CLASSES
   ============================================================ */

/* --- BUTTONS --- */
.btn-primary{display:inline-flex;align-items:center;gap:8px;padding:14px 32px;background:linear-gradient(135deg,#F6B21A,#FFD166);color:#0B1F2A;font-weight:700;font-size:15px;border-radius:50px;border:none;cursor:pointer;transition:all .3s ease;box-shadow:0 4px 20px rgba(246,178,26,.4);text-decoration:none}
.btn-primary:hover{transform:translateY(-3px);box-shadow:0 8px 30px rgba(246,178,26,.6)}
.btn-primary i{margin-right:4px}
.btn-outline{display:inline-flex;align-items:center;gap:8px;padding:14px 32px;background:transparent;color:#FFD166;font-weight:600;font-size:15px;border-radius:50px;border:2px solid rgba(255,209,102,.5);cursor:pointer;transition:all .3s ease;text-decoration:none}
.btn-outline:hover{background:rgba(255,209,102,.15);border-color:#FFD166;transform:translateY(-3px)}
.btn-outline-light{color:#FFD166;border-color:rgba(255,209,102,.5)}
.btn-gold{background:linear-gradient(135deg,#F6B21A,#FFD166);color:#0B1F2A}

/* --- HERO --- */
.hero{position:relative;min-height:100vh;display:flex;align-items:center;overflow:hidden}
.hero-slide{position:absolute;inset:0;background-size:cover;background-position:center;opacity:0;transition:opacity 1s ease}
.hero-slide.active{opacity:1}
.hero-overlay{position:absolute;inset:0;background:linear-gradient(135deg,rgba(11,31,42,.92),rgba(30,47,92,.88) 40%,rgba(11,92,132,.8));z-index:1}
.hero .container{position:relative;z-index:2}
.hero-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:50px;align-items:center}
.hero-content h1{font-size:52px;font-weight:800;line-height:1.15;color:#fff;margin-bottom:20px}
.hero-content h1 span{color:#F6B21A}
.hero-content p{font-size:17px;color:#EAF6FB;line-height:1.75;margin-bottom:30px}
.hero-tag{display:inline-block;padding:10px 22px;margin-bottom:25px;background:rgba(246,178,26,.12);color:#FFD166;border-radius:50px;font-size:14px;font-weight:600;border:1px solid rgba(246,178,26,.25)}
.hero-tag i{margin-right:8px}
.hero-buttons{display:flex;gap:15px;flex-wrap:wrap}
.hero-card{background:rgba(255,255,255,.06);backdrop-filter:blur(20px);border:1px solid rgba(255,255,255,.12);border-radius:24px;padding:30px;display:grid;grid-template-columns:1fr 1fr;gap:16px}
.hero-card-item{text-align:center;padding:24px 14px;border-radius:16px;background:rgba(255,255,255,.05);transition:all .3s ease}
.hero-card-item:hover{background:rgba(255,255,255,.12);transform:translateY(-4px)}
.hero-card-icon{width:55px;height:55px;border-radius:50%;background:linear-gradient(135deg,#F6B21A,#FFD166);display:flex;align-items:center;justify-content:center;margin:0 auto 14px;font-size:22px;color:#0B1F2A}
.hero-card-item h4{color:#fff;font-size:16px;font-weight:600;margin:0 0 5px}
.hero-card-item p{color:rgba(255,255,255,.65);font-size:12px;margin:0;line-height:1.4}
.scroll-indicator{position:absolute;bottom:30px;left:50%;transform:translateX(-50%);z-index:3}
.scroll-indicator span{display:block;width:26px;height:42px;border:2px solid rgba(255,255,255,.4);border-radius:20px;position:relative}
.scroll-indicator span::after{content:'';width:4px;height:8px;background:#FFD166;border-radius:4px;position:absolute;top:8px;left:50%;transform:translateX(-50%);animation:scrollAnim 1.8s infinite}
@keyframes scrollAnim{0%{opacity:1;top:8px}100%{opacity:0;top:26px}}

/* --- ABOUT --- */
.about-section{padding:100px 0;background:#f9fbfd}
.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center}
.about-image{position:relative}
.about-image img{width:100%;border-radius:20px;box-shadow:0 20px 50px rgba(0,0,0,.12)}
.about-image::after{content:'';position:absolute;top:-15px;left:-15px;right:15px;bottom:15px;border:3px solid #2FA4C9;border-radius:20px;z-index:-1}
.about-badge{position:absolute;bottom:-20px;right:-20px;width:110px;height:110px;border-radius:50%;background:linear-gradient(135deg,#F6B21A,#FFD166);display:flex;flex-direction:column;align-items:center;justify-content:center;box-shadow:0 10px 30px rgba(246,178,26,.4)}
.about-badge-number{font-size:32px;font-weight:800;color:#0B1F2A;line-height:1}
.about-badge-text{font-size:11px;font-weight:600;color:#0B1F2A;text-align:center;line-height:1.2}
.about-content h2{font-size:36px;font-weight:700;color:#1E2F5C;margin-bottom:18px;line-height:1.25}
.about-content h2 span{color:#F6B21A}
.about-content>p{font-size:15px;color:#555;line-height:1.75;margin-bottom:25px}
.about-list{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-bottom:30px}
.about-list-item{display:flex;align-items:center;gap:10px;font-size:14px;color:#333;font-weight:500}
.about-list-item i{color:#2FA4C9;font-size:18px}
.about-buttons{display:flex;gap:15px;flex-wrap:wrap}
.about-buttons .btn-primary{background:linear-gradient(135deg,#0B5C84,#2FA4C9);color:#fff;box-shadow:0 4px 20px rgba(11,92,132,.3)}
.about-buttons .btn-outline{color:#0B5C84;border-color:rgba(11,92,132,.3)}
.about-buttons .btn-outline:hover{background:rgba(11,92,132,.08);color:#0B5C84}

/* --- IMPACT / STATS --- */
.impact-section{padding:90px 0;background:linear-gradient(135deg,#0B1F2A,#1E2F5C 50%,#0B5C84)}
.impact-head{text-align:center;margin-bottom:50px}
.impact-head h2{font-size:36px;font-weight:700;color:#fff;margin-bottom:12px}
.impact-head h2 span{color:#F6B21A}
.impact-head p{color:rgba(255,255,255,.7);font-size:16px}
.impact-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:25px}
.impact-card{background:rgba(255,255,255,.06);backdrop-filter:blur(15px);border:1px solid rgba(255,255,255,.1);border-radius:20px;padding:40px 20px;text-align:center;transition:all .4s ease}
.impact-card:hover{transform:translateY(-8px);background:rgba(255,255,255,.1);box-shadow:0 15px 40px rgba(0,0,0,.3)}
.impact-icon{width:70px;height:70px;border-radius:50%;background:linear-gradient(135deg,#F6B21A,#FFD166);display:flex;align-items:center;justify-content:center;margin:0 auto 20px;font-size:28px;color:#0B1F2A}
.impact-number{font-size:48px;font-weight:800;color:#F6B21A;margin-bottom:8px}
.impact-card p{color:rgba(255,255,255,.8);font-size:15px;font-weight:500;margin:0}

/* --- CAUSES --- */
.causes-premium{padding:90px 0;background:#f9fbfd}
.causes-head{text-align:center;margin-bottom:50px}
.causes-head h2{font-size:36px;font-weight:700;color:#1E2F5C;margin-bottom:12px}
.causes-head h2 span{color:#F6B21A}
.causes-head p{color:#666;font-size:16px}
.causes-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:25px}
.cause-card{background:#fff;border-radius:20px;padding:35px 28px;text-align:center;transition:all .4s ease;border:1px solid #eef2f7;position:relative;overflow:hidden;box-shadow:0 5px 20px rgba(0,0,0,.04)}
.cause-card::before{content:'';position:absolute;top:0;left:0;right:0;height:4px;background:linear-gradient(90deg,#0B5C84,#2FA4C9);opacity:0;transition:opacity .3s ease}
.cause-card:hover{transform:translateY(-8px);box-shadow:0 15px 40px rgba(0,0,0,.1)}
.cause-card:hover::before{opacity:1}
.cause-icon{width:70px;height:70px;border-radius:50%;background:linear-gradient(135deg,#0B5C84,#2FA4C9);display:flex;align-items:center;justify-content:center;margin:0 auto 20px;font-size:26px;color:#fff;box-shadow:0 8px 25px rgba(11,92,132,.3)}
.cause-card h4{font-size:20px;font-weight:700;color:#1E2F5C;margin-bottom:12px}
.cause-card p{font-size:14px;color:#666;line-height:1.7;margin-bottom:18px}
.cause-link{display:inline-block;color:#0B5C84;font-weight:600;font-size:14px;text-decoration:none;transition:all .3s ease}
.cause-link:hover{color:#F6B21A}
.cause-link i{margin-right:6px;transition:transform .3s ease}
.cause-link:hover i{transform:translateX(5px)}

/* --- WHY CHOOSE US --- */
.why-choose{padding:90px 0;background:linear-gradient(135deg,#0B1F2A,#1E2F5C 50%,#0B5C84)}
.why-head{text-align:center;margin-bottom:50px}
.why-head h2{font-size:36px;font-weight:700;color:#fff;margin-bottom:12px}
.why-head h2 span{color:#F6B21A}
.why-head p{color:rgba(255,255,255,.7);font-size:16px}
.why-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:25px}
.why-card{background:rgba(255,255,255,.06);backdrop-filter:blur(15px);border:1px solid rgba(255,255,255,.1);border-radius:20px;padding:35px 25px;text-align:center;transition:all .4s ease}
.why-card:hover{transform:translateY(-8px);background:rgba(255,255,255,.1);box-shadow:0 15px 40px rgba(0,0,0,.3)}
.why-icon{width:65px;height:65px;border-radius:50%;background:linear-gradient(135deg,#F6B21A,#FFD166);display:flex;align-items:center;justify-content:center;margin:0 auto 20px;font-size:24px;color:#0B1F2A}
.why-card h4{color:#fff;font-size:18px;font-weight:600;margin-bottom:10px}
.why-card p{color:rgba(255,255,255,.65);font-size:14px;line-height:1.65}

/* --- GALLERY SECTION --- */
.gallery-section{padding:90px 0;background:#f9fbfd}
.gallery-head{text-align:center;margin-bottom:50px}
.gallery-head h2{font-size:36px;font-weight:700;color:#1E2F5C;margin-bottom:12px}
.gallery-head h2 span{color:#F6B21A}
.gallery-head p{color:#666;font-size:16px}
.gallery-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:15px}
.gallery-item{position:relative;border-radius:14px;overflow:hidden;aspect-ratio:1;cursor:pointer}
.gallery-item img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease}
.gallery-item:hover img{transform:scale(1.1)}
.gallery-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(11,31,42,.9),transparent 60%);display:flex;align-items:flex-end;padding:18px;opacity:0;transition:opacity .35s ease}
.gallery-item:hover .gallery-overlay{opacity:1}
.gallery-overlay h4{color:#fff;font-size:15px;font-weight:600;margin:0 0 3px}
.gallery-overlay span{color:rgba(255,255,255,.7);font-size:12px}
.gallery-view-all{text-align:center;margin-top:40px}

/* --- TESTIMONIALS --- */
.testimonials{padding:90px 0;background:linear-gradient(135deg,#0B1F2A,#1E2F5C)}
.testimonials-head{text-align:center;margin-bottom:50px}
.testimonials-head h2{font-size:36px;font-weight:700;color:#fff;margin-bottom:12px}
.testimonials-head h2 span{color:#F6B21A}
.testimonials-head p{color:rgba(255,255,255,.7);font-size:16px}
.testimonial-wrapper{overflow:hidden}
.testimonial-track{display:flex;transition:transform .7s ease}
.testimonial-card{min-width:50%;padding:0 12px;box-sizing:border-box}
.testimonial-inner{background:rgba(255,255,255,.06);backdrop-filter:blur(15px);border:1px solid rgba(255,255,255,.1);border-radius:20px;padding:35px 30px}
.testimonial-inner .stars{margin-bottom:18px}
.testimonial-inner .stars i{color:#F6B21A;font-size:16px;margin-right:2px}
.testimonial-inner>p{color:rgba(255,255,255,.85);font-size:15px;line-height:1.75;font-style:italic;margin-bottom:25px}
.testimonial-user{display:flex;align-items:center;gap:14px}
.testimonial-user img{width:50px;height:50px;border-radius:50%;object-fit:cover;border:2px solid rgba(246,178,26,.4)}
.testimonial-user h4{color:#fff;font-size:16px;font-weight:600;margin:0 0 2px}
.testimonial-user span{color:rgba(255,255,255,.6);font-size:13px}

/* --- DONATE CTA --- */
.donate-cta{padding:90px 0;background:linear-gradient(135deg,#1E2F5C,#0B5C84 50%,#2FA4C9);text-align:center}
.donate-cta-content h2{font-size:40px;font-weight:800;color:#fff;margin-bottom:18px}
.donate-cta-content h2 span{color:#F6B21A}
.donate-cta-content p{color:rgba(255,255,255,.8);font-size:17px;line-height:1.7;max-width:650px;margin:0 auto 30px}
.donate-cta-buttons{display:flex;gap:15px;justify-content:center;flex-wrap:wrap}

/* --- SECTION TAGS --- */
.section-tag{display:inline-block;padding:8px 20px;background:rgba(11,92,132,.08);color:#0B5C84;border-radius:50px;font-size:13px;font-weight:600;margin-bottom:15px;border:1px solid rgba(11,92,132,.15);letter-spacing:.5px}
.section-tag i{margin-right:6px}
.section-tag-light{background:rgba(255,209,102,.12)!important;color:#FFD166!important;border-color:rgba(255,209,102,.25)!important}

/* --- LIGHTBOX --- */
.lightbox{position:fixed;inset:0;background:rgba(0,0,0,.92);z-index:99999;display:flex;align-items:center;justify-content:center}
.lightbox img{max-width:90%;max-height:90vh;border-radius:10px;box-shadow:0 20px 60px rgba(0,0,0,.5)}
.lightbox-close{position:absolute;top:20px;right:30px;color:#fff;font-size:45px;cursor:pointer;line-height:1}
.lightbox-close:hover{color:#F6B21A}

/* --- RESPONSIVE DAANVEER ADDITIONS --- */
@media(max-width:1024px){
    .hero-grid{grid-template-columns:1fr;text-align:center}
    .hero-content h1{font-size:38px}
    .hero-card{max-width:480px;margin:30px auto 0}
    .hero-buttons{justify-content:center}
    .about-grid{grid-template-columns:1fr;gap:40px}
    .about-buttons{justify-content:center}
    .impact-grid{grid-template-columns:repeat(2,1fr)}
    .causes-grid{grid-template-columns:repeat(2,1fr)}
    .why-grid{grid-template-columns:repeat(2,1fr)}
    .gallery-grid{grid-template-columns:repeat(3,1fr)}
    .testimonial-card{min-width:100%}
}
@media(max-width:768px){
    .hero-content h1{font-size:30px}
    .causes-grid,.why-grid{grid-template-columns:1fr}
    .gallery-grid{grid-template-columns:repeat(2,1fr)}
    .about-list{grid-template-columns:1fr}
    .donate-cta-content h2{font-size:28px}
    .donate-cta-buttons{flex-direction:column;align-items:center}
    .impact-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:480px){
    .hero-content h1{font-size:26px}
    .hero-card{grid-template-columns:1fr}
    .gallery-grid{grid-template-columns:1fr 1fr}
    .impact-grid{grid-template-columns:1fr}
    .testimonial-inner{padding:25px 20px}
}

/* --- FORM FIELDS (join/volunteer page) --- */
.form-field{margin-bottom:5px}
.form-field label{display:block;font-size:13px;font-weight:600;color:#1E2F5C;margin-bottom:6px}
.form-field label i{margin-right:6px;color:#0B5C84}
.form-field input,.form-field select,.form-field textarea{width:100%;padding:12px 16px;border:1px solid #dde3ed;border-radius:10px;font-size:14px;font-family:'Poppins',sans-serif;transition:all .3s ease;background:#fff;color:#333}
.form-field input:focus,.form-field select:focus,.form-field textarea:focus{border-color:#2FA4C9;box-shadow:0 0 0 3px rgba(47,164,201,.12);outline:none}
.form-field input[type="file"]{padding:10px;cursor:pointer}

/* --- ABOUT BUTTONS --- */
.about-buttons{display:flex;gap:15px;flex-wrap:wrap;margin-top:10px}

/* --- PAGE BANNER breadcrumb --- */
.page-banner .breadcrumb{color:rgba(255,255,255,.7);font-size:15px;margin-top:10px}
.page-banner .breadcrumb a{color:#FFD166;text-decoration:none}
.page-banner .breadcrumb a:hover{color:#fff}
