/* =================================================================
   UNIFIED STYLESHEET - All CSS Combined
   Contains all styles from separate CSS files and Razor components
   ================================================================= */

/* =================================================================
   1. FONTS & CSS VARIABLES
   ================================================================= */
@font-face {
    font-family: "BoutrosAsma";
    src: url("./fonts/BoutrosAsma.eot");
    src: url("./fonts/BoutrosAsma.eot?#iefix") format("embedded-opentype"), url("./fonts/BoutrosAsma.woff2") format("woff2"), url("./fonts/BoutrosAsma.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --bs-primary: #43936f;
    --bs-primary-rgb: 67, 147, 111;
    --bs-secondary: #dd3224;
    --bs-secondary-rgb: 221, 50, 36;
}

/* =================================================================
   2. BASE STYLES
   ================================================================= */
html {
    scroll-padding-top: 120px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

body {
    font-family: "BoutrosAsma", serif;
    padding-top: 100px; /* Adjust for fixed navbar */
}

/* RTL Support */
html, body, .main-section, .form-section, .modal, .modal-content, .container,
.donations-content-section, .organization-projects-page, .project-details-section,
.projects-section {
    direction: rtl !important;
    text-align: right !important;
}

h1:focus {
    outline: none;
}

a, .btn-link {
    color: #0071c1;
}

    /* Focus styles */
    .btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
        box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
    }

.content {
    padding-top: 1.1rem;
}

/* Form validation */
.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}

/* Code styling */
code {
    color: #c02d76;
}

/* =================================================================
   3. UTILITY CLASSES
   ================================================================= */
