/* Extracted from our-projects.php */

        /* ============================================================
           ASHAR ALO — "Green Light" Redesign (Same as Homepage)
           Theme: Teal #009B8E · Leaf motifs · Organic professional
           ============================================================ */
        :root {
            --primary: #009B8E;
            --primary-dark: #00776D;
            --deep: #00594F;
            --ink: #06322C;
            --mint: #E3F4F1;
            --mint-soft: #F1FAF8;
            --ivory: #F8FBFA;
            --gold: #E9B44C;
            --gold-soft: #FBF0DA;
            --white: #ffffff;
            --text-dark: #23423D;
            --text-light: #5E7A75;
            --shadow: 0 6px 24px rgba(0, 89, 79, 0.10);
            --shadow-lg: 0 18px 45px rgba(0, 89, 79, 0.16);
            --teal-gradient: linear-gradient(135deg, #009B8E 0%, #00594F 100%);
            --gold-gradient: linear-gradient(135deg, #E9B44C 0%, #D69A2D 100%);
            --leaf-radius: 6px 36px 6px 36px;
            --leaf-radius-lg: 8px 56px 8px 56px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Hind Siliguri', 'Segoe UI', Tahoma, sans-serif, 'BenSen Handwriting', cursive;
        }

        h1, h2, h3, h4 { line-height: 1.3; }

        body {
            background-color: var(--ivory);
            color: var(--text-dark);
            line-height: 1.7;
            background-image:
                url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="140" height="140" viewBox="0 0 140 140"><path d="M70 18 C96 34 108 62 70 108 C32 62 44 34 70 18 Z" fill="none" stroke="%23009B8E" stroke-width="1.2" opacity="0.10"/><path d="M70 30 L70 96" stroke="%23009B8E" stroke-width="1" opacity="0.08"/></svg>'),
                url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="90" height="90" viewBox="0 0 90 90"><path d="M45 14 C60 24 66 42 45 70 C24 42 30 24 45 14 Z" fill="%23009B8E" opacity="0.045"/></svg>');
            background-size: 280px, 180px;
            background-position: 0 0, 90px 120px;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .section {
            padding: 60px 0;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .section.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .section-title {
            text-align: left;
            margin-bottom: 40px;
            color: var(--ink);
            font-family: 'Fraunces', serif;
            font-size: 2.3rem;
            font-weight: 600;
            position: relative;
            display: inline-block;
            padding-left: 46px;
        }

        .section-title::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-55%);
            width: 32px;
            height: 32px;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path d="M32 6 C50 18 58 38 32 58 C6 38 14 18 32 6 Z" fill="%23009B8E"/><path d="M32 16 L32 50" stroke="%23E3F4F1" stroke-width="3"/></svg>');
            background-size: contain;
            background-repeat: no-repeat;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 46px;
            width: 90px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--gold));
            border-radius: 2px;
        }

        .btn {
            display: inline-block;
            padding: 13px 30px;
            background: var(--teal-gradient);
            color: var(--white);
            border: none;
            border-radius: var(--leaf-radius);
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 600;
            letter-spacing: 0.3px;
            box-shadow: 0 6px 18px rgba(0, 155, 142, 0.35);
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
            transition: all 0.5s ease;
        }

        .btn:hover {
            background: var(--gold-gradient);
            transform: translateY(-3px);
            border-radius: 36px 6px 36px 6px;
            box-shadow: 0 10px 24px rgba(233, 180, 76, 0.45);
        }

        .btn:hover::before {
            left: 100%;
        }

        /* ================= Header ================= */
        .top-header {
            background: var(--ink);
            color: rgba(255,255,255,0.85);
            padding: 9px 0;
            font-size: 0.88rem;
        }

        .top-header .container {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .contact-info span { margin-right: 22px; }
        .contact-info i { margin-right: 6px; color: var(--gold); }

        .main-header {
            background: var(--white);
            border-bottom: 3px solid var(--primary);
            box-shadow: 0 4px 20px rgba(0, 89, 79, 0.08);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .main-header.scrolled {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 6px 24px rgba(0, 89, 79, 0.14);
        }

        .main-header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 15px;
        }

        .logo {
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
        }

        .logo:hover { transform: scale(1.03); }

        .logo img {
            height: 62px;
            margin-right: 12px;
            transition: all 0.3s ease;
        }

        .logo h1 {
            font-family: 'Fraunces', serif;
            font-size: 1.35rem;
            font-weight: 600;
            color: var(--ink);
        }

        .nav-menu {
            display: flex;
            align-items: center;
            list-style: none;
        }

        .nav-menu li { margin-left: 22px; }

        .nav-menu a {
            text-decoration: none;
            color: var(--ink);
            font-weight: 600;
            transition: color 0.3s ease;
            padding: 6px 0;
            position: relative;
        }

        .nav-menu a:hover { color: var(--primary); }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            border-radius: 3px;
            background: linear-gradient(90deg, var(--primary), var(--gold));
            transition: width 0.3s ease;
        }

        .nav-menu a:hover::after { width: 100%; }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            width: 30px;
            height: 30px;
            position: relative;
            z-index: 1001;
        }

        .hamburger {
            display: block;
            width: 100%;
            height: 3px;
            background-color: var(--primary);
            border-radius: 3px;
            position: relative;
            transition: all 0.3s ease;
        }

        .hamburger::before,
        .hamburger::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 3px;
            border-radius: 3px;
            background-color: var(--primary);
            left: 0;
            transition: all 0.3s ease;
        }

        .hamburger::before { top: -8px; }
        .hamburger::after { bottom: -8px; }

        .mobile-menu-btn.active .hamburger { background-color: transparent; }
        .mobile-menu-btn.active .hamburger::before { top: 0; transform: rotate(45deg); }
        .mobile-menu-btn.active .hamburger::after { bottom: 0; transform: rotate(-45deg); }

        /* ================= Projects Specific Styles ================= */
        .projects-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px 0;
        }

        .projects-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            flex-wrap: wrap;
            gap: 20px;
        }

        .search-box {
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .search-box input {
            padding: 12px 20px;
            border: 2px solid var(--primary);
            border-radius: var(--leaf-radius);
            font-size: 1rem;
            min-width: 280px;
            background: var(--white);
            transition: all 0.3s ease;
        }

        .search-box input:focus {
            outline: none;
            box-shadow: 0 0 0 4px rgba(0, 155, 142, 0.15);
        }

        .search-box button {
            padding: 12px 25px;
            background: var(--teal-gradient);
            color: var(--white);
            border: none;
            border-radius: var(--leaf-radius);
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .search-box button:hover {
            background: var(--gold-gradient);
            transform: translateY(-2px);
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
            gap: 30px;
        }

        .project-card {
            background: var(--white);
            border-radius: var(--leaf-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.35s ease;
            border-top: 4px solid var(--primary);
            transform: scale(0.9);
            opacity: 0;
            cursor: pointer;
        }

        .project-card.visible {
            transform: scale(1);
            opacity: 1;
        }

        .project-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
            border-top-color: var(--gold);
        }

        .project-image {
            position: relative;
            overflow: hidden;
            height: 220px;
        }

        .project-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .project-card:hover .project-image img {
            transform: scale(1.06);
        }

        .project-thumbnail-count {
            position: absolute;
            bottom: 15px;
            right: 15px;
            background: rgba(0, 89, 79, 0.85);
            color: var(--white);
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
            backdrop-filter: blur(4px);
        }

        .project-content {
            padding: 22px;
        }

        .project-title {
            color: var(--ink);
            font-size: 1.2rem;
            margin-bottom: 8px;
            font-weight: 600;
            font-family: 'Fraunces', serif;
        }

        .project-donor {
            color: var(--text-light);
            font-size: 0.95rem;
            margin-bottom: 6px;
            display: flex;
            align-items: center;
        }

        .project-donor i {
            margin-right: 8px;
            color: var(--gold);
        }

        .project-area {
            color: var(--text-light);
            font-size: 0.95rem;
            display: flex;
            align-items: center;
        }

        .project-area i {
            margin-right: 8px;
            color: var(--primary);
        }

        .project-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px dashed #cde8e3;
        }

        .project-sl {
            color: var(--text-light);
            font-size: 0.9rem;
            font-weight: 500;
        }

        .view-details-btn {
            background: var(--teal-gradient);
            color: var(--white);
            border: none;
            padding: 8px 20px;
            border-radius: var(--leaf-radius);
            cursor: pointer;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            font-weight: 500;
            box-shadow: 0 2px 10px rgba(0, 89, 79, 0.2);
        }

        .view-details-btn:hover {
            background: var(--gold-gradient);
            transform: translateY(-2px);
            border-radius: 36px 6px 36px 6px;
            box-shadow: 0 6px 18px rgba(233, 180, 76, 0.4);
        }

        /* No Projects */
        .no-projects {
            text-align: center;
            padding: 60px 40px;
            background: var(--white);
            border-radius: var(--leaf-radius);
            box-shadow: var(--shadow);
            grid-column: 1 / -1;
        }

        .no-projects i {
            font-size: 4rem;
            color: var(--primary);
            margin-bottom: 20px;
            opacity: 0.7;
        }

        .no-projects h3 {
            color: var(--ink);
            margin-bottom: 10px;
            font-family: 'Fraunces', serif;
        }

        .no-projects p {
            color: var(--text-light);
            max-width: 500px;
            margin: 0 auto 20px;
        }

        /* ================= Modal Styles ================= */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(6, 50, 44, 0.92);
            z-index: 1100;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .modal-content {
            background: var(--white);
            padding: 35px;
            border-radius: var(--leaf-radius-lg);
            max-width: 900px;
            width: 100%;
            max-height: 90%;
            overflow-y: auto;
            position: relative;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
            border-top: 6px solid var(--primary);
        }

        .modal-content::-webkit-scrollbar {
            width: 6px;
        }

        .modal-content::-webkit-scrollbar-track {
            background: var(--mint-soft);
            border-radius: 10px;
        }

        .modal-content::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 10px;
        }

        .close-modal {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--teal-gradient);
            color: var(--white);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50% 50% 50% 8px;
            font-size: 1.3rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(0, 89, 79, 0.3);
            z-index: 10;
        }

        .close-modal:hover {
            background: var(--gold-gradient);
            transform: rotate(90deg) scale(1.1);
        }

        .modal-header {
            padding-bottom: 15px;
            margin-bottom: 20px;
            border-bottom: 2px solid var(--mint);
        }

        .modal-project-title {
            color: var(--ink);
            font-size: 1.8rem;
            font-weight: 600;
            font-family: 'Fraunces', serif;
        }

        .modal-project-meta {
            display: flex;
            gap: 30px;
            margin-top: 10px;
            flex-wrap: wrap;
            color: var(--text-light);
        }

        .modal-project-meta span {
            display: flex;
            align-items: center;
        }

        .modal-project-meta i {
            margin-right: 8px;
            color: var(--primary);
        }

        .modal-project-meta .donor i {
            color: var(--gold);
        }

        /* Image Gallery in Modal */
        .image-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
            margin-bottom: 25px;
        }

        .image-gallery img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: var(--leaf-radius);
            box-shadow: var(--shadow);
            transition: transform 0.3s ease;
            border: 2px solid var(--mint);
        }

        .image-gallery img:hover {
            transform: scale(1.03);
        }

        .modal-project-description {
            line-height: 1.9;
            color: var(--text-dark);
            font-size: 1.05rem;
        }

        .modal-project-description h4 {
            color: var(--ink);
            font-family: 'Fraunces', serif;
            margin-bottom: 10px;
        }

        .modal-project-description .editor-content {
            padding: 10px 0;
        }

        .modal-project-description .editor-content img {
            max-width: 100%;
            height: auto;
            border-radius: var(--leaf-radius);
            margin: 15px 0;
        }

        .modal-project-description .editor-content iframe {
            max-width: 100%;
            border-radius: var(--leaf-radius);
            margin: 15px 0;
        }

        /* ================= Footer ================= */
        .footer {
            background: linear-gradient(180deg, var(--deep) 0%, var(--ink) 100%);
            color: rgba(255,255,255,0.9);
            padding: 50px 0 0px;
            position: relative;
            overflow: hidden;
            border-top: 5px solid var(--gold);
            margin-top: 40px;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -60px;
            width: 300px;
            height: 300px;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50 8 C78 26 90 56 50 58 C10 56 22 26 50 8 Z" fill="%23009B8E"/></svg>');
            background-size: contain;
            background-repeat: no-repeat;
            opacity: 0.10;
            transform: rotate(40deg);
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            margin-bottom: 40px;
            position: relative;
            z-index: 1;
        }

        .footer-section {
            flex: 0 0 25%;
            max-width: 25%;
            padding: 0 15px;
        }

        .footer-section h3 {
            margin-bottom: 20px;
            font-family: 'Fraunces', serif;
            font-size: 1.2rem;
            color: var(--white);
            position: relative;
            padding-bottom: 10px;
        }

        .footer-section h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            border-radius: 3px;
            background: linear-gradient(90deg, var(--primary), var(--gold));
        }

        .contact-info-footer p {
            margin-bottom: 10px;
            display: flex;
            align-items: flex-start;
        }

        .contact-info-footer i {
            margin-right: 10px;
            margin-top: 5px;
            color: var(--gold);
        }

        .quick-links { list-style: none; }
        .quick-links li { margin-bottom: 10px; }

        .quick-links a {
            color: rgba(255,255,255,0.85);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .quick-links a:hover {
            color: var(--gold);
            padding-left: 6px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 50% 50% 50% 8px;
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--gold-gradient);
            color: var(--ink);
            transform: translateY(-4px);
        }

        .newsletter-form {
            display: flex;
            margin-top: 20px;
        }

        .newsletter-form input {
            flex: 1;
            padding: 11px 14px;
            border: none;
            border-radius: 6px 0 0 18px;
        }

        .newsletter-form button {
            background: var(--gold-gradient);
            color: var(--ink);
            border: none;
            padding: 0 16px;
            border-radius: 0 18px 6px 0;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .newsletter-form button:hover { background: var(--teal-gradient); color: var(--white); }

        .copyright {
            text-align: center;
            padding: 20px 0;
            margin-top: 20px;
            border-top: 1px solid rgba(0, 155, 142, 0.35);
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.65);
            position: relative;
            z-index: 1;
        }

        /* ================= Responsive ================= */
        @media (max-width: 992px) {
            .footer-section {
                flex: 0 0 50%;
                max-width: 50%;
                margin-bottom: 30px;
            }
            .projects-grid {
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            .top-header {
                display: none;
            }

            .nav-menu {
                position: fixed;
                top: 100px;
                left: -100%;
                width: 72%;
                height: calc(75vh - 100px);
                background: rgba(0, 89, 79, 0.96);
                backdrop-filter: blur(8px);
                display: flex;
                flex-direction: column;
                align-items: stretch;
                transition: left 0.3s ease;
                box-shadow: var(--shadow-lg);
                padding: 25px;
                border-radius: 0 36px 36px 0;
                z-index: 1000;
            }

            .nav-menu.active { left: 0; }
            .nav-menu li { margin: 10px 0; }
            .nav-menu a { color: var(--white); }
            .nav-menu a:hover { color: var(--gold); }

            .projects-grid {
                grid-template-columns: 1fr;
            }

            .projects-header {
                flex-direction: column;
                align-items: stretch;
            }

            .search-box {
                flex-direction: column;
            }

            .search-box input {
                min-width: unset;
                width: 100%;
            }

            .footer-section {
                flex: 0 0 100%;
                max-width: 100%;
            }

            .section-title {
                font-size: 1.8rem;
                padding-left: 38px;
            }
            .section-title::before {
                width: 26px;
                height: 26px;
            }
            .section-title::after {
                left: 38px;
            }

            .modal-content {
                padding: 25px 20px;
            }
            .modal-project-title {
                font-size: 1.4rem;
            }
            .modal-project-meta {
                gap: 15px;
                font-size: 0.9rem;
            }
            .image-gallery {
                grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
            }
            .image-gallery img {
                height: 140px;
            }
        }

        @media (max-width: 576px) {
            .top-header .container {
                flex-direction: column;
                align-items: flex-start;
            }

            .contact-info span {
                display: block;
                margin-bottom: 5px;
            }

            .logo h1 {
                font-size: 1.2rem;
            }

            .section-title {
                font-size: 1.4rem;
            }

            .projects-grid {
                grid-template-columns: 1fr;
            }

            .modal-content {
                padding: 20px 15px;
            }
            .modal-project-title {
                font-size: 1.1rem;
            }
            .image-gallery {
                grid-template-columns: 1fr 1fr;
            }
            .image-gallery img {
                height: 120px;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            * { transition: none !important; animation: none !important; }
        }
    