/* assets/css/style.css - Modern Template & Design System for Sankalp Social Welfare Foundation */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
    /* Primary Brand Colors */
    --brand-primary: #044d36;         /* Deep Forest Emerald */
    --brand-primary-light: #059669;   /* Vibrant Emerald */
    --brand-primary-dark: #022c1f;    /* Midnight Forest */
    
    /* Secondary & Accent Colors */
    --brand-secondary: #f59e0b;       /* Warm Sunrise Amber */
    --brand-secondary-hover: #d97706; /* Rich Amber */
    --brand-accent: #f43f5e;          /* Vibrant Coral Rose */
    --brand-accent-hover: #e11d48;
    
    /* Backgrounds & Surfaces */
    --bg-main: #ffffff;
    --bg-surface: #f8fafc;
    --bg-surface-alt: #f1f5f9;
    --bg-dark-slate: #0f172a;         /* Deep Charcoal Navy */
    --bg-dark-card: #1e293b;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.2);
    
    /* Text Colors */
    --text-heading: #0f172a;
    --text-body: #334155;
    --text-muted: #64748b;
    --text-light: #f8fafc;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Shadows & Radii */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-pill: 50px;
    
    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 16px 36px rgba(15, 23, 42, 0.12);
    --shadow-glow-primary: 0 8px 25px rgba(5, 150, 105, 0.35);
    --shadow-glow-secondary: 0 8px 25px rgba(245, 158, 11, 0.35);
    
    /* Transitions */
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Reset & Base Typography */
body {
    font-family: var(--font-body);
    color: var(--text-body);
    background-color: var(--bg-main);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
}

a {
    color: var(--brand-primary-light);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--brand-primary-dark);
}

/* Custom Buttons System */
.btn-ngo-primary {
    background: linear-gradient(135deg, var(--brand-primary-light) 0%, var(--brand-primary) 100%);
    color: #ffffff !important;
    border: none;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-ngo-primary:hover {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-primary);
    color: #ffffff !important;
}

