/* ============================================
   Sanatan Dharma Hindu Foundation
   Modern UI/UX Design System
   ============================================ */

/* Color Variables */
:root {
    --primary: #F58220;
    --primary-dark: #E6730A;
    --primary-light: #FF9A3D;
    --secondary: #009688;
    --secondary-dark: #00796B;
    --secondary-light: #4DB6AC;
    --saffron: #F58220;
    --green: #009688;
    --accent: #F44336;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --text-dark: #2C1810;
    --text-muted: #666666;
    --border-color: #E0E0E0;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.2);
    --gradient-primary: linear-gradient(135deg, #F58220 0%, #FF9A3D 100%);
    --gradient-secondary: linear-gradient(135deg, #009688 0%, #4DB6AC 100%);
    --gradient-hero: linear-gradient(135deg, #F58220 0%, #009688 100%);
}

/* Typography */
body {
    font-family: 'Poppins', 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-weight: 600;
    color: var(--text-dark);
}

/* ============================================
   Top Header Bar
   ============================================ */

.top-header-bar {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    height: 45px;
    display: flex;
    align-items: center;
}

.top-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
}

/* Left Side: Social Icons */
.top-header-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-header-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 500;
    margin-right: 0.5rem;
}

.top-social-icon {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.top-social-icon:hover {
    background: var(--saffron);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 130, 32, 0.4);
}

/* Right Side: Start a Free Fundraiser Button */
.top-header-cta {
    display: flex;
    align-items: center;
}

.top-header-fundraiser-btn {
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1.15rem;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(245, 130, 32, 0.3);
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    height: 32px;
}

.top-header-fundraiser-btn:hover {
    background: #E6730A;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(245, 130, 32, 0.5);
}

/* ============================================
   Modern Navigation Header (ImpactGuru Style)
   ============================================ */

/* Main Header Container */
.main-header {
    position: fixed;
    top: 45px;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(to bottom, #ffffff 0%, #f5f5f5 100%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.main-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

/* Hide top header bar on scroll (optional - can be enabled) */
.top-header-bar.hidden {
    transform: translateY(-100%);
    opacity: 0;
}

/* Navbar Custom */
.navbar-custom {
    padding: 0;
}

.navbar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 0;
    min-height: 70px;
}

/* Logo/Brand Section */
.navbar-brand-wrapper {
    display: flex;
    align-items: center;
}

.navbar-brand-custom {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.navbar-brand-custom:hover {
    transform: translateY(-2px);
    color: var(--text-dark);
}

.logo-placeholder {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    margin-right: 12px;
    box-shadow: 0 2px 8px rgba(245, 130, 32, 0.3);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.navbar-brand-custom:hover .logo-placeholder {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(245, 130, 32, 0.4);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name-main {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.2;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
}

.brand-tagline-small {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1;
    margin-top: 2px;
}

/* Desktop Navigation Menu */
.navbar-menu-desktop {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
}

.nav-item-custom {
    position: relative;
}

.nav-link-custom {
    display: inline-block;
    padding: 0.55rem 1.1rem;
    color: #222;
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    position: relative;
    white-space: nowrap;
}

.nav-link-custom:hover {
    color: var(--saffron);
    background: rgba(245, 130, 32, 0.1);
    transform: translateY(-2px);
}

.nav-link-custom.active {
    color: var(--saffron);
    background: rgba(245, 130, 32, 0.1);
}

/* Saffron Button Style (Start a Free Fundraiser) */
.nav-link-saffron {
    background: var(--saffron) !important;
    color: white !important;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(245, 130, 32, 0.3);
}

.nav-link-saffron:hover {
    background: #E6730A !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(245, 130, 32, 0.5);
    transform: translateY(-2px);
}

.nav-link-saffron.active {
    background: #E6730A !important;
}

/* Green Button Style (Register Now) */
.nav-link-green {
    background: var(--green) !important;
    color: white !important;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 150, 136, 0.3);
}

.nav-link-green:hover {
    background: #00796B !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(0, 150, 136, 0.5);
    transform: translateY(-2px);
}

/* Dropdown Menu */
.dropdown-custom {
    position: relative;
}

.dropdown-toggle-custom::after {
    display: inline-block;
    margin-left: 0.5rem;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}

.dropdown-menu-custom {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 200px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    z-index: 1000;
}

.dropdown-custom:hover .dropdown-menu-custom {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu-custom li {
    margin: 0;
}

.dropdown-menu-custom a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #222;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.dropdown-menu-custom a:hover {
    background: rgba(245, 130, 32, 0.1);
    color: var(--saffron);
    padding-left: 2rem;
}

.dropdown-menu-custom .dropdown-divider {
    height: 1px;
    margin: 0.5rem 0;
    background: #e0e0e0;
    border: none;
}

/* Mobile Menu Toggle Button */
.navbar-toggle-mobile {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.navbar-toggle-mobile.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggle-mobile.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.navbar-toggle-mobile.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu */
.navbar-menu-mobile {
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-top: 1rem;
    border-radius: 10px;
}

.navbar-menu-mobile.active {
    max-height: 600px;
    display: block;
}

.navbar-menu-mobile-list {
    list-style: none;
    padding: 1rem 0;
    margin: 0;
}

.navbar-menu-mobile-list li {
    margin: 0;
}

.mobile-nav-link {
    display: block;
    padding: 1rem 1.5rem;
    color: #222;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.mobile-nav-link:hover {
    background: rgba(245, 130, 32, 0.1);
    color: var(--saffron);
    border-left-color: var(--saffron);
    padding-left: 2rem;
}

.mobile-nav-saffron {
    background: rgba(245, 130, 32, 0.1);
    color: var(--saffron);
    font-weight: 600;
    border-left-color: var(--saffron);
}

.mobile-nav-green {
    background: rgba(0, 150, 136, 0.1);
    color: var(--green);
    font-weight: 600;
    border-left-color: var(--green);
}

/* Header Spacer (to prevent content overlap) */
.header-spacer {
    height: 115px; /* Top header (45px) + Main header (70px) */
}

/* Responsive Design */
@media (max-width: 991px) {
    .top-header-bar {
        padding: 0.5rem 0;
        height: 40px;
    }
    
    .top-header-label {
        display: none;
    }
    
    .top-social-icon {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
    
    .top-header-fundraiser-btn {
        padding: 0.4rem 0.9rem;
        font-size: 0.8rem;
        height: 28px;
    }
    
    .main-header {
        top: 40px;
    }
    
    .navbar-wrapper {
        padding: 0.75rem 0;
        min-height: 65px;
    }
    
    .navbar-menu-desktop {
        display: none;
    }
    
    .navbar-toggle-mobile {
        display: flex;
    }
    
    .navbar-menu-mobile {
        display: block;
    }
    
    .brand-name-main {
        font-size: 1rem;
    }
    
    .brand-tagline-small {
        font-size: 0.65rem;
    }
    
    .logo-placeholder {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .header-spacer {
        height: 105px;
    }
}

@media (max-width: 576px) {
    .top-header-bar {
        padding: 0.4rem 0;
        height: 38px;
    }
    
    .top-header-social {
        gap: 6px;
    }
    
    .top-social-icon {
        width: 26px;
        height: 26px;
        font-size: 0.75rem;
    }
    
    .top-header-fundraiser-btn {
        padding: 0.35rem 0.75rem;
        font-size: 0.75rem;
        height: 26px;
    }
    
    .top-header-fundraiser-btn .me-2 {
        margin-right: 0.25rem !important;
    }
    
    .top-header-fundraiser-btn i {
        font-size: 0.7rem;
    }
    
    .main-header {
        top: 38px;
    }
    
    .navbar-wrapper {
        padding: 0.65rem 0;
        min-height: 60px;
    }
    
    .brand-name-main {
        font-size: 0.9rem;
    }
    
    .brand-tagline-small {
        display: none;
    }
    
    .logo-placeholder {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        margin-right: 8px;
    }
    
    .header-spacer {
        height: 98px;
    }
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* ============================================
   Modern Professional Footer
   ============================================ */

.modern-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffffff;
    margin-top: 80px;
}

.footer-main {
    padding: 60px 0 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-widget {
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.footer-logo-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(245, 130, 32, 0.3);
}

.footer-logo-text h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.footer-logo-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin: 0;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-link:hover {
    background: var(--saffron);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(245, 130, 32, 0.4);
}

.footer-title {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--saffron);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.footer-contact li i {
    width: 40px;
    height: 40px;
    background: rgba(245, 130, 32, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--saffron);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.footer-contact li div {
    flex: 1;
}

.footer-contact li strong {
    display: block;
    color: white;
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-contact li a,
.footer-contact li span {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    display: block;
}

.footer-contact li a:hover {
    color: var(--saffron);
}

.footer-trust {
    padding: 30px 0;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.trust-badge-item:hover {
    background: rgba(245, 130, 32, 0.2);
    transform: translateY(-2px);
}

.trust-badge-item i {
    color: var(--saffron);
    font-size: 1.1rem;
}

.footer-bottom {
    padding: 25px 0;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.footer-bottom strong {
    color: white;
}

.footer-legal {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--saffron);
}

.footer-legal .separator {
    color: rgba(255, 255, 255, 0.3);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(245, 130, 32, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.scroll-to-top.show {
    display: flex;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(245, 130, 32, 0.6);
    background: #E6730A;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-main {
        padding: 40px 0 30px;
    }
    
    .trust-badges {
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    .footer-legal {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .footer-bottom .text-md-end {
        text-align: center !important;
    }
    
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: var(--gradient-primary);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 213, 79, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(244, 67, 54, 0.15) 0%, transparent 50%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Page Header */
.page-header {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.bg-gradient-primary {
    background: var(--gradient-primary);
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.stat-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin: 1rem 0;
}

.stat-label {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin: 0;
}

/* Campaign Cards */
.campaign-card {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.campaign-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.campaign-image {
    position: relative;
    height: 200px;
    background-size: cover;
    background-position: center;
}

.campaign-category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
}

.campaign-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.campaign-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.campaign-title a:hover {
    color: var(--primary);
}

.campaign-description {
    flex: 1;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.campaign-progress {
    margin: 1rem 0;
}

.progress {
    height: 8px;
    border-radius: 10px;
    background: var(--bg-light);
}

.progress-bar {
    background: var(--gradient-primary);
    border-radius: 10px;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

/* Buttons */
.btn-primary {
    background: var(--gradient-primary);
    border: none;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: var(--gradient-primary);
}

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Auth Pages */
.auth-section {
    min-height: calc(100vh - 200px);
    padding: 80px 0;
    background: linear-gradient(135deg, #FFF7E6 0%, #FFFFFF 100%);
}

.auth-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 3rem;
}

.auth-card-header {
    margin-bottom: 2rem;
}

.auth-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
}

.auth-form .form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.auth-form .form-control {
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.auth-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(230, 81, 0, 0.25);
}

.auth-footer a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* Donation Form */
.donation-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.donation-card {
    background: var(--bg-white);
    border-radius: 20px;
}

.donation-progress {
    margin-bottom: 2rem;
}

.progress-steps {
    position: relative;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--border-color);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.step.active .step-circle {
    background: var(--gradient-primary);
    color: white;
}

.step-line {
    flex: 1;
    height: 2px;
    background: var(--border-color);
    margin: 20px 10px 0;
}

.form-section {
    margin-bottom: 2rem;
}

.section-title {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.payment-option {
    position: relative;
}

.payment-option input[type="radio"] {
    display: none;
}

.payment-label {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-option input[type="radio"]:checked + .payment-label {
    border-color: var(--primary);
    background: var(--bg-light);
    box-shadow: var(--shadow-sm);
}

.payment-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-right: 1rem;
}

.payment-info {
    flex: 1;
}

.payment-badge {
    color: var(--primary);
    font-size: 0.9rem;
}

.qr-section {
    animation: fadeIn 0.5s ease;
}

.qr-code-wrapper {
    padding: 1rem;
    background: white;
    border-radius: 10px;
    display: inline-block;
}

.qr-code-image {
    max-width: 250px;
    height: auto;
    border-radius: 10px;
}

.bank-details {
    background: white;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
}

/* About Page */
.about-card, .value-card, .feature-card {
    background: var(--bg-white);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
}

.about-card:hover, .value-card:hover, .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.about-icon, .value-icon, .feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
}

.value-icon, .feature-icon {
    margin: 0 auto 1rem;
}

/* Contact Page */
.contact-info-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-details h6 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.social-icon-link {
    width: 50px;
    height: 50px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.3rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon-link:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-3px);
}

/* Footer */
.footer-section {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 20px;
}

.footer-section h5, .footer-section h6 {
    color: var(--secondary);
    margin-bottom: 1rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--secondary);
}

.social-links .social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
}

.social-links .social-icon:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

/* Campaign Detail Page */
.campaign-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    background: var(--gradient-primary);
}

.campaign-hero-image {
    position: relative;
    width: 100%;
}

.campaign-details {
    padding: 80px 0;
    background: var(--bg-light);
}

.donation-sidebar {
    position: sticky;
    top: 100px;
}

.quick-amounts .btn {
    border-radius: 25px;
    transition: all 0.3s ease;
}

.quick-amounts .btn:hover {
    transform: translateY(-2px);
}

.donor-item {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.donor-item:last-child {
    border-bottom: none;
}

.donor-avatar {
    color: var(--primary);
}

/* Alerts */
.alert {
    border-radius: 10px;
    border: none;
    padding: 1rem 1.5rem;
}

.alert-danger {
    background: #ffebee;
    color: #c62828;
}

.alert-success {
    background: #e8f5e9;
    color: #2e7d32;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.cta-section h2 {
    color: white;
}

.cta-section .btn {
    background: white;
    color: var(--primary);
}

.cta-section .btn:hover {
    background: var(--secondary);
    color: var(--text-dark);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        min-height: 80vh;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .campaign-card {
        margin-bottom: 2rem;
    }
    
    .payment-label {
        flex-direction: column;
        text-align: center;
    }
    
    .payment-icon {
        margin: 0 auto 1rem;
    }
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: all 0.3s ease;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.scroll-top.show {
    display: flex;
}

/* Loading Spinner */
.spinner {
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Campaign Updates & Comments */
.update-item, .comment-item {
    transition: all 0.3s ease;
}

.update-item:hover, .comment-item:hover {
    background: var(--bg-light);
    border-radius: 10px;
    padding: 0.5rem;
    margin: -0.5rem;
}

.milestone-item {
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.milestone-item:hover {
    background: #fff;
    box-shadow: var(--shadow-sm);
}

/* Stat Mini */
.stat-mini {
    text-align: center;
}

.stat-mini-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.stat-mini-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Company Profile */
.company-stats .stat-item {
    text-align: center;
}

.company-stats .stat-label {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.company-stats .stat-value {
    color: var(--text-dark);
}

/* Social Share Buttons */
.social-share .btn {
    transition: all 0.3s ease;
}

.social-share .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* Comments */
.comment-avatar {
    flex-shrink: 0;
}

.comments-list {
    max-height: 600px;
    overflow-y: auto;
}

/* Campaign Updates */
.updates-section .card {
    border: none;
    box-shadow: var(--shadow-sm);
}

/* Enhanced Campaign Cards */
.campaign-card {
    transition: all 0.3s ease;
}

.campaign-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* Admin Enhancements */
.admin-dashboard {
    background: var(--bg-light);
    min-height: 100vh;
    padding-top: 100px;
}

.stat-card-admin {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.stat-card-admin:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-icon-admin {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.stat-content h3 {
    margin: 0;
    font-size: 1.8rem;
    color: var(--text-dark);
}

.stat-content p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ============================================
   ImpactGuru Style Homepage
   ============================================ */

/* Hero Banner Section */
.hero-banner-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--gradient-hero);
    padding-top: 115px; /* Account for top header (45px) + main header (70px) */
}

/* Hero Badge */
.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Hero Stats */
.hero-stats {
    margin-top: 3rem;
}

.hero-stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.hero-stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.hero-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero-stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero Shapes Animation */
.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
    animation-delay: 5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 10%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    background-size: cover;
    z-index: 1;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(245, 130, 32, 0.9) 0%, rgba(0, 150, 136, 0.9) 100%);
    z-index: 2;
}

.hero-banner-section .container {
    position: relative;
    z-index: 3;
}

.hero-heading {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    margin-bottom: 1.5rem;
}

.hero-heart-icon {
    color: #FF6B9D;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.hero-subheading {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 0 1px 5px rgba(0,0,0,0.1);
}

.hero-buttons {
    margin-top: 2rem;
}

.btn-hero-primary {
    background: white;
    color: var(--saffron);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(0,0,0,0.3);
    background: #f0f0f0;
    color: var(--saffron);
}

.btn-hero-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: white;
    color: var(--green);
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(0,0,0,0.3);
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 3;
}

.hero-wave svg {
    width: 100%;
    height: 100%;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: white;
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="%23f0f0f0" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.features-section .container {
    position: relative;
    z-index: 1;
}

.feature-card {
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

/* Categories Section */
.categories-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.category-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.category-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.1);
}

.category-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.category-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.btn-category {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-category:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(245, 130, 32, 0.4);
    color: white;
}

/* Statistics Section */
.stats-section {
    padding: 100px 0;
    background: var(--gradient-hero);
    color: white;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="2" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
    z-index: 0;
}

.stats-section .container {
    position: relative;
    z-index: 1;
}

.stat-card-large {
    padding: 2rem 1rem;
}

.stat-number-large {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.stat-label-large {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    line-height: 1.4;
}

/* Fundraisers Section */
.fundraisers-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.fundraiser-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.fundraiser-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.verified-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--green);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.fundraiser-image {
    height: 200px;
    position: relative;
    overflow: hidden;
    background: var(--gradient-hero);
}

.fundraiser-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--saffron);
    z-index: 2;
}

.fundraiser-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.fundraiser-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.fundraiser-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.fundraiser-title a:hover {
    color: var(--saffron);
}

.fundraiser-description {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.fundraiser-progress {
    margin-bottom: 1rem;
}

.progress-bar-wrapper {
    height: 8px;
    background: #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 10px;
    transition: width 0.5s ease;
}

.btn-donate-now {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    text-align: center;
}

.btn-donate-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(245, 130, 32, 0.4);
    color: white;
}

.btn-view-all {
    background: transparent;
    color: var(--saffron);
    border: 2px solid var(--saffron);
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-view-all:hover {
    background: var(--saffron);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(245, 130, 32, 0.4);
}

/* Trust Section */
.trust-section {
    padding: 100px 0;
    background: white;
    position: relative;
}

.trust-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(245, 130, 32, 0.3), transparent);
}

.trust-card {
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.trust-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.trust-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.trust-card:hover .trust-icon {
    transform: scale(1.1) rotate(-5deg);
}

.trust-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.trust-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

/* Utility Classes */
.text-saffron {
    color: var(--saffron) !important;
}

.text-green {
    color: var(--green) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-heading {
        font-size: 2rem;
    }
    
    .hero-subheading {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .stat-number-large {
        font-size: 2.5rem;
    }
    
    .stat-label-large {
        font-size: 0.75rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 300px;
    }
}