.btn.btn-mata {
    background: var(--bs-primary);
    color: white;
    font-size: 24px;
    min-width: 180px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

    .btn.btn-mata:hover {
        background: #3a805f;
        transform: translateY(-2px);
        color: white;
    }

.input-mata {
    padding: 10px 22px;
    border-radius: 50px;
    border: none;
    font-size: 16px;
    width: 100%;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

/* =================================================================
   4. ENHANCED NAVBAR STYLES
   ================================================================= */
.enhanced-navbar {
    position: fixed;
    width: 100%;
    z-index: 1050;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(67, 147, 111, 0.1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    padding: 0.75rem 0;
    direction: rtl;
    text-align: right;
}

    .enhanced-navbar.scrolled {
        background: rgba(255, 255, 255, 0.98) !important;
        box-shadow: 0 4px 25px rgba(0, 0, 0, 0.12);
        padding: 0.5rem 0;
    }

.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.enhanced-navbar .nav-link {
    font-weight: 500;
    font-size: 1rem;
    color: #2c3e50 !important;
    padding: 0.75rem 1.25rem !important;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    margin: 0 0.25rem;
    display: flex;
    align-items: center;
}

    .enhanced-navbar .nav-link:hover {
        color: var(--bs-primary) !important;
        background: rgba(67, 147, 111, 0.08);
        transform: translateY(-2px);
    }

    .enhanced-navbar .nav-link.active {
        color: white !important;
        background: var(--bs-primary);
        box-shadow: 0 4px 15px rgba(67, 147, 111, 0.3);
    }

    .enhanced-navbar .nav-link i {
        font-size: 1rem;
        margin-left: 0.5rem;
        transition: transform 0.3s ease;
    }

    .enhanced-navbar .nav-link:hover i {
        transform: scale(1.1);
    }

/* Projects Dropdown */
.projects-dropdown .dropdown-toggle {
    background: linear-gradient(135deg, var(--bs-primary), #5ba085);
    color: white !important;
    border: none;
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .projects-dropdown .dropdown-toggle::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        transition: left 0.5s ease;
    }

    .projects-dropdown .dropdown-toggle:hover::before {
        left: 100%;
    }

    .projects-dropdown .dropdown-toggle:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(67, 147, 111, 0.4);
    }

    .projects-dropdown .dropdown-toggle::after {
        margin-right: 0.5rem;
        transition: transform 0.3s ease;
    }

.projects-dropdown.show .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* Enhanced Dropdown Menu */
.enhanced-dropdown-menu {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 1rem 0;
    margin-top: 0.5rem;
    background: white;
    min-width: 280px;
    animation: dropdownFadeIn 0.3s ease-out;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.enhanced-dropdown-menu .dropdown-item {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    color: #2c3e50;
    transition: all 0.3s ease;
    border-radius: 10px;
    margin: 0.25rem 0.75rem;
    position: relative;
    display: flex;
    align-items: center;
}

    .enhanced-dropdown-menu .dropdown-item i {
        margin-left: 0.75rem;
        font-size: 1.1rem;
        color: var(--bs-primary);
        transition: transform 0.3s ease;
    }

    .enhanced-dropdown-menu .dropdown-item:hover {
        background: linear-gradient(135deg, rgba(67, 147, 111, 0.1), rgba(67, 147, 111, 0.05));
        color: var(--bs-primary);
        transform: translateX(-5px);
    }

        .enhanced-dropdown-menu .dropdown-item:hover i {
            transform: scale(1.2);
        }

/* WhatsApp Link Enhancement */
.whatsapp-link {
    background: linear-gradient(135deg, #25D366, #128C7E) !important;
    color: white !important;
    border-radius: 25px;
    padding: 0.75rem 1.25rem !important;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

    .whatsapp-link:hover {
        color: white !important;
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    }

    .whatsapp-link img {
        margin-left: 0.5rem;
        transition: transform 0.3s ease;
    }

    .whatsapp-link:hover img {
        transform: scale(1.1) rotate(10deg);
    }

/* Search Enhancement */
.nav-search-highlight {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 193, 7, 0.05)) !important;
    border: 2px solid #ffc107;
}

    .nav-search-highlight:hover {
        background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(255, 193, 7, 0.1)) !important;
        color: #856404 !important;
    }

/* Legacy navbar styles for admin section */
.min-navbar {
    position: fixed;
    width: 100%;
    z-index: 99;
    top: 0;
    left: 0;
}

    .min-navbar .navbar-toggler {
        margin-left: auto;
        background-color: rgba(255, 255, 255, 0.1);
    }

    .min-navbar .navbar-collapse {
        flex-grow: 0;
        width: 100%;
    }

    .min-navbar .top-row {
        height: 3.5rem;
        background-color: rgba(0,0,0,0.4);
    }

    .min-navbar .navbar-brand {
        font-size: 1.1rem;
    }

/* =================================================================
   5. MAIN SECTIONS
   ================================================================= */
.main-section {
    position: relative;
    background: white;
    overflow: hidden;
    padding-top: 120px !important;
}

    .main-section .centerized-box {
        text-align: center;
        max-width: 800px;
        margin: auto;
        padding: 60px 4%;
        padding-top: 60px; /* Reduced since we have body padding */
        position: relative;
        z-index: 33;
    }

        .main-section .centerized-box .hashtag {
            font-size: 24px;
            color: var(--bs-primary);
            font-weight: bold;
        }

        .main-section .centerized-box h1 {
            font-size: 60px;
            padding: 60px 0;
        }

            .main-section .centerized-box h1 span.r {
                display: block;
            }

        .main-section .centerized-box .action-container {
            margin-bottom: 25px;
        }

        .main-section .centerized-box p {
            font-size: 18px;
        }

    /* Floating Images */
    .main-section .circle-img {
        width: 10vw;
        height: 10vw;
        position: absolute;
    }

        .main-section .circle-img img {
            width: 90%;
            display: block;
            margin: auto;
            aspect-ratio: 1/1;
            object-fit: cover;
            border-radius: 1000px;
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
        }

.enhanced-hero-section .circle-img::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    z-index: 3;
    background-image: url("/images/ring.svg");
    background-position: center;
    background-repeat: no-repeat;
}

.enhanced-hero-section .floating-start-box {
    position: absolute;
    right: 0;
    top: 0;
    height: 100vh;
    width: 40%;
    z-index: 4;
}

.enhanced-hero-section .floating-start-box .circle-img.c1 {
    top: 15%;
    right: 35%;
    animation: float1 4s ease-in-out infinite;
}

.enhanced-hero-section .floating-start-box .circle-img.c2 {
    top: 35%;
    right: 5%;
    animation: float2 5s ease-in-out infinite;
}

.enhanced-hero-section .floating-end-box {
    position: absolute;
    left: 0;
    top: 0;
    height: 100vh;
    width: 40%;
    z-index: 4;
}

    .enhanced-hero-section .floating-end-box .circle-img.c1 {
        top: 25%;
        left: 40%;
        animation: float3 6s ease-in-out infinite;
    }

.enhanced-hero-sectionn .floating-end-box .circle-img.c2 {
    top: 45%;
    left: 25%;
    animation: float4 7s ease-in-out infinite;
}

.enhanced-hero-section .floating-end-box .circle-img.c3 {
    top: 55%;
    left: 35%;
    animation: float5 8s ease-in-out infinite;
}

.enhanced-hero-section .floating-back-box {
    position: absolute;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 1;
    filter: blur(10px);
    opacity: 0.4;
}

    .enhanced-hero-section .floating-back-box .circle-img {
        width: 100px;
        height: 100px;
    }

        .enhanced-hero-section .floating-back-box .circle-img.c1 {
            top: 14%;
            left: 37%;
            animation: float3 6s ease-in-out infinite;
        }

        .enhanced-hero-section .floating-back-box .circle-img.c2 {
            top: 44%;
            left: 34%;
            animation: float4 7s ease-in-out infinite;
        }

        .enhanced-hero-section .floating-back-box .circle-img.c3 {
            top: 54%;
            left: 60%;
            animation: float5 8s ease-in-out infinite;
        }

.enhanced-hero-section .circle-img {
    width: 10vw;
    height: 10vw;
    position: absolute;
}

    .enhanced-hero-section .circle-img img {
        width: 90%;
        display: block;
        margin: auto;
        aspect-ratio: 1/1;
        -o-object-fit: cover;
        object-fit: cover;
        border-radius: 1000px;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
    }

    .enhanced-hero-section .circle-img::after {
        content: "";
        position: absolute;
        top: 0;
        width: 100%;
        height: 100%;
        left: 0;
        z-index: 3;
        background-image: url("/images/ring.svg");
        background-position: center;
        background-repeat: no-repeat;
    }

.enhanced-hero-section .floating-start-box {
    position: absolute;
    right: 0;
    top: 0;
    height: 100vh;
    width: 40%;
    z-index: 4;
}

    .enhanced-hero-section .floating-start-box .circle-img.c1 {
        top: 28%;
        right: 50%;
        animation: float1 4s ease-in-out infinite;
    }

    .enhanced-hero-section .floating-start-box .circle-img.c2 {
        top: 44%;
        right: 20%;
        animation: float2 5s ease-in-out infinite;
    }

.enhanced-hero-section .floating-end-box {
    position: absolute;
    left: 0;
    top: 0;
    height: 100vh;
    width: 40%;
    z-index: 4;
}

        .main-section .floating-end-box .circle-img.c1 {
            top: 18%;
            left: 37%;
            animation: float3 6s ease-in-out infinite;
        }

.main-section .floating-end-box .circle-img.c2 {
    top: 45%;
    left: 25%;
    animation: float4 7s ease-in-out infinite;
}

        .main-section .floating-end-box .circle-img.c3 {
            top: 44%;
            left: 50%;
            animation: float5 8s ease-in-out infinite;
        }

    .main-section .floating-back-box {
        position: absolute;
        left: 0;
        top: 0;
        height: 100vh;
        width: 100%;
        z-index: 1;
        filter: blur(10px);
        opacity: 0.4;
    }

        .main-section .floating-back-box .circle-img {
            width: 100px;
            height: 100px;
        }

            .main-section .floating-back-box .circle-img.c1 {
                top: 14%;
                left: 37%;
                animation: float3 6s ease-in-out infinite;
            }

            .main-section .floating-back-box .circle-img.c2 {
                top: 44%;
                left: 34%;
                animation: float4 7s ease-in-out infinite;
            }

            .main-section .floating-back-box .circle-img.c3 {
                top: 54%;
                left: 60%;
                animation: float5 8s ease-in-out infinite;
            }

@media (max-width: 768px) {
    .main-section .circle-img {
        display: none;
    }
}

/* Enhanced Home Page Styles */

/* Enhanced Hero Section */

/* =================================================================
   6. SECTIONS LAYOUT
   ================================================================= */

/* Steps Section */
.steps-section {
    background: #f7f4d5;
    padding: 50px;
    text-align: center;
    position: relative;
}

    .steps-section img {
        height: 24px;
        width: 24px;
        object-fit: contain;
        margin: 0 10px;
        vertical-align: middle;
    }

    .steps-section span {
        color: #624b1f;
    }

    .steps-section .step-item {
        position: relative;
        z-index: 3;
        background: #f7f4d5;
        display: inline-block;
        padding: 0 10%;
    }

    .steps-section::after {
        content: "";
        border: 1px #624b1f dashed;
        opacity: 0.4;
        width: 50%;
        height: 1px;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        z-index: 1;
    }

/* About Section */
.about-section {
    background: var(--bs-primary);
    padding: 60px;
    margin: 40px 0;
    position: relative;
}

    .about-section .container {
        position: relative;
    }

    .about-section .content {
        max-width: 700px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 60px;
    }

        .about-section .content p {
            font-size: 22px;
            color: white;
            text-align: justify;
        }

    .about-section .logo {
        margin: auto;
        width: 100%;
        max-width: 400px;
        display: block;
    }

/* Form Section */
.form-section {
    padding: 50px 0;
}

    .form-section .search-form {
        background: #f0f0f0;
        border-radius: 10px;
        padding: 15px;
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 25px;
    }

        .form-section .search-form .btn {
            flex-shrink: 0;
        }

        .form-section .search-form label {
            font-size: 22px;
            flex-shrink: 0;
        }

        .form-section .search-form input {
            flex-grow: 1;
            font-size: 22px;
        }

    .form-section .send-form {
        background: #f0f0f0;
        border-radius: 10px;
        padding: 15px;
    }

        .form-section .send-form h2 {
            margin-bottom: 22px;
            font-size: 22px;
        }

    .form-section .logo {
        margin: auto;
        width: 100%;
        max-width: 400px;
        display: block;
    }

/* =================================================================
   7. PROJECT COMPONENTS
   ================================================================= */

/* Projects Types Section */
.projects-types-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.project-type-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .project-type-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    }

.project-type-header {
    padding: 30px 25px;
    flex-grow: 1;
}

.project-type-footer {
    padding: 20px 25px;
    background-color: rgba(255,255,255,0.1);
    text-align: center;
}

.donation-card {
    background: linear-gradient(135deg, #43936f 0%, #2a5c46 100%);
    color: white;
}

.organization-card {
    background: linear-gradient(135deg, #3f51b5 0%, #303f9f 100%);
    color: white;
}

.project-type-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.project-type-card p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.project-btn {
    background-color: white;
    color: #333;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 30px;
    border: none;
    transition: all 0.3s ease;
}

.donation-card .project-btn:hover {
    background-color: #f8f9fa;
    color: #43936f;
}

.organization-card .project-btn:hover {
    background-color: #f8f9fa;
    color: #3f51b5;
}

/* Projects Section - General */
.projects-section {
    padding-top: 140px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
}

.section-header {
    margin-bottom: 60px;
    position: relative;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.section-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: 200px;
}

    .section-decoration span {
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--bs-primary), transparent);
        flex-grow: 1;
    }

    .section-decoration i {
        color: var(--bs-primary);
        font-size: 14px;
        margin: 0 20px;
        animation: pulse 2s infinite;
    }

/* Enhanced Project Cards */
.project-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
}

    .project-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--bs-primary), var(--bs-secondary));
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .project-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }

        .project-card:hover::before {
            opacity: 1;
        }

