<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	 xmlns:media="http://search.yahoo.com/mrss/" >

<channel>
	<title>FOSCOD</title>
	<atom:link href="https://foscod.org/feed/" rel="self" type="application/rss+xml" />
	<link>https://foscod.org/</link>
	<description>Building Sustainable, Empowered Communities</description>
	<lastBuildDate>Wed, 22 Oct 2025 14:33:55 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0</generator>

<image>
	<url>https://foscod.org/wp-content/uploads/2024/10/cropped-favicon-circle-32x32.png</url>
	<title>FOSCOD</title>
	<link>https://foscod.org/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Celebrating our Host Families</title>
		<link>https://foscod.org/celebrating-our-host-families/</link>
		
		<dc:creator><![CDATA[Yusuf Omoding]]></dc:creator>
		<pubDate>Wed, 22 Oct 2025 14:01:07 +0000</pubDate>
				<category><![CDATA[Blogs]]></category>
		<category><![CDATA[updates]]></category>
		<guid isPermaLink="false">https://foscod.org/?p=5171</guid>

					<description><![CDATA[<p>Discover how our host families provide a home away from home, creating a foundation of support and cultural exchange that defines our internship program's success in Uganda</p>
<p>The post <a href="https://foscod.org/celebrating-our-host-families/">Celebrating our Host Families</a> appeared first on <a href="https://foscod.org">FOSCOD</a>.</p>
]]></description>
										<content:encoded><![CDATA[		<div data-elementor-type="wp-post" data-elementor-id="5171" class="elementor elementor-5171" data-elementor-post-type="post">
				<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-3785ce9 e-flex e-con-boxed e-con e-parent" data-id="3785ce9" data-element_type="container">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-c9de1e4 elementor-widget elementor-widget-html" data-id="c9de1e4" data-element_type="widget" data-widget_type="html.default">
				<div class="elementor-widget-container">
					<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Host Families - The Heart of Our Internship Program | FOSCOD</title>
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
    <style>
        /* Color Scheme */
        :root {
            --primary: #10474C;
            --light: #f8f9fa;
            --dark: #000000;
            --gray: #5d6d5d;
            --light-gray: #e8f5e9;
            --border-radius: 8px;
            --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }

        /* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background-color: #f8faf7;
            min-height: 100vh;
        }

        a {
            text-decoration: none;
            color: var(--primary);
            transition: var(--transition);
        }

        a:hover {
            color: #0a2f33;
        }

        .container {
            width: 100%;
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .btn {
            display: inline-block;
            padding: 12px 28px;
            background-color: var(--primary);
            color: white;
            border: none;
            border-radius: var(--border-radius);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }

        .btn:hover {
            background-color: #0a2f33;
            transform: translateY(-2px);
            box-shadow: var(--box-shadow);
        }

        .btn-accent {
            background-color: #8bc34a;
            color: var(--dark);
        }

        .btn-accent:hover {
            background-color: #7cb342;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(16, 71, 76, 0.85), rgba(16, 71, 76, 0.9)), url('https://foscod.org/wp-content/uploads/2025/10/cul.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0;
            text-align: center;
            margin-bottom: 60px;
        }

        .hero h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            line-height: 1.2;
            font-weight: 700;
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }

        /* Blog Content */
        .blog-content {
            padding: 0 0 60px;
        }

        .main-content {
            background: white;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            overflow: hidden;
            margin: 0 auto;
        }

        .featured-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }

        .article-body {
            padding: 50px;
        }

        .article-meta {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
            color: var(--gray);
            font-size: 0.9rem;
        }

        .article-meta i {
            margin-right: 5px;
            color: var(--primary);
        }

        .article-meta span {
            margin-right: 25px;
            display: flex;
            align-items: center;
        }

        .article-body h1, .article-body h2, .article-body h3 {
            color: var(--dark);
        }

        .article-body h2 {
            margin: 35px 0 20px;
            font-size: 1.8rem;
            font-weight: 700;
        }

        .article-body h3 {
            margin: 30px 0 15px;
            font-size: 1.4rem;
            font-weight: 600;
        }

        .article-body p {
            margin-bottom: 20px;
            font-size: 1.05rem;
            color: var(--dark);
        }

        .article-body ul, .article-body ol {
            margin: 20px 0;
            padding-left: 20px;
        }

        .article-body li {
            margin-bottom: 10px;
            color: var(--dark);
        }

        .highlight-box {
            background-color: var(--light-gray);
            border-left: 4px solid var(--primary);
            padding: 25px;
            margin: 35px 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }

        .highlight-box p {
            color: var(--dark);
            font-style: italic;
        }

        .key-actors-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }

        .actor-card {
            background: white;
            border-radius: var(--border-radius);
            padding: 25px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: var(--transition);
            border: 1px solid #f0f0f0;
        }

        .actor-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }

        .actor-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .actor-card h4 {
            margin-bottom: 15px;
            color: var(--dark);
            font-weight: 600;
        }

        .actor-card p {
            font-size: 0.95rem;
            color: var(--gray);
        }

        /* Photo Gallery */
        .photo-gallery {
            margin: 50px 0;
        }

        .photo-gallery h3 {
            text-align: center;
            margin-bottom: 30px;
            color: var(--dark);
            font-size: 1.8rem;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }

        .gallery-item {
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: var(--transition);
        }

        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }

        .gallery-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            display: block;
        }

        .gallery-caption {
            padding: 15px;
            background: white;
            text-align: center;
            font-style: italic;
            color: var(--gray);
        }

        /* CTA Section */
        .cta-section {
            background-color: var(--primary);
            color: white;
            padding: 40px;
            text-align: center;
            border-radius: var(--border-radius);
            margin-top: 50px;
        }

        .cta-section h3 {
            margin-bottom: 20px;
            font-size: 1.8rem;
            color: white;
        }

        .cta-section p {
            margin-bottom: 25px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            color: white;
        }

        .intern-benefits {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }

        .benefit-item {
            background: rgba(255, 255, 255, 0.15);
            padding: 20px;
            border-radius: var(--border-radius);
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .benefit-item i {
            font-size: 2rem;
            margin-bottom: 15px;
            color: #8bc34a;
        }

        .benefit-item h4 {
            color: white;
            margin-bottom: 10px;
        }

        .benefit-item p {
            color: rgba(255, 255, 255, 0.9);
        }

        .social-share {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin: 40px 0;
        }

        .social-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: var(--light-gray);
            color: var(--dark);
            transition: var(--transition);
        }

        .social-icon:hover {
            background: var(--primary);
            color: white;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.3rem;
            }
        }

        @media (max-width: 768px) {
            .hero {
                padding: 80px 0;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .article-body {
                padding: 30px;
            }
            
            .featured-image {
                height: 350px;
            }
            
            .key-actors-grid {
                grid-template-columns: 1fr;
            }
            
            .gallery-grid {
                grid-template-columns: 1fr;
            }
            
            .article-meta {
                flex-wrap: wrap;
                gap: 10px;
            }
            
            .intern-benefits {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 576px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .article-body {
                padding: 25px;
            }
            
            .cta-section {
                padding: 30px 20px;
            }
        }
    </style>
</head>
<body>
    <!-- Hero Section -->
    <section class="hero">
        <div class="container">
            <h1>The Cornerstone of Connection: Celebrating Our Host Families</h1>
            <p>Discover how our host families provide a home away from home, creating a foundation of support and cultural exchange that defines our internship program's success.</p>
            <a href="https://foscod.org/internships" class="btn btn-accent">Apply for Our Internship Program</a>
        </div>
    </section>

    <!-- Blog Content -->
    <div class="container">
        <div class="blog-content">
            <!-- Main Content -->
            <main class="main-content">
                <img decoding="async" src="https://foscod.org/wp-content/uploads/2025/10/peeling-with-interns.jpg" alt="Interns learning Uganda culture of preparing food" class="featured-image">
                
                <div class="article-body">
                    <div class="article-meta">
                        <span><i class="far fa-calendar"></i> October 21, 2025</span>
                      
                    </div>
                    
                    <p>At <strong>FOSCOD - The Foundation for Sustainable Community Based Development in Uganda</strong>, we often speak about the transformative power of our internship program in Uganda. We talk about professional skills, community based development projects, cultural exchange and personal growth in Uganda. But behind every successful intern, behind every story of transformation, there is a quiet, consistent, and powerful force: Our host families.</p>
                    
                    <p>They are the unsung heroes, the cornerstone upon which a truly immersive and supportive experience is built. An internship with FOSCOD in Uganda is more than a job; it's a life experience, and that experience is profoundly shaped by the place one calls home.</p>
                    
                    <h2>More Than a Roof Overhead: The Role of a Host Family</h2>
                    
                    <p>A host family does much more than provide room and board. They are the first welcome in Uganda, a cultural compass, and a supportive family unit. Their role is multifaceted, encompassing:</p>
                    
                    <ul>
                        <li><strong>Creating a Safe Haven:</strong> Moving to Uganda can be daunting. Our host families offer a safe, welcoming, and stable environment where interns can decompress, reflect, and feel secure.</li>
                        <li><strong>Facilitating Cultural Immersion:</strong> Textbooks can teach language, but only a lived experience can teach culture. From sharing traditional meals to explaining local customs and celebrating holidays, host families provide an authentic cultural immersion that is simply unavailable elsewhere.</li>
                        <li><strong>Offering Unwavering Support:</strong> They are a listening ear after a challenging day, a source of encouragement before a big presentation, and a cheering section for every small victory.</li>
                        <li><strong>Building Bridges:</strong> Host families become a intern's first and most personal connection to the community, often introducing them to friends, neighbors, and local networks that enrich their experience exponentially.</li>
                    </ul>
                    
                    <div class="highlight-box">
                        <p>"The beauty of this relationship is that it is never one-sided. The exchange flows both ways. Host families consistently report how opening their homes to our interns brings new perspectives, energy, and learning into their own lives."</p>
                    </div>
                    
                    <h2>The Ripple Effect of a Shared Experience</h2>
                    
                    <p>"The beauty of this relationship is that it is never one-sided. The exchange flows both ways. Host families consistently report how opening their homes to our interns brings new perspectives, energy, and learning into their own lives." They gain a window to a different part of the world, learn about new traditions, and often form bonds that last a lifetime, turning their home into a hub of global connection.</p>
                    
                    <h2>The Ecosystem of Success: Our Key Actors</h2>
                    
                    <p>While our host families are the heart of a lived experience, they are part of a broader ecosystem that makes our internship program in Uganda so unique and effective. This program thrives thanks to the synergy between all our key actors:</p>
                    
                    <div class="key-actors-grid">
                        <div class="actor-card">
                            <div class="actor-icon">
                                <i class="fas fa-home"></i>
                            </div>
                            <h4>Host Families</h4>
                            <p>Providing the foundational home-life support and cultural integration that creates a true home away from home.</p>
                        </div>
                        
                        <div class="actor-card">
                            <div class="actor-icon">
                                <i class="fas fa-building"></i>
                            </div>
                            <h4>Host Organizations</h4>
                            <p>Offering professional platforms, mentorship, and real-world projects that drive professional development.</p>
                        </div>
                        
                        <div class="actor-card">
                            <div class="actor-icon">
                                <i class="fas fa-users"></i>
                            </div>
                            <h4>The General Community</h4>
                            <p>Welcoming our interns and providing the rich cultural context that makes the experience truly immersive.</p>
                        </div>
                        
                        <div class="actor-card">
                            <div class="actor-icon">
                                <i class="fas fa-concierge-bell"></i>
                            </div>
                            <h4>Service Providers</h4>
                            <p>Hotels, transport services, restaurants and other local businesses that support our interns' daily needs.</p>
                        </div>
                        
                        <div class="actor-card">
                            <div class="actor-icon">
                                <i class="fas fa-user-tie"></i>
                            </div>
                            <h4>Program Coordinators</h4>
                            <p>Ensuring seamless logistics, ongoing support, and acting as a vital link between all parties.</p>
                        </div>
                        
                        <div class="actor-card">
                            <div class="actor-icon">
                                <i class="fas fa-user-graduate"></i>
                            </div>
                            <h4>Dedicated Interns</h4>
                            <p>Bringing talent, curiosity, and drive to both their work and their host communities.</p>
                        </div>
                    </div>
                    
                    <p>It is the seamless collaboration between these key actors that creates an environment where interns don't just <em>work</em>—they <em>grow</em>, developing both professionally and personally while contributing meaningfully to sustainable community development.</p>
                    
                    <!-- Photo Gallery -->
                    <div class="photo-gallery">
                        <h3>Moments with Our Host Families</h3>
                        <div class="gallery-grid">
                            <div class="gallery-item">
                                <img decoding="async" src="https://foscod.org/wp-content/uploads/2025/10/cul.jpg" alt="Host family sharing a meal with intern">
                                <div class="gallery-caption">Sharing meals and stories together</div>
                            </div>
                            <div class="gallery-item">
                                <img decoding="async" src="https://foscod.org/wp-content/uploads/2025/10/cultu-1.jpg" alt="Intern learning local culture">
                                <div class="gallery-caption">Interns Learning local traditions and culture</div>
                            </div>
                            <div class="gallery-item">
                                <img decoding="async" src="https://foscod.org/wp-content/uploads/2025/10/supplementary-pic.jpg" alt="Host family and intern working together">
                                <div class="gallery-caption">Intern working together with his host family</div>
                            </div>
                        </div>
                    </div>
                    
                    <!-- Social Sharing -->
                    <div class="social-share">
                        <a href="https://www.facebook.com/foscoduganda" class="social-icon"><i class="fab fa-facebook-f"></i></a>
                        <a href="https://x.com/foscoduganda" class="social-icon"><i class="fab fa-twitter"></i></a>
                        <a href="www.linkedin.com/in/foundation for sustainable community based development" class="social-icon"><i class="fab fa-linkedin-in"></i></a>
                        <a href="+256753449450" class="social-icon"><i class="fab fa-whatsapp"></i></a>
                        <a href="foscoduganda@gmail.com" class="social-icon"><i class="far fa-envelope"></i></a>
                    </div>
                    
                    <div class="cta-section" id="cta">
                        <h3>Ready for a Transformative Internship Experience?</h3>
                        <p>Join our community of global changemakers and gain professional experience while making a real impact in sustainable community development.</p>
                        
                        <div class="intern-benefits">
                            <div class="benefit-item">
                                <i class="fas fa-globe-americas"></i>
                                <h4>Cultural Immersion</h4>
                                <p>Live with local host families and experience authentic cultural exchange</p>
                            </div>
                            <div class="benefit-item">
                                <i class="fas fa-hands-helping"></i>
                                <h4>Community Impact</h4>
                                <p>Work on impactful projects that support sustainable development</p>
                            </div>
                            <div class="benefit-item">
                                <i class="fas fa-chart-line"></i>
                                <h4>Professional Growth</h4>
                                <p>Gain valuable skills and experience with local organizations</p>
                            </div>
                            <div class="benefit-item">
                                <i class="fas fa-network-wired"></i>
                                <h4>Global Network</h4>
                                <p>Build connections with professionals and communities worldwide</p>
                            </div>
                        </div>
                        
                        <p><strong>Applications are now open for our next cohort of interns.</strong> Don't miss this opportunity to grow professionally while making a difference in communities that need your skills and passion.</p>
                        <a href="https://foscod.org/internships" class="btn btn-accent">Apply Now for Our Internship Program</a>
                    </div>
                </div>
            </main>
        </div>
    </div>

    <script>
        // Add subtle animation to actor cards on scroll
        document.addEventListener('DOMContentLoaded', function() {
            const actorCards = document.querySelectorAll('.actor-card');
            const benefitItems = document.querySelectorAll('.benefit-item');
            const galleryItems = document.querySelectorAll('.gallery-item');
            
            const observer = new IntersectionObserver((entries) => {
                entries.forEach(entry => {
                    if (entry.isIntersecting) {
                        entry.target.style.opacity = '1';
                        entry.target.style.transform = 'translateY(0)';
                    }
                });
            }, { threshold: 0.1 });
            
            actorCards.forEach(card => {
                card.style.opacity = '0';
                card.style.transform = 'translateY(20px)';
                card.style.transition = 'opacity 0.5s ease, transform 0.5s ease';
                observer.observe(card);
            });
            
            benefitItems.forEach(item => {
                item.style.opacity = '0';
                item.style.transform = 'translateY(20px)';
                item.style.transition = 'opacity 0.5s ease, transform 0.5s ease';
                observer.observe(item);
            });
            
            galleryItems.forEach(item => {
                item.style.opacity = '0';
                item.style.transform = 'translateY(20px)';
                item.style.transition = 'opacity 0.5s ease, transform 0.5s ease';
                observer.observe(item);
            });
        });
    </script>
</body>
</html>				</div>
				</div>
					</div>
				</div>
				</div>
		<p>The post <a href="https://foscod.org/celebrating-our-host-families/">Celebrating our Host Families</a> appeared first on <a href="https://foscod.org">FOSCOD</a>.</p>
]]></content:encoded>
					
		
		
		
		<media:thumbnail url="https://foscod.org/foscod.org/wp-content/uploads/2025/10/peeling-with-interns.jpg" />
		<media:content url="https://foscod.org/foscod.org/wp-content/uploads/2025/10/peeling-with-interns.jpg" medium="image">
			<media:title type="html">Interns learning Uganda culture of preparing food</media:title>
		</media:content>
		<media:content url="https://foscod.org/foscod.org/wp-content/uploads/2025/10/cul.jpg" medium="image">
			<media:title type="html">Host family sharing a meal with intern</media:title>
		</media:content>
		<media:content url="https://foscod.org/foscod.org/wp-content/uploads/2025/10/cultu-1.jpg" medium="image">
			<media:title type="html">Intern learning local culture</media:title>
		</media:content>
		<media:content url="https://foscod.org/foscod.org/wp-content/uploads/2025/10/supplementary-pic.jpg" medium="image">
			<media:title type="html">Host family and intern working together</media:title>
		</media:content>
	</item>
		<item>
		<title>A Solar-Powered Salon in Naluvule</title>
		<link>https://foscod.org/a-solar-powered-salon-in-naluvule/</link>
		
		<dc:creator><![CDATA[Yusuf Omoding]]></dc:creator>
		<pubDate>Fri, 26 Sep 2025 11:56:36 +0000</pubDate>
				<category><![CDATA[Blogs]]></category>
		<category><![CDATA[updates]]></category>
		<guid isPermaLink="false">https://foscod.org/?p=4908</guid>

					<description><![CDATA[<p>In Naluvule Village, Buikwe District, families faced the struggles of no health facilities, no electricity, and limited clean water. </p>
<p>The post <a href="https://foscod.org/a-solar-powered-salon-in-naluvule/">A Solar-Powered Salon in Naluvule</a> appeared first on <a href="https://foscod.org">FOSCOD</a>.</p>
]]></description>
										<content:encoded><![CDATA[		<div data-elementor-type="wp-post" data-elementor-id="4908" class="elementor elementor-4908" data-elementor-post-type="post">
				<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-116deef e-con-full e-flex e-con e-parent" data-id="116deef" data-element_type="container">
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-246c74e e-con-full e-flex e-con e-child" data-id="246c74e" data-element_type="container" data-settings="{&quot;background_background&quot;:&quot;gradient&quot;}">
				<div class="elementor-element elementor-element-eca6ef5 elementor-widget elementor-widget-heading" data-id="eca6ef5" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h2 class="elementor-heading-title elementor-size-default">More Than Light: A Solar-Powered Salon Bringing Health, Dignity and Opportunity to Naluvule Village.</h2>				</div>
				</div>
				<div class="elementor-element elementor-element-914a0fb elementor-widget elementor-widget-text-editor" data-id="914a0fb" data-element_type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>Transforming lives through sustainable energy and community empowerment</p>								</div>
				</div>
				</div>
				</div>
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-08652ff e-con-full e-flex e-con e-parent" data-id="08652ff" data-element_type="container">
				<div class="elementor-element elementor-element-b1cc1c8 elementor-widget elementor-widget-html" data-id="b1cc1c8" data-element_type="widget" data-widget_type="html.default">
				<div class="elementor-widget-container">
					<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>More Than Light: A Solar-Powered Salon in Naluvule</title>
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
  <style>
    :root {
      --primary: #2a7d4e;
      --primary-dark: #1a6b3c;
      --secondary: #4caf50;
      --accent: #ff9800;
      --light: #f8f9fa;
      --dark: #343a40;
      --text: #333333;
      --text-light: #6c757d;
      --white: #ffffff;
      --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      --transition: all 0.3s ease;
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      background: var(--light);
      color: var(--text);
      margin: 0;
      padding: 0;
    }
    
    
    }
    
    
    }
    
    .header-content {
      max-width: 900px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }
    
    header h1 {
      margin: 0;
      font-size: 2.5rem;
      font-weight: 700;
      line-height: 1.2;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }
    
    .tagline {
      font-size: 1.2rem;
      margin-top: 1rem;
      opacity: 0.9;
    }
    
    .container {
      max-width: 900px;
      margin: 0 auto;
      padding: 2rem;
    }
    
    h2 {
      color: var(--primary);
      margin-top: 2.5rem;
      margin-bottom: 1rem;
      font-size: 1.8rem;
      position: relative;
      padding-bottom: 10px;
    }
    
    h2::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 60px;
      height: 3px;
      background: var(--accent);
    }
    
    .hero {
      width: 100%;
      border-radius: 12px;
      margin: 1.5rem 0;
      box-shadow: var(--shadow);
      transition: var(--transition);
    }
    
    .hero:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }
    
    .quote {
      background: rgba(42, 125, 78, 0.05);
      border-left: 4px solid var(--primary);
      padding: 1.5rem;
      margin: 2rem 0;
      border-radius: 0 8px 8px 0;
      font-style: italic;
      position: relative;
    }
    
    .quote::before {
      content: '"';
      font-size: 4rem;
      color: var(--primary);
      opacity: 0.2;
      position: absolute;
      top: -10px;
      left: 10px;
      font-family: Georgia, serif;
    }
    
    .quote strong {
      color: var(--primary);
      display: block;
      margin-top: 1rem;
      font-style: normal;
    }
    
    .photo {
      width: 100%;
      border-radius: 12px;
      margin: 1.5rem 0;
      box-shadow: var(--shadow);
      transition: var(--transition);
    }
    
    .photo:hover {
      transform: scale(1.02);
    }
    
    .impact-list {
      margin: 1.5rem 0;
      padding-left: 1.5rem;
    }
    
    .impact-list li {
      margin-bottom: 1rem;
      line-height: 1.6;
      position: relative;
    }
    
    .impact-list li::before {
      content: '✓';
      color: var(--secondary);
      font-weight: bold;
      position: absolute;
      left: -1.5rem;
    }
    
    .cta {
      background: linear-gradient(rgba(42, 125, 78, 0.95), rgba(26, 107, 60, 0.95)), 
                  url('https://images.unsplash.com/photo-1559827260-dc66d52bef19?ixlib=rb-4.0.3&auto=format&fit=crop&w=2074&q=80');
      background-size: cover;
      background-position: center;
      color: var(--white);
      text-align: center;
      padding: 3rem 2rem;
      margin-top: 3rem;
      border-radius: 12px;
      box-shadow: var(--shadow);
    }
    
    .cta h3 {
      margin-top: 0;
      font-size: 1.8rem;
      margin-bottom: 1.5rem;
    }
    
    .cta-buttons {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 1rem;
      margin: 2rem 0;
    }
    
    .cta-btn {
      display: inline-flex;
      align-items: center;
      background: var(--white);
      color: var(--primary);
      padding: 0.9rem 1.8rem;
      border: none;
      border-radius: 8px;
      font-weight: 600;
      cursor: pointer;
      text-decoration: none;
      transition: var(--transition);
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    
    .cta-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
      background: var(--light);
      color: var(--primary-dark);
    }
    
    .cta-btn i {
      margin-right: 8px;
    }
    
    .social-tags {
      margin-top: 1.5rem;
      font-size: 0.9rem;
      opacity: 0.9;
    }
    
    .social-tags a {
      color: var(--white);
      text-decoration: none;
      transition: var(--transition);
    }
    
    .social-tags a:hover {
      text-decoration: underline;
    }
    
    footer {
      text-align: center;
      background: var(--dark);
      color: var(--white);
      padding: 2rem 1rem;
      margin-top: 3rem;
    }
    
    .footer-content {
      max-width: 900px;
      margin: 0 auto;
    }
    
    .social-icons {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin: 1.5rem 0;
    }
    
    .social-icons a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      color: var(--white);
      transition: var(--transition);
    }
    
    .social-icons a:hover {
      background: var(--primary);
      transform: translateY(-3px);
    }
    
    /* Responsive Styles */
    @media (max-width: 768px) {
      header {
        padding: 3rem 1.5rem;
      }
      
      header h1 {
        font-size: 2rem;
      }
      
      .tagline {
        font-size: 1.1rem;
      }
      
      .container {
        padding: 1.5rem;
      }
      
      h2 {
        font-size: 1.6rem;
      }
      
      .cta-buttons {
        flex-direction: column;
        align-items: center;
      }
      
      .cta-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
      }
    }
    
    @media (max-width: 576px) {
      header {
        padding: 2rem 1rem;
      }
      
      header h1 {
        font-size: 1.7rem;
      }
      
      .tagline {
        font-size: 1rem;
      }
      
      .container {
        padding: 1rem;
      }
      
      h2 {
        font-size: 1.4rem;
      }
      
      .cta {
        padding: 2rem 1rem;
      }
      
      .cta h3 {
        font-size: 1.5rem;
      }
    }
  </style>
