 :root {
            --primary: #8672c7;
            --primary-dark: #5d49a8;
            --accent: #ffb858;
            --bg: #f7f5ff;
            --text: #1f1f2e;
            --muted: #6c6c85;
            --white: #ffffff;
            --radius-lg: 1.4rem;
            --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.05);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

                img {
            max-width: 100%;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        button {
            font-family: inherit;
        }

        body {
            font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            color: var(--text);
            background: #ffffff;
            line-height: 1.6;
        }

        .container {
            width: 100%;
            max-width: 1180px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }



        .hero {
            background: radial-gradient(circle at top left, #f6f1ff 0, #ffffff 42%);
            padding: 20px;
            border-radius: 12px;
            margin-top: 12px;
        }

        .hero h1 {
            font-size: 20px;
            margin: 0 0 6px;
            color: #241b3b;
        }

        .hero p {
            color: var(--muted);
            margin: 0 0 10px;
        }

        .card {
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
            border: 1px solid rgba(0, 0, 0, 0.03);
        }

        .banner {
            height: 220px;
            border-radius: 10px 10px 0 0;
            overflow: visible !important;
            position: relative;
        }

        .banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .logo-circle {
            position: absolute;
            left: 22px;
            bottom: -36px;
            width: 88px;
            height: 88px;
            border-radius: 14px;
            overflow: hidden;
            border: 4px solid #fff;
            background: #fff;
            z-index: 10;

        }

        .logo-circle img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .ngo-header {
            padding: 56px 22px 18px 22px;
            display: flex;
            gap: 18px;
            align-items: flex-start;
        }

        .ngo-meta {
            flex: 1;
        }

        .ngo-meta h2 {
            margin: 0 0 6px;
            color: #241b3b;
        }

        .ngo-meta .muted {
            color: var(--muted);
            font-size: 14px;
        }

        .badges {
            margin-top: 8px;
        }

        .badge {
            display: inline-block;
            background: var(--primary);
            color: #fff;
            padding: 6px 10px;
            border-radius: 999px;
            font-size: 13px;
            margin-right: 8px;
            margin-bottom: 6px;
        }

        .badge-focus {
            background: #ffd166;
            color: #2d2d2d;
        }

        .actions {
            margin-top: 12px;
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 14px;
            border-radius: 10px;
            font-weight: 600;
            color: #000000;
            text-decoration: none;
        }

        .btn-call {
            background: #28a745;
        }

        .btn-mail {
            background: #007bff;
        }

        .btn-map {
            background: var(--primary-dark);
        }

        .content {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 20px;
            margin-top: 18px;
        }

        .section {
            padding: 16px;
            border-radius: 10px;
            background: #fff;
        }

        .gallery img {
            width: 100%;
            height: 140px;
            object-fit: cover;
            border-radius: 8px;
            border: 1px solid #eee;
        }

        .small-muted {
            color: var(--muted);
            font-size: 13px;
        }

        @media(max-width:880px) {
            .content {
                grid-template-columns: 1fr;
            }

            .logo-circle {
                left: 16px;
                bottom: -44px;
            }

            .ngo-header {
                padding-top: 70px;
            }
        }

   

        .btn {
            border-radius: 999px;
            padding: 0.6rem 1.4rem;
            font-size: 0.88rem;
            border: none;
            cursor: pointer;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.4rem;
            transition: all 0.18s ease;
            white-space: nowrap;
        }

         /* Layout helpers */
        .container {
            width: 100%;
            max-width: 1180px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        /* NAVBAR */
        .nav {
            position: sticky;
            top: 0;
            z-index: 50;
            background: rgba(255, 255, 255, 0.96);
            backdrop-filter: blur(14px);
            border-bottom: 1px solid rgba(134, 114, 199, 0.12);
        }

        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
        }

        .nav-left {
            display: flex;
            align-items: center;
            gap: 0.7rem;
        }

        .nav-logo {
            width: 42px;
            height: 42px;
            border-radius: 999px;
            background: #f0ecff;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .nav-logo img {
            width: 100%;
            height: auto;
        }

        .nav-title {
            display: flex;
            flex-direction: column;
        }

        .nav-title span:first-child {
            font-weight: 700;
            letter-spacing: 0.06em;
            font-size: 0.7rem;
            text-transform: uppercase;
            color: var(--primary-dark);
        }

        .nav-title span:last-child {
            font-weight: 500;
            font-size: 0.86rem;
            color: var(--muted);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 1.4rem;
            font-size: 0.9rem;
        }

        .nav-links a {
            color: var(--muted);
            font-weight: 500;
        }

        .nav-links a:hover {
            color: var(--primary-dark);
        }

        .nav-cta {
            display: flex;
            gap: 0.6rem;
        }

        .btn-primary {
            background: var(--primary);
            color: #fff;
            box-shadow: var(--shadow-soft);
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-1px);
            box-shadow: 0 20px 40px rgba(68, 51, 130, 0.25);
        }

        .btn-outline {
            background: #ffffff;
            color: var(--primary-dark);
            border: 1px solid rgba(134, 114, 199, 0.55);
        }

        .btn-outline:hover {
            background: #f0ecff;
        }

        /* HERO */
        .hero {
            
            background: radial-gradient(circle at top left, #f6f1ff 0, #ffffff 42%, #f4f7ff 100%);
            padding: 3rem 0 3.5rem;
        }

        .hero-inner {
            display: grid;
            grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
            gap: 2.5rem;
            align-items: center;
        }

        .hero-tag {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.24rem 0.6rem;
            border-radius: 999px;
            background: rgba(134, 114, 199, 0.1);
            color: var(--primary-dark);
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            margin-bottom: 0.9rem;
        }

        .hero-title {
            font-size: clamp(2rem, 2.6vw + 1.2rem, 2.9rem);
            line-height: 1.1;
            margin-bottom: 0.8rem;
            color: #201a3d;
        }

        .hero-title span {
            color: var(--primary-dark);
        }

        .hero-subtitle {
            color: var(--muted);
            font-size: 0.98rem;
            max-width: 34rem;
            margin-bottom: 1.4rem;
        }

        .hero-ctas {
            display: flex;
            flex-wrap: wrap;
            gap: 0.7rem;
            margin-bottom: 1.4rem;
        }

        .hero-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 1.2rem;
            font-size: 0.82rem;
            color: var(--muted);
        }

        .hero-meta span strong {
            color: #2d2347;
        }

        .hero-card {
            background: #ffffff;
            border-radius: var(--radius-lg);
            padding: 1.6rem 1.4rem;
            box-shadow: var(--shadow-soft);
            border: 1px solid rgba(0, 0, 0, 0.02);
        }

        .pill-row {
            display: flex;
            flex-wrap: wrap;
            gap: 0.45rem;
            margin-bottom: 1.1rem;
        }

        .pill {
            font-size: 0.76rem;
            padding: 0.25rem 0.7rem;
            border-radius: 999px;
            background: #f5f2ff;
            color: var(--primary-dark);
            font-weight: 500;
        }

        .hero-card h3 {
            font-size: 1rem;
            margin-bottom: 0.4rem;
            color: #241b3b;
        }

        .hero-card p {
            font-size: 0.86rem;
            color: var(--muted);
            margin-bottom: 0.9rem;
        }

        .hero-stat-row {
            display: flex;
            flex-wrap: wrap;
            gap: 1.2rem;
            font-size: 0.78rem;
        }

        .hero-stat {
            display: flex;
            flex-direction: column;
            gap: 0.1rem;
        }

        .hero-stat strong {
            font-size: 1rem;
            color: var(--primary-dark);
        }

        /* SECTIONS */
        section {
            padding: 2.8rem 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 1.9rem;
        }

        .section-eyebrow {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.18em;
            color: var(--primary-dark);
            font-weight: 600;
            margin-bottom: 0.2rem;
        }

        .section-title {
            font-size: 1.6rem;
            margin-bottom: 0.5rem;
            color: #1f1638;
        }

        .section-subtitle {
            font-size: 0.94rem;
            color: var(--muted);
            max-width: 32rem;
            margin: 0 auto;
        }

        /* ABOUT GRID */
        .about-grid {
            display: grid;
            grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
            gap: 2rem;
            align-items: flex-start;
        }

        .about-text p {
            font-size: 0.95rem;
            color: var(--muted);
            margin-bottom: 0.8rem;
        }

        .about-list {
            list-style: none;
            margin-top: 0.4rem;
        }

        .about-list li {
            display: flex;
            gap: 0.5rem;
            align-items: flex-start;
            margin-bottom: 0.4rem;
            font-size: 0.9rem;
            color: #41385f;
        }

        .about-list span.bullet {
            width: 20px;
            height: 20px;
            border-radius: 999px;
            background: rgba(134, 114, 199, 0.12);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            color: var(--primary-dark);
            flex: 0 0 auto;
        }

        .about-card {
            background: var(--bg);
            border-radius: var(--radius-lg);
            padding: 1.4rem 1.3rem;
            border: 1px dashed rgba(134, 114, 199, 0.4);
        }

        .about-card h3 {
            font-size: 1rem;
            margin-bottom: 0.4rem;
        }

        .about-card p {
            font-size: 0.88rem;
            color: var(--muted);
            margin-bottom: 0.6rem;
        }

        /* WHO CAN JOIN */
        .cards-row {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 1.3rem;
        }

        .card {
            background: #ffffff;
            border-radius: 1rem;
            padding: 1.1rem 1.1rem 1.2rem;
            box-shadow: var(--shadow-soft);
            border: 1px solid rgba(0, 0, 0, 0.02);
        }

        .card-tag {
            display: inline-flex;
            padding: 0.18rem 0.55rem;
            border-radius: 999px;
            background: #f8f4ff;
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.14em;
            color: var(--primary-dark);
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .card h3 {
            font-size: 1rem;
            margin-bottom: 0.3rem;
            color: #261b46;
        }

        .card p {
            font-size: 0.86rem;
            color: var(--muted);
            margin-bottom: 0.8rem;
        }

        .card-footer {
            font-size: 0.8rem;
            color: var(--primary-dark);
            font-weight: 600;
        }

        /* HOW IT WORKS */
        .steps {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 1.3rem;
            counter-reset: step;
        }

        .step {
            background: #ffffff;
            border-radius: 1rem;
            padding: 1.2rem 1rem 1.3rem;
            border: 1px solid rgba(134, 114, 199, 0.18);
        }

        .step::before {
            counter-increment: step;
            content: "0" counter(step);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            border-radius: 999px;
            background: rgba(134, 114, 199, 0.12);
            color: var(--primary-dark);
            font-size: 0.8rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .step h3 {
            font-size: 0.98rem;
            margin-bottom: 0.3rem;
        }

        .step p {
            font-size: 0.86rem;
            color: var(--muted);
        }

        /* CTA SECTION */
        .cta {
            background: linear-gradient(135deg, #8672c7, #5d49a8);
            color: white;
            border-radius: calc(var(--radius-lg) * 1.1);
            padding: 1.9rem 1.6rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            box-shadow: 0 22px 45px rgba(54, 32, 129, 0.45);
        }

        .cta h2 {
            font-size: 1.4rem;
            margin-bottom: 0.2rem;
        }

        .cta p {
            font-size: 0.9rem;
            opacity: 0.92;
        }

        .cta-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
        }

        .btn-light {
            background: #ffffff;
            color: var(--primary-dark);
        }

        .btn-ghost {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.7);
            color: #ffffff;
        }

        .btn-light:hover {
            background: #f0e9ff;
        }

        .btn-ghost:hover {
            background: rgba(255, 255, 255, 0.12);
        }

        /* FOOTER */
        footer {
            padding: 1.8rem 0 2.1rem;
            border-top: 1px solid rgba(0, 0, 0, 0.04);
            background: #faf9ff;
            font-size: 0.8rem;
            color: var(--muted);
        }

        .footer-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .footer-links {
            display: flex;
            gap: 0.9rem;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: var(--muted);
        }

        .footer-links a:hover {
            color: var(--primary-dark);
        }

        /* RESPONSIVE */
        @media (max-width: 900px) {

            .hero-inner,
            .about-grid {
                grid-template-columns: 1fr;
            }

            .hero-inner {
                gap: 2rem;
            }

            .hero-card {
                order: -1;
            }

            .nav-links {
                display: none;
                /* simple mobile nav (can add burger later) */
            }

            .nav-cta {
                gap: 0.4rem;
            }

            .cards-row,
            .steps {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .cta {
                padding: 1.6rem 1.3rem;
            }
        }

        @media (max-width: 640px) {

            .cards-row,
            .steps {
                grid-template-columns: 1fr;
            }

            .hero {
                padding-top: 2.1rem;
            }

            .hero-title {
                font-size: 1.9rem;
            }

            .cta h2 {
                font-size: 1.2rem;
            }
        }

        .card-filter {
            max-width: 1100px;
            margin: 10px auto 28px;
            border-radius: 12px;
            box-shadow: 0 18px 45px rgba(68, 51, 130, 0.06);
        }

        .ngo-card-logo {
            width: 64px;
            height: 64px;
            border-radius: 12px;
            overflow: hidden;
            background: #fff;
            border: 1px solid rgba(0, 0, 0, 0.03);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .result-card {
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
            border: 1px solid rgba(0, 0, 0, 0.03);
        }

        .badge-category {
            background-color: var(--primary);
            color: #fff;
            border-radius: 999px;
            padding: 4px 8px;
            font-size: 12px;
            margin-right: 6px;
        }

        