.project-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.project-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card:hover .project-thumbnail {
    transform: scale(1.08);
}

.project-thumbnail-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
    color: #999;
}

    .project-thumbnail-placeholder i {
        font-size: 3.5rem;
    }

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
    opacity: 0;
    transition: all 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

/* Project Status */
.project-status {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
}

    .project-status .badge, .status-badge {
        font-size: 0.8rem;
        padding: 8px 12px;
        border-radius: 20px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255,255,255,0.2);
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 6px;
    }

        .project-status .badge i, .status-badge i {
            margin-left: 5px;
            font-size: 0.9em;
        }

/* Card Body */
.project-card-body {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.project-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
    line-height: 1.3;
    position: relative;
}

    .project-title::after {
        content: '';
        position: absolute;
        bottom: -5px;
        right: 0;
        width: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--bs-primary), var(--bs-secondary));
        transition: width 0.3s ease;
        border-radius: 2px;
    }

.project-card:hover .project-title::after {
    width: 60px;
}

.project-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.project-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.project-budget, .project-date {
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.project-budget {
    color: var(--bs-primary);
    font-weight: 700;
    background: rgba(67, 147, 111, 0.1);
    padding: 4px 8px;
    border-radius: 8px;
    direction: ltr !important
}

.project-date {
    color: #888;
    font-weight: 500;
}

.project-progress {
    margin-top: auto;
}

    .project-progress .progress-label {
        color: #666;
        margin-bottom: 8px;
    }

/* Card Footer */
.project-card-footer {
    padding: 20px 24px;
    background: rgba(248, 249, 250, 0.5);
    border-top: 1px solid rgba(0,0,0,0.05);
}

.btn-project, .btn-project-org {
    width: 100%;
    color: white;
    background: linear-gradient(135deg, var(--bs-primary) 0%, #3a805f 100%);
    border: none;
    border-radius: 12px;
    padding: 12px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .btn-project::before, .btn-project-org::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        transition: left 0.6s ease;
    }

    .btn-project:hover::before, .btn-project-org:hover::before {
        left: 100%;
    }

    .btn-project:hover, .btn-project-org:hover {
        background: linear-gradient(135deg, #3a805f 0%, var(--bs-primary) 100%);
        box-shadow: 0 8px 25px rgba(67, 147, 111, 0.3);
        transform: translateY(-2px);
        color: white;
    }

    .btn-project i, .btn-project-org i {
        transition: transform 0.3s ease;
        font-size: 1.2em;
    }

    .btn-project:hover i, .btn-project-org:hover i {
        transform: translateX(-4px);
    }

/* Status Badge Classes */
.bg-status-planned, .bg-info {
    background: linear-gradient(135deg, #17a2b8, #138496) !important;
    color: white;
}

.bg-status-inprogress, .bg-primary {
    background: linear-gradient(135deg, #007bff, #0056b3) !important;
    color: white;
}

.bg-status-completed, .bg-success {
    background: linear-gradient(135deg, #28a745, #1e7e34) !important;
    color: white;
}

/* Project Features */
.project-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(67, 147, 111, 0.1);
    color: var(--bs-primary);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

    .feature-badge i {
        font-size: 0.8rem;
    }

/* =================================================================
   8. PROJECT DETAILS PAGE
   ================================================================= */
.project-details-section {
    padding-top: 100px;
    background: #f8f9fa;
    min-height: 100vh;
}

/* Loading & Error States */
.loading-container, .error-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}

.loading-spinner, .error-content {
    text-align: center;
}

.loading-text {
    margin-top: 20px;
    color: #666;
    font-size: 1.1rem;
}

.error-content i {
    font-size: 4rem;
    color: #ffc107;
    margin-bottom: 20px;
}

.error-content h3 {
    margin-bottom: 15px;
    color: #555;
}

/* Project Hero */
.project-hero {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 40px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(67, 147, 111, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    color: white;
}

.project-header {
    padding: 40px 0;
}

.project-status-badge {
    margin-bottom: 20px;
}

.project-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.project-meta-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
}

    .meta-item i {
        font-size: 1.1rem;
    }

.budget-highlight {
    font-weight: 700;
    font-size: 1.1rem;
    color: #ffd700;
}

/* Content Sections */
.project-content {
    margin-top: -20px;
    position: relative;
    z-index: 3;
}

.section-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

    .section-card .card-header {
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        padding: 20px 24px;
    }

        .section-card .card-header h3 {
            margin: 0;
            font-size: 1.3rem;
            font-weight: 600;
            color: #2c3e50;
            display: flex;
            align-items: center;
            gap: 10px;
        }

            .section-card .card-header h3 i {
                color: var(--bs-primary);
            }

    .section-card .card-body {
        padding: 24px;
    }

.project-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.additional-info {
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

    .additional-info h4 {
        font-size: 1.1rem;
        color: var(--bs-primary);
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .additional-info p {
        color: #666;
        line-height: 1.6;
    }

/* Timeline */
.project-timeline {
    position: relative;
    padding: 20px 0;
}

    .project-timeline::before {
        content: '';
        position: absolute;
        right: 20px;
        top: 0;
        bottom: 0;
        width: 3px;
        background: linear-gradient(180deg, var(--bs-primary) 0%, #ddd 100%);
    }

.timeline-item {
    position: relative;
    padding: 0 0 30px 60px;
    margin-bottom: 20px;
}

    .timeline-item:last-child {
        margin-bottom: 0;
    }

.timeline-marker {
    position: absolute;
    right: 8px;
    top: 5px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #ddd;
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.timeline-item.active .timeline-marker {
    background: var(--bs-primary);
    animation: pulse 2s infinite;
}

.timeline-item.completed .timeline-marker {
    background: #28a745;
}

.timeline-content h5 {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.timeline-content p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

/* Budget Card */
.budget-card .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.budget-total {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bs-primary);
    background: rgba(67, 147, 111, 0.1);
    padding: 8px 16px;
    border-radius: 10px;
    direction: ltr !important;
}

.expenses-list {
    max-height: 300px;
    overflow-y: auto;
}

.expense-item {
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

    .expense-item:last-child {
        border-bottom: none;
    }

.expense-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.expense-name {
    font-weight: 600;
    color: #2c3e50;
}

.expense-amount {
    font-weight: 700;
    color: var(--bs-primary);
}

.expense-progress .progress {
    height: 6px;
    background-color: #f0f0f0;
    border-radius: 3px;
}

.expense-progress .progress-bar {
    background: linear-gradient(90deg, var(--bs-primary), #3a805f);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.no-expenses {
    text-align: center;
    padding: 40px 20px;
    color: #999;
}

    .no-expenses i {
        font-size: 3rem;
        margin-bottom: 15px;
    }

/* Action Card */
.action-card {
    background: linear-gradient(135deg, #f7f4d5 0%, #ede3a3 100%);
    border: none;
}

    .action-card .card-body {
        padding: 30px 24px;
    }

.action-icon {
    font-size: 3rem;
    color: var(--bs-primary);
    margin-bottom: 20px;
}

.btn-contribute {
    background: linear-gradient(135deg, var(--bs-primary), #3a805f);
    color: white;
    border: none;
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(67, 147, 111, 0.3);
}

    .btn-contribute:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(67, 147, 111, 0.4);
        color: white;
    }

/* Media Section */
.media-section {
    margin-top: 40px;
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

    .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

.single-video .video-container {
    padding-bottom: 45%;
    max-width: 800px;
    margin: 0 auto;
}

.video-link {
    text-align: center;
    padding: 40px 20px;
    background: rgba(67, 147, 111, 0.05);
    border-radius: 12px;
}

.btn-video {
    background: var(--bs-primary);
    color: white;
    border: none;
    border-radius: 25px;
    padding: 15px 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

    .btn-video:hover {
        background: #3a805f;
        transform: translateY(-2px);
        color: white;
    }

    .btn-video i {
        margin-left: 10px;
        font-size: 1.2em;
    }

/* Images Gallery */
.images-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

    .gallery-item:hover {
        transform: scale(1.05);
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .gallery-item:hover img {
        transform: scale(1.1);
    }

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

    .gallery-overlay i {
        color: white;
        font-size: 2rem;
    }

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Image Modal */
.image-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.image-modal {
    max-width: 90%;
    max-height: 90%;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.image-modal-header {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
}

.btn-close {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

    .btn-close:hover {
        background: rgba(0, 0, 0, 0.9);
        transform: scale(1.1);
    }

.image-modal-body {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .image-modal-body img {
        max-width: 100%;
        max-height: 80vh;
        object-fit: contain;
    }

/* Back Button */
.back-section {
    margin: 40px 0;
}

.btn-back {
    background: #6c757d;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 12px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .btn-back:hover {
        background: #5a6268;
        transform: translateY(-2px);
        color: white;
    }

    .btn-back i {
        margin-left: 8px;
    }

/* =================================================================
   9. DONATIONS PAGE STYLES
   ================================================================= */
.donations-section {
    background: linear-gradient(135deg, rgba(67, 147, 111, 0.1) 0%, rgba(67, 147, 111, 0.05) 100%);
    padding-top: 120px;
    min-height: 60vh;
}

    .donations-section .centerized-box {
        padding-top: 100px;
    }

    .donations-section .hashtag {
        color: var(--bs-primary);
        font-weight: bold;
        font-size: 1.1rem;
    }

.donations-content-section {
    padding: 60px 0;
    background: #fafafa;
}

/* Summary cards */
.donations-summary {
    margin-bottom: 4rem;
}

.summary-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(67, 147, 111, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

    .summary-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

.summary-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.currency-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bs-primary), #5ba883);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    flex-shrink: 0;
}

.currency-text {
    font-weight: bold;
    font-size: 1.2rem;
}

.summary-info h3 {
    margin: 0 0 0.5rem 0;
    color: #333;
    font-size: 1.5rem;
}

.total-amount {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--bs-primary);
    margin: 0;
}

.donations-count {
    color: #666;
    font-size: 0.9rem;
}

/* Wallet sections */
.wallet-section {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(67, 147, 111, 0.1);
}

.wallet-header {
    background: linear-gradient(135deg, var(--bs-primary), #5ba883);
    color: white;
    padding: 2rem;
}

.wallet-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.wallet-header h2 {
    margin: 0 0 0.5rem 0;
    font-size: 1.8rem;
}

.donations-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: bold;
    backdrop-filter: blur(10px);
}

/* Donations table */
.donations-grid {
    padding: 0;
    overflow: hidden;
}

.donations-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    font-size: 0.95rem;
}

    .donations-table thead th {
        background: linear-gradient(135deg, var(--bs-primary), #5ba883);
        color: white;
        padding: 1rem 1.5rem;
        font-weight: 600;
        text-align: right;
        border: none;
        position: sticky;
        top: 0;
        z-index: 10;
    }

    .donations-table tbody tr {
        transition: all 0.2s ease;
        border-bottom: 1px solid #f0f0f0;
    }

        .donations-table tbody tr:hover {
            background-color: rgba(67, 147, 111, 0.05);
            transform: scale(1.005);
        }

        .donations-table tbody tr:nth-child(even) {
            background-color: #fafafa;
        }

            .donations-table tbody tr:nth-child(even):hover {
                background-color: rgba(67, 147, 111, 0.08);
            }

    .donations-table td {
        padding: 1rem 1.5rem;
        border: none;
        vertical-align: middle;
    }

.donation-code {
    font-family: 'Courier New', monospace;
    font-weight: bold;
    color: #333;
    background: rgba(67, 147, 111, 0.1);
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.donation-amount {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--bs-primary);
}

.donation-date {
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.table-container {
    max-height: 600px;
    overflow-y: auto;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
}

    .table-container::-webkit-scrollbar {
        width: 8px;
    }

    .table-container::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 4px;
    }

    .table-container::-webkit-scrollbar-thumb {
        background: var(--bs-primary);
        border-radius: 4px;
    }

        .table-container::-webkit-scrollbar-thumb:hover {
            background: #3a7c5f;
        }

.no-donations {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* =================================================================
   10. ORGANIZATION PROJECTS STYLES
   ================================================================= */
.organization-projects-page {
    padding-top: 140px;
    background: linear-gradient(135deg, #f1f8ff 0%, #e3f2fd 100%);
    min-height: 100vh;
}

.header-decoration {
    margin-bottom: 20px;
}

    .header-decoration i {
        font-size: 4rem;
        color: #3f51b5;
        opacity: 0.8;
        animation: float 3s ease-in-out infinite;
    }

.section-title {
    font-size: 3.2rem;
    margin-bottom: 25px;
    font-weight: 700;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--bs-primary), #3f51b5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.4rem;
    color: #555;
    margin-bottom: 35px;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: 250px;
}

    .section-decoration span {
        height: 3px;
        background: linear-gradient(90deg, transparent, #3f51b5, transparent);
        flex-grow: 1;
    }

    .section-decoration i {
        color: #e91e63;
        font-size: 16px;
        margin: 0 25px;
        animation: heartbeat 2s infinite;
    }

/* Loading State */
.loading-state {
    text-align: center;
    padding: 80px 20px;
}

.loading-spinner {
    margin-bottom: 30px;
    position: relative;
}

.loading-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

    .loading-dots span {
        width: 8px;
        height: 8px;
        background: var(--bs-primary);
        border-radius: 50%;
        animation: bounce 1.4s infinite ease-in-out both;
    }

        .loading-dots span:nth-child(1) {
            animation-delay: -0.32s;
        }

        .loading-dots span:nth-child(2) {
            animation-delay: -0.16s;
        }

.loading-text {
    color: #666;
    font-size: 1.2rem;
    font-weight: 500;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 100px 20px;
    max-width: 600px;
    margin: 0 auto;
}

.empty-icon i {
    font-size: 5rem;
    color: #ddd;
    margin-bottom: 30px;
    opacity: 0.8;
}

.empty-state h4 {
    color: #555;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.empty-state p {
    color: #777;
    line-height: 1.6;
    margin-bottom: 30px;
}

.empty-actions .btn {
    margin: 0 10px;
}

/* Organization-specific Cards */
.organization-card {
    position: relative;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(63, 81, 181, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    border: 2px solid transparent;
}

    .organization-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(90deg, #3f51b5, #9c27b0);
    }

    .organization-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 20px 50px rgba(63, 81, 181, 0.15);
        border-color: rgba(63, 81, 181, 0.1);
    }

.organization-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #3f51b5, #303f9f);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 12px rgba(63, 81, 181, 0.3);
}

.project-card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.organization-card:hover .project-thumbnail {
    transform: scale(1.1);
}

.project-thumbnail-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f5f5 0%, #eeeeee 100%);
    color: #999;
}

    .project-thumbnail-placeholder i {
        font-size: 4rem;
        margin-bottom: 10px;
    }

    .project-thumbnail-placeholder p {
        margin: 0;
        font-size: 0.9rem;
    }

.organization-card:hover .project-overlay {
    opacity: 1;
}

.btn-project-org {
    width: 100%;
    color: white;
    background: linear-gradient(135deg, #3f51b5 0%, #303f9f 100%);
    border: none;
    border-radius: 15px;
    padding: 14px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .btn-project-org:hover {
        background: linear-gradient(135deg, #303f9f 0%, #3f51b5 100%);
        box-shadow: 0 10px 30px rgba(63, 81, 181, 0.3);
        transform: translateY(-3px);
        color: white;
    }

        .btn-project-org:hover i {
            transform: translateX(-5px);
        }

/* CTA Section */
.action-section {
    margin-top: 80px;
}

.cta-card {
    background: linear-gradient(135deg, #3f51b5 0%, #9c27b0 100%);
    color: white;
    border-radius: 20px;
    padding: 50px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 15px 40px rgba(63, 81, 181, 0.2);
    overflow: hidden;
    position: relative;
}

    .cta-card::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 100%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
        transform: rotate(-15deg);
    }

.cta-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

    .cta-content h3 {
        font-size: 1.8rem;
        margin-bottom: 15px;
        font-weight: 700;
    }

    .cta-content p {
        margin-bottom: 25px;
        opacity: 0.9;
        line-height: 1.6;
    }

.cta-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

    .cta-actions .btn {
        padding: 12px 25px;
        border-radius: 25px;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .cta-actions .btn-mata {
        background: white;
        color: #3f51b5;
    }

        .cta-actions .btn-mata:hover {
            background: #f8f9fa;
            transform: translateY(-2px);
        }

    .cta-actions .btn-outline-primary {
        border-color: white;
        color: white;
    }

        .cta-actions .btn-outline-primary:hover {
            background: white;
            color: #3f51b5;
        }

.cta-illustration {
    flex-shrink: 0;
    margin-right: 40px;
    position: relative;
    z-index: 2;
}

    .cta-illustration i {
        font-size: 5rem;
        opacity: 0.3;
        animation: float 4s ease-in-out infinite;
    }



















/* Enhanced Home Page Styles */

/* Enhanced Hero Section */
.enhanced-hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(67, 147, 111, 0.05) 0%, rgba(255, 255, 255, 0.95) 50%, rgba(67, 147, 111, 0.08) 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
}

/* Animated Background Elements */
.hero-background-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(67, 147, 111, 0.1), rgba(67, 147, 111, 0.05));
    animation: float-background 20s infinite linear;
}

    .floating-element.element-1 {
        width: 100px;
        height: 100px;
        top: 10%;
        right: 10%;
        animation-delay: 0s;
    }

    .floating-element.element-2 {
        width: 150px;
        height: 150px;
        bottom: 20%;
        left: 5%;
        animation-delay: -5s;
    }

    .floating-element.element-3 {
        width: 80px;
        height: 80px;
        top: 60%;
        right: 20%;
        animation-delay: -10s;
    }

    .floating-element.element-4 {
        width: 120px;
        height: 120px;
        top: 30%;
        left: 15%;
        animation-delay: -15s;
    }

/* Enhanced Floating Images */
.enhanced-circle-img {
    width: 12vw;
    height: 12vw;
    max-width: 180px;
    max-height: 180px;
    min-width: 100px;
    min-height: 100px;
    position: absolute;
    z-index: 5;
}

    .enhanced-circle-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        border: 4px solid rgba(255, 255, 255, 0.8);
    }

    .enhanced-circle-img:hover img {
        transform: scale(1.1);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    }

.image-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, var(--bs-primary), var(--bs-secondary));
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: pulse-glow 3s infinite;
    z-index: -1;
}

.enhanced-circle-img:hover .image-glow {
    opacity: 0.3;
}

/* Enhanced Content */
.enhanced-centerized-box {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--bs-primary), var(--bs-secondary));
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(67, 147, 111, 0.3);
    transform: translateY(20px);
    opacity: 0;
    animation: slideUp 0.8s ease forwards;
}

    .hero-badge i {
        font-size: 1.1em;
        animation: heartbeat 2s infinite;
    }

.enhanced-hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    text-align: center;
}

.title-line {
    display: block;
    margin-bottom: 10px;
    transform: translateY(30px);
    opacity: 0;
    animation: slideUp 0.8s ease forwards;
}

    .title-line.primary-text {
        background: linear-gradient(135deg, var(--bs-primary), #2a7c5f);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation-delay: 0.2s;
    }

    .title-line.secondary-text {
        background: linear-gradient(135deg, var(--bs-secondary), #b91c1c);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation-delay: 0.4s;
    }

    .title-line.subtitle-text {
        font-size: 0.6em;
        font-weight: 600;
        color: #666;
        margin-top: 15px;
        animation-delay: 0.6s;
    }

.hero-description {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-text {
    background: linear-gradient(135deg, var(--bs-primary), var(--bs-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Enhanced Buttons */
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 50px;
}

.enhanced-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    border: 2px solid transparent;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

    .enhanced-btn:hover {
        transform: translateY(-3px);
        text-decoration: none;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    }

    .enhanced-btn.primary-btn {
        background: linear-gradient(135deg, var(--bs-primary), #3a805f);
        color: white;
    }

        .enhanced-btn.primary-btn:hover {
            background: linear-gradient(135deg, #3a805f, var(--bs-primary));
            color: white;
        }

    .enhanced-btn.secondary-btn {
        background: linear-gradient(135deg, var(--bs-secondary), #b91c1c);
        color: white;
    }

        .enhanced-btn.secondary-btn:hover {
            background: linear-gradient(135deg, #b91c1c, var(--bs-secondary));
            color: white;
        }

    .enhanced-btn.tertiary-btn {
        background: linear-gradient(135deg, #6366f1, #8b5cf6);
        color: white;
    }

        .enhanced-btn.tertiary-btn:hover {
            background: linear-gradient(135deg, #8b5cf6, #6366f1);
            color: white;
        }

.btn-ripple {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.enhanced-btn:hover .btn-ripple {
    left: 100%;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--bs-primary);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, #ddd, transparent);
}

/* Mobile Images Grid */
.mobile-images-grid .mobile-image-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

    .mobile-images-grid .mobile-image-card:hover {
        transform: translateY(-5px);
    }

    .mobile-images-grid .mobile-image-card img {
        border-radius: 15px;
        transition: transform 0.3s ease;
    }

.mobile-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(67, 147, 111, 0.1), rgba(221, 50, 36, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-image-card:hover .mobile-image-overlay {
    opacity: 1;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #999;
    z-index: 10;
}

.scroll-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid #999;
    border-radius: 25px;
    position: relative;
    margin: 0 auto 10px;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: #999;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s infinite;
}

.scroll-indicator p {
    font-size: 0.8rem;
    margin: 0;
}

/* Enhanced Projects Section */
.enhanced-projects-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.section-header {
    margin-bottom: 80px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(67, 147, 111, 0.1);
    color: var(--bs-primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

    .section-title .primary-text {
        color: var(--bs-primary);
    }

    .section-title .secondary-text {
        color: var(--bs-secondary);
    }

.section-description {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 0 auto;
    max-width: 200px;
}

    .section-divider span {
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--bs-primary), transparent);
        flex: 1;
    }

    .section-divider i {
        color: var(--bs-secondary);
        font-size: 1.2rem;
        animation: heartbeat 2s infinite;
    }

/* Enhanced Project Cards */
.projects-grid {
    /* Override the Bootstrap gutter variable for this specific row to achieve a 30px gutter */
    --bs-gutter-x: 30px;
    /* Remove or comment out the explicit 'gap' property if Bootstrap's row isn't configured for CSS Grid 'gap' natively.
     Bootstrap columns use padding derived from --bs-gutter-x to create space. */
    /* gap: 30px; */
}

.enhanced-project-card {
    position: relative;
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

    .enhanced-project-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    }

.card-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.bg-pattern {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.donation-type .bg-pattern.pattern-1 {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, var(--bs-primary), #3a805f);
    top: -50px;
    right: -50px;
}

.donation-type .bg-pattern.pattern-2 {
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, var(--bs-secondary), #b91c1c);
    bottom: -30px;
    left: -30px;
}

.organization-type .bg-pattern.pattern-1 {
    width: 180px;
    height: 180px;
    background: linear-gradient(45deg, #6366f1, #8b5cf6);
    top: -40px;
    right: -40px;
}

.organization-type .bg-pattern.pattern-2 {
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, #06b6d4, #0891b2);
    bottom: -20px;
    left: -20px;
}

.card-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.donation-icon {
    background: linear-gradient(135deg, var(--bs-primary), #3a805f);
}

.organization-icon {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.card-content {
    padding: 80px 30px 30px;
    flex: 1;
    position: relative;
    z-index: 2;
}

    .card-content h3 {
        font-size: 1.8rem;
        font-weight: 700;
        margin-bottom: 15px;
        color: #2c3e50;
    }

    .card-content p {
        color: #666;
        line-height: 1.6;
        margin-bottom: 25px;
    }

.card-stats {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .card-stats .stat {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 0.9rem;
        color: #555;
    }

        .card-stats .stat i {
            color: var(--bs-primary);
            font-size: 1rem;
        }

.card-action {
    padding: 0 30px 30px;
    position: relative;
    z-index: 2;
}

.enhanced-card-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 15px 20px;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    text-decoration: none;
    border-radius: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.donation-type .enhanced-card-btn {
    background: linear-gradient(135deg, var(--bs-primary), #3a805f);
}

.organization-type .enhanced-card-btn {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.enhanced-card-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    color: white;
}

.enhanced-card-btn i {
    transition: transform 0.3s ease;
}

.enhanced-card-btn:hover i {
    transform: translateX(-5px);
}

.card-hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(67, 147, 111, 0.05), rgba(221, 50, 36, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.enhanced-project-card:hover .card-hover-effect {
    opacity: 1;
}

/* Enhanced Steps Section */
.enhanced-steps-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fef7cd 0%, #fef3c7 100%);
    position: relative;
}

.steps-timeline {
    position: relative;
}

.enhanced-step-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

    .enhanced-step-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        border-color: rgba(67, 147, 111, 0.2);
    }

.step-number {
    position: relative;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--bs-primary), #3a805f);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(67, 147, 111, 0.3);
}

.step-pulse {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid var(--bs-primary);
    border-radius: 50%;
    opacity: 0;
    animation: pulse-ring 2s infinite;
}

.step-icon {
    margin-bottom: 25px;
}

    .step-icon img {
        width: 50px;
        height: 50px;
        object-fit: contain;
        filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    }

.step-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

.step-connector {
    position: absolute;
    top: 30px;
    left: 100%;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--bs-primary), transparent);
    z-index: -1;
}

/* Enhanced About Section */
.enhanced-about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bs-primary) 0%, #2a7c5f 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

    .enhanced-about-section::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 50%;
        height: 100%;
        background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
        transform: rotate(-15deg);
    }

.about-content {
    position: relative;
    z-index: 2;
}

    .about-content h2 {
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 700;
        margin-bottom: 30px;
    }

.content-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    opacity: 0.95;
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

    .feature-item i {
        font-size: 1.2rem;
        color: #ffd700;
    }

.about-image {
    position: relative;
    text-align: center;
}

.image-container {
    position: relative;
    display: inline-block;
}

.main-logo {
    max-width: 300px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    position: relative;
    z-index: 2;
}

.image-decoration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

    .decoration-circle.circle-1 {
        width: 250px;
        height: 250px;
        top: -125px;
        left: -125px;
        animation: rotate-slow 20s infinite linear;
    }

    .decoration-circle.circle-2 {
        width: 350px;
        height: 350px;
        top: -175px;
        left: -175px;
        animation: rotate-slow 30s infinite linear reverse;
    }

    .decoration-circle.circle-3 {
        width: 450px;
        height: 450px;
        top: -225px;
        left: -225px;
        animation: rotate-slow 40s infinite linear;
    }

/* Enhanced Search Section */
.enhanced-search-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, white 100%);
    position: relative;
}

.search-logo {
    text-align: center;
    position: relative;
}

    .search-logo .logo {
        max-width: 250px;
        width: 100%;
        height: auto;
        filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
    }

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(67, 147, 111, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 3s infinite;
}

.enhanced-search-form {
    background: white;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.search-input-group {
    margin-bottom: 30px;
}

.search-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

    .search-label i {
        color: var(--bs-primary);
        font-size: 1.3rem;
    }

.input-wrapper {
    display: flex;
    gap: 15px;
    align-items: stretch;
}

.enhanced-search-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

    .enhanced-search-input:focus {
        border-color: var(--bs-primary);
        background: white;
        box-shadow: 0 0 0 3px rgba(67, 147, 111, 0.1);
        outline: none;
    }

.search-btn {
    padding: 15px 25px;
    background: linear-gradient(135deg, var(--bs-primary), #3a805f);
    color: white;
    border: none;
    border-radius: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

    .search-btn:hover:not(:disabled) {
        background: linear-gradient(135deg, #3a805f, var(--bs-primary));
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(67, 147, 111, 0.3);
    }

    .search-btn:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }

.search-result {
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

    .search-result.error-result {
        background: linear-gradient(135deg, #fee2e2, #fecaca);
        border: 1px solid #fca5a5;
        color: #dc2626;
    }

    .search-result.success-result {
        background: linear-gradient(135deg, #d1fae5, #a7f3d0);
        border: 1px solid #6ee7b7;
        color: #059669;
        flex-direction: column;
        align-items: stretch;
    }

.result-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

    .result-header i {
        font-size: 1.5rem;
    }

    .result-header h4 {
        margin: 0;
        font-size: 1.2rem;
        font-weight: 700;
    }

.transaction-details {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    padding: 20px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

    .detail-item:last-child {
        border-bottom: none;
    }

    .detail-item .label {
        font-weight: 600;
        color: #374151;
    }

    .detail-item .value {
        font-weight: 700;
    }

        .detail-item .value.amount {
            color: var(--bs-primary);
            font-size: 1.1rem;
        }

/* Campaign Info */
.campaign-info {
    margin-top: 30px;
}

    .campaign-info h3 {
        font-size: 1.5rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 25px;
        text-align: center;
    }

.wallets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.wallet-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

    .wallet-card:hover {
        transform: translateY(-5px);
    }

.wallet-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

    .wallet-header i {
        font-size: 1.5rem;
        color: var(--bs-primary);
    }

    .wallet-header h4 {
        margin: 0;
        font-size: 1.2rem;
        font-weight: 700;
        color: #2c3e50;
    }

.wallet-stats {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.stat-label {
    font-weight: 500;
    color: #666;
}

.stat-value {
    font-weight: 700;
    font-size: 1.1rem;
}

    .stat-value.primary {
        color: var(--bs-primary);
    }

    .stat-value.success {
        color: #059669;
    }

    .stat-value.danger {
        color: #dc2626;
    }

/* Contribute Section */
.contribute-section {
    margin-top: 40px;
}

.contribute-card {
    background: linear-gradient(135deg, #fef7cd 0%, #fef3c7 100%);
    border-radius: 20px;
    padding: 35px;
    border: 1px solid #fed7aa;
}

.contribute-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

    .contribute-header i {
        font-size: 2rem;
        color: var(--bs-secondary);
        animation: heartbeat 2s infinite;
    }

    .contribute-header h3 {
        margin: 0;
        font-size: 1.8rem;
        font-weight: 700;
        color: #92400e;
    }

.contribute-content p {
    font-size: 1.1rem;
    color: #92400e;
    line-height: 1.6;
    margin-bottom: 30px;
}

.bank-details {
    display: grid;
    gap: 25px;
}

.bank-section {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(146, 64, 14, 0.2);
}

    .bank-section h4 {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--bs-primary);
        margin-bottom: 20px;
    }

        .bank-section h4 i {
            font-size: 1.3rem;
        }

.account-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

    .info-row:last-child {
        border-bottom: none;
    }

    .info-row .label {
        font-weight: 600;
        color: #374151;
    }

    .info-row .value {
        font-weight: 700;
        color: #2c3e50;
    }

        .info-row .value.account-number {
            font-family: 'Courier New', monospace;
            background: rgba(67, 147, 111, 0.1);
            padding: 5px 10px;
            border-radius: 8px;
            font-size: 1.1rem;
        }

.copy-btn {
    background: var(--bs-primary);
    color: white;
    border: none;
    border-radius: 8px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

    .copy-btn:hover {
        background: #3a805f;
        transform: scale(1.1);
    }

.important-note {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 15px;
    padding: 20px;
    margin-top: 25px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

    .important-note i {
        font-size: 1.5rem;
        color: #3b82f6;
        flex-shrink: 0;
        margin-top: 2px;
    }

    .important-note p {
        margin: 0;
        color: #1e40af;
        line-height: 1.6;
    }

/* Animations */
@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

@keyframes pulse-ring {
    0% {
        opacity: 1;
        transform: scale(0.8);
    }

    100% {
        opacity: 0;
        transform: scale(1.2);
    }
}

@keyframes float-background {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(20px, -20px) rotate(90deg);
    }

    50% {
        transform: translate(-10px, -30px) rotate(180deg);
    }

    75% {
        transform: translate(-30px, 10px) rotate(270deg);
    }
}

@keyframes rotate-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes scroll-wheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

@keyframes bounce {
    0%, 80%, 100% {
        transform: scale(0);
    }

    40% {
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .enhanced-circle-img {
        width: 15vw;
        height: 15vw;
    }
}

@media (max-width: 992px) {
    .enhanced-hero-section {
        padding: 100px 0 60px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .enhanced-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .projects-grid {
        gap: 20px;
    }

    .steps-timeline .row {
        gap: 30px;
    }

    .step-connector {
        display: none;
    }
}

@media (max-width: 768px) {
    .enhanced-hero-section {
        min-height: 80vh;
        padding: 80px 0 40px;
    }

    .enhanced-circle-img {
        display: none;
    }

    .enhanced-centerized-box {
        padding: 0 15px;
    }

    .enhanced-hero-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .enhanced-projects-section,
    .enhanced-steps-section,
    .enhanced-about-section,
    .enhanced-search-section {
        padding: 60px 0;
    }

    .enhanced-search-form {
        padding: 25px;
        margin: 0 15px;
    }

    .input-wrapper {
        flex-direction: column;
        gap: 15px;
    }

    .search-btn {
        justify-content: center;
    }

    .wallets-grid {
        grid-template-columns: 1fr;
    }

    .bank-details {
        grid-template-columns: 1fr;
    }

    .about-features {
        justify-content: center;
    }

    .decoration-circle {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-stats {
        padding: 20px;
        margin: 0 15px 30px;
    }

    .enhanced-project-card {
        margin: 0 15px;
    }

    .enhanced-step-card {
        padding: 25px 20px;
        margin: 0 15px;
    }

    .contribute-card {
        margin: 0 15px;
        padding: 25px;
    }

    .info-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

        .info-row .value.account-number {
            word-break: break-all;
        }
}

 
/* High contrast mode */
@media (prefers-contrast: high) {
    .enhanced-btn,
    .search-btn,
    .enhanced-card-btn {
        border: 2px solid currentColor;
    }

    .enhanced-project-card,
    .enhanced-step-card {
        border: 2px solid #2c3e50;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .floating-element,
    .step-pulse,
    .logo-glow {
        animation: none;
    }
}









/* =================================================================
   END OF UNIFIED STYLESHEET
   ================================================================= */