</head>
<body>
 
  <div class="container">
    <img decoding="async" src="https://foscod.org/wp-content/uploads/2025/09/cutting-hair.jpg" alt="Solar Salon in Naluvule Village" class="hero">
    <p>In Naluvule Village, Buikwe District, families faced the struggles of no health facilities, no electricity, and limited clean water. Even basic haircuts required a 10km journey. But in 2024, the community made a bold decision: to harness the sun and their own talents to create a solar-powered salon—reshaping health, livelihoods, and hope.</p>

    <h2>The Challenge: When a Haircut Becomes a Health Crisis</h2>
    <p>Scalp fungal infections were widespread, intensified by a lack of hygienic barbering services. Shared, unsterilized razors posed risks, while trips to town were costly. Hygiene became the community’s top priority.</p>
    <div class="quote">
      <p>We have many challenges in Naluvule, but without proper hygiene, our children cannot be healthy enough to face other problems.</p>
      <strong>— Nalongo Makubuya Katooko, VSLA Chairperson</strong>
    </div>
    <img decoding="async" src="https://foscod.org/wp-content/uploads/2025/09/WhatsApp-Image-2025-09-25-at-11.01.27-1.jpeg" alt="Barber cutting a child’s hair hygienically" class="photo">

    <h2>The Solution: Harnessing the Sun</h2>
    <p>The community mobilized through their VSLA group, supported by FOSCOD Uganda and local solar technicians. The result: a solar-powered salon with sterilized equipment, phone charging, and even a community radio.</p>
    <img decoding="async" src="https://foscod.org/wp-content/uploads/2025/09/sol-8.jpg" alt="Youth barber at work" class="photo">

    <h2>Impact: Health, Jobs, and Dignity</h2>
    <ul class="impact-list">
      <li><strong>Public Health Victory:</strong> 85% of participants adopted handwashing, fungal infections dropped.</li>
      <li><strong>Economic Empowerment:</strong> Youth like Abubaker now earn incomes through salon work.</li>
      <li><strong>Community Ownership:</strong> Weekly UGX 40,000 revenue supports a maintenance fund.</li>
    </ul>
    <div class="quote">
      <p>I used to sit idle at home, now I earn money every day while serving my community.</p>
      <strong>— Abubaker, Salon Attendant</strong>
    </div>
    <img decoding="async" src="https://foscod.org/wp-content/uploads/2025/09/WhatsApp-Image-2025-09-25-at-11.10.47.jpeg" alt="Community VSLA group in front of the salon" class="photo">

    <h2>A Model for the Future</h2>
    <p>Naluvule’s success is inspiring expansion. FOSCOD is developing a parish-wide WASH program with solar-powered water pumps and other community-led enterprises across Kalagala Parish.</p>

    <div class="cta">
      <h3>You Can Support Community-Led Change</h3>
      <p>Join us in creating more success stories like Naluvule's solar-powered salon.</p>
      <div class="cta-buttons">
        <a href="https://foscod.org/donate" class="cta-btn">
          <i class="fas fa-hand-holding-heart"></i> Donate
        </a>
        <a href="https://foscod.org/internships" class="cta-btn">
          <i class="fas fa-hands-helping"></i> Intern/Volunteer
        </a>
        <a href="https://foscod.org/partner-with-foscod" class="cta-btn">
          <i class="fas fa-handshake"></i> Partner with Us
        </a>
      </div>
 
    </div>
  </div>

  