.btn-ngo-secondary {
    background: linear-gradient(135deg, var(--brand-secondary) 0%, var(--brand-secondary-hover) 100%);
    color: #ffffff !important;
    border: none;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-ngo-secondary:hover {
    background: linear-gradient(135deg, var(--brand-secondary-hover) 0%, #b45309 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-secondary);
    color: #ffffff !important;
}

.btn-ngo-outline {
    background: transparent;
    color: var(--brand-primary) !important;
    border: 2px solid var(--brand-primary);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 10px 26px;
    border-radius: var(--radius-pill);
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-ngo-outline:hover {
    background-color: var(--brand-primary);
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.btn-ngo-outline-light {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff !important;
    border: 2px solid rgba(255, 255, 255, 0.4);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 10px 26px;
    border-radius: var(--radius-pill);
    backdrop-filter: blur(4px);
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-ngo-outline-light:hover {
    background: #ffffff;
    color: var(--brand-primary-dark) !important;
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* Header Top Bar */
.top-header-bar {
    background-color: var(--bg-dark-slate);
    color: #94a3b8;
    font-size: 0.875rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-header-bar a {
    color: #cbd5e1;
}

.top-header-bar a:hover {
    color: var(--brand-secondary);
}

.helpline-chip {
    background: rgba(245, 158, 11, 0.15);
    color: var(--brand-secondary);
    border: 1px solid rgba(245, 158, 11, 0.3);
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 0.78rem;
    font-weight: 600;
}

/* Glassmorphism Header & Sticky Navbar */
.header-sticky-wrapper {
    position: sticky;
    top: 0;
    z-index: 1030;
}

.navbar-custom {
    background-color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
    padding: 14px 0;
    transition: var(--transition-base);
}

.navbar-brand-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar-brand-wrapper img {
    height: 52px;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.brand-text-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--brand-primary);
    line-height: 1.1;
}

.brand-text-sub {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nav-link-custom {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-heading) !important;
    padding: 8px 14px !important;
    border-radius: 8px;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link-custom:hover,
.nav-link-custom.active {
    color: var(--brand-primary-light) !important;
    background-color: rgba(5, 150, 105, 0.08);
}

.nav-link-custom.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 14px;
    right: 14px;
    height: 3px;
    background: var(--brand-primary-light);
    border-radius: 3px;
}

/* Modern Hero Section */
.hero-slider-wrapper {
    position: relative;
    overflow: hidden;
}

.hero-slider-wrapper .carousel-item {
    height: 680px;
    min-height: 580px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(4, 77, 54, 0.75) 50%, rgba(15, 23, 42, 0.65) 100%);
}

.hero-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    color: var(--brand-secondary);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3.6rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 20px;
    text-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.hero-lead {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    max-width: 640px;
}

/* Floating Hero Stat Card */
.hero-stat-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    padding: 24px;
    color: #ffffff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.hero-stat-card .stat-val {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--brand-secondary);
    line-height: 1;
}

.hero-stat-card .stat-lbl {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

/* Section Title Styling */
.section-tagline {
    font-family: var(--font-heading);
    color: var(--brand-primary-light);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 8px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-heading);
    line-height: 1.2;
    margin-bottom: 16px;
}

/* Who We Are & Feature Cards */
.feature-card-modern {
    background: var(--bg-main);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: var(--radius-md);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    height: 100%;
}

.feature-card-modern:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--brand-primary-light);
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: rgba(5, 150, 105, 0.1);
    color: var(--brand-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
}

/* Key Causes Cards */
.cause-card {
    background: var(--bg-main);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.cause-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.cause-img-box {
    position: relative;
    height: 230px;
    overflow: hidden;
}

.cause-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.cause-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cause-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.progress-custom {
    height: 10px;
    background-color: #e2e8f0;
    border-radius: var(--radius-pill);
    overflow: hidden;
}

.progress-bar-custom {
    background: linear-gradient(90deg, var(--brand-primary-light) 0%, var(--brand-secondary) 100%);
    border-radius: var(--radius-pill);
}

/* Active Campaign horizontal/grid layout */
.campaign-card-horizontal {
    background: var(--bg-main);
    border-radius: var(--radius-lg);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.campaign-card-horizontal:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.badge-live-pulse {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(244, 63, 94, 0.12);
    color: var(--brand-accent);
    font-weight: 700;
    font-size: 0.78rem;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--brand-accent);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(244, 63, 94, 0.7);
    animation: pulse 1.6s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(244, 63, 94, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(244, 63, 94, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(244, 63, 94, 0); }
}

/* Impact Statistics Counter Section */
.impact-stats-section {
    background: linear-gradient(135deg, var(--bg-dark-slate) 0%, var(--brand-primary-dark) 100%);
    color: #ffffff;
    padding: 90px 0;
    position: relative;
}

.glass-stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 32px 20px;
    text-align: center;
    transition: var(--transition-base);
}

.glass-stat-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-6px);
    border-color: rgba(245, 158, 11, 0.4);
}

.glass-stat-card i {
    font-size: 2.8rem;
    color: var(--brand-secondary);
    margin-bottom: 16px;
}

.glass-stat-card .counter-number {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass-stat-card .counter-label {
    font-size: 0.95rem;
    color: #94a3b8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Calendar Date Badge & Events */
.event-item-card {
    background: var(--bg-surface);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    padding: 20px;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    gap: 20px;
}

.event-item-card:hover {
    background: #ffffff;
    transform: translateX(6px);
    box-shadow: var(--shadow-md);
    border-color: var(--brand-primary-light);
}

.event-date-box {
    width: 75px;
    height: 75px;
    min-width: 75px;
    background: linear-gradient(135deg, var(--brand-primary-light) 0%, var(--brand-primary) 100%);
    color: #ffffff;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.25);
}

.event-date-box .day {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}

.event-date-box .month {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Activity Item */
.activity-card {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 16px;
    border-radius: var(--radius-md);
    background: var(--bg-surface);
    border: 1px solid #e2e8f0;
    transition: var(--transition-base);
}

.activity-card:hover {
    background: #ffffff;
    box-shadow: var(--shadow-sm);
    border-color: var(--brand-secondary);
}

.activity-thumb {
    width: 90px;
    height: 90px;
    min-width: 90px;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

/* Photo Gallery Zoom Grid */
.gallery-hover-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    display: block;
    aspect-ratio: 4 / 3;
    box-shadow: var(--shadow-sm);
}

.gallery-hover-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-hover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.85) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition-base);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    color: #ffffff;
}

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

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

/* Testimonial Cards */
.testimonial-card-modern {
    background: var(--bg-surface);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    box-shadow: var(--shadow-sm);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.testimonial-card-modern::before {
    content: "\f10d";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 24px;
    right: 28px;
    font-size: 2.5rem;
    color: rgba(5, 150, 105, 0.12);
}

.testimonial-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--brand-primary-light);
}

.star-rating {
    color: var(--brand-secondary);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

/* Newsletter Section */
.newsletter-banner {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--bg-dark-slate) 100%);
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    color: #ffffff;
    box-shadow: var(--shadow-lg);
}

.newsletter-input-pill {
    background: #ffffff;
    border-radius: var(--radius-pill);
    padding: 6px;
    display: flex;
    align-items: center;
}

