body{
font-family:Arial, sans-serif;
margin:0;
background:#f4f6f8;
}

.container{
width:100%;
max-width:1100px;
margin:auto;
}

.navbar{
background:#0f6b4f;
color:white;
padding:15px 0;
}

.navbar .container{
display:flex;
justify-content:space-between;
align-items:center;
}

.navbar nav a{
color:white;
text-decoration:none;
margin-left:20px;
font-weight:bold;
}

.footer{
background:#222;
color:white;
text-align:center;
padding:30px 0;
margin-top:50px;
}

.slider img{
width:100%;
height:400px;
object-fit:cover;
}

/*.hero{
text-align:center;
padding:50px 20px;
}*/

.hero h1{
font-size:36px;
margin-bottom:15px;
}

.donate-btn{
background:#ffcc33;
padding:12px 25px;
display:inline-block;
margin-top:20px;
text-decoration:none;
color:black;
font-weight:bold;
}

.gallery{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:15px;
}

.gallery img{
width:100%;
border-radius:8px;
}

form{
max-width:500px;
margin:auto;
background:white;
padding:15px;
border-radius:10px;
box-shadow:0 3px 10px rgba(0,0,0,0.1);
}

form input, form textarea, form select{
width:100%;
padding:12px;
margin:10px 0;
border:1px solid #ddd;
border-radius:6px;
}

form button{
background:#0f6b4f;
color:white;
border:none;
padding:12px;
width:100%;
font-size:16px;
border-radius:6px;
cursor:pointer;
}

.video{
text-align:center;
padding:40px 0;
}



 body { 
            background: #ffffff; 
            font-family: 'Plus Jakarta Sans', sans-serif; 
            color: var(--text-dark);
            overflow-x: hidden;
        }

        /* Modern Hero Section */
        .hero-visual {
            background: linear-gradient(rgba(6, 78, 59, 0.85), rgba(6, 78, 59, 0.95)), 
                        url('https://www.transparenttextures.com/patterns/arabesque.png');
            background-color: var(--primary-emerald);
            padding: 140px 0 100px;
            text-align: center;
            color: white;
            border-radius: 0 0 50px 50px;
        }

        .hero-visual h1 { font-weight: 800; letter-spacing: -1px; }

        /* Filter Tabs */
        .filter-wrapper {
            margin-top: -35px;
            display: flex;
            justify-content: center;
            margin-bottom: 50px;
        }

        .filter-tabs {
            background: white;
            padding: 8px;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            display: inline-flex;
            gap: 5px;
        }

        .filter-btn {
            border: none;
            background: none;
            padding: 12px 25px;
            border-radius: 15px;
            font-weight: 600;
            color: #277a60;
            transition: 0.3s;
        }

        .filter-btn.active {
            background: var(--primary-emerald);
            color: white;
        }

        /* Elegant Gallery Grid */
        .gallery-card {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            background: #f9fafb;
            aspect-ratio: 4/5;
            cursor: pointer;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .gallery-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .gallery-card:hover img {
            transform: scale(1.08);
        }

        .card-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 25px;
            color: white;
        }

        /* Dynamic Status Badges */
        .badge-status {
            position: absolute;
            top: 20px;
            left: 20px;
            padding: 6px 14px;
            border-radius: 12px;
            font-size: 11px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
            z-index: 10;
        }
        .status-completed { background: #dcfce7; color: #166534; }
        .status-progress { background: #fef3c7; color: #92400e; }
        .status-urgent { background: #fee2e2; color: #991b1b; }

        .view-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0.5);
            width: 50px;
            height: 50px;
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(10px);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: 0.3s;
            color: white;
            font-size: 1.5rem;
        }

        .gallery-card:hover .view-icon {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
        }

        /* Modern CTA */
        .impact-section {
            background: var(--light-emerald);
            border-radius: 40px;
            padding: 80px 40px;
            margin: 100px 0;
            position: relative;
            text-align: center;
        }

        .btn-emerald {
            background: var(--primary-emerald);
            color: white;
            padding: 18px 40px;
            border-radius: 18px;
            font-weight: 700;
            text-decoration: none;
            transition: 0.3s;
            display: inline-block;
        }

        .btn-emerald:hover {
            background: #065f46;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(6, 78, 59, 0.2);
        }

        footer {
            background: #111827;
            padding: 80px 0 40px;
            color: #9ca3af;
        }


         :root {
            --primary-emerald: #064e3b;
            --light-emerald: #ecfdf5;
            --accent-gold: #d9b36a;
            --text-dark: #1f2937;
            --text-muted: #6b7280;
        }