</body>
</html>				</div>
				</div>
				</div>
				</div>
		<p>The post <a href="https://foscod.org/a-solar-powered-salon-in-naluvule/">A Solar-Powered Salon in Naluvule</a> appeared first on <a href="https://foscod.org">FOSCOD</a>.</p>
]]></content:encoded>
					
		
		
		
		<media:thumbnail url="https://foscod.org/foscod.org/wp-content/uploads/2025/09/cutting-hair.jpg" />
		<media:content url="https://foscod.org/foscod.org/wp-content/uploads/2025/09/cutting-hair.jpg" medium="image">
			<media:title type="html">Solar Salon in Naluvule Village</media:title>
		</media:content>
		<media:content url="https://foscod.org/foscod.org/wp-content/uploads/2025/09/WhatsApp-Image-2025-09-25-at-11.01.27-1.jpeg" medium="image">
			<media:title type="html">Barber cutting a child’s hair hygienically</media:title>
		</media:content>
		<media:content url="https://foscod.org/foscod.org/wp-content/uploads/2025/09/sol-8.jpg" medium="image">
			<media:title type="html">Youth barber at work</media:title>
		</media:content>
		<media:content url="https://foscod.org/foscod.org/wp-content/uploads/2025/09/WhatsApp-Image-2025-09-25-at-11.10.47.jpeg" medium="image">
			<media:title type="html">Community VSLA group in front of the salon</media:title>
		</media:content>
	</item>
		<item>
		<title>Flagship Project Fundraising Internship: Climate &#038; Community Impact</title>
		<link>https://foscod.org/flagship-project-fundraising-internship-climate-community-impact/</link>
		
		<dc:creator><![CDATA[Yusuf Omoding]]></dc:creator>
		<pubDate>Wed, 24 Sep 2025 08:52:04 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<guid isPermaLink="false">https://foscod.org/?p=4876</guid>

					<description><![CDATA[<p>Flagship Project Fundraising Internship: Climate &#38; Community Impact Accelerate financing for FOSCOD’s priority flagship projects, including clean cooking, biochar, WASH, and agroforestry. Apply Now About the Project This is a high-impact internship for those who want to combine fundraising, climate action, and development innovation. Interns will help accelerate financing for FOSCOD’s priority flagship projects — [&#8230;]</p>
<p>The post <a href="https://foscod.org/flagship-project-fundraising-internship-climate-community-impact/">Flagship Project Fundraising Internship: Climate &#038; Community Impact</a> appeared first on <a href="https://foscod.org">FOSCOD</a>.</p>
]]></description>
										<content:encoded><![CDATA[		<div data-elementor-type="wp-post" data-elementor-id="4876" class="elementor elementor-4876" data-elementor-post-type="post">
				<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-1f8ea6c e-flex e-con-boxed e-con e-parent" data-id="1f8ea6c" data-element_type="container" data-settings="{&quot;background_background&quot;:&quot;gradient&quot;}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-b2bf185 elementor-widget elementor-widget-heading" data-id="b2bf185" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h1 class="elementor-heading-title elementor-size-default">Flagship Project Fundraising Internship: Climate &amp; Community Impact</h1>				</div>
				</div>
				<div class="elementor-element elementor-element-0a2ba4b elementor-widget elementor-widget-text-editor" data-id="0a2ba4b" data-element_type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>Accelerate financing for FOSCOD’s priority flagship projects, including clean cooking, biochar, WASH, and agroforestry.</p>								</div>
				</div>
				<div class="elementor-element elementor-element-aae98bc elementor-align-center elementor-widget elementor-widget-button" data-id="aae98bc" data-element_type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-sm elementor-animation-bounce-in" href="https://foscod.org/internship-application">
						<span class="elementor-button-content-wrapper">
									<span class="elementor-button-text">Apply Now</span>
					</span>
					</a>
				</div>
								</div>
				</div>
					</div>
				</div>
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-2ec8074 e-flex e-con-boxed e-con e-parent" data-id="2ec8074" data-element_type="container">
					<div class="e-con-inner">
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-222d0dc e-con-full e-flex e-con e-child" data-id="222d0dc" data-element_type="container">
				<div class="elementor-element elementor-element-669e891 elementor-widget elementor-widget-heading" data-id="669e891" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h3 class="elementor-heading-title elementor-size-default">About the Project</h3>				</div>
				</div>
				<div class="elementor-element elementor-element-010f0b4 elementor-widget elementor-widget-text-editor" data-id="010f0b4" data-element_type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>This is a high-impact internship for those who want to combine fundraising, climate action, and development innovation. Interns will help accelerate financing for FOSCOD’s priority flagship projects — including clean cooking, biochar, WASH, and agroforestry &#8211; by packaging projects, engaging donors, and exploring innovative financing mechanisms.</p><p>The project aligns with Uganda’s strategic policy frameworks of Climate Change Act (2021) -implementing climate finance and adaptation measures, Renewable Energy Policy (2007, under review) expanding sustainable energy solutions, National Forestry Policy (2001) &#8211; promoting tree-based restoration and agroforestry, National Development Plan IV (2025–2030, upcoming) -strengthening financing for priority sectors, and Uganda Vision 2040 – building a green and climate-resilient economy.  This internship is ideal for aspiring professionals in climate action, development finance, or project design who want to gain frontline experience in shaping funding opportunities for transformational change.</p>								</div>
				</div>
				<div class="elementor-element elementor-element-567b443 elementor-widget-divider--view-line elementor-widget elementor-widget-divider" data-id="567b443" data-element_type="widget" data-widget_type="divider.default">
				<div class="elementor-widget-container">
							<div class="elementor-divider">
			<span class="elementor-divider-separator">
						</span>
		</div>
						</div>
				</div>
				<div class="elementor-element elementor-element-32c64bd elementor-widget elementor-widget-heading" data-id="32c64bd" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h3 class="elementor-heading-title elementor-size-default">Program Highlights </h3>				</div>
				</div>
				<div class="elementor-element elementor-element-c3ec482 elementor-widget elementor-widget-text-editor" data-id="c3ec482" data-element_type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>As a Flagship Project Fundraising Intern, you will:</p><ul><li>Package flagship projects with cases for support, budgets, and Theories of Change (ToCs).</li><li>Develop tailored fundraising briefs and pitch decks for donors and partners.</li><li>Assist with donor reporting and impact-driven case studies.</li><li>Scan for innovative financing opportunities (carbon, blended finance, partnerships).</li><li>Support donor engagement campaigns linked to FOSCOD’s climate and community pilots.</li></ul>								</div>
				</div>
				<div class="elementor-element elementor-element-7bba469 elementor-widget-divider--view-line elementor-widget elementor-widget-divider" data-id="7bba469" data-element_type="widget" data-widget_type="divider.default">
				<div class="elementor-widget-container">
							<div class="elementor-divider">
			<span class="elementor-divider-separator">
						</span>
		</div>
						</div>
				</div>
				<div class="elementor-element elementor-element-efdff9d elementor-widget elementor-widget-heading" data-id="efdff9d" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h3 class="elementor-heading-title elementor-size-default">Intern Requirements </h3>				</div>
				</div>
				<div class="elementor-element elementor-element-effa2e5 elementor-widget elementor-widget-text-editor" data-id="effa2e5" data-element_type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>We welcome applicants who:</p><ul><li>Have an interest in climate action, development finance, or project design.</li><li>Possess strong writing and presentation design skills with an analytical mindset.</li><li>Are collaborative, able to work across programs and MEL teams.</li><li>Demonstrate adaptability and creativity in donor-facing work.</li></ul>								</div>
				</div>
				<div class="elementor-element elementor-element-e81d444 elementor-widget-divider--view-line elementor-widget elementor-widget-divider" data-id="e81d444" data-element_type="widget" data-widget_type="divider.default">
				<div class="elementor-widget-container">
							<div class="elementor-divider">
			<span class="elementor-divider-separator">
						</span>
		</div>
						</div>
				</div>
				<div class="elementor-element elementor-element-70e6335 elementor-widget elementor-widget-heading" data-id="70e6335" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h3 class="elementor-heading-title elementor-size-default">Why Choose This Internship? </h3>				</div>
				</div>
				<div class="elementor-element elementor-element-5757e0d elementor-widget elementor-widget-text-editor" data-id="5757e0d" data-element_type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>By joining this internship, you will:</p><ul><li>Learn how to package projects for fundraising across climate, WASH, and land-use sectors.</li><li>Gain exposure to innovative financing options for NGOs, including carbon credits and blended finance.</li><li>Build persuasive skills in donor communications, proposal design, and impact reporting.</li><li>Contribute to flagship projects that address clean energy, climate resilience, and ecosystem restoration.</li><li>Strengthen your profile in climate finance and global development partnerships.</li></ul>								</div>
				</div>
				</div>
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-ef23830 e-con-full e-flex e-con e-child" data-id="ef23830" data-element_type="container" data-settings="{&quot;background_background&quot;:&quot;gradient&quot;}">
				<div class="elementor-element elementor-element-03b8c64 elementor-widget elementor-widget-heading" data-id="03b8c64" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h5 class="elementor-heading-title elementor-size-default">SDG Alignment</h5>				</div>
				</div>
				<div class="elementor-element elementor-element-82d3faa elementor-widget elementor-widget-button" data-id="82d3faa" data-element_type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-sm elementor-animation-pop" href="#">
						<span class="elementor-button-content-wrapper">
									<span class="elementor-button-text">SDG 7 - Affordable & Clean Energy</span>
					</span>
					</a>
				</div>
								</div>
				</div>
				<div class="elementor-element elementor-element-60df4cb elementor-widget elementor-widget-button" data-id="60df4cb" data-element_type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-sm elementor-animation-pop" href="#">
						<span class="elementor-button-content-wrapper">
									<span class="elementor-button-text">SDG 17 - Partnerships for the Goals</span>
					</span>
					</a>
				</div>
								</div>
				</div>
				<div class="elementor-element elementor-element-483c688 elementor-widget elementor-widget-button" data-id="483c688" data-element_type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-sm elementor-animation-pop" href="#">
						<span class="elementor-button-content-wrapper">
									<span class="elementor-button-text">SDG 13 - Climate Action</span>
					</span>
					</a>
				</div>
								</div>
				</div>
				<div class="elementor-element elementor-element-5967bf0 elementor-widget elementor-widget-button" data-id="5967bf0" data-element_type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-sm elementor-animation-pop" href="#">
						<span class="elementor-button-content-wrapper">
									<span class="elementor-button-text">SDG 15 - Life on Land</span>
					</span>
					</a>
				</div>
								</div>
				</div>
				<div class="elementor-element elementor-element-bf4f2b3 elementor-widget elementor-widget-heading" data-id="bf4f2b3" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h5 class="elementor-heading-title elementor-size-default">Location</h5>				</div>
				</div>
				<div class="elementor-element elementor-element-87dcb99 elementor-widget elementor-widget-text-editor" data-id="87dcb99" data-element_type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>Njeru<em> HQ + Kalagala Parish, Uganda</em></p>								</div>
				</div>
				<div class="elementor-element elementor-element-4f60905 elementor-widget elementor-widget-heading" data-id="4f60905" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h5 class="elementor-heading-title elementor-size-default">Duration</h5>				</div>
				</div>
				<div class="elementor-element elementor-element-94b0826 elementor-widget elementor-widget-text-editor" data-id="94b0826" data-element_type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p><em>4 &#8211; 16 weeks (flexible)</em></p>								</div>
				</div>
				<div class="elementor-element elementor-element-bb4df7e elementor-widget elementor-widget-heading" data-id="bb4df7e" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h5 class="elementor-heading-title elementor-size-default">Focus Areas</h5>				</div>
				</div>
				<div class="elementor-element elementor-element-a85a4c8 elementor-widget elementor-widget-text-editor" data-id="a85a4c8" data-element_type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<ul><li>Climate Finance</li><li>Fundraising</li><li>Sustainable Development</li></ul>								</div>
				</div>
				<div class="elementor-element elementor-element-4eaa055 elementor-align-center elementor-widget elementor-widget-button" data-id="4eaa055" data-element_type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-sm elementor-animation-bounce-in" href="https://foscod.org/internship-application">
						<span class="elementor-button-content-wrapper">
									<span class="elementor-button-text">Apply Now</span>
					</span>
					</a>
				</div>
								</div>
				</div>
				</div>
					</div>
				</div>
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-48978af e-flex e-con-boxed e-con e-parent" data-id="48978af" data-element_type="container">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-e9cd5f0 elementor-widget elementor-widget-heading" data-id="e9cd5f0" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h3 class="elementor-heading-title elementor-size-default">Project Gallery</h3>				</div>
				</div>
				<div class="elementor-element elementor-element-33de197 elementor-widget elementor-widget-gallery" data-id="33de197" data-element_type="widget" data-settings="{&quot;gap&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:15,&quot;sizes&quot;:[]},&quot;image_hover_animation&quot;:&quot;grow&quot;,&quot;lazyload&quot;:&quot;yes&quot;,&quot;gallery_layout&quot;:&quot;grid&quot;,&quot;columns&quot;:4,&quot;columns_tablet&quot;:2,&quot;columns_mobile&quot;:1,&quot;gap_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:10,&quot;sizes&quot;:[]},&quot;gap_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:10,&quot;sizes&quot;:[]},&quot;link_to&quot;:&quot;file&quot;,&quot;aspect_ratio&quot;:&quot;3:2&quot;,&quot;overlay_background&quot;:&quot;yes&quot;,&quot;content_hover_animation&quot;:&quot;fade-in&quot;}" data-widget_type="gallery.default">
				<div class="elementor-widget-container">
							<div class="elementor-gallery__container">
							<a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://foscod.org/wp-content/uploads/2025/04/Impact-Rice.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="33de197" data-elementor-lightbox-title="Impact-Rice" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDI0NiwidXJsIjoiaHR0cHM6XC9cL2Zvc2NvZC5vcmdcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjVcLzA0XC9JbXBhY3QtUmljZS5qcGciLCJzbGlkZXNob3ciOiIzM2RlMTk3In0%3D">
					<div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://foscod.org/wp-content/uploads/2025/04/Impact-Rice-300x207.jpg" data-width="300" data-height="207" aria-label="" role="img" ></div>
											<div class="elementor-gallery-item__overlay"></div>
														</a>
							<a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://foscod.org/wp-content/uploads/2025/09/photo_2024-06-28_13-52-45.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="33de197" data-elementor-lightbox-title="photo_2024-06-28_13-52-45" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDc3OSwidXJsIjoiaHR0cHM6XC9cL2Zvc2NvZC5vcmdcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjVcLzA5XC9waG90b18yMDI0LTA2LTI4XzEzLTUyLTQ1LmpwZyIsInNsaWRlc2hvdyI6IjMzZGUxOTcifQ%3D%3D">
					<div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://foscod.org/wp-content/uploads/2025/09/photo_2024-06-28_13-52-45-300x225.jpg" data-width="300" data-height="225" aria-label="" role="img" ></div>
											<div class="elementor-gallery-item__overlay"></div>
														</a>
							<a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://foscod.org/wp-content/uploads/2025/09/photo_2024-06-28_13-54-33.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="33de197" data-elementor-lightbox-title="photo_2024-06-28_13-54-33" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDc4MCwidXJsIjoiaHR0cHM6XC9cL2Zvc2NvZC5vcmdcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjVcLzA5XC9waG90b18yMDI0LTA2LTI4XzEzLTU0LTMzLmpwZyIsInNsaWRlc2hvdyI6IjMzZGUxOTcifQ%3D%3D">
					<div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://foscod.org/wp-content/uploads/2025/09/photo_2024-06-28_13-54-33-300x225.jpg" data-width="300" data-height="225" aria-label="" role="img" ></div>
											<div class="elementor-gallery-item__overlay"></div>
														</a>
							<a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://foscod.org/wp-content/uploads/2025/05/stove-2.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="33de197" data-elementor-lightbox-title="stove 2" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQ2MSwidXJsIjoiaHR0cHM6XC9cL2Zvc2NvZC5vcmdcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjVcLzA1XC9zdG92ZS0yLmpwZyIsInNsaWRlc2hvdyI6IjMzZGUxOTcifQ%3D%3D">
					<div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://foscod.org/wp-content/uploads/2025/05/stove-2-300x146.jpg" data-width="300" data-height="146" aria-label="" role="img" ></div>
											<div class="elementor-gallery-item__overlay"></div>
														</a>
							<a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://foscod.org/wp-content/uploads/2025/09/spring.jpeg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="33de197" data-elementor-lightbox-title="spring" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDc2NiwidXJsIjoiaHR0cHM6XC9cL2Zvc2NvZC5vcmdcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjVcLzA5XC9zcHJpbmcuanBlZyIsInNsaWRlc2hvdyI6IjMzZGUxOTcifQ%3D%3D">
					<div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://foscod.org/wp-content/uploads/2025/09/spring-225x300.jpeg" data-width="225" data-height="300" aria-label="" role="img" ></div>
											<div class="elementor-gallery-item__overlay"></div>
														</a>
							<a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://foscod.org/wp-content/uploads/2025/03/Tom-training-on-tree-planting.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="33de197" data-elementor-lightbox-title="Tom-training-on-tree-planting" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mzk3NSwidXJsIjoiaHR0cHM6XC9cL2Zvc2NvZC5vcmdcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjVcLzAzXC9Ub20tdHJhaW5pbmctb24tdHJlZS1wbGFudGluZy5qcGciLCJzbGlkZXNob3ciOiIzM2RlMTk3In0%3D">
					<div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://foscod.org/wp-content/uploads/2025/03/Tom-training-on-tree-planting-300x180.jpg" data-width="300" data-height="180" aria-label="" role="img" ></div>
											<div class="elementor-gallery-item__overlay"></div>
														</a>
							<a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://foscod.org/wp-content/uploads/2025/03/students-tree-handover.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="33de197" data-elementor-lightbox-title="students-tree-handover" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mzk3MCwidXJsIjoiaHR0cHM6XC9cL2Zvc2NvZC5vcmdcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjVcLzAzXC9zdHVkZW50cy10cmVlLWhhbmRvdmVyLmpwZyIsInNsaWRlc2hvdyI6IjMzZGUxOTcifQ%3D%3D">
					<div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://foscod.org/wp-content/uploads/2025/03/students-tree-handover-300x180.jpg" data-width="300" data-height="180" aria-label="" role="img" ></div>
											<div class="elementor-gallery-item__overlay"></div>
														</a>
							<a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://foscod.org/wp-content/uploads/2025/03/Pupils-planting-trees-2.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="33de197" data-elementor-lightbox-title="Pupils-planting-trees-2" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mzk2OSwidXJsIjoiaHR0cHM6XC9cL2Zvc2NvZC5vcmdcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjVcLzAzXC9QdXBpbHMtcGxhbnRpbmctdHJlZXMtMi5qcGciLCJzbGlkZXNob3ciOiIzM2RlMTk3In0%3D">
					<div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://foscod.org/wp-content/uploads/2025/03/Pupils-planting-trees-2-225x300.jpg" data-width="225" data-height="300" aria-label="" role="img" ></div>
											<div class="elementor-gallery-item__overlay"></div>
														</a>
					</div>
					</div>
				</div>
					</div>
				</div>
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-f985fb8 e-flex e-con-boxed e-con e-parent" data-id="f985fb8" data-element_type="container">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-5ad706e elementor-align-center elementor-widget elementor-widget-button" data-id="5ad706e" data-element_type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-sm elementor-animation-bounce-in" href="https://foscod.org/internship-application/">
						<span class="elementor-button-content-wrapper">
									<span class="elementor-button-text">Apply Now</span>
					</span>
					</a>
				</div>
								</div>
				</div>
					</div>
				</div>
				</div>
		<p>The post <a href="https://foscod.org/flagship-project-fundraising-internship-climate-community-impact/">Flagship Project Fundraising Internship: Climate &#038; Community Impact</a> appeared first on <a href="https://foscod.org">FOSCOD</a>.</p>
]]></content:encoded>
					
		
		
		
	</item>
		<item>
		<title>Resource Mobilization &#038; Fundraising Internship</title>
		<link>https://foscod.org/resource-mobilization-fundraising-internship/</link>
		
		<dc:creator><![CDATA[Yusuf Omoding]]></dc:creator>
		<pubDate>Wed, 24 Sep 2025 08:26:21 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<guid isPermaLink="false">https://foscod.org/?p=4857</guid>

					<description><![CDATA[<p>Resource Mobilization &#38; Fundraising Internship Gain firsthand experience in resource mobilization and nonprofit fundraising while contributing to the long-term success of community-driven development initiatives. Apply Now About the Project This internship strengthens FOSCOD’s organizational sustainability by supporting donor research, proposal development, and partnership building. Interns will gain firsthand experience in resource mobilization and nonprofit fundraising [&#8230;]</p>
<p>The post <a href="https://foscod.org/resource-mobilization-fundraising-internship/">Resource Mobilization &#038; Fundraising Internship</a> appeared first on <a href="https://foscod.org">FOSCOD</a>.</p>
]]></description>
										<content:encoded><![CDATA[		<div data-elementor-type="wp-post" data-elementor-id="4857" class="elementor elementor-4857" data-elementor-post-type="post">
				<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-1f8ea6c e-flex e-con-boxed e-con e-parent" data-id="1f8ea6c" data-element_type="container" data-settings="{&quot;background_background&quot;:&quot;gradient&quot;}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-b2bf185 elementor-widget elementor-widget-heading" data-id="b2bf185" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h1 class="elementor-heading-title elementor-size-default">Resource Mobilization &amp; Fundraising Internship</h1>				</div>
				</div>
				<div class="elementor-element elementor-element-0a2ba4b elementor-widget elementor-widget-text-editor" data-id="0a2ba4b" data-element_type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>Gain firsthand experience in resource mobilization and nonprofit fundraising while contributing to the long-term success of community-driven development initiatives.</p>								</div>
				</div>
				<div class="elementor-element elementor-element-aae98bc elementor-align-center elementor-widget elementor-widget-button" data-id="aae98bc" data-element_type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-sm elementor-animation-bounce-in" href="https://foscod.org/internship-application">
						<span class="elementor-button-content-wrapper">
									<span class="elementor-button-text">Apply Now</span>
					</span>
					</a>
				</div>
								</div>
				</div>
					</div>
				</div>
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-2ec8074 e-flex e-con-boxed e-con e-parent" data-id="2ec8074" data-element_type="container">
					<div class="e-con-inner">
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-222d0dc e-con-full e-flex e-con e-child" data-id="222d0dc" data-element_type="container">
				<div class="elementor-element elementor-element-669e891 elementor-widget elementor-widget-heading" data-id="669e891" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h3 class="elementor-heading-title elementor-size-default">About the Project</h3>				</div>
				</div>
				<div class="elementor-element elementor-element-010f0b4 elementor-widget elementor-widget-text-editor" data-id="010f0b4" data-element_type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>This internship strengthens FOSCOD’s organizational sustainability by supporting donor research, proposal development, and partnership building. Interns will gain firsthand experience in resource mobilization and nonprofit fundraising while contributing to the long-term success of community-driven development initiatives.</p><p>The project is aligned with Uganda’s frameworks for sustainability and partnerships by National NGO Policy (2010, revised 2020) &#8211; strengthening NGO accountability and resource mobilization, Domestic Resource Mobilization Strategy (2019–2024) &#8211; enhancing funding sustainability for national development, National Development Plan III (2020–2025) – prioritizing innovative financing and partnerships, and Uganda Vision 2040 – building resilient institutions for sustained growth.</p>								</div>
				</div>
				<div class="elementor-element elementor-element-567b443 elementor-widget-divider--view-line elementor-widget elementor-widget-divider" data-id="567b443" data-element_type="widget" data-widget_type="divider.default">
				<div class="elementor-widget-container">
							<div class="elementor-divider">
			<span class="elementor-divider-separator">
						</span>
		</div>
						</div>
				</div>
				<div class="elementor-element elementor-element-32c64bd elementor-widget elementor-widget-heading" data-id="32c64bd" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h3 class="elementor-heading-title elementor-size-default">Program Highlights </h3>				</div>
				</div>
				<div class="elementor-element elementor-element-c3ec482 elementor-widget elementor-widget-text-editor" data-id="c3ec482" data-element_type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>As a Resource Mobilization &amp; Fundraising Intern, you will:</p><ul><li>Build and maintain a donor/calls database and tracker.</li><li>Support concept notes, proposals, and project design inputs.</li><li>Prepare donor materials and manage deadlines/submissions.</li><li>Assist with the Strategic Plan Launch as a fundraising event.</li></ul>								</div>
				</div>
				<div class="elementor-element elementor-element-7bba469 elementor-widget-divider--view-line elementor-widget elementor-widget-divider" data-id="7bba469" data-element_type="widget" data-widget_type="divider.default">
				<div class="elementor-widget-container">
							<div class="elementor-divider">
			<span class="elementor-divider-separator">
						</span>
		</div>
						</div>
				</div>
				<div class="elementor-element elementor-element-efdff9d elementor-widget elementor-widget-heading" data-id="efdff9d" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h3 class="elementor-heading-title elementor-size-default">Intern Requirements </h3>				</div>
				</div>
				<div class="elementor-element elementor-element-effa2e5 elementor-widget elementor-widget-text-editor" data-id="effa2e5" data-element_type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>We welcome applicants who:</p><ul><li>Have an interest in nonprofit management, fundraising, or communications.</li><li>Possess strong writing, organizational skills, and attention to detail.</li><li>Can coordinate across teams and manage tight timelines.</li><li>Show adaptability and professionalism in cross-cultural fundraising settings.</li></ul>								</div>
				</div>
				<div class="elementor-element elementor-element-e81d444 elementor-widget-divider--view-line elementor-widget elementor-widget-divider" data-id="e81d444" data-element_type="widget" data-widget_type="divider.default">
				<div class="elementor-widget-container">
							<div class="elementor-divider">
			<span class="elementor-divider-separator">
						</span>
		</div>
						</div>
				</div>
				<div class="elementor-element elementor-element-70e6335 elementor-widget elementor-widget-heading" data-id="70e6335" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h3 class="elementor-heading-title elementor-size-default">Why Choose This Internship? </h3>				</div>
				</div>
				<div class="elementor-element elementor-element-5757e0d elementor-widget elementor-widget-text-editor" data-id="5757e0d" data-element_type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>By joining this internship, you will:</p><ul><li>Learn donor research and pipeline management techniques.</li><li>Build skills in proposal development and persuasive writing.</li><li>Gain experience in event-linked fundraising and communication strategies.</li><li>Contribute to FOSCOD’s financial resilience and sustainability.</li><li>Expand your understanding of partnership building and nonprofit growth strategies.</li></ul>								</div>
				</div>
				</div>
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-ef23830 e-con-full e-flex e-con e-child" data-id="ef23830" data-element_type="container" data-settings="{&quot;background_background&quot;:&quot;gradient&quot;}">
				<div class="elementor-element elementor-element-03b8c64 elementor-widget elementor-widget-heading" data-id="03b8c64" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h5 class="elementor-heading-title elementor-size-default">SDG Alignment</h5>				</div>
				</div>
				<div class="elementor-element elementor-element-82d3faa elementor-widget elementor-widget-button" data-id="82d3faa" data-element_type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-sm elementor-animation-pop" href="#">
						<span class="elementor-button-content-wrapper">
									<span class="elementor-button-text">SDG 8 - Decent Work & Economic Growth</span>
					</span>
					</a>
				</div>
								</div>
				</div>
				<div class="elementor-element elementor-element-60df4cb elementor-widget elementor-widget-button" data-id="60df4cb" data-element_type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-sm elementor-animation-pop" href="#">
						<span class="elementor-button-content-wrapper">
									<span class="elementor-button-text">SDG 17 - Partnerships for the Goals</span>
					</span>
					</a>
				</div>
								</div>
				</div>
				<div class="elementor-element elementor-element-bf4f2b3 elementor-widget elementor-widget-heading" data-id="bf4f2b3" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h5 class="elementor-heading-title elementor-size-default">Location</h5>				</div>
				</div>
				<div class="elementor-element elementor-element-87dcb99 elementor-widget elementor-widget-text-editor" data-id="87dcb99" data-element_type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p><em>Njeru HQ, Uganda</em></p>								</div>
				</div>
				<div class="elementor-element elementor-element-4f60905 elementor-widget elementor-widget-heading" data-id="4f60905" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h5 class="elementor-heading-title elementor-size-default">Duration</h5>				</div>
				</div>
				<div class="elementor-element elementor-element-94b0826 elementor-widget elementor-widget-text-editor" data-id="94b0826" data-element_type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p><em>4 &#8211; 16 weeks (flexible)</em></p>								</div>
				</div>
				<div class="elementor-element elementor-element-bb4df7e elementor-widget elementor-widget-heading" data-id="bb4df7e" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h5 class="elementor-heading-title elementor-size-default">Focus Areas</h5>				</div>
				</div>
				<div class="elementor-element elementor-element-a85a4c8 elementor-widget elementor-widget-text-editor" data-id="a85a4c8" data-element_type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<ul><li>Fundraising</li><li>Partnerships</li><li>Nonprofit Management</li></ul>								</div>
				</div>
				<div class="elementor-element elementor-element-4eaa055 elementor-align-center elementor-widget elementor-widget-button" data-id="4eaa055" data-element_type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-sm elementor-animation-bounce-in" href="https://foscod.org/internship-application">
						<span class="elementor-button-content-wrapper">
									<span class="elementor-button-text">Apply Now</span>
					</span>
					</a>
				</div>
								</div>
				</div>
				</div>
					</div>
				</div>
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-48978af e-flex e-con-boxed e-con e-parent" data-id="48978af" data-element_type="container">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-e9cd5f0 elementor-widget elementor-widget-heading" data-id="e9cd5f0" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h3 class="elementor-heading-title elementor-size-default">Project Gallery</h3>				</div>
				</div>
				<div class="elementor-element elementor-element-33de197 elementor-widget elementor-widget-gallery" data-id="33de197" data-element_type="widget" data-settings="{&quot;gap&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:15,&quot;sizes&quot;:[]},&quot;image_hover_animation&quot;:&quot;grow&quot;,&quot;lazyload&quot;:&quot;yes&quot;,&quot;gallery_layout&quot;:&quot;grid&quot;,&quot;columns&quot;:4,&quot;columns_tablet&quot;:2,&quot;columns_mobile&quot;:1,&quot;gap_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:10,&quot;sizes&quot;:[]},&quot;gap_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:10,&quot;sizes&quot;:[]},&quot;link_to&quot;:&quot;file&quot;,&quot;aspect_ratio&quot;:&quot;3:2&quot;,&quot;overlay_background&quot;:&quot;yes&quot;,&quot;content_hover_animation&quot;:&quot;fade-in&quot;}" data-widget_type="gallery.default">
				<div class="elementor-widget-container">
							<div class="elementor-gallery__container">
							<a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://foscod.org/wp-content/uploads/2025/09/flagship-fundraising-1.jpeg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="33de197" data-elementor-lightbox-title="flagship fundraising" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDg2MSwidXJsIjoiaHR0cHM6XC9cL2Zvc2NvZC5vcmdcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjVcLzA5XC9mbGFnc2hpcC1mdW5kcmFpc2luZy0xLmpwZWciLCJzbGlkZXNob3ciOiIzM2RlMTk3In0%3D">
					<div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://foscod.org/wp-content/uploads/2025/09/flagship-fundraising-1-300x226.jpeg" data-width="300" data-height="226" aria-label="" role="img" ></div>
											<div class="elementor-gallery-item__overlay"></div>
														</a>
							<a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://foscod.org/wp-content/uploads/2025/09/fund-2.jpeg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="33de197" data-elementor-lightbox-title="fund 2" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDg2MywidXJsIjoiaHR0cHM6XC9cL2Zvc2NvZC5vcmdcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjVcLzA5XC9mdW5kLTIuanBlZyIsInNsaWRlc2hvdyI6IjMzZGUxOTcifQ%3D%3D">
					<div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://foscod.org/wp-content/uploads/2025/09/fund-2-300x225.jpeg" data-width="300" data-height="225" aria-label="" role="img" ></div>
											<div class="elementor-gallery-item__overlay"></div>
														</a>
							<a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://foscod.org/wp-content/uploads/2025/09/fund-1.jpeg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="33de197" data-elementor-lightbox-title="fund 1" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDg2MiwidXJsIjoiaHR0cHM6XC9cL2Zvc2NvZC5vcmdcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjVcLzA5XC9mdW5kLTEuanBlZyIsInNsaWRlc2hvdyI6IjMzZGUxOTcifQ%3D%3D">
					<div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://foscod.org/wp-content/uploads/2025/09/fund-1-300x169.jpeg" data-width="300" data-height="169" aria-label="" role="img" ></div>
											<div class="elementor-gallery-item__overlay"></div>
														</a>
							<a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://foscod.org/wp-content/uploads/2025/09/fund-4.jpeg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="33de197" data-elementor-lightbox-title="fund 4" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDg2NSwidXJsIjoiaHR0cHM6XC9cL2Zvc2NvZC5vcmdcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjVcLzA5XC9mdW5kLTQuanBlZyIsInNsaWRlc2hvdyI6IjMzZGUxOTcifQ%3D%3D">
					<div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://foscod.org/wp-content/uploads/2025/09/fund-4-300x169.jpeg" data-width="300" data-height="169" aria-label="" role="img" ></div>
											<div class="elementor-gallery-item__overlay"></div>
														</a>
							<a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://foscod.org/wp-content/uploads/2025/09/fund-3.jpeg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="33de197" data-elementor-lightbox-title="fund 3" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDg2NCwidXJsIjoiaHR0cHM6XC9cL2Zvc2NvZC5vcmdcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjVcLzA5XC9mdW5kLTMuanBlZyIsInNsaWRlc2hvdyI6IjMzZGUxOTcifQ%3D%3D">
					<div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://foscod.org/wp-content/uploads/2025/09/fund-3-300x225.jpeg" data-width="300" data-height="225" aria-label="" role="img" ></div>
											<div class="elementor-gallery-item__overlay"></div>
														</a>
							<a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://foscod.org/wp-content/uploads/2025/09/IMG_2667-scaled.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="33de197" data-elementor-lightbox-title="IMG_2667" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDc4MiwidXJsIjoiaHR0cHM6XC9cL2Zvc2NvZC5vcmdcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjVcLzA5XC9JTUdfMjY2Ny1zY2FsZWQuanBnIiwic2xpZGVzaG93IjoiMzNkZTE5NyJ9">
					<div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://foscod.org/wp-content/uploads/2025/09/IMG_2667-300x225.jpg" data-width="300" data-height="225" aria-label="" role="img" ></div>
											<div class="elementor-gallery-item__overlay"></div>
														</a>
							<a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://foscod.org/wp-content/uploads/2025/09/photo_2024-06-28_13-54-33.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="33de197" data-elementor-lightbox-title="photo_2024-06-28_13-54-33" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDc4MCwidXJsIjoiaHR0cHM6XC9cL2Zvc2NvZC5vcmdcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjVcLzA5XC9waG90b18yMDI0LTA2LTI4XzEzLTU0LTMzLmpwZyIsInNsaWRlc2hvdyI6IjMzZGUxOTcifQ%3D%3D">
					<div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://foscod.org/wp-content/uploads/2025/09/photo_2024-06-28_13-54-33-300x225.jpg" data-width="300" data-height="225" aria-label="" role="img" ></div>
											<div class="elementor-gallery-item__overlay"></div>
														</a>
							<a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://foscod.org/wp-content/uploads/2025/09/photo_2024-11-07_15-35-04.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="33de197" data-elementor-lightbox-title="photo_2024-11-07_15-35-04" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDc4MSwidXJsIjoiaHR0cHM6XC9cL2Zvc2NvZC5vcmdcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjVcLzA5XC9waG90b18yMDI0LTExLTA3XzE1LTM1LTA0LmpwZyIsInNsaWRlc2hvdyI6IjMzZGUxOTcifQ%3D%3D">
					<div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://foscod.org/wp-content/uploads/2025/09/photo_2024-11-07_15-35-04-300x225.jpg" data-width="300" data-height="225" aria-label="" role="img" ></div>
											<div class="elementor-gallery-item__overlay"></div>
														</a>
					</div>
					</div>
				</div>
					</div>
				</div>
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-f985fb8 e-flex e-con-boxed e-con e-parent" data-id="f985fb8" data-element_type="container">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-5ad706e elementor-align-center elementor-widget elementor-widget-button" data-id="5ad706e" data-element_type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-sm elementor-animation-bounce-in" href="https://foscod.org/internship-application/">
						<span class="elementor-button-content-wrapper">
									<span class="elementor-button-text">Apply Now</span>
					</span>
					</a>
				</div>
								</div>
				</div>
					</div>
				</div>
				</div>
		<p>The post <a href="https://foscod.org/resource-mobilization-fundraising-internship/">Resource Mobilization &#038; Fundraising Internship</a> appeared first on <a href="https://foscod.org">FOSCOD</a>.</p>
]]></content:encoded>
					
		
		
		
	</item>
		<item>
		<title>Policy &#038; Advocacy Internship</title>
		<link>https://foscod.org/policy-advocacy-internship/</link>
		
		<dc:creator><![CDATA[Yusuf Omoding]]></dc:creator>
		<pubDate>Wed, 24 Sep 2025 07:52:01 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<guid isPermaLink="false">https://foscod.org/?p=4838</guid>

					<description><![CDATA[<p>Policy &#38; Advocacy Internship Position grassroots pilot projects within Uganda’s national frameworks and global commitments. Apply Now About the Project This internship places you at the intersection of community practice and policy influence. Working with FOSCOD, you will help position grassroots pilot projects within Uganda’s national frameworks and global commitments by drafting briefs, engaging stakeholders, [&#8230;]</p>
<p>The post <a href="https://foscod.org/policy-advocacy-internship/">Policy &#038; Advocacy Internship</a> appeared first on <a href="https://foscod.org">FOSCOD</a>.</p>
]]></description>
										<content:encoded><![CDATA[		<div data-elementor-type="wp-post" data-elementor-id="4838" class="elementor elementor-4838" data-elementor-post-type="post">
				<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-1f8ea6c e-flex e-con-boxed e-con e-parent" data-id="1f8ea6c" data-element_type="container" data-settings="{&quot;background_background&quot;:&quot;gradient&quot;}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-b2bf185 elementor-widget elementor-widget-heading" data-id="b2bf185" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h1 class="elementor-heading-title elementor-size-default">Policy &amp; Advocacy Internship</h1>				</div>
				</div>
				<div class="elementor-element elementor-element-0a2ba4b elementor-widget elementor-widget-text-editor" data-id="0a2ba4b" data-element_type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>Position grassroots pilot projects within Uganda’s national frameworks and global commitments.</p>								</div>
				</div>
				<div class="elementor-element elementor-element-aae98bc elementor-align-center elementor-widget elementor-widget-button" data-id="aae98bc" data-element_type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-sm elementor-animation-bounce-in" href="https://foscod.org/internship-application">
						<span class="elementor-button-content-wrapper">
									<span class="elementor-button-text">Apply Now</span>
					</span>
					</a>
				</div>
								</div>
				</div>
					</div>
				</div>
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-2ec8074 e-flex e-con-boxed e-con e-parent" data-id="2ec8074" data-element_type="container">
					<div class="e-con-inner">
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-222d0dc e-con-full e-flex e-con e-child" data-id="222d0dc" data-element_type="container">
				<div class="elementor-element elementor-element-669e891 elementor-widget elementor-widget-heading" data-id="669e891" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h3 class="elementor-heading-title elementor-size-default">About the Project</h3>				</div>
				</div>
				<div class="elementor-element elementor-element-010f0b4 elementor-widget elementor-widget-text-editor" data-id="010f0b4" data-element_type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>This internship places you at the intersection of community practice and policy influence. Working with FOSCOD, you will help position grassroots pilot projects within Uganda’s national frameworks and global commitments by drafting briefs, engaging stakeholders, and supporting advocacy efforts in clean cooking, carbon credits, and WASH.</p><p>The project aligns with Uganda’s leading policy frameworks of National Development Plan IV (2025–2030, upcoming), Uganda’s Nationally Determined Contributions (NDCs) under the Paris Agreement, National Energy Policy (2002, under review), National Water Policy (1999, updated 2018), Climate Change Act (2021) and 🇺🇬 Uganda Vision 2040.  Your work ensures that community pilots influence national and international agendas, bridging the gap between grassroots realities and decision-making tables.</p>								</div>
				</div>
				<div class="elementor-element elementor-element-567b443 elementor-widget-divider--view-line elementor-widget elementor-widget-divider" data-id="567b443" data-element_type="widget" data-widget_type="divider.default">
				<div class="elementor-widget-container">
							<div class="elementor-divider">
			<span class="elementor-divider-separator">
						</span>
		</div>
						</div>
				</div>
				<div class="elementor-element elementor-element-32c64bd elementor-widget elementor-widget-heading" data-id="32c64bd" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h3 class="elementor-heading-title elementor-size-default">Program Highlights </h3>				</div>
				</div>
				<div class="elementor-element elementor-element-c3ec482 elementor-widget elementor-widget-text-editor" data-id="c3ec482" data-element_type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>As a Policy &amp; Advocacy Intern, you will:</p><ul><li>Map national and sector frameworks (NDP IV, NDCs, energy and WASH policies).</li><li>Draft concise policy briefs linking community pilots to national/global commitments.</li><li>Participate in district and national stakeholder meetings; synthesize key outcomes.</li><li>Support advocacy campaigns on clean cooking, carbon credits, and WASH.</li></ul>								</div>
				</div>
				<div class="elementor-element elementor-element-7bba469 elementor-widget-divider--view-line elementor-widget elementor-widget-divider" data-id="7bba469" data-element_type="widget" data-widget_type="divider.default">
				<div class="elementor-widget-container">
							<div class="elementor-divider">
			<span class="elementor-divider-separator">
						</span>
		</div>
						</div>
				</div>
				<div class="elementor-element elementor-element-efdff9d elementor-widget elementor-widget-heading" data-id="efdff9d" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h3 class="elementor-heading-title elementor-size-default">Intern Requirements </h3>				</div>
				</div>
				<div class="elementor-element elementor-element-effa2e5 elementor-widget elementor-widget-text-editor" data-id="effa2e5" data-element_type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>We welcome applicants who:</p><ul><li>Have an interest or academic background in public policy, environmental policy, or international development.</li><li>Demonstrate strong analytical writing and policy analysis skills.</li><li>Are confident in stakeholder engagement, communication, and professional note-taking.</li><li>Bring adaptability and cultural sensitivity to diverse advocacy settings.</li></ul>								</div>
				</div>
				<div class="elementor-element elementor-element-e81d444 elementor-widget-divider--view-line elementor-widget elementor-widget-divider" data-id="e81d444" data-element_type="widget" data-widget_type="divider.default">
				<div class="elementor-widget-container">
							<div class="elementor-divider">
			<span class="elementor-divider-separator">
						</span>
		</div>
						</div>
				</div>
				<div class="elementor-element elementor-element-70e6335 elementor-widget elementor-widget-heading" data-id="70e6335" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h3 class="elementor-heading-title elementor-size-default">Why Choose This Internship? </h3>				</div>
				</div>
				<div class="elementor-element elementor-element-5757e0d elementor-widget elementor-widget-text-editor" data-id="5757e0d" data-element_type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>By joining this internship, you will:</p><ul><li>Gain hands-on experience in policy analysis and brief writing for decision-makers.</li><li>Learn stakeholder mapping and engagement in multi-level governance spaces.</li><li>Build practical knowledge of Uganda’s climate, energy, and WASH policy processes.</li><li>Contribute to advocacy efforts that amplify grassroots innovation at national and global levels.</li><li>Strengthen your profile for careers in policy, governance, or international development.</li></ul>								</div>
				</div>
				</div>
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-ef23830 e-con-full e-flex e-con e-child" data-id="ef23830" data-element_type="container" data-settings="{&quot;background_background&quot;:&quot;gradient&quot;}">
				<div class="elementor-element elementor-element-03b8c64 elementor-widget elementor-widget-heading" data-id="03b8c64" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h5 class="elementor-heading-title elementor-size-default">SDG Alignment</h5>				</div>
				</div>
				<div class="elementor-element elementor-element-82d3faa elementor-widget elementor-widget-button" data-id="82d3faa" data-element_type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-sm elementor-animation-pop" href="#">
						<span class="elementor-button-content-wrapper">
									<span class="elementor-button-text">SDG 16 - Peace, Justice & Strong Institutions</span>
					</span>
					</a>
				</div>
								</div>
				</div>
				<div class="elementor-element elementor-element-60df4cb elementor-widget elementor-widget-button" data-id="60df4cb" data-element_type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-sm elementor-animation-pop" href="#">
						<span class="elementor-button-content-wrapper">
									<span class="elementor-button-text">SDG 7 - Affordable & Clean Energy</span>
					</span>
					</a>
				</div>
								</div>
				</div>
				<div class="elementor-element elementor-element-719b6e1 elementor-widget elementor-widget-button" data-id="719b6e1" data-element_type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-sm elementor-animation-pop" href="#">
						<span class="elementor-button-content-wrapper">
									<span class="elementor-button-text">SDG 13 - Climate Action</span>
					</span>
					</a>
				</div>
								</div>
				</div>
				<div class="elementor-element elementor-element-bf4f2b3 elementor-widget elementor-widget-heading" data-id="bf4f2b3" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h5 class="elementor-heading-title elementor-size-default">Location</h5>				</div>
				</div>
				<div class="elementor-element elementor-element-87dcb99 elementor-widget elementor-widget-text-editor" data-id="87dcb99" data-element_type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p><em>Jinja &amp; Kampala, Uganda</em></p>								</div>
				</div>
				<div class="elementor-element elementor-element-4f60905 elementor-widget elementor-widget-heading" data-id="4f60905" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h5 class="elementor-heading-title elementor-size-default">Duration</h5>				</div>
				</div>
				<div class="elementor-element elementor-element-94b0826 elementor-widget elementor-widget-text-editor" data-id="94b0826" data-element_type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p><em>4 &#8211; 16 weeks (flexible)</em></p>								</div>
				</div>
				<div class="elementor-element elementor-element-bb4df7e elementor-widget elementor-widget-heading" data-id="bb4df7e" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h5 class="elementor-heading-title elementor-size-default">Focus Areas</h5>				</div>
				</div>
				<div class="elementor-element elementor-element-a85a4c8 elementor-widget elementor-widget-text-editor" data-id="a85a4c8" data-element_type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<ul><li>Policy</li><li>Climate</li><li>WASH</li><li>Advocacy</li></ul>								</div>
				</div>
				<div class="elementor-element elementor-element-4eaa055 elementor-align-center elementor-widget elementor-widget-button" data-id="4eaa055" data-element_type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-sm elementor-animation-bounce-in" href="https://foscod.org/internship-application">
						<span class="elementor-button-content-wrapper">
									<span class="elementor-button-text">Apply Now</span>
					</span>
					</a>
				</div>
								</div>
				</div>
				</div>
					</div>
				</div>
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-48978af e-flex e-con-boxed e-con e-parent" data-id="48978af" data-element_type="container">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-e9cd5f0 elementor-widget elementor-widget-heading" data-id="e9cd5f0" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h3 class="elementor-heading-title elementor-size-default">Project Gallery</h3>				</div>
				</div>
				<div class="elementor-element elementor-element-33de197 elementor-widget elementor-widget-gallery" data-id="33de197" data-element_type="widget" data-settings="{&quot;gap&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:15,&quot;sizes&quot;:[]},&quot;image_hover_animation&quot;:&quot;grow&quot;,&quot;lazyload&quot;:&quot;yes&quot;,&quot;gallery_layout&quot;:&quot;grid&quot;,&quot;columns&quot;:4,&quot;columns_tablet&quot;:2,&quot;columns_mobile&quot;:1,&quot;gap_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:10,&quot;sizes&quot;:[]},&quot;gap_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:10,&quot;sizes&quot;:[]},&quot;link_to&quot;:&quot;file&quot;,&quot;aspect_ratio&quot;:&quot;3:2&quot;,&quot;overlay_background&quot;:&quot;yes&quot;,&quot;content_hover_animation&quot;:&quot;fade-in&quot;}" data-widget_type="gallery.default">
				<div class="elementor-widget-container">
							<div class="elementor-gallery__container">
							<a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://foscod.org/wp-content/uploads/2025/09/photo_2024-05-28_17-46-50.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="33de197" data-elementor-lightbox-title="photo_2024-05-28_17-46-50" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDc3NSwidXJsIjoiaHR0cHM6XC9cL2Zvc2NvZC5vcmdcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjVcLzA5XC9waG90b18yMDI0LTA1LTI4XzE3LTQ2LTUwLmpwZyIsInNsaWRlc2hvdyI6IjMzZGUxOTcifQ%3D%3D">
					<div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://foscod.org/wp-content/uploads/2025/09/photo_2024-05-28_17-46-50-300x225.jpg" data-width="300" data-height="225" aria-label="" role="img" ></div>
											<div class="elementor-gallery-item__overlay"></div>
														</a>
							<a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://foscod.org/wp-content/uploads/2025/09/Final-presentation-pic.jpeg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="33de197" data-elementor-lightbox-title="Final presentation pic" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDc0MywidXJsIjoiaHR0cHM6XC9cL2Zvc2NvZC5vcmdcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjVcLzA5XC9GaW5hbC1wcmVzZW50YXRpb24tcGljLmpwZWciLCJzbGlkZXNob3ciOiIzM2RlMTk3In0%3D">
					<div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://foscod.org/wp-content/uploads/2025/09/Final-presentation-pic-300x225.jpeg" data-width="300" data-height="225" aria-label="" role="img" ></div>
											<div class="elementor-gallery-item__overlay"></div>
														</a>
							<a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://foscod.org/wp-content/uploads/2025/03/Micheal-Home.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="33de197" data-elementor-lightbox-title="Micheal-Home" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzkyMSwidXJsIjoiaHR0cHM6XC9cL2Zvc2NvZC5vcmdcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjVcLzAzXC9NaWNoZWFsLUhvbWUuanBnIiwic2xpZGVzaG93IjoiMzNkZTE5NyJ9">
					<div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://foscod.org/wp-content/uploads/2025/03/Micheal-Home-300x200.jpg" data-width="300" data-height="200" aria-label="" role="img" ></div>
											<div class="elementor-gallery-item__overlay"></div>
														</a>
							<a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://foscod.org/wp-content/uploads/2024/11/Project-Implementation.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="33de197" data-elementor-lightbox-title="Project-Implementation" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjYxMiwidXJsIjoiaHR0cHM6XC9cL2Zvc2NvZC5vcmdcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzExXC9Qcm9qZWN0LUltcGxlbWVudGF0aW9uLmpwZyIsInNsaWRlc2hvdyI6IjMzZGUxOTcifQ%3D%3D">
					<div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://foscod.org/wp-content/uploads/2024/11/Project-Implementation-300x180.jpg" data-width="300" data-height="180" aria-label="" role="img" ></div>
											<div class="elementor-gallery-item__overlay"></div>
														</a>
							<a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://foscod.org/wp-content/uploads/2024/09/Environment-12-f.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="33de197" data-elementor-lightbox-title="Environment-12-f" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTYzOCwidXJsIjoiaHR0cHM6XC9cL2Zvc2NvZC5vcmdcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzA5XC9FbnZpcm9ubWVudC0xMi1mLmpwZyIsInNsaWRlc2hvdyI6IjMzZGUxOTcifQ%3D%3D">
					<div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://foscod.org/wp-content/uploads/2024/09/Environment-12-f-300x225.jpg" data-width="300" data-height="225" aria-label="" role="img" ></div>
											<div class="elementor-gallery-item__overlay"></div>
														</a>
							<a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://foscod.org/wp-content/uploads/2024/07/Envi-4-scaled.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="33de197" data-elementor-lightbox-title="Envi-4" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTMzNSwidXJsIjoiaHR0cHM6XC9cL2Zvc2NvZC5vcmdcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzA3XC9FbnZpLTQtc2NhbGVkLmpwZyIsInNsaWRlc2hvdyI6IjMzZGUxOTcifQ%3D%3D">
					<div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://foscod.org/wp-content/uploads/2024/07/Envi-4-300x150.jpg" data-width="300" data-height="150" aria-label="" role="img" ></div>
											<div class="elementor-gallery-item__overlay"></div>
														</a>
							<a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://foscod.org/wp-content/uploads/2024/07/Jocelyn-1.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="33de197" data-elementor-lightbox-title="Jocelyn" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTI1NiwidXJsIjoiaHR0cHM6XC9cL2Zvc2NvZC5vcmdcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzA3XC9Kb2NlbHluLTEuanBnIiwic2xpZGVzaG93IjoiMzNkZTE5NyJ9">
					<div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://foscod.org/wp-content/uploads/2024/07/Jocelyn-1-300x225.jpg" data-width="300" data-height="225" aria-label="" role="img" ></div>
											<div class="elementor-gallery-item__overlay"></div>
														</a>
							<a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://foscod.org/wp-content/uploads/2024/07/KORD-2.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="33de197" data-elementor-lightbox-title="KORD-2" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTIxMywidXJsIjoiaHR0cHM6XC9cL2Zvc2NvZC5vcmdcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzA3XC9LT1JELTIuanBnIiwic2xpZGVzaG93IjoiMzNkZTE5NyJ9">
					<div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://foscod.org/wp-content/uploads/2024/07/KORD-2-300x186.jpg" data-width="300" data-height="186" aria-label="" role="img" ></div>
											<div class="elementor-gallery-item__overlay"></div>
														</a>
					</div>
					</div>
				</div>
					</div>
				</div>
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-f985fb8 e-flex e-con-boxed e-con e-parent" data-id="f985fb8" data-element_type="container">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-5ad706e elementor-align-center elementor-widget elementor-widget-button" data-id="5ad706e" data-element_type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-sm elementor-animation-bounce-in" href="https://foscod.org/internship-application/">
						<span class="elementor-button-content-wrapper">
									<span class="elementor-button-text">Apply Now</span>
					</span>
					</a>
				</div>
								</div>
				</div>
					</div>
				</div>
				</div>
		<p>The post <a href="https://foscod.org/policy-advocacy-internship/">Policy &#038; Advocacy Internship</a> appeared first on <a href="https://foscod.org">FOSCOD</a>.</p>
]]></content:encoded>
					
		
		
		
	</item>
		<item>
		<title>Communications &#038; Storytelling Internship</title>
		<link>https://foscod.org/communications-storytelling-internship/</link>
		
		<dc:creator><![CDATA[Yusuf Omoding]]></dc:creator>
		<pubDate>Tue, 23 Sep 2025 14:03:14 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<guid isPermaLink="false">https://foscod.org/?p=4839</guid>

					<description><![CDATA[<p>Communications &#38; Storytelling Internship Support storytelling that captures impact on households, schools, and community groups. Apply Now About the Project This internship is designed to amplify FOSCOD’s visibility with donors, universities, and communities by documenting pilot projects and producing engaging multimedia content. Interns will support storytelling that captures impact on households, schools, and community groups [&#8230;]</p>
<p>The post <a href="https://foscod.org/communications-storytelling-internship/">Communications &#038; Storytelling Internship</a> appeared first on <a href="https://foscod.org">FOSCOD</a>.</p>
]]></description>
										<content:encoded><![CDATA[		<div data-elementor-type="wp-post" data-elementor-id="4839" class="elementor elementor-4839" data-elementor-post-type="post">
				<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-1f8ea6c e-flex e-con-boxed e-con e-parent" data-id="1f8ea6c" data-element_type="container" data-settings="{&quot;background_background&quot;:&quot;gradient&quot;}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-b2bf185 elementor-widget elementor-widget-heading" data-id="b2bf185" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h1 class="elementor-heading-title elementor-size-default">Communications &amp; Storytelling Internship</h1>				</div>
				</div>
				<div class="elementor-element elementor-element-0a2ba4b elementor-widget elementor-widget-text-editor" data-id="0a2ba4b" data-element_type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>Support storytelling that captures impact on households, schools, and community groups.</p>								</div>
				</div>
				<div class="elementor-element elementor-element-aae98bc elementor-align-center elementor-widget elementor-widget-button" data-id="aae98bc" data-element_type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-sm elementor-animation-bounce-in" href="https://foscod.org/internship-application">
						<span class="elementor-button-content-wrapper">
									<span class="elementor-button-text">Apply Now</span>
					</span>
					</a>
				</div>
								</div>
				</div>
					</div>
				</div>
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-2ec8074 e-flex e-con-boxed e-con e-parent" data-id="2ec8074" data-element_type="container">
					<div class="e-con-inner">
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-222d0dc e-con-full e-flex e-con e-child" data-id="222d0dc" data-element_type="container">
				<div class="elementor-element elementor-element-669e891 elementor-widget elementor-widget-heading" data-id="669e891" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h3 class="elementor-heading-title elementor-size-default">About the Project</h3>				</div>
				</div>
				<div class="elementor-element elementor-element-010f0b4 elementor-widget elementor-widget-text-editor" data-id="010f0b4" data-element_type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>This internship is designed to amplify FOSCOD’s visibility with donors, universities, and communities by documenting pilot projects and producing engaging multimedia content. Interns will support storytelling that captures impact on households, schools, and community groups — ensuring that local voices and evidence inform both national and international audiences.</p><p>The project aligns with Uganda’s frameworks for visibility and knowledge-sharing by National ICT Policy (2014) – strengthening communication for development, Digital Uganda Vision (2020–2040) &#8211; using ICTs for inclusive growth, National Development Plan III (2020–2025) &#8211; enhancing accountability and knowledge dissemination and Uganda Vision 2040 – positioning communications and innovation at the heart of transformation.</p>								</div>
				</div>
				<div class="elementor-element elementor-element-567b443 elementor-widget-divider--view-line elementor-widget elementor-widget-divider" data-id="567b443" data-element_type="widget" data-widget_type="divider.default">
				<div class="elementor-widget-container">
							<div class="elementor-divider">
			<span class="elementor-divider-separator">
						</span>
		</div>
						</div>
				</div>
				<div class="elementor-element elementor-element-32c64bd elementor-widget elementor-widget-heading" data-id="32c64bd" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h3 class="elementor-heading-title elementor-size-default">Program Highlights </h3>				</div>
				</div>
				<div class="elementor-element elementor-element-c3ec482 elementor-widget elementor-widget-text-editor" data-id="c3ec482" data-element_type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>As a Communications &amp; Storytelling Intern, you will:</p><ul><li>Document pilot projects through stories, blogs, and social media posts.</li><li>Capture photos and videos of household, school, and community impact (with consent).</li><li>Co-produce Strategic Plan launch brochures and visibility materials.</li><li>Interview host families, community leaders, and beneficiaries to create case studies.</li></ul>								</div>
				</div>
				<div class="elementor-element elementor-element-7bba469 elementor-widget-divider--view-line elementor-widget elementor-widget-divider" data-id="7bba469" data-element_type="widget" data-widget_type="divider.default">
				<div class="elementor-widget-container">
							<div class="elementor-divider">
			<span class="elementor-divider-separator">
						</span>
		</div>
						</div>
				</div>
				<div class="elementor-element elementor-element-efdff9d elementor-widget elementor-widget-heading" data-id="efdff9d" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h3 class="elementor-heading-title elementor-size-default">Intern Requirements </h3>				</div>
				</div>
				<div class="elementor-element elementor-element-effa2e5 elementor-widget elementor-widget-text-editor" data-id="effa2e5" data-element_type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>We welcome applicants who:</p><ul><li>Have an interest in communications, journalism, or media for development.</li><li>Possess strong writing skills; basic photo/video skills are an asset.</li><li>Demonstrate a commitment to ethical storytelling, consent, and representation.</li><li>Are adaptable and creative in cross-cultural settings.</li></ul>								</div>
				</div>
				<div class="elementor-element elementor-element-e81d444 elementor-widget-divider--view-line elementor-widget elementor-widget-divider" data-id="e81d444" data-element_type="widget" data-widget_type="divider.default">
				<div class="elementor-widget-container">
							<div class="elementor-divider">
			<span class="elementor-divider-separator">
						</span>
		</div>
						</div>
				</div>
				<div class="elementor-element elementor-element-70e6335 elementor-widget elementor-widget-heading" data-id="70e6335" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h3 class="elementor-heading-title elementor-size-default">Why Choose This Internship? </h3>				</div>
				</div>
				<div class="elementor-element elementor-element-5757e0d elementor-widget elementor-widget-text-editor" data-id="5757e0d" data-element_type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>By joining this internship, you will:</p><ul><li>Gain hands-on skills in development communications and narrative framing.</li><li>Build experience in multimedia content production for NGOs.</li><li>Engage stakeholders by turning evidence into compelling human-centered stories.</li><li>Contribute to FOSCOD’s mission of amplifying grassroots voices for global partnerships.</li><li>Strengthen your portfolio with impact-focused communications work.</li></ul>								</div>
				</div>
				</div>
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-ef23830 e-con-full e-flex e-con e-child" data-id="ef23830" data-element_type="container" data-settings="{&quot;background_background&quot;:&quot;gradient&quot;}">
				<div class="elementor-element elementor-element-03b8c64 elementor-widget elementor-widget-heading" data-id="03b8c64" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h5 class="elementor-heading-title elementor-size-default">SDG Alignment</h5>				</div>
				</div>
				<div class="elementor-element elementor-element-82d3faa elementor-widget elementor-widget-button" data-id="82d3faa" data-element_type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-sm elementor-animation-pop" href="#">
						<span class="elementor-button-content-wrapper">
									<span class="elementor-button-text">SDG 9 - Industry, Innovation & Infrastructure</span>
					</span>
					</a>
				</div>
								</div>
				</div>
				<div class="elementor-element elementor-element-60df4cb elementor-widget elementor-widget-button" data-id="60df4cb" data-element_type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-sm elementor-animation-pop" href="#">
						<span class="elementor-button-content-wrapper">
									<span class="elementor-button-text">SDG 17 - Partnerships for the Goals</span>
					</span>
					</a>
				</div>
								</div>
				</div>
				<div class="elementor-element elementor-element-bf4f2b3 elementor-widget elementor-widget-heading" data-id="bf4f2b3" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h5 class="elementor-heading-title elementor-size-default">Location</h5>				</div>
				</div>
				<div class="elementor-element elementor-element-87dcb99 elementor-widget elementor-widget-text-editor" data-id="87dcb99" data-element_type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p><em>Jinja &amp; Buikwe District, Uganda</em></p>								</div>
				</div>
				<div class="elementor-element elementor-element-4f60905 elementor-widget elementor-widget-heading" data-id="4f60905" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h5 class="elementor-heading-title elementor-size-default">Duration</h5>				</div>
				</div>
				<div class="elementor-element elementor-element-94b0826 elementor-widget elementor-widget-text-editor" data-id="94b0826" data-element_type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p><em>4 &#8211; 16 weeks (flexible)</em></p>								</div>
				</div>
				<div class="elementor-element elementor-element-bb4df7e elementor-widget elementor-widget-heading" data-id="bb4df7e" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h5 class="elementor-heading-title elementor-size-default">Focus Areas</h5>				</div>
				</div>
				<div class="elementor-element elementor-element-a85a4c8 elementor-widget elementor-widget-text-editor" data-id="a85a4c8" data-element_type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<ul><li>Communications</li><li>Media for Development</li><li>Policy Visibility</li></ul>								</div>
				</div>
				<div class="elementor-element elementor-element-4eaa055 elementor-align-center elementor-widget elementor-widget-button" data-id="4eaa055" data-element_type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-sm elementor-animation-bounce-in" href="https://foscod.org/internship-application">
						<span class="elementor-button-content-wrapper">
									<span class="elementor-button-text">Apply Now</span>
					</span>
					</a>
				</div>
								</div>
				</div>
				</div>
					</div>
				</div>
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-48978af e-flex e-con-boxed e-con e-parent" data-id="48978af" data-element_type="container">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-e9cd5f0 elementor-widget elementor-widget-heading" data-id="e9cd5f0" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h3 class="elementor-heading-title elementor-size-default">Project Gallery</h3>				</div>
				</div>
				<div class="elementor-element elementor-element-33de197 elementor-widget elementor-widget-gallery" data-id="33de197" data-element_type="widget" data-settings="{&quot;gap&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:15,&quot;sizes&quot;:[]},&quot;image_hover_animation&quot;:&quot;grow&quot;,&quot;lazyload&quot;:&quot;yes&quot;,&quot;gallery_layout&quot;:&quot;grid&quot;,&quot;columns&quot;:4,&quot;columns_tablet&quot;:2,&quot;columns_mobile&quot;:1,&quot;gap_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:10,&quot;sizes&quot;:[]},&quot;gap_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:10,&quot;sizes&quot;:[]},&quot;link_to&quot;:&quot;file&quot;,&quot;aspect_ratio&quot;:&quot;3:2&quot;,&quot;overlay_background&quot;:&quot;yes&quot;,&quot;content_hover_animation&quot;:&quot;fade-in&quot;}" data-widget_type="gallery.default">
				<div class="elementor-widget-container">
							<div class="elementor-gallery__container">
							<a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://foscod.org/wp-content/uploads/2025/09/photo_2024-06-28_13-52-45-2.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="33de197" data-elementor-lightbox-title="photo_2024-06-28_13-52-45 (2)" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDc3OCwidXJsIjoiaHR0cHM6XC9cL2Zvc2NvZC5vcmdcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjVcLzA5XC9waG90b18yMDI0LTA2LTI4XzEzLTUyLTQ1LTIuanBnIiwic2xpZGVzaG93IjoiMzNkZTE5NyJ9">
					<div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://foscod.org/wp-content/uploads/2025/09/photo_2024-06-28_13-52-45-2-300x225.jpg" data-width="300" data-height="225" aria-label="" role="img" ></div>
											<div class="elementor-gallery-item__overlay"></div>
														</a>
							<a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://foscod.org/wp-content/uploads/2025/09/photo_2024-06-15_08-50-26.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="33de197" data-elementor-lightbox-title="photo_2024-06-15_08-50-26" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDc3NiwidXJsIjoiaHR0cHM6XC9cL2Zvc2NvZC5vcmdcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjVcLzA5XC9waG90b18yMDI0LTA2LTE1XzA4LTUwLTI2LmpwZyIsInNsaWRlc2hvdyI6IjMzZGUxOTcifQ%3D%3D">
					<div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://foscod.org/wp-content/uploads/2025/09/photo_2024-06-15_08-50-26-300x225.jpg" data-width="300" data-height="225" aria-label="" role="img" ></div>
											<div class="elementor-gallery-item__overlay"></div>
														</a>
							<a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://foscod.org/wp-content/uploads/2025/09/photo_2024-06-20_06-13-19.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="33de197" data-elementor-lightbox-title="photo_2024-06-20_06-13-19" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDc3NywidXJsIjoiaHR0cHM6XC9cL2Zvc2NvZC5vcmdcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjVcLzA5XC9waG90b18yMDI0LTA2LTIwXzA2LTEzLTE5LmpwZyIsInNsaWRlc2hvdyI6IjMzZGUxOTcifQ%3D%3D">
					<div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://foscod.org/wp-content/uploads/2025/09/photo_2024-06-20_06-13-19-300x225.jpg" data-width="300" data-height="225" aria-label="" role="img" ></div>
											<div class="elementor-gallery-item__overlay"></div>
														</a>
							<a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://foscod.org/wp-content/uploads/2025/02/intern-pic-1.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="33de197" data-elementor-lightbox-title="intern pic" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE2NywidXJsIjoiaHR0cHM6XC9cL2Zvc2NvZC5vcmdcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjVcLzAyXC9pbnRlcm4tcGljLTEuanBnIiwic2xpZGVzaG93IjoiMzNkZTE5NyJ9">
					<div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://foscod.org/wp-content/uploads/2025/02/intern-pic-1-300x225.jpg" data-width="300" data-height="225" aria-label="" role="img" ></div>
											<div class="elementor-gallery-item__overlay"></div>
														</a>
							<a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://foscod.org/wp-content/uploads/2024/11/Knowlege-Generation.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="33de197" data-elementor-lightbox-title="Knowlege-Generation" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjYxNCwidXJsIjoiaHR0cHM6XC9cL2Zvc2NvZC5vcmdcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzExXC9Lbm93bGVnZS1HZW5lcmF0aW9uLmpwZyIsInNsaWRlc2hvdyI6IjMzZGUxOTcifQ%3D%3D">
					<div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://foscod.org/wp-content/uploads/2024/11/Knowlege-Generation-300x180.jpg" data-width="300" data-height="180" aria-label="" role="img" ></div>
											<div class="elementor-gallery-item__overlay"></div>
														</a>
							<a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://foscod.org/wp-content/uploads/2024/10/Education-and-skill-development.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="33de197" data-elementor-lightbox-title="Education-and-skill-development" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg5MCwidXJsIjoiaHR0cHM6XC9cL2Zvc2NvZC5vcmdcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9FZHVjYXRpb24tYW5kLXNraWxsLWRldmVsb3BtZW50LmpwZyIsInNsaWRlc2hvdyI6IjMzZGUxOTcifQ%3D%3D">
					<div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://foscod.org/wp-content/uploads/2024/10/Education-and-skill-development-300x200.jpg" data-width="300" data-height="200" aria-label="" role="img" ></div>
											<div class="elementor-gallery-item__overlay"></div>
														</a>
							<a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://foscod.org/wp-content/uploads/2024/07/JH-2.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="33de197" data-elementor-lightbox-title="JH-2" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTE4OCwidXJsIjoiaHR0cHM6XC9cL2Zvc2NvZC5vcmdcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzA3XC9KSC0yLmpwZyIsInNsaWRlc2hvdyI6IjMzZGUxOTcifQ%3D%3D">
					<div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://foscod.org/wp-content/uploads/2024/07/JH-2-300x186.jpg" data-width="300" data-height="186" aria-label="" role="img" ></div>
											<div class="elementor-gallery-item__overlay"></div>
														</a>
							<a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://foscod.org/wp-content/uploads/2025/04/FAQs.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="33de197" data-elementor-lightbox-title="FAQs" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDE3OSwidXJsIjoiaHR0cHM6XC9cL2Zvc2NvZC5vcmdcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjVcLzA0XC9GQVFzLmpwZyIsInNsaWRlc2hvdyI6IjMzZGUxOTcifQ%3D%3D">
					<div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://foscod.org/wp-content/uploads/2025/04/FAQs-300x180.jpg" data-width="300" data-height="180" aria-label="" role="img" ></div>
											<div class="elementor-gallery-item__overlay"></div>
														</a>
					</div>
					</div>
				</div>
					</div>
				</div>
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-f985fb8 e-flex e-con-boxed e-con e-parent" data-id="f985fb8" data-element_type="container">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-5ad706e elementor-align-center elementor-widget elementor-widget-button" data-id="5ad706e" data-element_type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-sm elementor-animation-bounce-in" href="https://foscod.org/internship-application/">
						<span class="elementor-button-content-wrapper">
									<span class="elementor-button-text">Apply Now</span>
					</span>
					</a>
				</div>
								</div>
				</div>
					</div>
				</div>
				</div>
		<p>The post <a href="https://foscod.org/communications-storytelling-internship/">Communications &#038; Storytelling Internship</a> appeared first on <a href="https://foscod.org">FOSCOD</a>.</p>
]]></content:encoded>
					
		
		
		
	</item>
		<item>
		<title>Monitoring, Data &#038; ICT4D Internship</title>
		<link>https://foscod.org/monitoring-data-ict4d-internship/</link>
		
		<dc:creator><![CDATA[Yusuf Omoding]]></dc:creator>
		<pubDate>Tue, 23 Sep 2025 13:07:29 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<guid isPermaLink="false">https://foscod.org/?p=4830</guid>

					<description><![CDATA[<p>Monitoring, Data &#38; ICT4D Internship Design practical digital tools that enable grassroots organizations to collect, analyze, and visualize evidence more effectively. Apply Now About the Project This internship strengthens FOSCOD’s digital monitoring, evaluation, and learning (MEL) systems to improve data quality, transparency, and shared learning across community pilots and partnerships. Interns will help design practical [&#8230;]</p>
<p>The post <a href="https://foscod.org/monitoring-data-ict4d-internship/">Monitoring, Data &#038; ICT4D Internship</a> appeared first on <a href="https://foscod.org">FOSCOD</a>.</p>
]]></description>
										<content:encoded><![CDATA[		<div data-elementor-type="wp-post" data-elementor-id="4830" class="elementor elementor-4830" data-elementor-post-type="post">
				<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-1f8ea6c e-flex e-con-boxed e-con e-parent" data-id="1f8ea6c" data-element_type="container" data-settings="{&quot;background_background&quot;:&quot;gradient&quot;}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-b2bf185 elementor-widget elementor-widget-heading" data-id="b2bf185" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h1 class="elementor-heading-title elementor-size-default">Monitoring, Data &amp; ICT4D Internship</h1>				</div>
				</div>
				<div class="elementor-element elementor-element-0a2ba4b elementor-widget elementor-widget-text-editor" data-id="0a2ba4b" data-element_type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>Design practical digital tools that enable grassroots organizations to collect, analyze, and visualize evidence more effectively.</p>								</div>
				</div>
				<div class="elementor-element elementor-element-aae98bc elementor-align-center elementor-widget elementor-widget-button" data-id="aae98bc" data-element_type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-sm elementor-animation-bounce-in" href="https://foscod.org/internship-application">
						<span class="elementor-button-content-wrapper">
									<span class="elementor-button-text">Apply Now</span>
					</span>
					</a>
				</div>
								</div>
				</div>
					</div>
				</div>
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-2ec8074 e-flex e-con-boxed e-con e-parent" data-id="2ec8074" data-element_type="container">
					<div class="e-con-inner">
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-222d0dc e-con-full e-flex e-con e-child" data-id="222d0dc" data-element_type="container">
				<div class="elementor-element elementor-element-669e891 elementor-widget elementor-widget-heading" data-id="669e891" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h3 class="elementor-heading-title elementor-size-default">About the Project</h3>				</div>
				</div>
				<div class="elementor-element elementor-element-010f0b4 elementor-widget elementor-widget-text-editor" data-id="010f0b4" data-element_type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>This internship strengthens FOSCOD’s digital monitoring, evaluation, and learning (MEL) systems to improve data quality, transparency, and shared learning across community pilots and partnerships. Interns will help design practical digital tools that enable grassroots organizations to collect, analyze, and visualize evidence more effectively.</p><p>The project is aligned with Uganda’s national frameworks of Digital Uganda Vision (2020–2040) &#8211; using ICT for inclusive development, National ICT Policy (2014) &#8211; advancing digital systems for governance and service delivery, National M&amp;E Strategy (2018–2023, extended) – promoting results-based monitoring across sectors and Uganda Vision 2040 &#8211; positioning ICT as a driver of socio-economic transformation. By contributing to these frameworks, you will be part of Uganda’s digital development agenda while gaining cutting-edge ICT4D experience.</p>								</div>
				</div>
				<div class="elementor-element elementor-element-567b443 elementor-widget-divider--view-line elementor-widget elementor-widget-divider" data-id="567b443" data-element_type="widget" data-widget_type="divider.default">
				<div class="elementor-widget-container">
							<div class="elementor-divider">
			<span class="elementor-divider-separator">
						</span>
		</div>
						</div>
				</div>
				<div class="elementor-element elementor-element-32c64bd elementor-widget elementor-widget-heading" data-id="32c64bd" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h3 class="elementor-heading-title elementor-size-default">Program Highlights </h3>				</div>
				</div>
				<div class="elementor-element elementor-element-c3ec482 elementor-widget elementor-widget-text-editor" data-id="c3ec482" data-element_type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>As a Monitoring, Data &amp; ICT Intern, you will:</p><ul><li>Develop or adapt mobile data-collection tools for field teams.</li><li>Train staff and volunteers in digital data collection and data ethics.</li><li>Help establish a cloud-based MEL database and dashboards.</li><li>Support data visualization of early results for internal and external audiences.</li></ul>								</div>
				</div>
				<div class="elementor-element elementor-element-7bba469 elementor-widget-divider--view-line elementor-widget elementor-widget-divider" data-id="7bba469" data-element_type="widget" data-widget_type="divider.default">
				<div class="elementor-widget-container">
							<div class="elementor-divider">
			<span class="elementor-divider-separator">
						</span>
		</div>
						</div>
				</div>
				<div class="elementor-element elementor-element-efdff9d elementor-widget elementor-widget-heading" data-id="efdff9d" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h3 class="elementor-heading-title elementor-size-default">Intern Requirements </h3>				</div>
				</div>
				<div class="elementor-element elementor-element-effa2e5 elementor-widget elementor-widget-text-editor" data-id="effa2e5" data-element_type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>We welcome applicants who:</p><ul><li>Have an interest or background in ICT4D, data management, or monitoring &amp; evaluation.</li><li>Are comfortable with spreadsheets and at least one mobile data platform (training provided).</li><li>Demonstrate attention to detail, strong documentation skills, and an eye for visualization.</li><li>Are adaptable and willing to collaborate across field and HQ settings.</li></ul>								</div>
				</div>
				<div class="elementor-element elementor-element-e81d444 elementor-widget-divider--view-line elementor-widget elementor-widget-divider" data-id="e81d444" data-element_type="widget" data-widget_type="divider.default">
				<div class="elementor-widget-container">
							<div class="elementor-divider">
			<span class="elementor-divider-separator">
						</span>
		</div>
						</div>
				</div>
				<div class="elementor-element elementor-element-70e6335 elementor-widget elementor-widget-heading" data-id="70e6335" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h3 class="elementor-heading-title elementor-size-default">Why Choose This Internship? </h3>				</div>
				</div>
				<div class="elementor-element elementor-element-5757e0d elementor-widget elementor-widget-text-editor" data-id="5757e0d" data-element_type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>By joining this internship, you will:</p><ul><li>Gain practical ICT4D skills for MEL system design and implementation.</li><li>Learn to build lightweight databases and dashboards tailored for NGOs.</li><li>Build capacity through training and mentoring diverse field teams.</li><li>Strengthen your profile in data-driven decision-making and evidence-based programming.</li><li>Contribute to Uganda’s digital transformation and accountability in community development.</li></ul>								</div>
				</div>
				</div>
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-ef23830 e-con-full e-flex e-con e-child" data-id="ef23830" data-element_type="container" data-settings="{&quot;background_background&quot;:&quot;gradient&quot;}">
				<div class="elementor-element elementor-element-03b8c64 elementor-widget elementor-widget-heading" data-id="03b8c64" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h5 class="elementor-heading-title elementor-size-default">SDG Alignment</h5>				</div>
				</div>
				<div class="elementor-element elementor-element-82d3faa elementor-widget elementor-widget-button" data-id="82d3faa" data-element_type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-sm elementor-animation-pop" href="#">
						<span class="elementor-button-content-wrapper">
									<span class="elementor-button-text">SDG 9 - Industry, Innovation & Infrastructure</span>
					</span>
					</a>
				</div>
								</div>
				</div>
				<div class="elementor-element elementor-element-60df4cb elementor-widget elementor-widget-button" data-id="60df4cb" data-element_type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-sm elementor-animation-pop" href="#">
						<span class="elementor-button-content-wrapper">
									<span class="elementor-button-text">SDG 17 - Partnerships for the Goals</span>
					</span>
					</a>
				</div>
								</div>
				</div>
				<div class="elementor-element elementor-element-bf4f2b3 elementor-widget elementor-widget-heading" data-id="bf4f2b3" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h5 class="elementor-heading-title elementor-size-default">Location</h5>				</div>
				</div>
				<div class="elementor-element elementor-element-87dcb99 elementor-widget elementor-widget-text-editor" data-id="87dcb99" data-element_type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p><em>Njeru HQ + Field Sites, Buikwe District</em></p>								</div>
				</div>
				<div class="elementor-element elementor-element-4f60905 elementor-widget elementor-widget-heading" data-id="4f60905" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h5 class="elementor-heading-title elementor-size-default">Duration</h5>				</div>
				</div>
				<div class="elementor-element elementor-element-94b0826 elementor-widget elementor-widget-text-editor" data-id="94b0826" data-element_type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p><em>4 &#8211; 16 weeks (flexible)</em></p>								</div>
				</div>
				<div class="elementor-element elementor-element-bb4df7e elementor-widget elementor-widget-heading" data-id="bb4df7e" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h5 class="elementor-heading-title elementor-size-default">Focus Areas</h5>				</div>
				</div>
				<div class="elementor-element elementor-element-a85a4c8 elementor-widget elementor-widget-text-editor" data-id="a85a4c8" data-element_type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<ul><li>ICT4D</li><li>Monitoring &amp; Evaluation</li><li>Data Systems</li></ul>								</div>
				</div>
				<div class="elementor-element elementor-element-4eaa055 elementor-align-center elementor-widget elementor-widget-button" data-id="4eaa055" data-element_type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-sm elementor-animation-bounce-in" href="https://foscod.org/internship-application">
						<span class="elementor-button-content-wrapper">
									<span class="elementor-button-text">Apply Now</span>
					</span>
					</a>
				</div>
								</div>
				</div>
				</div>
					</div>
				</div>
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-48978af e-flex e-con-boxed e-con e-parent" data-id="48978af" data-element_type="container">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-e9cd5f0 elementor-widget elementor-widget-heading" data-id="e9cd5f0" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h3 class="elementor-heading-title elementor-size-default">Project Gallery</h3>				</div>
				</div>
				<div class="elementor-element elementor-element-33de197 elementor-widget elementor-widget-gallery" data-id="33de197" data-element_type="widget" data-settings="{&quot;gap&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:15,&quot;sizes&quot;:[]},&quot;image_hover_animation&quot;:&quot;grow&quot;,&quot;lazyload&quot;:&quot;yes&quot;,&quot;gallery_layout&quot;:&quot;grid&quot;,&quot;columns&quot;:4,&quot;columns_tablet&quot;:2,&quot;columns_mobile&quot;:1,&quot;gap_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:10,&quot;sizes&quot;:[]},&quot;gap_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:10,&quot;sizes&quot;:[]},&quot;link_to&quot;:&quot;file&quot;,&quot;aspect_ratio&quot;:&quot;3:2&quot;,&quot;overlay_background&quot;:&quot;yes&quot;,&quot;content_hover_animation&quot;:&quot;fade-in&quot;}" data-widget_type="gallery.default">
				<div class="elementor-widget-container">
							<div class="elementor-gallery__container">
							<a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://foscod.org/wp-content/uploads/2025/09/photo_2024-06-28_13-52-45-2.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="33de197" data-elementor-lightbox-title="photo_2024-06-28_13-52-45 (2)" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDc3OCwidXJsIjoiaHR0cHM6XC9cL2Zvc2NvZC5vcmdcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjVcLzA5XC9waG90b18yMDI0LTA2LTI4XzEzLTUyLTQ1LTIuanBnIiwic2xpZGVzaG93IjoiMzNkZTE5NyJ9">
					<div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://foscod.org/wp-content/uploads/2025/09/photo_2024-06-28_13-52-45-2-300x225.jpg" data-width="300" data-height="225" aria-label="" role="img" ></div>
											<div class="elementor-gallery-item__overlay"></div>
														</a>
							<a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://foscod.org/wp-content/uploads/2025/09/photo_2024-06-15_08-50-26.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="33de197" data-elementor-lightbox-title="photo_2024-06-15_08-50-26" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDc3NiwidXJsIjoiaHR0cHM6XC9cL2Zvc2NvZC5vcmdcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjVcLzA5XC9waG90b18yMDI0LTA2LTE1XzA4LTUwLTI2LmpwZyIsInNsaWRlc2hvdyI6IjMzZGUxOTcifQ%3D%3D">
					<div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://foscod.org/wp-content/uploads/2025/09/photo_2024-06-15_08-50-26-300x225.jpg" data-width="300" data-height="225" aria-label="" role="img" ></div>
											<div class="elementor-gallery-item__overlay"></div>
														</a>
							<a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://foscod.org/wp-content/uploads/2025/09/photo_2024-06-20_06-13-19.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="33de197" data-elementor-lightbox-title="photo_2024-06-20_06-13-19" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDc3NywidXJsIjoiaHR0cHM6XC9cL2Zvc2NvZC5vcmdcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjVcLzA5XC9waG90b18yMDI0LTA2LTIwXzA2LTEzLTE5LmpwZyIsInNsaWRlc2hvdyI6IjMzZGUxOTcifQ%3D%3D">
					<div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://foscod.org/wp-content/uploads/2025/09/photo_2024-06-20_06-13-19-300x225.jpg" data-width="300" data-height="225" aria-label="" role="img" ></div>
											<div class="elementor-gallery-item__overlay"></div>
														</a>
							<a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://foscod.org/wp-content/uploads/2025/02/intern-pic-1.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="33de197" data-elementor-lightbox-title="intern pic" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MzE2NywidXJsIjoiaHR0cHM6XC9cL2Zvc2NvZC5vcmdcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjVcLzAyXC9pbnRlcm4tcGljLTEuanBnIiwic2xpZGVzaG93IjoiMzNkZTE5NyJ9">
					<div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://foscod.org/wp-content/uploads/2025/02/intern-pic-1-300x225.jpg" data-width="300" data-height="225" aria-label="" role="img" ></div>
											<div class="elementor-gallery-item__overlay"></div>
														</a>
							<a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://foscod.org/wp-content/uploads/2024/11/Knowlege-Generation.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="33de197" data-elementor-lightbox-title="Knowlege-Generation" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjYxNCwidXJsIjoiaHR0cHM6XC9cL2Zvc2NvZC5vcmdcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzExXC9Lbm93bGVnZS1HZW5lcmF0aW9uLmpwZyIsInNsaWRlc2hvdyI6IjMzZGUxOTcifQ%3D%3D">
					<div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://foscod.org/wp-content/uploads/2024/11/Knowlege-Generation-300x180.jpg" data-width="300" data-height="180" aria-label="" role="img" ></div>
											<div class="elementor-gallery-item__overlay"></div>
														</a>
							<a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://foscod.org/wp-content/uploads/2024/10/Education-and-skill-development.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="33de197" data-elementor-lightbox-title="Education-and-skill-development" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg5MCwidXJsIjoiaHR0cHM6XC9cL2Zvc2NvZC5vcmdcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzEwXC9FZHVjYXRpb24tYW5kLXNraWxsLWRldmVsb3BtZW50LmpwZyIsInNsaWRlc2hvdyI6IjMzZGUxOTcifQ%3D%3D">
					<div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://foscod.org/wp-content/uploads/2024/10/Education-and-skill-development-300x200.jpg" data-width="300" data-height="200" aria-label="" role="img" ></div>
											<div class="elementor-gallery-item__overlay"></div>
														</a>
							<a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://foscod.org/wp-content/uploads/2024/07/JH-2.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="33de197" data-elementor-lightbox-title="JH-2" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTE4OCwidXJsIjoiaHR0cHM6XC9cL2Zvc2NvZC5vcmdcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzA3XC9KSC0yLmpwZyIsInNsaWRlc2hvdyI6IjMzZGUxOTcifQ%3D%3D">
					<div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://foscod.org/wp-content/uploads/2024/07/JH-2-300x186.jpg" data-width="300" data-height="186" aria-label="" role="img" ></div>
											<div class="elementor-gallery-item__overlay"></div>
														</a>
							<a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://foscod.org/wp-content/uploads/2025/04/FAQs.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="33de197" data-elementor-lightbox-title="FAQs" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDE3OSwidXJsIjoiaHR0cHM6XC9cL2Zvc2NvZC5vcmdcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjVcLzA0XC9GQVFzLmpwZyIsInNsaWRlc2hvdyI6IjMzZGUxOTcifQ%3D%3D">
					<div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://foscod.org/wp-content/uploads/2025/04/FAQs-300x180.jpg" data-width="300" data-height="180" aria-label="" role="img" ></div>
											<div class="elementor-gallery-item__overlay"></div>
														</a>
					</div>
					</div>
				</div>
					</div>
				</div>
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-f985fb8 e-flex e-con-boxed e-con e-parent" data-id="f985fb8" data-element_type="container">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-5ad706e elementor-align-center elementor-widget elementor-widget-button" data-id="5ad706e" data-element_type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-sm elementor-animation-bounce-in" href="https://foscod.org/internship-application/">
						<span class="elementor-button-content-wrapper">
									<span class="elementor-button-text">Apply Now</span>
					</span>
					</a>
				</div>
								</div>
				</div>
					</div>
				</div>
				</div>
		<p>The post <a href="https://foscod.org/monitoring-data-ict4d-internship/">Monitoring, Data &#038; ICT4D Internship</a> appeared first on <a href="https://foscod.org">FOSCOD</a>.</p>
]]></content:encoded>
					
		
		
		
	</item>
		<item>
		<title>Community Based Participatory Research &#038; Baseline Survey Internship</title>
		<link>https://foscod.org/community-based-participatory-research-baseline-survey-internship/</link>
		
		<dc:creator><![CDATA[Yusuf Omoding]]></dc:creator>
		<pubDate>Tue, 23 Sep 2025 12:39:21 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<guid isPermaLink="false">https://foscod.org/?p=4822</guid>

					<description><![CDATA[<p>Community Based Participatory Research &#38; Baseline Survey Internship Work with communities in Kalagala Parish to generate credible evidence on energy, WASH, and livelihoods Apply Now About the Project This internship gives you the opportunity to work with communities in Kalagala Parish to generate credible evidence on energy, WASH, and livelihoods. Findings will inform project design, [&#8230;]</p>
<p>The post <a href="https://foscod.org/community-based-participatory-research-baseline-survey-internship/">Community Based Participatory Research &#038; Baseline Survey Internship</a> appeared first on <a href="https://foscod.org">FOSCOD</a>.</p>
]]></description>
										<content:encoded><![CDATA[		<div data-elementor-type="wp-post" data-elementor-id="4822" class="elementor elementor-4822" data-elementor-post-type="post">
				<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-1f8ea6c e-flex e-con-boxed e-con e-parent" data-id="1f8ea6c" data-element_type="container" data-settings="{&quot;background_background&quot;:&quot;gradient&quot;}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-b2bf185 elementor-widget elementor-widget-heading" data-id="b2bf185" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h1 class="elementor-heading-title elementor-size-default">Community Based Participatory Research &amp; Baseline Survey Internship</h1>				</div>
				</div>
				<div class="elementor-element elementor-element-0a2ba4b elementor-widget elementor-widget-text-editor" data-id="0a2ba4b" data-element_type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>Work with communities in Kalagala Parish to generate credible evidence on energy, WASH, and livelihoods</p>								</div>
				</div>
				<div class="elementor-element elementor-element-aae98bc elementor-align-center elementor-widget elementor-widget-button" data-id="aae98bc" data-element_type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-sm elementor-animation-bounce-in" href="https://foscod.org/internship-application">
						<span class="elementor-button-content-wrapper">
									<span class="elementor-button-text">Apply Now</span>
					</span>
					</a>
				</div>
								</div>
				</div>
					</div>
				</div>
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-2ec8074 e-flex e-con-boxed e-con e-parent" data-id="2ec8074" data-element_type="container">
					<div class="e-con-inner">
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-222d0dc e-con-full e-flex e-con e-child" data-id="222d0dc" data-element_type="container">
				<div class="elementor-element elementor-element-669e891 elementor-widget elementor-widget-heading" data-id="669e891" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h3 class="elementor-heading-title elementor-size-default">About the Project</h3>				</div>
				</div>
				<div class="elementor-element elementor-element-010f0b4 elementor-widget elementor-widget-text-editor" data-id="010f0b4" data-element_type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>This internship gives you the opportunity to work with communities in Kalagala Parish to generate credible evidence on energy, WASH, and livelihoods. Findings will inform project design, strengthen fundraising, and enhance monitoring and evaluation for community-driven development.</p><p>The project aligns with Uganda’s national frameworks of National Development Plan (NDP III, 2020–2025) &#8211; evidence-based planning for inclusive growth, National Statistical Development Strategy -strengthening community-level data for decision-making., Uganda Vision 2040 – building an evidence-driven economy for sustainable development.  By contributing to these priorities, interns help ensure that community voices and realities shape Uganda’s development agenda.</p>								</div>
				</div>
				<div class="elementor-element elementor-element-567b443 elementor-widget-divider--view-line elementor-widget elementor-widget-divider" data-id="567b443" data-element_type="widget" data-widget_type="divider.default">
				<div class="elementor-widget-container">
							<div class="elementor-divider">
			<span class="elementor-divider-separator">
						</span>
		</div>
						</div>
				</div>
				<div class="elementor-element elementor-element-32c64bd elementor-widget elementor-widget-heading" data-id="32c64bd" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h3 class="elementor-heading-title elementor-size-default">Program Highlights </h3>				</div>
				</div>
				<div class="elementor-element elementor-element-c3ec482 elementor-widget elementor-widget-text-editor" data-id="c3ec482" data-element_type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>As a Participatory Research &amp; Baseline Intern, you will:</p><ul><li> Co-lead community-based participatory research (CBPR) with local residents.</li><li> Conduct household surveys and facilitate focus group discussions.</li><li> Support the MEL team to digitize, clean, and analyze baseline data.</li><li> Gather household-level data on technology adoption, air quality, and fuel savings.</li></ul>								</div>
				</div>
				<div class="elementor-element elementor-element-7bba469 elementor-widget-divider--view-line elementor-widget elementor-widget-divider" data-id="7bba469" data-element_type="widget" data-widget_type="divider.default">
				<div class="elementor-widget-container">
							<div class="elementor-divider">
			<span class="elementor-divider-separator">
						</span>
		</div>
						</div>
				</div>
				<div class="elementor-element elementor-element-efdff9d elementor-widget elementor-widget-heading" data-id="efdff9d" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h3 class="elementor-heading-title elementor-size-default">Intern Requirements </h3>				</div>
				</div>
				<div class="elementor-element elementor-element-effa2e5 elementor-widget elementor-widget-text-editor" data-id="effa2e5" data-element_type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>We welcome applicants who:</p><ul><li>Have an interest or academic background in social research, statistics, or development studies.</li><li>Are competent (or willing to learn) with spreadsheets and mobile data collection tools.</li><li>Demonstrate strong ethics, respect for consent, and data-quality orientation.</li><li>Are adaptable and willing to engage closely with rural communities.</li></ul>								</div>
				</div>
				<div class="elementor-element elementor-element-e81d444 elementor-widget-divider--view-line elementor-widget elementor-widget-divider" data-id="e81d444" data-element_type="widget" data-widget_type="divider.default">
				<div class="elementor-widget-container">
							<div class="elementor-divider">
			<span class="elementor-divider-separator">
						</span>
		</div>
						</div>
				</div>
				<div class="elementor-element elementor-element-70e6335 elementor-widget elementor-widget-heading" data-id="70e6335" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h3 class="elementor-heading-title elementor-size-default">Why Choose This Internship? </h3>				</div>
				</div>
				<div class="elementor-element elementor-element-5757e0d elementor-widget elementor-widget-text-editor" data-id="5757e0d" data-element_type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>By joining this internship, you will:</p><ul><li>Gain practical experience in field research and participatory appraisal methods.</li><li> Build skills in survey design, data entry, cleaning, and visualization.</li><li> Learn how to use evidence to shape program design, donor reporting, and fundraising.</li><li>Strengthen your ability to work in multi-stakeholder, grassroots environments.</li><li>Contribute directly to Uganda’s evidence-driven policy and planning priorities.</li></ul>								</div>
				</div>
				</div>
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-ef23830 e-con-full e-flex e-con e-child" data-id="ef23830" data-element_type="container" data-settings="{&quot;background_background&quot;:&quot;gradient&quot;}">
				<div class="elementor-element elementor-element-03b8c64 elementor-widget elementor-widget-heading" data-id="03b8c64" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h5 class="elementor-heading-title elementor-size-default">SDG Alignment</h5>				</div>
				</div>
				<div class="elementor-element elementor-element-82d3faa elementor-widget elementor-widget-button" data-id="82d3faa" data-element_type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-sm elementor-animation-pop" href="#">
						<span class="elementor-button-content-wrapper">
									<span class="elementor-button-text">SDG 17 - Partnerships for the Goals</span>
					</span>
					</a>
				</div>
								</div>
				</div>
				<div class="elementor-element elementor-element-60df4cb elementor-widget elementor-widget-button" data-id="60df4cb" data-element_type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-sm elementor-animation-pop" href="#">
						<span class="elementor-button-content-wrapper">
									<span class="elementor-button-text">SDG 10 - Reduced Inequalities</span>
					</span>
					</a>
				</div>
								</div>
				</div>
				<div class="elementor-element elementor-element-fc751ef elementor-widget elementor-widget-button" data-id="fc751ef" data-element_type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-sm elementor-animation-pop" href="#">
						<span class="elementor-button-content-wrapper">
									<span class="elementor-button-text">SDG 4 - Quality Education</span>
					</span>
					</a>
				</div>
								</div>
				</div>
				<div class="elementor-element elementor-element-bf4f2b3 elementor-widget elementor-widget-heading" data-id="bf4f2b3" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h5 class="elementor-heading-title elementor-size-default">Location</h5>				</div>
				</div>
				<div class="elementor-element elementor-element-87dcb99 elementor-widget elementor-widget-text-editor" data-id="87dcb99" data-element_type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p><em>Kalagala Parish, Buikwe District, Uganda</em></p>								</div>
				</div>
				<div class="elementor-element elementor-element-4f60905 elementor-widget elementor-widget-heading" data-id="4f60905" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h5 class="elementor-heading-title elementor-size-default">Duration</h5>				</div>
				</div>
				<div class="elementor-element elementor-element-94b0826 elementor-widget elementor-widget-text-editor" data-id="94b0826" data-element_type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p><em>4 &#8211; 16 weeks (flexible)</em></p>								</div>
				</div>
				<div class="elementor-element elementor-element-bb4df7e elementor-widget elementor-widget-heading" data-id="bb4df7e" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h5 class="elementor-heading-title elementor-size-default">Focus Areas</h5>				</div>
				</div>
				<div class="elementor-element elementor-element-a85a4c8 elementor-widget elementor-widget-text-editor" data-id="a85a4c8" data-element_type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<ul><li>Evidence</li><li>Monitoring</li><li>Community Development</li></ul>								</div>
				</div>
				<div class="elementor-element elementor-element-4eaa055 elementor-align-center elementor-widget elementor-widget-button" data-id="4eaa055" data-element_type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-sm elementor-animation-bounce-in" href="https://foscod.org/internship-application">
						<span class="elementor-button-content-wrapper">
									<span class="elementor-button-text">Apply Now</span>
					</span>
					</a>
				</div>
								</div>
				</div>
				</div>
					</div>
				</div>
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-48978af e-flex e-con-boxed e-con e-parent" data-id="48978af" data-element_type="container">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-e9cd5f0 elementor-widget elementor-widget-heading" data-id="e9cd5f0" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h3 class="elementor-heading-title elementor-size-default">Project Gallery</h3>				</div>
				</div>
				<div class="elementor-element elementor-element-33de197 elementor-widget elementor-widget-gallery" data-id="33de197" data-element_type="widget" data-settings="{&quot;gap&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:15,&quot;sizes&quot;:[]},&quot;image_hover_animation&quot;:&quot;grow&quot;,&quot;lazyload&quot;:&quot;yes&quot;,&quot;gallery_layout&quot;:&quot;grid&quot;,&quot;columns&quot;:4,&quot;columns_tablet&quot;:2,&quot;columns_mobile&quot;:1,&quot;gap_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:10,&quot;sizes&quot;:[]},&quot;gap_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:10,&quot;sizes&quot;:[]},&quot;link_to&quot;:&quot;file&quot;,&quot;aspect_ratio&quot;:&quot;3:2&quot;,&quot;overlay_background&quot;:&quot;yes&quot;,&quot;content_hover_animation&quot;:&quot;fade-in&quot;}" data-widget_type="gallery.default">
				<div class="elementor-widget-container">
							<div class="elementor-gallery__container">
							<a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://foscod.org/wp-content/uploads/2025/05/7.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="33de197" data-elementor-lightbox-title="7" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQ1NiwidXJsIjoiaHR0cHM6XC9cL2Zvc2NvZC5vcmdcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjVcLzA1XC83LmpwZyIsInNsaWRlc2hvdyI6IjMzZGUxOTcifQ%3D%3D">
					<div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://foscod.org/wp-content/uploads/2025/05/7-300x200.jpg" data-width="300" data-height="200" aria-label="" role="img" ></div>
											<div class="elementor-gallery-item__overlay"></div>
														</a>
							<a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://foscod.org/wp-content/uploads/2025/04/WE4-scaled.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="33de197" data-elementor-lightbox-title="WE4" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDM1NSwidXJsIjoiaHR0cHM6XC9cL2Zvc2NvZC5vcmdcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjVcLzA0XC9XRTQtc2NhbGVkLmpwZyIsInNsaWRlc2hvdyI6IjMzZGUxOTcifQ%3D%3D">
					<div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://foscod.org/wp-content/uploads/2025/04/WE4-300x150.jpg" data-width="300" data-height="150" aria-label="" role="img" ></div>
											<div class="elementor-gallery-item__overlay"></div>
														</a>
							<a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://foscod.org/wp-content/uploads/2024/11/Why-volunteer.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="33de197" data-elementor-lightbox-title="Why-volunteer" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY0MCwidXJsIjoiaHR0cHM6XC9cL2Zvc2NvZC5vcmdcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzExXC9XaHktdm9sdW50ZWVyLmpwZyIsInNsaWRlc2hvdyI6IjMzZGUxOTcifQ%3D%3D">
					<div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://foscod.org/wp-content/uploads/2024/11/Why-volunteer-300x180.jpg" data-width="300" data-height="180" aria-label="" role="img" ></div>
											<div class="elementor-gallery-item__overlay"></div>
														</a>
							<a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://foscod.org/wp-content/uploads/2024/11/Internship-feature.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="33de197" data-elementor-lightbox-title="Internship-feature" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjUwMywidXJsIjoiaHR0cHM6XC9cL2Zvc2NvZC5vcmdcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzExXC9JbnRlcm5zaGlwLWZlYXR1cmUuanBnIiwic2xpZGVzaG93IjoiMzNkZTE5NyJ9">
					<div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://foscod.org/wp-content/uploads/2024/11/Internship-feature-300x200.jpg" data-width="300" data-height="200" aria-label="" role="img" ></div>
											<div class="elementor-gallery-item__overlay"></div>
														</a>
							<a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://foscod.org/wp-content/uploads/2024/11/Program-fees.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="33de197" data-elementor-lightbox-title="Program-fees" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjY0MiwidXJsIjoiaHR0cHM6XC9cL2Zvc2NvZC5vcmdcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzExXC9Qcm9ncmFtLWZlZXMuanBnIiwic2xpZGVzaG93IjoiMzNkZTE5NyJ9">
					<div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://foscod.org/wp-content/uploads/2024/11/Program-fees-300x180.jpg" data-width="300" data-height="180" aria-label="" role="img" ></div>
											<div class="elementor-gallery-item__overlay"></div>
														</a>
							<a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://foscod.org/wp-content/uploads/2025/04/Who-can-volunteer.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="33de197" data-elementor-lightbox-title="Who-can-volunteer" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDE4MCwidXJsIjoiaHR0cHM6XC9cL2Zvc2NvZC5vcmdcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjVcLzA0XC9XaG8tY2FuLXZvbHVudGVlci5qcGciLCJzbGlkZXNob3ciOiIzM2RlMTk3In0%3D">
					<div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://foscod.org/wp-content/uploads/2025/04/Who-can-volunteer-300x180.jpg" data-width="300" data-height="180" aria-label="" role="img" ></div>
											<div class="elementor-gallery-item__overlay"></div>
														</a>
							<a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://foscod.org/wp-content/uploads/2024/07/collin-3.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="33de197" data-elementor-lightbox-title="collin-3" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTE5NSwidXJsIjoiaHR0cHM6XC9cL2Zvc2NvZC5vcmdcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzA3XC9jb2xsaW4tMy5qcGciLCJzbGlkZXNob3ciOiIzM2RlMTk3In0%3D">
					<div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://foscod.org/wp-content/uploads/2024/07/collin-3-300x186.jpg" data-width="300" data-height="186" aria-label="" role="img" ></div>
											<div class="elementor-gallery-item__overlay"></div>
														</a>
							<a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://foscod.org/wp-content/uploads/2024/06/Johaness-Kalagala-scaled.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="33de197" data-elementor-lightbox-title="Johaness-Kalagala" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTAwMCwidXJsIjoiaHR0cHM6XC9cL2Zvc2NvZC5vcmdcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzA2XC9Kb2hhbmVzcy1LYWxhZ2FsYS1zY2FsZWQuanBnIiwic2xpZGVzaG93IjoiMzNkZTE5NyJ9">
					<div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://foscod.org/wp-content/uploads/2024/06/Johaness-Kalagala-300x180.jpg" data-width="300" data-height="180" aria-label="" role="img" ></div>
											<div class="elementor-gallery-item__overlay"></div>
														</a>
					</div>
					</div>
				</div>
					</div>
				</div>
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-f985fb8 e-flex e-con-boxed e-con e-parent" data-id="f985fb8" data-element_type="container">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-5ad706e elementor-align-center elementor-widget elementor-widget-button" data-id="5ad706e" data-element_type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-sm elementor-animation-bounce-in" href="https://foscod.org/internship-application/">
						<span class="elementor-button-content-wrapper">
									<span class="elementor-button-text">Apply Now</span>
					</span>
					</a>
				</div>
								</div>
				</div>
					</div>
				</div>
				</div>
		<p>The post <a href="https://foscod.org/community-based-participatory-research-baseline-survey-internship/">Community Based Participatory Research &#038; Baseline Survey Internship</a> appeared first on <a href="https://foscod.org">FOSCOD</a>.</p>
]]></content:encoded>
					
		
		
		
	</item>
		<item>
		<title>Community Economic Empowerment Internship</title>
		<link>https://foscod.org/community-economic-empowerment-internship/</link>
		
		<dc:creator><![CDATA[Yusuf Omoding]]></dc:creator>
		<pubDate>Tue, 23 Sep 2025 07:59:33 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<guid isPermaLink="false">https://foscod.org/?p=4810</guid>

					<description><![CDATA[<p>Community Economic Empowerment Internship Contribute to building resilient community businesses and preparing groups for cooperative and green enterprise development. Apply Now About the Project This internship focuses on strengthening grassroots economic empowerment through Village Savings and Loan Associations (VSLAs), green enterprise promotion, and entrepreneurship training for women and youth. Interns will contribute to building resilient [&#8230;]</p>
<p>The post <a href="https://foscod.org/community-economic-empowerment-internship/">Community Economic Empowerment Internship</a> appeared first on <a href="https://foscod.org">FOSCOD</a>.</p>
]]></description>
										<content:encoded><![CDATA[		<div data-elementor-type="wp-post" data-elementor-id="4810" class="elementor elementor-4810" data-elementor-post-type="post">
				<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-1f8ea6c e-flex e-con-boxed e-con e-parent" data-id="1f8ea6c" data-element_type="container" data-settings="{&quot;background_background&quot;:&quot;gradient&quot;}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-b2bf185 elementor-widget elementor-widget-heading" data-id="b2bf185" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h1 class="elementor-heading-title elementor-size-default">Community Economic Empowerment Internship</h1>				</div>
				</div>
				<div class="elementor-element elementor-element-0a2ba4b elementor-widget elementor-widget-text-editor" data-id="0a2ba4b" data-element_type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>Contribute to building resilient community businesses and preparing groups for cooperative and green enterprise development.</p>								</div>
				</div>
				<div class="elementor-element elementor-element-aae98bc elementor-align-center elementor-widget elementor-widget-button" data-id="aae98bc" data-element_type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-sm elementor-animation-bounce-in" href="https://foscod.org/internship-application">
						<span class="elementor-button-content-wrapper">
									<span class="elementor-button-text">Apply Now</span>
					</span>
					</a>
				</div>
								</div>
				</div>
					</div>
				</div>
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-2ec8074 e-flex e-con-boxed e-con e-parent" data-id="2ec8074" data-element_type="container">
					<div class="e-con-inner">
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-222d0dc e-con-full e-flex e-con e-child" data-id="222d0dc" data-element_type="container">
				<div class="elementor-element elementor-element-669e891 elementor-widget elementor-widget-heading" data-id="669e891" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h3 class="elementor-heading-title elementor-size-default">About the Project</h3>				</div>
				</div>
				<div class="elementor-element elementor-element-010f0b4 elementor-widget elementor-widget-text-editor" data-id="010f0b4" data-element_type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>This internship focuses on strengthening grassroots economic empowerment through Village Savings and Loan Associations (VSLAs), green enterprise promotion, and entrepreneurship training for women and youth. Interns will contribute to building resilient community businesses and preparing groups for cooperative and green enterprise development.</p><p>Aligned with Uganda’s national frameworks of National Financial Inclusion Strategy (2017-2022, extended), National Gender Policy (2007), Parish Development Model (2021) and Uganda Vision 2040.  These policies emphasize financial inclusion, women’s empowerment, entrepreneurship, and community-driven livelihoods — ensuring your internship contributes to both local and national priorities.</p>								</div>
				</div>
				<div class="elementor-element elementor-element-567b443 elementor-widget-divider--view-line elementor-widget elementor-widget-divider" data-id="567b443" data-element_type="widget" data-widget_type="divider.default">
				<div class="elementor-widget-container">
							<div class="elementor-divider">
			<span class="elementor-divider-separator">
						</span>
		</div>
						</div>
				</div>
				<div class="elementor-element elementor-element-32c64bd elementor-widget elementor-widget-heading" data-id="32c64bd" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h3 class="elementor-heading-title elementor-size-default">Program Highlights </h3>				</div>
				</div>
				<div class="elementor-element elementor-element-c3ec482 elementor-widget elementor-widget-text-editor" data-id="c3ec482" data-element_type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>As a Community Economic Empowerment Intern, you will:</p><ul><li>Support VSLAs to improve record-keeping, savings practices, and group management.</li><li>Conduct market assessments to identify opportunities for green and sustainable enterprises.</li><li>Train youth and women groups in basic business literacy and entrepreneurship skills.</li><li>Document case studies of emerging green enterprises for learning and visibility.</li></ul>								</div>
				</div>
				<div class="elementor-element elementor-element-7bba469 elementor-widget-divider--view-line elementor-widget elementor-widget-divider" data-id="7bba469" data-element_type="widget" data-widget_type="divider.default">
				<div class="elementor-widget-container">
							<div class="elementor-divider">
			<span class="elementor-divider-separator">
						</span>
		</div>
						</div>
				</div>
				<div class="elementor-element elementor-element-efdff9d elementor-widget elementor-widget-heading" data-id="efdff9d" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h3 class="elementor-heading-title elementor-size-default">Intern Requirements </h3>				</div>
				</div>
				<div class="elementor-element elementor-element-effa2e5 elementor-widget elementor-widget-text-editor" data-id="effa2e5" data-element_type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>We welcome applicants who:</p><ul><li>Have an academic or professional interest in community development, business, finance, or entrepreneurship.</li><li>Are eager to work with grassroots savings groups and small enterprises.</li><li>Possess skills in facilitation, training, or business research (preferred but not required).</li><li>Demonstrate cultural sensitivity, adaptability, and teamwork.</li></ul>								</div>
				</div>
				<div class="elementor-element elementor-element-e81d444 elementor-widget-divider--view-line elementor-widget elementor-widget-divider" data-id="e81d444" data-element_type="widget" data-widget_type="divider.default">
				<div class="elementor-widget-container">
							<div class="elementor-divider">
			<span class="elementor-divider-separator">
						</span>
		</div>
						</div>
				</div>
				<div class="elementor-element elementor-element-70e6335 elementor-widget elementor-widget-heading" data-id="70e6335" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h3 class="elementor-heading-title elementor-size-default">Why Choose This Internship? </h3>				</div>
				</div>
				<div class="elementor-element elementor-element-5757e0d elementor-widget elementor-widget-text-editor" data-id="5757e0d" data-element_type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>By joining this internship, you will:</p><ul><li>Gain practical skills in enterprise development and grassroots financial systems (VSLAs).</li><li>Build capacity in market assessments, business training, and financial literacy facilitation.</li><li>Contribute to women’s and youth empowerment in sustainable green enterprises.</li><li>Strengthen community resilience through inclusive and locally driven economic growth.</li><li>Be part of a grassroots organization advancing Uganda’s Parish Development Model goals.</li></ul>								</div>
				</div>
				</div>
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-ef23830 e-con-full e-flex e-con e-child" data-id="ef23830" data-element_type="container" data-settings="{&quot;background_background&quot;:&quot;gradient&quot;}">
				<div class="elementor-element elementor-element-03b8c64 elementor-widget elementor-widget-heading" data-id="03b8c64" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h5 class="elementor-heading-title elementor-size-default">SDG Alignment</h5>				</div>
				</div>
				<div class="elementor-element elementor-element-82d3faa elementor-widget elementor-widget-button" data-id="82d3faa" data-element_type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-sm elementor-animation-pop" href="#">
						<span class="elementor-button-content-wrapper">
									<span class="elementor-button-text">SDG 1 - No Poverty</span>
					</span>
					</a>
				</div>
								</div>
				</div>
				<div class="elementor-element elementor-element-60df4cb elementor-widget elementor-widget-button" data-id="60df4cb" data-element_type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-sm elementor-animation-pop" href="#">
						<span class="elementor-button-content-wrapper">
									<span class="elementor-button-text">SDG 5 - Gender Equality</span>
					</span>
					</a>
				</div>
								</div>
				</div>
				<div class="elementor-element elementor-element-fc751ef elementor-widget elementor-widget-button" data-id="fc751ef" data-element_type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-sm elementor-animation-pop" href="#">
						<span class="elementor-button-content-wrapper">
									<span class="elementor-button-text">SDG 8 - Decent Work & Economic Growth</span>
					</span>
					</a>
				</div>
								</div>
				</div>
				<div class="elementor-element elementor-element-bf4f2b3 elementor-widget elementor-widget-heading" data-id="bf4f2b3" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h5 class="elementor-heading-title elementor-size-default">Location</h5>				</div>
				</div>
				<div class="elementor-element elementor-element-87dcb99 elementor-widget elementor-widget-text-editor" data-id="87dcb99" data-element_type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p><em>Kalagala Parish, Buikwe District, Uganda</em></p>								</div>
				</div>
				<div class="elementor-element elementor-element-4f60905 elementor-widget elementor-widget-heading" data-id="4f60905" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h5 class="elementor-heading-title elementor-size-default">Duration</h5>				</div>
				</div>
				<div class="elementor-element elementor-element-94b0826 elementor-widget elementor-widget-text-editor" data-id="94b0826" data-element_type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p><em>4 &#8211; 16 weeks (flexible)</em></p>								</div>
				</div>
				<div class="elementor-element elementor-element-bb4df7e elementor-widget elementor-widget-heading" data-id="bb4df7e" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h5 class="elementor-heading-title elementor-size-default">Focus Areas</h5>				</div>
				</div>
				<div class="elementor-element elementor-element-a85a4c8 elementor-widget elementor-widget-text-editor" data-id="a85a4c8" data-element_type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<ul><li>Livelihoods</li><li>Entrepreneurship</li><li>Finance</li></ul>								</div>
				</div>
				<div class="elementor-element elementor-element-4eaa055 elementor-align-center elementor-widget elementor-widget-button" data-id="4eaa055" data-element_type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-sm elementor-animation-bounce-in" href="https://foscod.org/internship-application">
						<span class="elementor-button-content-wrapper">
									<span class="elementor-button-text">Apply Now</span>
					</span>
					</a>
				</div>
								</div>
				</div>
				</div>
					</div>
				</div>
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-48978af e-flex e-con-boxed e-con e-parent" data-id="48978af" data-element_type="container">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-e9cd5f0 elementor-widget elementor-widget-heading" data-id="e9cd5f0" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h3 class="elementor-heading-title elementor-size-default">Project Gallery</h3>				</div>
				</div>
				<div class="elementor-element elementor-element-33de197 elementor-widget elementor-widget-gallery" data-id="33de197" data-element_type="widget" data-settings="{&quot;gap&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:15,&quot;sizes&quot;:[]},&quot;image_hover_animation&quot;:&quot;grow&quot;,&quot;lazyload&quot;:&quot;yes&quot;,&quot;gallery_layout&quot;:&quot;grid&quot;,&quot;columns&quot;:4,&quot;columns_tablet&quot;:2,&quot;columns_mobile&quot;:1,&quot;gap_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:10,&quot;sizes&quot;:[]},&quot;gap_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:10,&quot;sizes&quot;:[]},&quot;link_to&quot;:&quot;file&quot;,&quot;aspect_ratio&quot;:&quot;3:2&quot;,&quot;overlay_background&quot;:&quot;yes&quot;,&quot;content_hover_animation&quot;:&quot;fade-in&quot;}" data-widget_type="gallery.default">
				<div class="elementor-widget-container">
							<div class="elementor-gallery__container">
							<a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://foscod.org/wp-content/uploads/2025/09/IMG_2667-scaled.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="33de197" data-elementor-lightbox-title="IMG_2667" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDc4MiwidXJsIjoiaHR0cHM6XC9cL2Zvc2NvZC5vcmdcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjVcLzA5XC9JTUdfMjY2Ny1zY2FsZWQuanBnIiwic2xpZGVzaG93IjoiMzNkZTE5NyJ9">
					<div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://foscod.org/wp-content/uploads/2025/09/IMG_2667-300x225.jpg" data-width="300" data-height="225" aria-label="" role="img" ></div>
											<div class="elementor-gallery-item__overlay"></div>
														</a>
							<a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://foscod.org/wp-content/uploads/2025/09/photo_2024-05-28_17-46-50.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="33de197" data-elementor-lightbox-title="photo_2024-05-28_17-46-50" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDc3NSwidXJsIjoiaHR0cHM6XC9cL2Zvc2NvZC5vcmdcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjVcLzA5XC9waG90b18yMDI0LTA1LTI4XzE3LTQ2LTUwLmpwZyIsInNsaWRlc2hvdyI6IjMzZGUxOTcifQ%3D%3D">
					<div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://foscod.org/wp-content/uploads/2025/09/photo_2024-05-28_17-46-50-300x225.jpg" data-width="300" data-height="225" aria-label="" role="img" ></div>
											<div class="elementor-gallery-item__overlay"></div>
														</a>
							<a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://foscod.org/wp-content/uploads/2025/05/1.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="33de197" data-elementor-lightbox-title="1" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQ0OSwidXJsIjoiaHR0cHM6XC9cL2Zvc2NvZC5vcmdcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjVcLzA1XC8xLmpwZyIsInNsaWRlc2hvdyI6IjMzZGUxOTcifQ%3D%3D">
					<div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://foscod.org/wp-content/uploads/2025/05/1-300x225.jpg" data-width="300" data-height="225" aria-label="" role="img" ></div>
											<div class="elementor-gallery-item__overlay"></div>
														</a>
							<a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://foscod.org/wp-content/uploads/2025/04/WE3-scaled.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="33de197" data-elementor-lightbox-title="WE3" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDM2OCwidXJsIjoiaHR0cHM6XC9cL2Zvc2NvZC5vcmdcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjVcLzA0XC9XRTMtc2NhbGVkLmpwZyIsInNsaWRlc2hvdyI6IjMzZGUxOTcifQ%3D%3D">
					<div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://foscod.org/wp-content/uploads/2025/04/WE3-300x150.jpg" data-width="300" data-height="150" aria-label="" role="img" ></div>
											<div class="elementor-gallery-item__overlay"></div>
														</a>
							<a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://foscod.org/wp-content/uploads/2025/04/WE4-scaled.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="33de197" data-elementor-lightbox-title="WE4" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDM1NSwidXJsIjoiaHR0cHM6XC9cL2Zvc2NvZC5vcmdcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjVcLzA0XC9XRTQtc2NhbGVkLmpwZyIsInNsaWRlc2hvdyI6IjMzZGUxOTcifQ%3D%3D">
					<div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://foscod.org/wp-content/uploads/2025/04/WE4-300x150.jpg" data-width="300" data-height="150" aria-label="" role="img" ></div>
											<div class="elementor-gallery-item__overlay"></div>
														</a>
							<a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://foscod.org/wp-content/uploads/2025/09/SME-tailoring.png" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="33de197" data-elementor-lightbox-title="SME tailoring" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDczOCwidXJsIjoiaHR0cHM6XC9cL2Zvc2NvZC5vcmdcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjVcLzA5XC9TTUUtdGFpbG9yaW5nLnBuZyIsInNsaWRlc2hvdyI6IjMzZGUxOTcifQ%3D%3D">
					<div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://foscod.org/wp-content/uploads/2025/09/SME-tailoring-300x228.png" data-width="300" data-height="228" aria-label="" role="img" ></div>
											<div class="elementor-gallery-item__overlay"></div>
														</a>
					</div>
					</div>
				</div>
					</div>
				</div>
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-f985fb8 e-flex e-con-boxed e-con e-parent" data-id="f985fb8" data-element_type="container">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-5ad706e elementor-align-center elementor-widget elementor-widget-button" data-id="5ad706e" data-element_type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-sm elementor-animation-bounce-in" href="https://foscod.org/internship-application/">
						<span class="elementor-button-content-wrapper">
									<span class="elementor-button-text">Apply Now</span>
					</span>
					</a>
				</div>
								</div>
				</div>
					</div>
				</div>
				</div>
		<p>The post <a href="https://foscod.org/community-economic-empowerment-internship/">Community Economic Empowerment Internship</a> appeared first on <a href="https://foscod.org">FOSCOD</a>.</p>
]]></content:encoded>
					
		
		
		
	</item>
		<item>
		<title>Agroforestry &#038; Livelihoods Internship</title>
		<link>https://foscod.org/agroforestry-livelihoods-internship/</link>
		
		<dc:creator><![CDATA[Yusuf Omoding]]></dc:creator>
		<pubDate>Tue, 23 Sep 2025 07:44:21 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<guid isPermaLink="false">https://foscod.org/?p=4803</guid>

					<description><![CDATA[<p>Agroforestry &#38; Livelihoods Internship Work with farmers, youth, and community groups to promote climate-resilient practices Apply Now About the Project This internship supports community-led agroforestry and tree-based livelihoods in Kalagala Parish. Interns will work with farmers, youth, and community groups to promote climate-resilient practices, restore degraded ecosystems, and strengthen food security. The project aligns with [&#8230;]</p>
<p>The post <a href="https://foscod.org/agroforestry-livelihoods-internship/">Agroforestry &#038; Livelihoods Internship</a> appeared first on <a href="https://foscod.org">FOSCOD</a>.</p>
]]></description>
										<content:encoded><![CDATA[		<div data-elementor-type="wp-post" data-elementor-id="4803" class="elementor elementor-4803" data-elementor-post-type="post">
				<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-1f8ea6c e-flex e-con-boxed e-con e-parent" data-id="1f8ea6c" data-element_type="container" data-settings="{&quot;background_background&quot;:&quot;gradient&quot;}">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-b2bf185 elementor-widget elementor-widget-heading" data-id="b2bf185" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h1 class="elementor-heading-title elementor-size-default">Agroforestry &amp; Livelihoods Internship</h1>				</div>
				</div>
				<div class="elementor-element elementor-element-0a2ba4b elementor-widget elementor-widget-text-editor" data-id="0a2ba4b" data-element_type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>Work with farmers, youth, and community groups to promote climate-resilient practices</p>								</div>
				</div>
				<div class="elementor-element elementor-element-aae98bc elementor-align-center elementor-widget elementor-widget-button" data-id="aae98bc" data-element_type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-sm elementor-animation-bounce-in" href="https://foscod.org/internship-application">
						<span class="elementor-button-content-wrapper">
									<span class="elementor-button-text">Apply Now</span>
					</span>
					</a>
				</div>
								</div>
				</div>
					</div>
				</div>
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-2ec8074 e-flex e-con-boxed e-con e-parent" data-id="2ec8074" data-element_type="container">
					<div class="e-con-inner">
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-222d0dc e-con-full e-flex e-con e-child" data-id="222d0dc" data-element_type="container">
				<div class="elementor-element elementor-element-669e891 elementor-widget elementor-widget-heading" data-id="669e891" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h3 class="elementor-heading-title elementor-size-default">About the Project</h3>				</div>
				</div>
				<div class="elementor-element elementor-element-010f0b4 elementor-widget elementor-widget-text-editor" data-id="010f0b4" data-element_type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>This internship supports community-led agroforestry and tree-based livelihoods in Kalagala Parish. Interns will work with farmers, youth, and community groups to promote climate-resilient practices, restore degraded ecosystems, and strengthen food security.</p><p>The project aligns with Uganda’s key national frameworks: National Forestry Policy (2001), National Climate Change Policy (2015), Parish Development Model (2021) and Uganda Vision 2040.  Together, these policies emphasize ecosystem restoration, climate resilience, and sustainable livelihoods &#8211; making your contribution both locally meaningful and nationally strategic.</p>								</div>
				</div>
				<div class="elementor-element elementor-element-567b443 elementor-widget-divider--view-line elementor-widget elementor-widget-divider" data-id="567b443" data-element_type="widget" data-widget_type="divider.default">
				<div class="elementor-widget-container">
							<div class="elementor-divider">
			<span class="elementor-divider-separator">
						</span>
		</div>
						</div>
				</div>
				<div class="elementor-element elementor-element-32c64bd elementor-widget elementor-widget-heading" data-id="32c64bd" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h3 class="elementor-heading-title elementor-size-default">Program Highlights </h3>				</div>
				</div>
				<div class="elementor-element elementor-element-c3ec482 elementor-widget elementor-widget-text-editor" data-id="c3ec482" data-element_type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>As an Agroforestry &amp; Livelihoods Intern, you will:</p><ul><li>Establish a community tree nursery with climate-resilient seedlings.</li><li>Work with 30 farmer groups (coffee, cocoa, and banana growers) to set up demonstration plots.</li><li>Conduct GIS mapping of tree planting sites for monitoring and reporting.</li><li>Mobilize youth groups for community tree-planting campaigns.</li></ul>								</div>
				</div>
				<div class="elementor-element elementor-element-7bba469 elementor-widget-divider--view-line elementor-widget elementor-widget-divider" data-id="7bba469" data-element_type="widget" data-widget_type="divider.default">
				<div class="elementor-widget-container">
							<div class="elementor-divider">
			<span class="elementor-divider-separator">
						</span>
		</div>
						</div>
				</div>
				<div class="elementor-element elementor-element-efdff9d elementor-widget elementor-widget-heading" data-id="efdff9d" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h3 class="elementor-heading-title elementor-size-default">Intern Requirements </h3>				</div>
				</div>
				<div class="elementor-element elementor-element-effa2e5 elementor-widget elementor-widget-text-editor" data-id="effa2e5" data-element_type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>We welcome interns who:</p><ul><li>Have an interest or background in forestry, agroecology, environmental sciences, or climate studies.</li><li>Are eager to apply practical field skills in tree nursery management, farmer training, and mapping.</li><li>Show adaptability and cultural sensitivity when working with rural farmer groups.</li><li>Are comfortable with GIS tools or willing to learn basic mapping skills.</li></ul>								</div>
				</div>
				<div class="elementor-element elementor-element-e81d444 elementor-widget-divider--view-line elementor-widget elementor-widget-divider" data-id="e81d444" data-element_type="widget" data-widget_type="divider.default">
				<div class="elementor-widget-container">
							<div class="elementor-divider">
			<span class="elementor-divider-separator">
						</span>
		</div>
						</div>
				</div>
				<div class="elementor-element elementor-element-70e6335 elementor-widget elementor-widget-heading" data-id="70e6335" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h3 class="elementor-heading-title elementor-size-default">Why Choose This Internship? </h3>				</div>
				</div>
				<div class="elementor-element elementor-element-5757e0d elementor-widget elementor-widget-text-editor" data-id="5757e0d" data-element_type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>By joining this internship, you will:</p><ul><li>Gain practical agroforestry skills in nursery management and farmer training.</li><li>Develop applied GIS mapping and monitoring techniques.</li><li>Contribute to ecosystem restoration, carbon offset efforts, and sustainable farming.</li><li>Strengthen your capacity to work in climate-smart agriculture and food security projects.</li><li>Experience grassroots development with FOSCOD and community partners.</li></ul>								</div>
				</div>
				</div>
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-ef23830 e-con-full e-flex e-con e-child" data-id="ef23830" data-element_type="container" data-settings="{&quot;background_background&quot;:&quot;gradient&quot;}">
				<div class="elementor-element elementor-element-03b8c64 elementor-widget elementor-widget-heading" data-id="03b8c64" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h5 class="elementor-heading-title elementor-size-default">SDG Alignment</h5>				</div>
				</div>
				<div class="elementor-element elementor-element-82d3faa elementor-widget elementor-widget-button" data-id="82d3faa" data-element_type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-sm elementor-animation-pop" href="#">
						<span class="elementor-button-content-wrapper">
									<span class="elementor-button-text">SDG 2 - Zero Hunger</span>
					</span>
					</a>
				</div>
								</div>
				</div>
				<div class="elementor-element elementor-element-60df4cb elementor-widget elementor-widget-button" data-id="60df4cb" data-element_type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-sm elementor-animation-pop" href="#">
						<span class="elementor-button-content-wrapper">
									<span class="elementor-button-text">SDG 13 - Climate Action</span>
					</span>
					</a>
				</div>
								</div>
				</div>
				<div class="elementor-element elementor-element-fc751ef elementor-widget elementor-widget-button" data-id="fc751ef" data-element_type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-sm elementor-animation-pop" href="#">
						<span class="elementor-button-content-wrapper">
									<span class="elementor-button-text">SDG 15 - Life on Land</span>
					</span>
					</a>
				</div>
								</div>
				</div>
				<div class="elementor-element elementor-element-bf4f2b3 elementor-widget elementor-widget-heading" data-id="bf4f2b3" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h5 class="elementor-heading-title elementor-size-default">Location</h5>				</div>
				</div>
				<div class="elementor-element elementor-element-87dcb99 elementor-widget elementor-widget-text-editor" data-id="87dcb99" data-element_type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p><em>Kalagala Parish, Buikwe District, Uganda</em></p>								</div>
				</div>
				<div class="elementor-element elementor-element-4f60905 elementor-widget elementor-widget-heading" data-id="4f60905" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h5 class="elementor-heading-title elementor-size-default">Duration</h5>				</div>
				</div>
				<div class="elementor-element elementor-element-94b0826 elementor-widget elementor-widget-text-editor" data-id="94b0826" data-element_type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p><em>4 &#8211; 16 weeks (flexible)</em></p>								</div>
				</div>
				<div class="elementor-element elementor-element-bb4df7e elementor-widget elementor-widget-heading" data-id="bb4df7e" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h5 class="elementor-heading-title elementor-size-default">Focus Areas</h5>				</div>
				</div>
				<div class="elementor-element elementor-element-a85a4c8 elementor-widget elementor-widget-text-editor" data-id="a85a4c8" data-element_type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<ul><li>Climate Action</li><li>Agroforestry</li><li>Food Security</li></ul>								</div>
				</div>
				<div class="elementor-element elementor-element-4eaa055 elementor-align-center elementor-widget elementor-widget-button" data-id="4eaa055" data-element_type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-sm elementor-animation-bounce-in" href="https://foscod.org/internship-application">
						<span class="elementor-button-content-wrapper">
									<span class="elementor-button-text">Apply Now</span>
					</span>
					</a>
				</div>
								</div>
				</div>
				</div>
					</div>
				</div>
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-48978af e-flex e-con-boxed e-con e-parent" data-id="48978af" data-element_type="container">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-e9cd5f0 elementor-widget elementor-widget-heading" data-id="e9cd5f0" data-element_type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h3 class="elementor-heading-title elementor-size-default">Project Gallery</h3>				</div>
				</div>
				<div class="elementor-element elementor-element-33de197 elementor-widget elementor-widget-gallery" data-id="33de197" data-element_type="widget" data-settings="{&quot;gap&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:15,&quot;sizes&quot;:[]},&quot;image_hover_animation&quot;:&quot;grow&quot;,&quot;lazyload&quot;:&quot;yes&quot;,&quot;gallery_layout&quot;:&quot;grid&quot;,&quot;columns&quot;:4,&quot;columns_tablet&quot;:2,&quot;columns_mobile&quot;:1,&quot;gap_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:10,&quot;sizes&quot;:[]},&quot;gap_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:10,&quot;sizes&quot;:[]},&quot;link_to&quot;:&quot;file&quot;,&quot;aspect_ratio&quot;:&quot;3:2&quot;,&quot;overlay_background&quot;:&quot;yes&quot;,&quot;content_hover_animation&quot;:&quot;fade-in&quot;}" data-widget_type="gallery.default">
				<div class="elementor-widget-container">
							<div class="elementor-gallery__container">
							<a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://foscod.org/wp-content/uploads/2025/09/Agro-forestry-pic.jpeg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="33de197" data-elementor-lightbox-title="Agro forestry pic" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDc4NCwidXJsIjoiaHR0cHM6XC9cL2Zvc2NvZC5vcmdcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjVcLzA5XC9BZ3JvLWZvcmVzdHJ5LXBpYy5qcGVnIiwic2xpZGVzaG93IjoiMzNkZTE5NyJ9">
					<div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://foscod.org/wp-content/uploads/2025/09/Agro-forestry-pic-300x225.jpeg" data-width="300" data-height="225" aria-label="" role="img" ></div>
											<div class="elementor-gallery-item__overlay"></div>
														</a>
							<a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://foscod.org/wp-content/uploads/2025/09/Agro-pic-2.jpeg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="33de197" data-elementor-lightbox-title="Agro pic 2" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDc4MywidXJsIjoiaHR0cHM6XC9cL2Zvc2NvZC5vcmdcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjVcLzA5XC9BZ3JvLXBpYy0yLmpwZWciLCJzbGlkZXNob3ciOiIzM2RlMTk3In0%3D">
					<div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://foscod.org/wp-content/uploads/2025/09/Agro-pic-2-300x228.jpeg" data-width="300" data-height="228" aria-label="" role="img" ></div>
											<div class="elementor-gallery-item__overlay"></div>
														</a>
							<a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://foscod.org/wp-content/uploads/2025/05/5.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="33de197" data-elementor-lightbox-title="5" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQ1MywidXJsIjoiaHR0cHM6XC9cL2Zvc2NvZC5vcmdcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjVcLzA1XC81LmpwZyIsInNsaWRlc2hvdyI6IjMzZGUxOTcifQ%3D%3D">
					<div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://foscod.org/wp-content/uploads/2025/05/5-300x169.jpg" data-width="300" data-height="169" aria-label="" role="img" ></div>
											<div class="elementor-gallery-item__overlay"></div>
														</a>
							<a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://foscod.org/wp-content/uploads/2025/05/3.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="33de197" data-elementor-lightbox-title="3" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQ1MSwidXJsIjoiaHR0cHM6XC9cL2Zvc2NvZC5vcmdcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjVcLzA1XC8zLmpwZyIsInNsaWRlc2hvdyI6IjMzZGUxOTcifQ%3D%3D">
					<div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://foscod.org/wp-content/uploads/2025/05/3-300x169.jpg" data-width="300" data-height="169" aria-label="" role="img" ></div>
											<div class="elementor-gallery-item__overlay"></div>
														</a>
							<a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://foscod.org/wp-content/uploads/2025/05/4.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="33de197" data-elementor-lightbox-title="4" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NDQ1MiwidXJsIjoiaHR0cHM6XC9cL2Zvc2NvZC5vcmdcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjVcLzA1XC80LmpwZyIsInNsaWRlc2hvdyI6IjMzZGUxOTcifQ%3D%3D">
					<div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://foscod.org/wp-content/uploads/2025/05/4-300x169.jpg" data-width="300" data-height="169" aria-label="" role="img" ></div>
											<div class="elementor-gallery-item__overlay"></div>
														</a>
							<a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://foscod.org/wp-content/uploads/2025/03/Tom-training-on-tree-planting.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="33de197" data-elementor-lightbox-title="Tom-training-on-tree-planting" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mzk3NSwidXJsIjoiaHR0cHM6XC9cL2Zvc2NvZC5vcmdcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjVcLzAzXC9Ub20tdHJhaW5pbmctb24tdHJlZS1wbGFudGluZy5qcGciLCJzbGlkZXNob3ciOiIzM2RlMTk3In0%3D">
					<div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://foscod.org/wp-content/uploads/2025/03/Tom-training-on-tree-planting-300x180.jpg" data-width="300" data-height="180" aria-label="" role="img" ></div>
											<div class="elementor-gallery-item__overlay"></div>
														</a>
							<a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://foscod.org/wp-content/uploads/2025/03/tree-planting-one.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="33de197" data-elementor-lightbox-title="tree-planting-one" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mzk3NiwidXJsIjoiaHR0cHM6XC9cL2Zvc2NvZC5vcmdcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjVcLzAzXC90cmVlLXBsYW50aW5nLW9uZS5qcGciLCJzbGlkZXNob3ciOiIzM2RlMTk3In0%3D">
					<div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://foscod.org/wp-content/uploads/2025/03/tree-planting-one-225x300.jpg" data-width="225" data-height="300" aria-label="" role="img" ></div>
											<div class="elementor-gallery-item__overlay"></div>
														</a>
							<a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://foscod.org/wp-content/uploads/2025/03/Tom-Rodgers-sorting-the-trees.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="33de197" data-elementor-lightbox-title="Tom-Rodgers-sorting-the-trees" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mzk3MywidXJsIjoiaHR0cHM6XC9cL2Zvc2NvZC5vcmdcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjVcLzAzXC9Ub20tUm9kZ2Vycy1zb3J0aW5nLXRoZS10cmVlcy5qcGciLCJzbGlkZXNob3ciOiIzM2RlMTk3In0%3D">
					<div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://foscod.org/wp-content/uploads/2025/03/Tom-Rodgers-sorting-the-trees-300x180.jpg" data-width="300" data-height="180" aria-label="" role="img" ></div>
											<div class="elementor-gallery-item__overlay"></div>
														</a>
							<a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://foscod.org/wp-content/uploads/2025/03/Together-for-New-Africa-Tree-Handover.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="33de197" data-elementor-lightbox-title="Together-for-New-Africa-Tree-Handover" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mzk3MSwidXJsIjoiaHR0cHM6XC9cL2Zvc2NvZC5vcmdcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjVcLzAzXC9Ub2dldGhlci1mb3ItTmV3LUFmcmljYS1UcmVlLUhhbmRvdmVyLmpwZyIsInNsaWRlc2hvdyI6IjMzZGUxOTcifQ%3D%3D">
					<div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://foscod.org/wp-content/uploads/2025/03/Together-for-New-Africa-Tree-Handover-300x180.jpg" data-width="300" data-height="180" aria-label="" role="img" ></div>
											<div class="elementor-gallery-item__overlay"></div>
														</a>
							<a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://foscod.org/wp-content/uploads/2025/03/students-tree-handover.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="33de197" data-elementor-lightbox-title="students-tree-handover" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mzk3MCwidXJsIjoiaHR0cHM6XC9cL2Zvc2NvZC5vcmdcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjVcLzAzXC9zdHVkZW50cy10cmVlLWhhbmRvdmVyLmpwZyIsInNsaWRlc2hvdyI6IjMzZGUxOTcifQ%3D%3D">
					<div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://foscod.org/wp-content/uploads/2025/03/students-tree-handover-300x180.jpg" data-width="300" data-height="180" aria-label="" role="img" ></div>
											<div class="elementor-gallery-item__overlay"></div>
														</a>
							<a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://foscod.org/wp-content/uploads/2025/03/Pupils-planting-trees-2.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="33de197" data-elementor-lightbox-title="Pupils-planting-trees-2" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Mzk2OSwidXJsIjoiaHR0cHM6XC9cL2Zvc2NvZC5vcmdcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjVcLzAzXC9QdXBpbHMtcGxhbnRpbmctdHJlZXMtMi5qcGciLCJzbGlkZXNob3ciOiIzM2RlMTk3In0%3D">
					<div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://foscod.org/wp-content/uploads/2025/03/Pupils-planting-trees-2-225x300.jpg" data-width="225" data-height="300" aria-label="" role="img" ></div>
											<div class="elementor-gallery-item__overlay"></div>
														</a>
							<a class="e-gallery-item elementor-gallery-item elementor-animated-content" href="https://foscod.org/wp-content/uploads/2024/11/Hero-Collin.jpg" data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="33de197" data-elementor-lightbox-title="Hero-Collin" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MjQ5OCwidXJsIjoiaHR0cHM6XC9cL2Zvc2NvZC5vcmdcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzExXC9IZXJvLUNvbGxpbi5qcGciLCJzbGlkZXNob3ciOiIzM2RlMTk3In0%3D">
					<div class="e-gallery-image elementor-gallery-item__image" data-thumbnail="https://foscod.org/wp-content/uploads/2024/11/Hero-Collin-300x169.jpg" data-width="300" data-height="169" aria-label="" role="img" ></div>
											<div class="elementor-gallery-item__overlay"></div>
														</a>
					</div>
					</div>
				</div>
					</div>
				</div>
		<div data-particle_enable="false" data-particle-mobile-disabled="false" class="elementor-element elementor-element-f985fb8 e-flex e-con-boxed e-con e-parent" data-id="f985fb8" data-element_type="container">
					<div class="e-con-inner">
				<div class="elementor-element elementor-element-5ad706e elementor-align-center elementor-widget elementor-widget-button" data-id="5ad706e" data-element_type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-sm elementor-animation-bounce-in" href="https://foscod.org/internship-application/">
						<span class="elementor-button-content-wrapper">
									<span class="elementor-button-text">Apply Now</span>
					</span>
					</a>
				</div>
								</div>
				</div>
					</div>
				</div>
				</div>
		<p>The post <a href="https://foscod.org/agroforestry-livelihoods-internship/">Agroforestry &#038; Livelihoods Internship</a> appeared first on <a href="https://foscod.org">FOSCOD</a>.</p>
]]></content:encoded>
					
		
		
		
	</item>
	</channel>
</rss>
