Skip to content

Instantly share code, notes, and snippets.

@calebdre
Created January 2, 2026 23:46
Show Gist options
  • Select an option

  • Save calebdre/dfaa85d648af89c2b3815acc817b00c5 to your computer and use it in GitHub Desktop.

Select an option

Save calebdre/dfaa85d648af89c2b3815acc817b00c5 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Georgia Grant Opportunities</title>
<style>
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
background: #f0f4f8;
color: #333;
line-height: 1.6;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 2rem;
}
header {
background: linear-gradient(135deg, #065f46 0%, #047857 100%);
color: white;
padding: 2rem;
margin-bottom: 1.5rem;
border-radius: 12px;
}
header h1 { font-size: 2rem; margin-bottom: 0.5rem; }
header p { opacity: 0.9; }
.stats {
display: flex;
gap: 2rem;
margin-top: 1rem;
}
.stat {
background: rgba(255,255,255,0.15);
padding: 0.75rem 1.25rem;
border-radius: 8px;
}
.stat-value { font-size: 1.75rem; font-weight: bold; }
.stat-label { font-size: 0.85rem; opacity: 0.85; }
.search-info {
background: white;
border-radius: 12px;
padding: 1.5rem;
margin-bottom: 1.5rem;
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.search-info h3 {
font-size: 1rem;
color: #065f46;
margin-bottom: 0.75rem;
display: flex;
align-items: center;
gap: 0.5rem;
}
.search-info p {
font-size: 0.95rem;
color: #555;
margin-bottom: 1rem;
}
.sources-list {
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
}
.source-tag {
background: #ecfdf5;
color: #047857;
padding: 0.35rem 0.75rem;
border-radius: 20px;
font-size: 0.8rem;
}
.filters {
background: white;
border-radius: 12px;
padding: 1.5rem;
margin-bottom: 1.5rem;
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.filters-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 1rem;
}
.filters-header h3 { font-size: 1rem; color: #065f46; }
.filters-header button {
background: none;
border: none;
color: #047857;
cursor: pointer;
font-size: 0.9rem;
}
.filters-header button:hover { text-decoration: underline; }
.filter-row {
display: flex;
flex-wrap: wrap;
gap: 1.5rem;
align-items: flex-end;
}
.filter-group {
display: flex;
flex-direction: column;
gap: 0.5rem;
}
.filter-group label {
font-size: 0.85rem;
font-weight: 500;
color: #666;
}
.filter-group select, .filter-group input {
padding: 0.5rem 0.75rem;
border: 1px solid #ddd;
border-radius: 6px;
font-size: 0.9rem;
min-width: 180px;
background: white;
}
.filter-count {
background: #ecfdf5;
color: #047857;
padding: 0.5rem 1rem;
border-radius: 6px;
font-size: 0.9rem;
}
.grants-grid {
display: grid;
gap: 1.25rem;
}
.grant-card {
background: white;
border-radius: 12px;
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
overflow: hidden;
transition: box-shadow 0.2s;
}
.grant-card:hover {
box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.grant-card.hidden { display: none; }
.grant-header {
padding: 1.25rem 1.5rem;
border-bottom: 1px solid #f0f0f0;
}
.grant-title {
font-size: 1.1rem;
font-weight: 600;
color: #1f2937;
margin-bottom: 0.5rem;
}
.grant-title a {
color: inherit;
text-decoration: none;
}
.grant-title a:hover { color: #047857; }
.grant-meta {
display: flex;
flex-wrap: wrap;
gap: 1rem;
font-size: 0.9rem;
}
.grant-meta-item {
display: flex;
align-items: center;
gap: 0.35rem;
color: #666;
}
.grant-meta-item.agency { color: #047857; font-weight: 500; }
.grant-meta-item.amount { color: #0369a1; font-weight: 600; }
.grant-meta-item.deadline { color: #dc2626; font-weight: 500; }
.grant-meta-item .icon { font-size: 1rem; }
.grant-body {
padding: 1.25rem 1.5rem;
}
.grant-description {
font-size: 0.95rem;
color: #4b5563;
margin-bottom: 1rem;
}
.grant-details {
display: none;
border-top: 1px solid #f0f0f0;
padding-top: 1rem;
margin-top: 1rem;
}
.grant-details.expanded { display: block; }
.detail-section {
margin-bottom: 1rem;
}
.detail-section:last-child { margin-bottom: 0; }
.detail-label {
font-size: 0.8rem;
font-weight: 600;
color: #065f46;
text-transform: uppercase;
letter-spacing: 0.5px;
margin-bottom: 0.35rem;
}
.detail-content {
font-size: 0.9rem;
color: #4b5563;
}
.relevance-note {
background: #fef3c7;
border-left: 3px solid #f59e0b;
padding: 0.75rem 1rem;
font-size: 0.9rem;
color: #92400e;
border-radius: 0 6px 6px 0;
}
.grant-footer {
padding: 1rem 1.5rem;
background: #f9fafb;
display: flex;
justify-content: space-between;
align-items: center;
}
.expand-btn {
background: none;
border: 1px solid #d1d5db;
padding: 0.5rem 1rem;
border-radius: 6px;
cursor: pointer;
font-size: 0.85rem;
color: #374151;
transition: all 0.2s;
}
.expand-btn:hover {
background: #f3f4f6;
border-color: #9ca3af;
}
.grant-link {
background: #047857;
color: white;
padding: 0.5rem 1rem;
border-radius: 6px;
text-decoration: none;
font-size: 0.85rem;
font-weight: 500;
transition: background 0.2s;
}
.grant-link:hover { background: #065f46; }
.tags {
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
margin-top: 0.75rem;
}
.tag {
background: #f3f4f6;
color: #4b5563;
padding: 0.25rem 0.6rem;
border-radius: 4px;
font-size: 0.8rem;
}
.tag.cfda { background: #dbeafe; color: #1e40af; }
.tag.type { background: #e0e7ff; color: #3730a3; }
.no-results {
text-align: center;
padding: 3rem;
color: #666;
display: none;
}
.no-results.visible { display: block; }
.generated {
text-align: center;
padding: 2rem;
color: #9ca3af;
font-size: 0.85rem;
}
</style>
</head>
<body>
<div class="container">
<header>
<h1>🎯 Georgia Grant Opportunities</h1>
<p>Grants matching your organization's capabilities</p>
<div class="stats">
<div class="stat">
<div class="stat-value" id="total-count">22</div>
<div class="stat-label">Grants Found</div>
</div>
<div class="stat">
<div class="stat-value">20</div>
<div class="stat-label">Agencies</div>
</div>
</div>
</header>
<div class="search-info">
<h3>πŸ“‹ Search Summary</h3>
<p>Searched for Georgia grants relevant to a management consulting organization with NAICS codes 541611, 541618, 541690, and 541990. Focused on grants for strategic planning, organizational development, capacity building, technical assistance, and public sector consulting. Reviewed Georgia state agency websites (DCA, OPB, GTA, GEMA), federal grant portals (grants.gov, HUD, USDA, SBA, EDA), community foundations, and nonprofit support organizations.</p>
<h3>πŸ” Sources Checked</h3>
<div class="sources-list">
<span class="source-tag">https://opb.georgia.gov/active-grant-programs</span><span class="source-tag">https://gta.georgia.gov/policies-and-programs/cybersecurity/state-and-local-cybersecurity-grant-program</span><span class="source-tag">https://gema.georgia.gov/state-and-local-cybersecurity-grant-program</span><span class="source-tag">https://dca.georgia.gov/public-notice/2025-04-17/cdbg-innovative-grant-program-notice-funding-availability</span><span class="source-tag">https://dca.georgia.gov/financing-tools/infrastructure/onegeorgia-authority</span><span class="source-tag">https://www.grants.gov/search-results-detail/353966</span><span class="source-tag">https://cfgreateratlanta.org/grant-opportunities/</span><span class="source-tag">https://gcn.org/resource-hubs/funding-and-resource-opportunities/</span><span class="source-tag">https://gcdd.org/funding-opportunities</span><span class="source-tag">https://cares.georgia.gov/</span><span class="source-tag">https://georgia.thegrantportal.com</span><span class="source-tag">https://grantorb.com/posts/capacity-building-grants-for-small-nonprofits-in-georgia-2025.md/</span><span class="source-tag">https://www.sba.gov/funding-programs/grants</span><span class="source-tag">https://dca.georgia.gov/organization/about-dca/partnerships/georgia-serves/americorps/how-do-i-apply-americorps</span>
</div>
</div>
<div class="filters">
<div class="filters-header">
<h3>Filter Grants</h3>
<button onclick="clearFilters()">Clear All</button>
</div>
<div class="filter-row">
<div class="filter-group">
<label>Search</label>
<input type="text" id="search-filter" placeholder="Search grants..." oninput="applyFilters()">
</div>
<div class="filter-group">
<label>Funding Agency</label>
<select id="agency-filter" onchange="applyFilters()">
<option value="">All Agencies</option>
<option value="Betty &amp; Davis Fitzgerald Foundation">Betty &amp; Davis Fitzgerald Foundation</option><option value="Community Foundation for Greater Atlanta">Community Foundation for Greater Atlanta</option><option value="Community Foundation of Central Georgia">Community Foundation of Central Georgia</option><option value="Georgia Council for the Arts">Georgia Council for the Arts</option><option value="Georgia Council on Developmental Disabilities">Georgia Council on Developmental Disabilities</option><option value="Georgia Department of Community Affairs (DCA)">Georgia Department of Community Affairs (DCA)</option><option value="Georgia Department of Community Affairs - Georgia Serves">Georgia Department of Community Affairs - Georgia Serves</option><option value="Georgia Department of Community Affairs - OneGeorgia Authority">Georgia Department of Community Affairs - OneGeorgia Authority</option><option value="Georgia Emergency Management and Homeland Security Agency (GEMA/HS) via DHS/CISA">Georgia Emergency Management and Homeland Security Agency (GEMA/HS) via DHS/CISA</option><option value="Georgia Governor's Office of Planning and Budget / Georgia Technology Authority">Georgia Governor's Office of Planning and Budget / Georgia Technology Authority</option><option value="Gwinnett County">Gwinnett County</option><option value="Jesse Parker Williams Foundation">Jesse Parker Williams Foundation</option><option value="Peace Development Fund">Peace Development Fund</option><option value="Sapelo Foundation">Sapelo Foundation</option><option value="U.S. Department of Housing and Urban Development">U.S. Department of Housing and Urban Development</option><option value="U.S. Department of Housing and Urban Development (HUD)">U.S. Department of Housing and Urban Development (HUD)</option><option value="U.S. Economic Development Administration">U.S. Economic Development Administration</option><option value="U.S. Environmental Protection Agency">U.S. Environmental Protection Agency</option><option value="U.S. Small Business Administration">U.S. Small Business Administration</option><option value="USDA Rural Development">USDA Rural Development</option>
</select>
</div>
<div class="filter-group">
<label>Grant Type</label>
<select id="type-filter" onchange="applyFilters()">
<option value="">All Types</option>
<option value="Competitive">Competitive</option><option value="Competitive - Cooperative Agreement">Competitive - Cooperative Agreement</option><option value="Formula/Pass-through">Formula/Pass-through</option><option value="Technical Assistance">Technical Assistance</option>
</select>
</div>
<div class="filter-count">
Showing <strong id="visible-count">22</strong> of 22
</div>
</div>
</div>
<div class="no-results">
No grants match your filters. Try adjusting your criteria.
</div>
<div class="grants-grid">
<div class="grant-card"
data-agency="U.S. Department of Housing and Urban Development (HUD)"
data-type="Competitive - Cooperative Agreement"
data-deadline=""
data-search="hud community compass technical assistance and capacity building program provides technical assistance and capacity building to help hud grantees and subgrantees navigate complex housing and community development challenges. includes administrative and managerial oversight support, knowledge transfer, and skill-building for hud program implementation. u.s. department of housing and urban development (hud)">
<div class="grant-header">
<div class="grant-title">
<a href="https://www.grants.gov/search-results-detail/353966" target="_blank">HUD Community Compass Technical Assistance and Capacity Building Program</a>
</div>
<div class="grant-meta">
<span class="grant-meta-item agency"><span class="icon">πŸ›οΈ</span> U.S. Department of Housing and Urban Development (HUD)</span>
<span class="grant-meta-item amount"><span class="icon">πŸ’°</span> $250,000 - $42,500,000 per award (Total program: ~$91 million)</span>
<span class="grant-meta-item deadline"><span class="icon">πŸ“…</span> FY 2024/2025 cycle closed June 20, 2024 - watch for future NOFOs</span>
</div>
<div class="tags">
<span class="tag cfda">CFDA: 14.259</span>
<span class="tag type">Competitive - Cooperative Agreement</span>
</div>
</div>
<div class="grant-body">
<div class="grant-description">Provides technical assistance and capacity building to help HUD grantees and subgrantees navigate complex housing and community development challenges. Includes administrative and managerial oversight support, knowledge transfer, and skill-building for HUD program implementation.</div>
<div class="grant-details" id="details-0">
<div class="detail-section">
<div class="detail-label">Eligibility</div>
<div class="detail-content">State governments, county governments, city/township governments, nonprofits (501c3 and non-501c3), public housing authorities, small businesses, for-profit organizations, higher education institutions</div>
</div>
<div class="detail-section">
<div class="detail-label">Matching Requirements</div>
<div class="detail-content">No matching required</div>
</div>
<div class="detail-section">
<div class="detail-label">Why This Matches</div>
<div class="relevance-note">Highly relevant - funds technical assistance, capacity building, and administrative support services to public sector entities. Aligns with NAICS 541611 for management consulting and administrative support.</div>
</div>
</div>
</div>
<div class="grant-footer">
<button class="expand-btn" onclick="toggleDetails(0, this)">Show Details</button>
<a href="https://www.grants.gov/search-results-detail/353966" target="_blank" class="grant-link">View Grant β†’</a>
</div>
</div>
<div class="grant-card"
data-agency="Georgia Emergency Management and Homeland Security Agency (GEMA/HS) via DHS/CISA"
data-type="Formula/Pass-through"
data-deadline="2025-02-28"
data-search="georgia state and local cybersecurity grant program (slcgp) provides funding to improve cybersecurity governance, assess cybersecurity posture, implement security protections, and train personnel. at least 80% must benefit local governments, with 25% for rural areas. georgia emergency management and homeland security agency (gema/hs) via dhs/cisa">
<div class="grant-header">
<div class="grant-title">
<a href="https://gema.georgia.gov/state-and-local-cybersecurity-grant-program" target="_blank">Georgia State and Local Cybersecurity Grant Program (SLCGP)</a>
</div>
<div class="grant-meta">
<span class="grant-meta-item agency"><span class="icon">πŸ›οΈ</span> Georgia Emergency Management and Homeland Security Agency (GEMA/HS) via DHS/CISA</span>
<span class="grant-meta-item amount"><span class="icon">πŸ’°</span> Georgia allocated approximately $9.8 million total (4-year program)</span>
<span class="grant-meta-item deadline"><span class="icon">πŸ“…</span> February 28, 2025 (FY2023 cycle)</span>
</div>
<div class="tags">
<span class="tag cfda">CFDA: 97.140</span>
<span class="tag type">Formula/Pass-through</span>
</div>
</div>
<div class="grant-body">
<div class="grant-description">Provides funding to improve cybersecurity governance, assess cybersecurity posture, implement security protections, and train personnel. At least 80% must benefit local governments, with 25% for rural areas.</div>
<div class="grant-details" id="details-1">
<div class="detail-section">
<div class="detail-label">Eligibility</div>
<div class="detail-content">State agencies and local governments in Georgia</div>
</div>
<div class="detail-section">
<div class="detail-label">Matching Requirements</div>
<div class="detail-content">20% in FY2023, increasing to 40% by FY2025</div>
</div>
<div class="detail-section">
<div class="detail-label">Why This Matches</div>
<div class="relevance-note">Relevant for consulting services related to governance development, cybersecurity planning, and organizational assessments. Could support process improvement and policy development work.</div>
</div>
</div>
</div>
<div class="grant-footer">
<button class="expand-btn" onclick="toggleDetails(1, this)">Show Details</button>
<a href="https://gema.georgia.gov/state-and-local-cybersecurity-grant-program" target="_blank" class="grant-link">View Grant β†’</a>
</div>
</div>
<div class="grant-card"
data-agency="Georgia Department of Community Affairs (DCA)"
data-type="Competitive"
data-deadline=""
data-search="cdbg innovative grant program funds transformational community development projects including housing, infrastructure, and system improvements. focuses on creating long-term, systemic, and sustainable change in communities. georgia department of community affairs (dca)">
<div class="grant-header">
<div class="grant-title">
<a href="https://dca.georgia.gov/public-notice/2025-04-17/cdbg-innovative-grant-program-notice-funding-availability" target="_blank">CDBG Innovative Grant Program</a>
</div>
<div class="grant-meta">
<span class="grant-meta-item agency"><span class="icon">πŸ›οΈ</span> Georgia Department of Community Affairs (DCA)</span>
<span class="grant-meta-item amount"><span class="icon">πŸ’°</span> Up to $5,000,000 per application ($10 million total available)</span>
<span class="grant-meta-item deadline"><span class="icon">πŸ“…</span> Rolling - Pre-application required; full applications accepted on invitation</span>
</div>
<div class="tags">
<span class="tag cfda">CFDA: 14.228</span>
<span class="tag type">Competitive</span>
</div>
</div>
<div class="grant-body">
<div class="grant-description">Funds transformational community development projects including housing, infrastructure, and system improvements. Focuses on creating long-term, systemic, and sustainable change in communities.</div>
<div class="grant-details" id="details-2">
<div class="detail-section">
<div class="detail-label">Eligibility</div>
<div class="detail-content">Non-entitlement units of local government (cities or counties not participating in HUD CDBG Entitlement program)</div>
</div>
<div class="detail-section">
<div class="detail-label">Matching Requirements</div>
<div class="detail-content">Minimum 15% cash match of grant award</div>
</div>
<div class="detail-section">
<div class="detail-label">Why This Matches</div>
<div class="relevance-note">Local governments could contract with consulting firms for grant administration, planning, and capacity building support. Indirect opportunity for consulting services.</div>
</div>
</div>
</div>
<div class="grant-footer">
<button class="expand-btn" onclick="toggleDetails(2, this)">Show Details</button>
<a href="https://dca.georgia.gov/public-notice/2025-04-17/cdbg-innovative-grant-program-notice-funding-availability" target="_blank" class="grant-link">View Grant β†’</a>
</div>
</div>
<div class="grant-card"
data-agency="Georgia Department of Community Affairs - OneGeorgia Authority"
data-type="Competitive"
data-deadline=""
data-search="onegeorgia authority equity fund provides grants and loans for economic development activities in rural georgia including land acquisition, infrastructure development, business relocation assistance, and entrepreneur support. georgia department of community affairs - onegeorgia authority">
<div class="grant-header">
<div class="grant-title">
<a href="https://dca.georgia.gov/financing-tools/infrastructure/onegeorgia-authority" target="_blank">OneGeorgia Authority Equity Fund</a>
</div>
<div class="grant-meta">
<span class="grant-meta-item agency"><span class="icon">πŸ›οΈ</span> Georgia Department of Community Affairs - OneGeorgia Authority</span>
<span class="grant-meta-item amount"><span class="icon">πŸ’°</span> Varies by project</span>
<span class="grant-meta-item deadline"><span class="icon">πŸ“…</span> Quarterly deadlines - Second Friday of January, April, July, October (Pre-applications due 30 days before)</span>
</div>
<div class="tags">
<span class="tag type">Competitive</span>
</div>
</div>
<div class="grant-body">
<div class="grant-description">Provides grants and loans for economic development activities in rural Georgia including land acquisition, infrastructure development, business relocation assistance, and entrepreneur support.</div>
<div class="grant-details" id="details-3">
<div class="detail-section">
<div class="detail-label">Eligibility</div>
<div class="detail-content">Local governments, local-government authorities, joint or multi-county development authorities in eligible rural Georgia areas</div>
</div>
<div class="detail-section">
<div class="detail-label">Matching Requirements</div>
<div class="detail-content">Varies by program</div>
</div>
<div class="detail-section">
<div class="detail-label">Why This Matches</div>
<div class="relevance-note">Rural communities seeking economic development may need consulting support for strategic planning, application development, and project management.</div>
</div>
</div>
</div>
<div class="grant-footer">
<button class="expand-btn" onclick="toggleDetails(3, this)">Show Details</button>
<a href="https://dca.georgia.gov/financing-tools/infrastructure/onegeorgia-authority" target="_blank" class="grant-link">View Grant β†’</a>
</div>
</div>
<div class="grant-card"
data-agency="Georgia Department of Community Affairs - Georgia Serves"
data-type="Competitive"
data-deadline=""
data-search="georgia serves americorps planning grants planning grants support organizations in developing new americorps programs. funds activities including planning, capacity building, and program development. georgia department of community affairs - georgia serves">
<div class="grant-header">
<div class="grant-title">
<a href="https://dca.georgia.gov/organization/about-dca/partnerships/georgia-serves/americorps/how-do-i-apply-americorps" target="_blank">Georgia Serves AmeriCorps Planning Grants</a>
</div>
<div class="grant-meta">
<span class="grant-meta-item agency"><span class="icon">πŸ›οΈ</span> Georgia Department of Community Affairs - Georgia Serves</span>
<span class="grant-meta-item amount"><span class="icon">πŸ’°</span> Varies - Georgia allocated ~$4.9 million total for AmeriCorps programs</span>
<span class="grant-meta-item deadline"><span class="icon">πŸ“…</span> Annual competition - check DCA for current cycle</span>
</div>
<div class="tags">
<span class="tag cfda">CFDA: 94.006</span>
<span class="tag type">Competitive</span>
</div>
</div>
<div class="grant-body">
<div class="grant-description">Planning grants support organizations in developing new AmeriCorps programs. Funds activities including planning, capacity building, and program development.</div>
<div class="grant-details" id="details-4">
<div class="detail-section">
<div class="detail-label">Eligibility</div>
<div class="detail-content">Non-profits 501(c)(3), colleges/universities, and local governments in Georgia</div>
</div>
<div class="detail-section">
<div class="detail-label">Matching Requirements</div>
<div class="detail-content">Required - varies by grant type</div>
</div>
<div class="detail-section">
<div class="detail-label">Why This Matches</div>
<div class="relevance-note">Organizations may need consulting support for program planning, strategic development, and capacity building to develop competitive applications.</div>
</div>
</div>
</div>
<div class="grant-footer">
<button class="expand-btn" onclick="toggleDetails(4, this)">Show Details</button>
<a href="https://dca.georgia.gov/organization/about-dca/partnerships/georgia-serves/americorps/how-do-i-apply-americorps" target="_blank" class="grant-link">View Grant β†’</a>
</div>
</div>
<div class="grant-card"
data-agency="U.S. Small Business Administration"
data-type="Competitive"
data-deadline=""
data-search="sba 7(j) management and technical assistance program (empower to grow) provides management and technical assistance training to small businesses. grants awarded to organizations that deliver training, counseling, and business development services. u.s. small business administration">
<div class="grant-header">
<div class="grant-title">
<a href="https://www.sba.gov/funding-programs/grants" target="_blank">SBA 7(j) Management and Technical Assistance Program (Empower to Grow)</a>
</div>
<div class="grant-meta">
<span class="grant-meta-item agency"><span class="icon">πŸ›οΈ</span> U.S. Small Business Administration</span>
<span class="grant-meta-item amount"><span class="icon">πŸ’°</span> Varies by funding cycle</span>
<span class="grant-meta-item deadline"><span class="icon">πŸ“…</span> Check grants.gov for current opportunities</span>
</div>
<div class="tags">
<span class="tag cfda">CFDA: 59.007</span>
<span class="tag type">Competitive</span>
</div>
</div>
<div class="grant-body">
<div class="grant-description">Provides management and technical assistance training to small businesses. Grants awarded to organizations that deliver training, counseling, and business development services.</div>
<div class="grant-details" id="details-5">
<div class="detail-section">
<div class="detail-label">Eligibility</div>
<div class="detail-content">Established organizations providing management and technical assistance to small businesses (NAICS 541611)</div>
</div>
<div class="detail-section">
<div class="detail-label">Matching Requirements</div>
<div class="detail-content">Varies</div>
</div>
<div class="detail-section">
<div class="detail-label">Why This Matches</div>
<div class="relevance-note">Directly relevant to NAICS 541611 - could position consulting firm as technical assistance provider to small businesses under SBA programs.</div>
</div>
</div>
</div>
<div class="grant-footer">
<button class="expand-btn" onclick="toggleDetails(5, this)">Show Details</button>
<a href="https://www.sba.gov/funding-programs/grants" target="_blank" class="grant-link">View Grant β†’</a>
</div>
</div>
<div class="grant-card"
data-agency="Georgia Council on Developmental Disabilities"
data-type="Competitive"
data-deadline=""
data-search="georgia council on developmental disabilities (gcdd) grants funds public and private nonprofits to develop comprehensive community systems supporting persons with developmental disabilities. focuses on systems change, capacity building, and best practices. georgia council on developmental disabilities">
<div class="grant-header">
<div class="grant-title">
<a href="https://gcdd.org/funding-opportunities" target="_blank">Georgia Council on Developmental Disabilities (GCDD) Grants</a>
</div>
<div class="grant-meta">
<span class="grant-meta-item agency"><span class="icon">πŸ›οΈ</span> Georgia Council on Developmental Disabilities</span>
<span class="grant-meta-item amount"><span class="icon">πŸ’°</span> Varies by NOFA - recent grants up to $75,000</span>
<span class="grant-meta-item deadline"><span class="icon">πŸ“…</span> Rolling - check GCDD website for current NOFAs</span>
</div>
<div class="tags">
<span class="tag type">Competitive</span>
</div>
</div>
<div class="grant-body">
<div class="grant-description">Funds public and private nonprofits to develop comprehensive community systems supporting persons with developmental disabilities. Focuses on systems change, capacity building, and best practices.</div>
<div class="grant-details" id="details-6">
<div class="detail-section">
<div class="detail-label">Eligibility</div>
<div class="detail-content">Public and private nonprofit entities; for-profit organizations for systems change projects</div>
</div>
<div class="detail-section">
<div class="detail-label">Matching Requirements</div>
<div class="detail-content">Varies by grant</div>
</div>
<div class="detail-section">
<div class="detail-label">Why This Matches</div>
<div class="relevance-note">May need consulting support for organizational development, program evaluation, and systems improvement projects.</div>
</div>
</div>
</div>
<div class="grant-footer">
<button class="expand-btn" onclick="toggleDetails(6, this)">Show Details</button>
<a href="https://gcdd.org/funding-opportunities" target="_blank" class="grant-link">View Grant β†’</a>
</div>
</div>
<div class="grant-card"
data-agency="Community Foundation for Greater Atlanta"
data-type="Competitive"
data-deadline=""
data-search="community foundation for greater atlanta - metropolitan atlanta arts grant supports independent arts organizations with operating budgets under $2 million. can fund capacity building and organizational strengthening. community foundation for greater atlanta">
<div class="grant-header">
<div class="grant-title">
<a href="https://cfgreateratlanta.org/grant-opportunities/" target="_blank">Community Foundation for Greater Atlanta - Metropolitan Atlanta Arts Grant</a>
</div>
<div class="grant-meta">
<span class="grant-meta-item agency"><span class="icon">πŸ›οΈ</span> Community Foundation for Greater Atlanta</span>
<span class="grant-meta-item amount"><span class="icon">πŸ’°</span> Varies</span>
<span class="grant-meta-item deadline"><span class="icon">πŸ“…</span> May 16, 2025 deadline for 2025 cycle</span>
</div>
<div class="tags">
<span class="tag type">Competitive</span>
</div>
</div>
<div class="grant-body">
<div class="grant-description">Supports independent arts organizations with operating budgets under $2 million. Can fund capacity building and organizational strengthening.</div>
<div class="grant-details" id="details-7">
<div class="detail-section">
<div class="detail-label">Eligibility</div>
<div class="detail-content">Nonprofit arts organizations in metro Atlanta with budgets under $2M</div>
</div>
<div class="detail-section">
<div class="detail-label">Matching Requirements</div>
<div class="detail-content">None specified</div>
</div>
<div class="detail-section">
<div class="detail-label">Why This Matches</div>
<div class="relevance-note">Arts nonprofits may seek consulting for strategic planning and organizational development.</div>
</div>
</div>
</div>
<div class="grant-footer">
<button class="expand-btn" onclick="toggleDetails(7, this)">Show Details</button>
<a href="https://cfgreateratlanta.org/grant-opportunities/" target="_blank" class="grant-link">View Grant β†’</a>
</div>
</div>
<div class="grant-card"
data-agency="Community Foundation for Greater Atlanta"
data-type="Competitive"
data-deadline="2025-07-03"
data-search="community foundation for greater atlanta - housing stability grant grants for eviction prevention, homelessness services, legal support for housing instability, and fair housing advocacy in clayton, cobb, dekalb, fulton, and gwinnett counties. community foundation for greater atlanta">
<div class="grant-header">
<div class="grant-title">
<a href="https://cfgreateratlanta.org/grant-opportunities/" target="_blank">Community Foundation for Greater Atlanta - Housing Stability Grant</a>
</div>
<div class="grant-meta">
<span class="grant-meta-item agency"><span class="icon">πŸ›οΈ</span> Community Foundation for Greater Atlanta</span>
<span class="grant-meta-item amount"><span class="icon">πŸ’°</span> $20,000 - $50,000</span>
<span class="grant-meta-item deadline"><span class="icon">πŸ“…</span> July 3, 2025</span>
</div>
<div class="tags">
<span class="tag type">Competitive</span>
</div>
</div>
<div class="grant-body">
<div class="grant-description">Grants for eviction prevention, homelessness services, legal support for housing instability, and fair housing advocacy in Clayton, Cobb, DeKalb, Fulton, and Gwinnett counties.</div>
<div class="grant-details" id="details-8">
<div class="detail-section">
<div class="detail-label">Eligibility</div>
<div class="detail-content">501(c)(3) nonprofits or organizations with fiscal sponsor in eligible counties</div>
</div>
<div class="detail-section">
<div class="detail-label">Matching Requirements</div>
<div class="detail-content">None specified</div>
</div>
<div class="detail-section">
<div class="detail-label">Why This Matches</div>
<div class="relevance-note">Housing-focused nonprofits may need consulting support for program development and capacity building.</div>
</div>
</div>
</div>
<div class="grant-footer">
<button class="expand-btn" onclick="toggleDetails(8, this)">Show Details</button>
<a href="https://cfgreateratlanta.org/grant-opportunities/" target="_blank" class="grant-link">View Grant β†’</a>
</div>
</div>
<div class="grant-card"
data-agency="Community Foundation for Greater Atlanta"
data-type="Competitive"
data-deadline=""
data-search="community foundation for greater atlanta - spark opportunity grants supports grassroots organizations in specific atlanta neighborhoods with capacity building and community impact projects. community foundation for greater atlanta">
<div class="grant-header">
<div class="grant-title">
<a href="https://cfgreateratlanta.org/spark-opportunity/" target="_blank">Community Foundation for Greater Atlanta - Spark Opportunity Grants</a>
</div>
<div class="grant-meta">
<span class="grant-meta-item agency"><span class="icon">πŸ›οΈ</span> Community Foundation for Greater Atlanta</span>
<span class="grant-meta-item amount"><span class="icon">πŸ’°</span> Up to $20,000</span>
<span class="grant-meta-item deadline"><span class="icon">πŸ“…</span> Rolling applications</span>
</div>
<div class="tags">
<span class="tag type">Competitive</span>
</div>
</div>
<div class="grant-body">
<div class="grant-description">Supports grassroots organizations in specific Atlanta neighborhoods with capacity building and community impact projects.</div>
<div class="grant-details" id="details-9">
<div class="detail-section">
<div class="detail-label">Eligibility</div>
<div class="detail-content">Grassroots organizations serving specific Atlanta neighborhoods</div>
</div>
<div class="detail-section">
<div class="detail-label">Matching Requirements</div>
<div class="detail-content">None specified</div>
</div>
<div class="detail-section">
<div class="detail-label">Why This Matches</div>
<div class="relevance-note">Small organizations seeking capacity building support may need consulting services.</div>
</div>
</div>
</div>
<div class="grant-footer">
<button class="expand-btn" onclick="toggleDetails(9, this)">Show Details</button>
<a href="https://cfgreateratlanta.org/spark-opportunity/" target="_blank" class="grant-link">View Grant β†’</a>
</div>
</div>
<div class="grant-card"
data-agency="Gwinnett County"
data-type="Competitive"
data-deadline=""
data-search="gwinnett county nonprofit capacity building grant (arpa) supports training, planning, equipment, and vehicles for nonprofits in gwinnett county, especially those with budgets under $250,000. gwinnett county">
<div class="grant-header">
<div class="grant-title">
<a href="https://www.gwinnettcounty.com/departments/financialservices/grants/americanrescueplanact/nonprofit-capacity-building-grant" target="_blank">Gwinnett County Nonprofit Capacity Building Grant (ARPA)</a>
</div>
<div class="grant-meta">
<span class="grant-meta-item agency"><span class="icon">πŸ›οΈ</span> Gwinnett County</span>
<span class="grant-meta-item amount"><span class="icon">πŸ’°</span> Varies</span>
<span class="grant-meta-item deadline"><span class="icon">πŸ“…</span> Last round August 2024 - next expected late 2025</span>
</div>
<div class="tags">
<span class="tag type">Competitive</span>
</div>
</div>
<div class="grant-body">
<div class="grant-description">Supports training, planning, equipment, and vehicles for nonprofits in Gwinnett County, especially those with budgets under $250,000.</div>
<div class="grant-details" id="details-10">
<div class="detail-section">
<div class="detail-label">Eligibility</div>
<div class="detail-content">Nonprofits in Gwinnett County, especially smaller organizations</div>
</div>
<div class="detail-section">
<div class="detail-label">Matching Requirements</div>
<div class="detail-content">None specified</div>
</div>
<div class="detail-section">
<div class="detail-label">Why This Matches</div>
<div class="relevance-note">Funds strategic planning, training, and organizational development - directly relevant to consulting services.</div>
</div>
</div>
</div>
<div class="grant-footer">
<button class="expand-btn" onclick="toggleDetails(10, this)">Show Details</button>
<a href="https://www.gwinnettcounty.com/departments/financialservices/grants/americanrescueplanact/nonprofit-capacity-building-grant" target="_blank" class="grant-link">View Grant β†’</a>
</div>
</div>
<div class="grant-card"
data-agency="Sapelo Foundation"
data-type="Competitive"
data-deadline=""
data-search="sapelo foundation - organization development fund provides quick-turn funding for consultant support, strategic planning, and other organizational development needs. sapelo foundation">
<div class="grant-header">
<div class="grant-title">
<a href="https://sapelofoundation.org/organization-development-fund/" target="_blank">Sapelo Foundation - Organization Development Fund</a>
</div>
<div class="grant-meta">
<span class="grant-meta-item agency"><span class="icon">πŸ›οΈ</span> Sapelo Foundation</span>
<span class="grant-meta-item amount"><span class="icon">πŸ’°</span> Up to $2,000</span>
<span class="grant-meta-item deadline"><span class="icon">πŸ“…</span> Monthly - quick and simple application</span>
</div>
<div class="tags">
<span class="tag type">Competitive</span>
</div>
</div>
<div class="grant-body">
<div class="grant-description">Provides quick-turn funding for consultant support, strategic planning, and other organizational development needs.</div>
<div class="grant-details" id="details-11">
<div class="detail-section">
<div class="detail-label">Eligibility</div>
<div class="detail-content">Nonprofits in Georgia</div>
</div>
<div class="detail-section">
<div class="detail-label">Matching Requirements</div>
<div class="detail-content">None specified</div>
</div>
<div class="detail-section">
<div class="detail-label">Why This Matches</div>
<div class="relevance-note">Directly funds consultant support and strategic planning services - highly relevant for consulting firm positioning.</div>
</div>
</div>
</div>
<div class="grant-footer">
<button class="expand-btn" onclick="toggleDetails(11, this)">Show Details</button>
<a href="https://sapelofoundation.org/organization-development-fund/" target="_blank" class="grant-link">View Grant β†’</a>
</div>
</div>
<div class="grant-card"
data-agency="Georgia Council for the Arts"
data-type="Competitive"
data-deadline=""
data-search="georgia council for the arts - project grant (capacity track) supports strategic planning, fundraising planning, or professional development for arts-focused organizations. georgia council for the arts">
<div class="grant-header">
<div class="grant-title">
<a href="https://gaarts.org/grants/project-grant/" target="_blank">Georgia Council for the Arts - Project Grant (Capacity Track)</a>
</div>
<div class="grant-meta">
<span class="grant-meta-item agency"><span class="icon">πŸ›οΈ</span> Georgia Council for the Arts</span>
<span class="grant-meta-item amount"><span class="icon">πŸ’°</span> $1,000 - $5,000</span>
<span class="grant-meta-item deadline"><span class="icon">πŸ“…</span> Guidelines reopen every February for next fiscal year</span>
</div>
<div class="tags">
<span class="tag cfda">CFDA: 45.025</span>
<span class="tag type">Competitive</span>
</div>
</div>
<div class="grant-body">
<div class="grant-description">Supports strategic planning, fundraising planning, or professional development for arts-focused organizations.</div>
<div class="grant-details" id="details-12">
<div class="detail-section">
<div class="detail-label">Eligibility</div>
<div class="detail-content">Arts-focused organizations in Georgia</div>
</div>
<div class="detail-section">
<div class="detail-label">Matching Requirements</div>
<div class="detail-content">50% match required</div>
</div>
<div class="detail-section">
<div class="detail-label">Why This Matches</div>
<div class="relevance-note">Funds strategic planning and professional development - relevant for consulting services to arts organizations.</div>
</div>
</div>
</div>
<div class="grant-footer">
<button class="expand-btn" onclick="toggleDetails(12, this)">Show Details</button>
<a href="https://gaarts.org/grants/project-grant/" target="_blank" class="grant-link">View Grant β†’</a>
</div>
</div>
<div class="grant-card"
data-agency="Community Foundation of Central Georgia"
data-type="Competitive"
data-deadline=""
data-search="community foundation of central georgia - nonprofit grants supports coaching, evaluation tools, software upgrades, and other capacity building activities for nonprofits. community foundation of central georgia">
<div class="grant-header">
<div class="grant-title">
<a href="https://cfcga.org/grant/nonprofit-grant-program/" target="_blank">Community Foundation of Central Georgia - Nonprofit Grants</a>
</div>
<div class="grant-meta">
<span class="grant-meta-item agency"><span class="icon">πŸ›οΈ</span> Community Foundation of Central Georgia</span>
<span class="grant-meta-item amount"><span class="icon">πŸ’°</span> $2,500 - $22,000</span>
<span class="grant-meta-item deadline"><span class="icon">πŸ“…</span> Twice yearly - spring and fall cycles</span>
</div>
<div class="tags">
<span class="tag type">Competitive</span>
</div>
</div>
<div class="grant-body">
<div class="grant-description">Supports coaching, evaluation tools, software upgrades, and other capacity building activities for nonprofits.</div>
<div class="grant-details" id="details-13">
<div class="detail-section">
<div class="detail-label">Eligibility</div>
<div class="detail-content">Nonprofits in Central Georgia</div>
</div>
<div class="detail-section">
<div class="detail-label">Matching Requirements</div>
<div class="detail-content">None specified</div>
</div>
<div class="detail-section">
<div class="detail-label">Why This Matches</div>
<div class="relevance-note">Funds consulting, coaching, and evaluation - directly relevant to consulting services.</div>
</div>
</div>
</div>
<div class="grant-footer">
<button class="expand-btn" onclick="toggleDetails(13, this)">Show Details</button>
<a href="https://cfcga.org/grant/nonprofit-grant-program/" target="_blank" class="grant-link">View Grant β†’</a>
</div>
</div>
<div class="grant-card"
data-agency="Betty &amp; Davis Fitzgerald Foundation"
data-type="Competitive"
data-deadline=""
data-search="betty &amp; davis fitzgerald foundation grants supports mental health and education initiatives in the atlanta area, including capacity building. betty &amp; davis fitzgerald foundation">
<div class="grant-header">
<div class="grant-title">
<a href="https://bettyanddavisfitzgerald.org/apply-for-a-grant/" target="_blank">Betty &amp; Davis Fitzgerald Foundation Grants</a>
</div>
<div class="grant-meta">
<span class="grant-meta-item agency"><span class="icon">πŸ›οΈ</span> Betty &amp; Davis Fitzgerald Foundation</span>
<span class="grant-meta-item amount"><span class="icon">πŸ’°</span> Around $30,000</span>
<span class="grant-meta-item deadline"><span class="icon">πŸ“…</span> Three cycles per year</span>
</div>
<div class="tags">
<span class="tag type">Competitive</span>
</div>
</div>
<div class="grant-body">
<div class="grant-description">Supports mental health and education initiatives in the Atlanta area, including capacity building.</div>
<div class="grant-details" id="details-14">
<div class="detail-section">
<div class="detail-label">Eligibility</div>
<div class="detail-content">Nonprofits in Atlanta area focused on mental health and education</div>
</div>
<div class="detail-section">
<div class="detail-label">Matching Requirements</div>
<div class="detail-content">None specified</div>
</div>
<div class="detail-section">
<div class="detail-label">Why This Matches</div>
<div class="relevance-note">Organizations may need consulting support for program development and organizational capacity.</div>
</div>
</div>
</div>
<div class="grant-footer">
<button class="expand-btn" onclick="toggleDetails(14, this)">Show Details</button>
<a href="https://bettyanddavisfitzgerald.org/apply-for-a-grant/" target="_blank" class="grant-link">View Grant β†’</a>
</div>
</div>
<div class="grant-card"
data-agency="U.S. Department of Housing and Urban Development"
data-type="Competitive"
data-deadline=""
data-search="hud section 4 capacity building for community development and affordable housing enhances capacity of community development corporations (cdcs) and community housing development organizations (chdos) through training, education, support, and technical/administrative assistance. u.s. department of housing and urban development">
<div class="grant-header">
<div class="grant-title">
<a href="https://www.hudexchange.info/programs/section-4-capacity-building/" target="_blank">HUD Section 4 Capacity Building for Community Development and Affordable Housing</a>
</div>
<div class="grant-meta">
<span class="grant-meta-item agency"><span class="icon">πŸ›οΈ</span> U.S. Department of Housing and Urban Development</span>
<span class="grant-meta-item amount"><span class="icon">πŸ’°</span> Varies - FY2024 approximately $43 million available</span>
<span class="grant-meta-item deadline"><span class="icon">πŸ“…</span> Check HUD and grants.gov for current opportunities</span>
</div>
<div class="tags">
<span class="tag cfda">CFDA: 14.252</span>
<span class="tag type">Competitive</span>
</div>
</div>
<div class="grant-body">
<div class="grant-description">Enhances capacity of community development corporations (CDCs) and community housing development organizations (CHDOs) through training, education, support, and technical/administrative assistance.</div>
<div class="grant-details" id="details-15">
<div class="detail-section">
<div class="detail-label">Eligibility</div>
<div class="detail-content">National intermediary organizations that serve CDCs and CHDOs</div>
</div>
<div class="detail-section">
<div class="detail-label">Matching Requirements</div>
<div class="detail-content">Varies</div>
</div>
<div class="detail-section">
<div class="detail-label">Why This Matches</div>
<div class="relevance-note">Funds training, technical assistance, and administrative capacity building - relevant for consulting firms providing TA to housing organizations.</div>
</div>
</div>
</div>
<div class="grant-footer">
<button class="expand-btn" onclick="toggleDetails(15, this)">Show Details</button>
<a href="https://www.hudexchange.info/programs/section-4-capacity-building/" target="_blank" class="grant-link">View Grant β†’</a>
</div>
</div>
<div class="grant-card"
data-agency="U.S. Economic Development Administration"
data-type="Competitive"
data-deadline=""
data-search="eda local technical assistance program helps fill knowledge and information gaps that prevent leaders in public and nonprofit sectors from implementing economic development strategies. supports feasibility studies, impact analyses, and planning. u.s. economic development administration">
<div class="grant-header">
<div class="grant-title">
<a href="https://www.eda.gov/funding/programs/local-technical-assistance" target="_blank">EDA Local Technical Assistance Program</a>
</div>
<div class="grant-meta">
<span class="grant-meta-item agency"><span class="icon">πŸ›οΈ</span> U.S. Economic Development Administration</span>
<span class="grant-meta-item amount"><span class="icon">πŸ’°</span> Varies - typically $100,000 to $400,000</span>
<span class="grant-meta-item deadline"><span class="icon">πŸ“…</span> Rolling - check EDA for current opportunities</span>
</div>
<div class="tags">
<span class="tag cfda">CFDA: 11.303</span>
<span class="tag type">Competitive</span>
</div>
</div>
<div class="grant-body">
<div class="grant-description">Helps fill knowledge and information gaps that prevent leaders in public and nonprofit sectors from implementing economic development strategies. Supports feasibility studies, impact analyses, and planning.</div>
<div class="grant-details" id="details-16">
<div class="detail-section">
<div class="detail-label">Eligibility</div>
<div class="detail-content">State and local governments, nonprofits, Indian tribes, Economic Development Districts</div>
</div>
<div class="detail-section">
<div class="detail-label">Matching Requirements</div>
<div class="detail-content">Typically 50% match required</div>
</div>
<div class="detail-section">
<div class="detail-label">Why This Matches</div>
<div class="relevance-note">Directly relevant for providing technical assistance, planning, and strategic analysis services to economic development organizations.</div>
</div>
</div>
</div>
<div class="grant-footer">
<button class="expand-btn" onclick="toggleDetails(16, this)">Show Details</button>
<a href="https://www.eda.gov/funding/programs/local-technical-assistance" target="_blank" class="grant-link">View Grant β†’</a>
</div>
</div>
<div class="grant-card"
data-agency="USDA Rural Development"
data-type="Competitive"
data-deadline=""
data-search="usda rural community development initiative (rcdi) grants helps nonprofit housing and community development organizations, low-income rural communities, and federally recognized tribes provide technical assistance to develop capacity. usda rural development">
<div class="grant-header">
<div class="grant-title">
<a href="https://www.rd.usda.gov/programs-services/community-facilities/rural-community-development-initiative-grants" target="_blank">USDA Rural Community Development Initiative (RCDI) Grants</a>
</div>
<div class="grant-meta">
<span class="grant-meta-item agency"><span class="icon">πŸ›οΈ</span> USDA Rural Development</span>
<span class="grant-meta-item amount"><span class="icon">πŸ’°</span> Up to $250,000</span>
<span class="grant-meta-item deadline"><span class="icon">πŸ“…</span> Annual - check USDA Rural Development for current NOFA</span>
</div>
<div class="tags">
<span class="tag cfda">CFDA: 10.446</span>
<span class="tag type">Competitive</span>
</div>
</div>
<div class="grant-body">
<div class="grant-description">Helps nonprofit housing and community development organizations, low-income rural communities, and federally recognized tribes provide technical assistance to develop capacity.</div>
<div class="grant-details" id="details-17">
<div class="detail-section">
<div class="detail-label">Eligibility</div>
<div class="detail-content">Public bodies, nonprofit organizations, private entities providing technical assistance to rural communities</div>
</div>
<div class="detail-section">
<div class="detail-label">Matching Requirements</div>
<div class="detail-content">1:1 match required</div>
</div>
<div class="detail-section">
<div class="detail-label">Why This Matches</div>
<div class="relevance-note">Funds technical assistance, training, and capacity building for rural organizations - highly relevant for consulting services in rural Georgia.</div>
</div>
</div>
</div>
<div class="grant-footer">
<button class="expand-btn" onclick="toggleDetails(17, this)">Show Details</button>
<a href="https://www.rd.usda.gov/programs-services/community-facilities/rural-community-development-initiative-grants" target="_blank" class="grant-link">View Grant β†’</a>
</div>
</div>
<div class="grant-card"
data-agency="Peace Development Fund"
data-type="Competitive"
data-deadline="2001-01-31"
data-search="peace development fund - community organizing grants supports grassroots groups in georgia for youth-led organizing or movement-building for justice. peace development fund">
<div class="grant-header">
<div class="grant-title">
<a href="https://www.peacedevelopmentfund.org/wp-content/uploads/2025/10/COG-Grant-Guidelines-Nov-2025.pdf" target="_blank">Peace Development Fund - Community Organizing Grants</a>
</div>
<div class="grant-meta">
<span class="grant-meta-item agency"><span class="icon">πŸ›οΈ</span> Peace Development Fund</span>
<span class="grant-meta-item amount"><span class="icon">πŸ’°</span> Varies</span>
<span class="grant-meta-item deadline"><span class="icon">πŸ“…</span> January 31 (check current cycle)</span>
</div>
<div class="tags">
<span class="tag type">Competitive</span>
</div>
</div>
<div class="grant-body">
<div class="grant-description">Supports grassroots groups in Georgia for youth-led organizing or movement-building for justice.</div>
<div class="grant-details" id="details-18">
<div class="detail-section">
<div class="detail-label">Eligibility</div>
<div class="detail-content">Georgia-based grassroots groups</div>
</div>
<div class="detail-section">
<div class="detail-label">Matching Requirements</div>
<div class="detail-content">None specified</div>
</div>
<div class="detail-section">
<div class="detail-label">Why This Matches</div>
<div class="relevance-note">Grassroots organizations may need consulting support for organizational development and strategic planning.</div>
</div>
</div>
</div>
<div class="grant-footer">
<button class="expand-btn" onclick="toggleDetails(18, this)">Show Details</button>
<a href="https://www.peacedevelopmentfund.org/wp-content/uploads/2025/10/COG-Grant-Guidelines-Nov-2025.pdf" target="_blank" class="grant-link">View Grant β†’</a>
</div>
</div>
<div class="grant-card"
data-agency="Jesse Parker Williams Foundation"
data-type="Competitive"
data-deadline=""
data-search="jesse parker williams foundation grants supports programmatic or operating needs, organizational capacity building, and initiatives to improve systems in georgia. jesse parker williams foundation">
<div class="grant-header">
<div class="grant-title">
<a href="https://www.jpwf.org/apply" target="_blank">Jesse Parker Williams Foundation Grants</a>
</div>
<div class="grant-meta">
<span class="grant-meta-item agency"><span class="icon">πŸ›οΈ</span> Jesse Parker Williams Foundation</span>
<span class="grant-meta-item amount"><span class="icon">πŸ’°</span> Varies</span>
<span class="grant-meta-item deadline"><span class="icon">πŸ“…</span> Check foundation website for current deadlines</span>
</div>
<div class="tags">
<span class="tag type">Competitive</span>
</div>
</div>
<div class="grant-body">
<div class="grant-description">Supports programmatic or operating needs, organizational capacity building, and initiatives to improve systems in Georgia.</div>
<div class="grant-details" id="details-19">
<div class="detail-section">
<div class="detail-label">Eligibility</div>
<div class="detail-content">Nonprofits in Georgia</div>
</div>
<div class="detail-section">
<div class="detail-label">Matching Requirements</div>
<div class="detail-content">None specified</div>
</div>
<div class="detail-section">
<div class="detail-label">Why This Matches</div>
<div class="relevance-note">Explicitly funds organizational capacity building - relevant for strategic planning and consulting services.</div>
</div>
</div>
</div>
<div class="grant-footer">
<button class="expand-btn" onclick="toggleDetails(19, this)">Show Details</button>
<a href="https://www.jpwf.org/apply" target="_blank" class="grant-link">View Grant β†’</a>
</div>
</div>
<div class="grant-card"
data-agency="U.S. Environmental Protection Agency"
data-type="Technical Assistance"
data-deadline="2028-01-01"
data-search="epa thriving communities technical assistance centers program provides training and support to community-based organizations for grant writing, proposal development, and grant management. region 4 tctac serves georgia. u.s. environmental protection agency">
<div class="grant-header">
<div class="grant-title">
<a href="https://www.epa.gov/inflation-reduction-act/thriving-communities-technical-assistance-centers-program" target="_blank">EPA Thriving Communities Technical Assistance Centers Program</a>
</div>
<div class="grant-meta">
<span class="grant-meta-item agency"><span class="icon">πŸ›οΈ</span> U.S. Environmental Protection Agency</span>
<span class="grant-meta-item amount"><span class="icon">πŸ’°</span> TA provided through regional centers</span>
<span class="grant-meta-item deadline"><span class="icon">πŸ“…</span> Services available through 2028</span>
</div>
<div class="tags">
<span class="tag type">Technical Assistance</span>
</div>
</div>
<div class="grant-body">
<div class="grant-description">Provides training and support to community-based organizations for grant writing, proposal development, and grant management. Region 4 TCTAC serves Georgia.</div>
<div class="grant-details" id="details-20">
<div class="detail-section">
<div class="detail-label">Eligibility</div>
<div class="detail-content">Community-based organizations in EPA Region 4 including Georgia</div>
</div>
<div class="detail-section">
<div class="detail-label">Matching Requirements</div>
<div class="detail-content">None - TA is provided directly</div>
</div>
<div class="detail-section">
<div class="detail-label">Why This Matches</div>
<div class="relevance-note">Organizations seeking EPA grants may need consulting support for applications and program management.</div>
</div>
</div>
</div>
<div class="grant-footer">
<button class="expand-btn" onclick="toggleDetails(20, this)">Show Details</button>
<a href="https://www.epa.gov/inflation-reduction-act/thriving-communities-technical-assistance-centers-program" target="_blank" class="grant-link">View Grant β†’</a>
</div>
</div>
<div class="grant-card"
data-agency="Georgia Governor's Office of Planning and Budget / Georgia Technology Authority"
data-type="Competitive"
data-deadline=""
data-search="georgia broadband infrastructure grants funds broadband infrastructure projects to provide unserved or underserved locations with new or expanded broadband access with minimum 100 mbps download/upload speeds. georgia governor's office of planning and budget / georgia technology authority">
<div class="grant-header">
<div class="grant-title">
<a href="https://gta.georgia.gov/policies-and-programs/broadband/funding" target="_blank">Georgia Broadband Infrastructure Grants</a>
</div>
<div class="grant-meta">
<span class="grant-meta-item agency"><span class="icon">πŸ›οΈ</span> Georgia Governor's Office of Planning and Budget / Georgia Technology Authority</span>
<span class="grant-meta-item amount"><span class="icon">πŸ’°</span> $1.3 billion total program (via BEAD)</span>
<span class="grant-meta-item deadline"><span class="icon">πŸ“…</span> Check GTA and OPB for current application windows</span>
</div>
<div class="tags">
<span class="tag type">Competitive</span>
</div>
</div>
<div class="grant-body">
<div class="grant-description">Funds broadband infrastructure projects to provide unserved or underserved locations with new or expanded broadband access with minimum 100 Mbps download/upload speeds.</div>
<div class="grant-details" id="details-21">
<div class="detail-section">
<div class="detail-label">Eligibility</div>
<div class="detail-content">Internet service providers, local governments, and eligible entities in Georgia</div>
</div>
<div class="detail-section">
<div class="detail-label">Matching Requirements</div>
<div class="detail-content">Varies by program</div>
</div>
<div class="detail-section">
<div class="detail-label">Why This Matches</div>
<div class="relevance-note">Large infrastructure projects may need consulting support for project planning, grant administration, and compliance.</div>
</div>
</div>
</div>
<div class="grant-footer">
<button class="expand-btn" onclick="toggleDetails(21, this)">Show Details</button>
<a href="https://gta.georgia.gov/policies-and-programs/broadband/funding" target="_blank" class="grant-link">View Grant β†’</a>
</div>
</div>
</div>
<div class="generated">
Searched 1/2/2026, 6:39:15 PM β€’ Generated 1/2/2026, 6:42:43 PM
</div>
</div>
<script>
function toggleDetails(idx, btn) {
const details = document.getElementById('details-' + idx);
const expanded = details.classList.toggle('expanded');
btn.textContent = expanded ? 'Hide Details' : 'Show Details';
}
function applyFilters() {
const search = document.getElementById('search-filter').value.toLowerCase();
const agency = document.getElementById('agency-filter').value;
const type = document.getElementById('type-filter').value;
let visibleCount = 0;
document.querySelectorAll('.grant-card').forEach(card => {
let visible = true;
if (search && !card.dataset.search.includes(search)) {
visible = false;
}
if (visible && agency && card.dataset.agency !== agency) {
visible = false;
}
if (visible && type && card.dataset.type !== type) {
visible = false;
}
card.classList.toggle('hidden', !visible);
if (visible) visibleCount++;
});
document.getElementById('visible-count').textContent = visibleCount;
document.querySelector('.no-results').classList.toggle('visible', visibleCount === 0);
}
function clearFilters() {
document.getElementById('search-filter').value = '';
document.getElementById('agency-filter').value = '';
document.getElementById('type-filter').value = '';
applyFilters();
}
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment