    .ngo-photo-view {
        --ngo-dark: #071b20;
        --ngo-green: #0c7a68;
        --ngo-gold: #f2b84b;
        --ngo-light: #eafff9;
        position: relative;
        overflow: hidden;
        padding: 34px 22px;
        background:
            linear-gradient(115deg, rgba(12, 122, 104, 0.09), transparent 35%),
            linear-gradient(295deg, rgba(242, 184, 75, 0.11), transparent 40%),
            #f5fbf9;
        font-family: "Segoe UI", sans-serif;
        isolation: isolate;
    }

    .ngo-photo-view::before {
        content: "";
        position: absolute;
        inset: 12px;
        border: 1px solid #b9a5a5;
        border-radius: 10px;
        pointer-events: none;
    }

    .ngo-photo-view::after {
        content: "";
        position: absolute;
        width: 420px;
        height: 420px;
        right: -210px;
        bottom: -230px;
        border: 70px solid rgba(12, 122, 104, 0.05);
        border-radius: 50%;
        pointer-events: none;
    }

    .ngo-photo-grid {
        position: relative;
        z-index: 3;
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 14px;
        max-width: 1900px;
        margin: 0 auto;
    }

    .ngo-photo-card {
        position: relative;
        height: 430px;
        min-width: 0;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.78);
        border-radius: 10px;
        background: var(--ngo-dark);
        box-shadow:
            0 18px 45px rgba(7, 27, 32, 0.16),
            inset 0 0 0 1px rgba(255, 255, 255, 0.12);
        transform: translateY(0);
        animation: ngoCardReveal 0.8s ease both;
    }

    .ngo-photo-card:nth-child(2) {
        animation-delay: 0.1s;
    }

    .ngo-photo-card:nth-child(3) {
        animation-delay: 0.2s;
    }

    .ngo-photo-card:nth-child(4) {
        animation-delay: 0.3s;
    }

    .ngo-photo-card:nth-child(5) {
        animation-delay: 0.4s;
    }

    .ngo-photo-card::before {
        content: "";
        position: absolute;
        inset: 9px;
        z-index: 4;
        border: 1px solid rgba(255, 255, 255, 0.42);
        border-radius: 6px;
        pointer-events: none;
        transition: inset 0.45s ease, border-color 0.45s ease;
    }

    .ngo-photo-card::after {
        content: "";
        position: absolute;
        z-index: 5;
        top: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
        border-top: 2px solid var(--ngo-gold);
        border-right: 2px solid var(--ngo-gold);
        opacity: 0.9;
        transition: width 0.45s ease, height 0.45s ease;
    }

    .ngo-photo-card img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        object-position: center;
        transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.6s ease;
    }

    .ngo-photo-shade {
        position: absolute;
        inset: 0;
        z-index: 1;
        background:
            linear-gradient(180deg, rgba(4, 19, 23, 0.04) 22%, rgba(4, 19, 23, 0.88) 100%),
            linear-gradient(90deg, rgba(4, 19, 23, 0.2), transparent 60%);
        transition: background 0.5s ease;
    }

    .ngo-overlay {
        position: absolute;
        inset: 0;
        z-index: 3;
        display: flex;
        align-items: flex-end;
        padding: 28px 24px;
    }

    .ngo-overlay-content {
        width: 100%;
        min-height: 178px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 20px 18px;
        border: 0px solid rgba(255, 255, 255, 0.62);
        border-radius: 15px;
        background: transparent;
        box-shadow:
            inset 0 0 24px rgba(255, 255, 255, 0.03),
            0 10px 28px rgba(0, 0, 0, 0.08);
        transition: transform 0.45s ease, border-color 0.45s ease;
    }

    .ngo-number {
        width: fit-content;
        margin-bottom: 10px;
        color: var(--ngo-gold);
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 3px;
    }

    .ngo-overlay h3 {
        margin: 0 0 10px;
        color: #ffffff;
        font-size: clamp(18px, 1.4vw, 25px);
        font-weight: 700;
        line-height: 1.18;
        text-shadow: 0 3px 16px rgba(0, 0, 0, 0.55);
    }

    .ngo-overlay p {
        margin: 0;
        color: rgba(255, 255, 255, 0.9);
        font-size: 14px;
        font-weight: 400;
        line-height: 1.65;
        text-shadow: 0 2px 12px rgba(0, 0, 0, 0.62);
    }

    .ngo-photo-card:hover {
        transform: translateY(-9px);
        box-shadow:
            0 28px 60px rgba(7, 27, 32, 0.24),
            0 0 0 1px rgba(242, 184, 75, 0.24);
    }

    .ngo-photo-card:hover img {
        transform: scale(1.09);
        filter: saturate(1.12) contrast(1.04);
    }

    .ngo-photo-card:hover::before {
        inset: 14px;
        border-color: rgba(242, 184, 75, 0.72);
    }

    .ngo-photo-card:hover::after {
        width: 62px;
        height: 62px;
    }

    .ngo-photo-card:hover .ngo-photo-shade {
        background:
            linear-gradient(180deg, rgba(4, 19, 23, 0.03) 12%, rgba(4, 19, 23, 0.94) 100%),
            linear-gradient(90deg, rgba(12, 122, 104, 0.18), transparent 65%);
    }

    .ngo-photo-card:hover .ngo-overlay-content {
        transform: translateY(-7px);
        border-color: rgba(242, 184, 75, 0.8);
    }

    .ngo-line {
        position: absolute;
        z-index: 1;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(12, 122, 104, 0.5), transparent);
        pointer-events: none;
    }

    .ngo-line-one {
        top: 21px;
        left: 7%;
        width: 48%;
        transform: rotate(-3deg);
    }

    .ngo-line-two {
        right: 4%;
        bottom: 22px;
        width: 52%;
        transform: rotate(3deg);
    }

    .ngo-glow {
        position: absolute;
        z-index: 0;
        border-radius: 50%;
        filter: blur(10px);
        pointer-events: none;
        animation: ngoGlowMove 8s ease-in-out infinite alternate;
    }

    .ngo-glow-one {
        width: 240px;
        height: 240px;
        top: -130px;
        left: 18%;
        background: rgba(12, 122, 104, 0.12);
    }

    .ngo-glow-two {
        width: 210px;
        height: 210px;
        right: 12%;
        bottom: -120px;
        background: rgba(242, 184, 75, 0.13);
        animation-delay: 1.5s;
    }

    @keyframes ngoCardReveal {
        from {
            opacity: 0;
            transform: translateY(35px) scale(0.97);
        }

        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }

    @keyframes ngoGlowMove {
        from {
            transform: translate3d(-15px, -8px, 0) scale(0.95);
        }

        to {
            transform: translate3d(22px, 16px, 0) scale(1.12);
        }
    }

    @media (max-width: 1399.98px) {
        .ngo-photo-grid {
            gap: 10px;
        }

        .ngo-photo-card {
            height: 390px;
            border-radius: 18px;
        }

        .ngo-overlay {
            padding: 22px 16px;
        }

        .ngo-overlay-content {
            min-height: 190px;
            padding: 17px 14px;
        }

        .ngo-overlay h3 {
            font-size: 19px;
        }

        .ngo-overlay p {
            font-size: 13px;
        }
    }

    @media (max-width: 991.98px) {
        .ngo-photo-view {
            padding: 28px 18px;
        }

        .ngo-photo-grid {
            grid-template-columns: 1fr;
            gap: 22px;
            max-width: 720px;
        }

        .ngo-photo-card {
            width: 100%;
            height: 390px;
        }

        .ngo-photo-card img {
            object-position: center;
        }

        .ngo-overlay {
            padding: 30px;
        }

        .ngo-overlay-content {
            min-height: 170px;
            padding: 22px;
        }

        .ngo-overlay h3 {
            font-size: 26px;
        }

        .ngo-overlay p {
            max-width: 580px;
            font-size: 15px;
        }
    }

    @media (max-width: 575.98px) {
        .ngo-photo-view {
            padding: 20px 11px;
        }

        .ngo-photo-view::before {
            inset: 5px;
            border-radius: 20px;
        }

        .ngo-photo-grid {
            gap: 16px;
        }

        .ngo-photo-card {
            height: 350px;
            border-radius: 16px;
        }

        .ngo-photo-card::before {
            inset: 7px;
            border-radius: 12px;
        }

        .ngo-photo-card::after {
            top: 17px;
            right: 17px;
            width: 34px;
            height: 34px;
        }

        .ngo-overlay {
            padding: 20px 17px;
        }

        .ngo-overlay-content {
            min-height: 170px;
            padding: 17px 15px;
            border-radius: 12px;
        }

        .ngo-overlay h3 {
            font-size: 22px;
        }

        .ngo-overlay p {
            font-size: 14px;
            line-height: 1.55;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .ngo-photo-card,
        .ngo-glow {
            animation: none;
        }

        .ngo-photo-card,
        .ngo-photo-card img,
        .ngo-photo-card::before,
        .ngo-photo-card::after,
        .ngo-overlay-content {
            transition: none;
        }
    }