.newsletter-input-pill input {
    border: none;
    outline: none;
    padding: 10px 20px;
    width: 100%;
    border-radius: var(--radius-pill);
    font-size: 0.95rem;
}

/* Footer Section */
.footer-dark-modern {
    background-color: var(--bg-dark-slate);
    color: #94a3b8;
    padding-top: 80px;
    padding-bottom: 30px;
}

.footer-dark-modern h5 {
    color: #ffffff;
    font-size: 1.15rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 10px;
}

.footer-dark-modern h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 3px;
    background: var(--brand-secondary);
    border-radius: 3px;
}

.footer-dark-modern ul li {
    margin-bottom: 12px;
}

.footer-dark-modern ul li a {
    color: #cbd5e1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.footer-dark-modern ul li a:hover {
    color: var(--brand-secondary);
    transform: translateX(4px);
}

.social-icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    margin-right: 8px;
}

.social-icon-btn:hover {
    background: var(--brand-primary-light);
    color: #ffffff;
    transform: translateY(-3px);
}

/* Floating WhatsApp Pulsing Widget */
.whatsapp-pulse {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 58px;
    height: 58px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition-base);
    animation: waPulse 2s infinite;
}

.whatsapp-pulse:hover {
    background-color: #128c7e;
    color: #ffffff;
    transform: scale(1.1);
}

@keyframes waPulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Back to Top Button */
.back-top-btn {
    position: fixed;
    bottom: 32px;
    left: 32px;
    width: 46px;
    height: 46px;
    background: var(--brand-primary-light);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    transition: var(--transition-base);
}

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

.back-top-btn:hover {
    background: var(--brand-primary-dark);
    transform: translateY(-4px);
}

/* Page Header Inner Banner */
.inner-page-header {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(4, 77, 54, 0.85) 100%), url('../images/banner-bg.jpg') center/cover no-repeat;
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.inner-page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
}

@media (max-width: 1199.98px) {
    .navbar-collapse {
        background: #ffffff;
        padding: 20px;
        border-radius: var(--radius-md);
        box-shadow: 0 12px 32px rgba(15, 23, 42, 0.15);
        margin-top: 14px;
        border: 1px solid rgba(226, 232, 240, 0.9);
    }
    .nav-link-custom {
        padding: 10px 16px !important;
        margin-bottom: 4px;
    }
    .nav-link-custom.active::after {
        display: none;
    }
}

@media (max-width: 991.98px) {
    .hero-title { font-size: 2.4rem; }
    .hero-slider-wrapper .carousel-item { height: auto; min-height: 520px; padding: 60px 0; }
    .section-title { font-size: 2rem; }
}

/* Legacy Utility & Button Classes Compatibility */
.page-header {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(4, 77, 54, 0.85) 100%), url('../images/banner-bg.jpg') center/cover no-repeat;
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
}

.btn-primary-ngo {
    background: linear-gradient(135deg, var(--brand-primary-light) 0%, var(--brand-primary) 100%);
    color: #ffffff !important;
    border: none;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 10px 24px;
    border-radius: var(--radius-pill);
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary-ngo:hover {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-primary);
    color: #ffffff !important;
}

.btn-secondary-ngo {
    background: linear-gradient(135deg, var(--brand-secondary) 0%, var(--brand-secondary-hover) 100%);
    color: #ffffff !important;
    border: none;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 10px 24px;
    border-radius: var(--radius-pill);
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-secondary-ngo:hover {
    background: linear-gradient(135deg, var(--brand-secondary-hover) 0%, #b45309 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-secondary);
    color: #ffffff !important;
}

.btn-outline-ngo {
    background: transparent;
    color: var(--brand-primary) !important;
    border: 2px solid var(--brand-primary);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 10px 24px;
    border-radius: var(--radius-pill);
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-outline-ngo:hover {
    background-color: var(--brand-primary);
    color: #ffffff !important;
    transform: translateY(-2px);
}

.card-ngo {
    background: var(--bg-main);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    height: 100%;
}

.card-ngo:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.progress-ngo {
    height: 10px;
    background-color: #e2e8f0;
    border-radius: var(--radius-pill);
    overflow: hidden;
}

.progress-bar-ngo {
    background: linear-gradient(90deg, var(--brand-primary-light) 0%, var(--brand-secondary) 100%);
    border-radius: var(--radius-pill);
}

.text-primary-color { color: var(--brand-primary) !important; }
.text-secondary-color { color: var(--brand-secondary) !important; }
.bg-primary-color { background-color: var(--brand-primary) !important; }
.bg-secondary-color { background-color: var(--brand-secondary) !important; }
.bg-light-grey { background-color: var(--bg-surface) !important; }

