{"id":191,"date":"2026-01-14T06:52:18","date_gmt":"2026-01-14T06:52:18","guid":{"rendered":"https:\/\/cre8ivedge.net\/scfoundation\/resources\/"},"modified":"2026-02-26T13:29:28","modified_gmt":"2026-02-26T13:29:28","slug":"resources","status":"publish","type":"page","link":"https:\/\/cre8ivedge.net\/scfoundation\/media-center\/resources\/","title":{"rendered":"Resources"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"191\" class=\"elementor elementor-191\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e84d30d e-con-full e-flex e-con e-parent\" data-id=\"e84d30d\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-459ad91 e-con-full e-flex e-con e-child\" data-id=\"459ad91\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-273981f elementor-widget elementor-widget-text-editor\" data-id=\"273981f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>This hub is your definitive source for the measurable impact of the Strathmore University Foundation.<br \/>Explore our latest news releases, download official reports and financial statements, and discover the inspiring stories of the students and partners shaping Africa&#8217;s future.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-75d1e8d e-con-full e-flex e-con e-parent\" data-id=\"75d1e8d\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-2454ff0 e-con-full e-flex e-con e-child\" data-id=\"2454ff0\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-085526b e-con-full e-flex e-con e-child\" data-id=\"085526b\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-df8ec9b elementor-widget elementor-widget-html\" data-id=\"df8ec9b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<script>\r\n(function () {\r\n\r\n  \/* ===== CONFIGURATION ===== *\/\r\n  var parentCategory = (typeof scfAjax !== 'undefined' && scfAjax.parent)\r\n                       ? scfAjax.parent\r\n                       : 'resources';\r\n\r\n  console.log('[SCF] Filter system loaded');\r\n  console.log('[SCF] scfAjax available:', typeof scfAjax !== 'undefined' ? scfAjax : 'NOT FOUND');\r\n  console.log('[SCF] Parent category:', parentCategory);\r\n\r\n  \/* ===== FIND THE GRID CONTAINER ===== *\/\r\n  \/* Try multiple selectors Elementor uses across versions *\/\r\n  var GRID_SELECTORS = [\r\n    '.elementor-loop-container',\r\n    '.elementor-grid',\r\n    '.e-loop-grid .elementor-widget-container',\r\n    '[data-widget_type=\"loop-grid.default\"] .elementor-widget-container',\r\n    '.elementor-widget-loop-grid .elementor-widget-container',\r\n    '.elementor-element .e-con-inner .elementor-loop-container',\r\n    '.elementor-posts-container',\r\n    '.elementor-posts',\r\n  ];\r\n\r\n  function findGrid() {\r\n    for (var i = 0; i < GRID_SELECTORS.length; i++) {\r\n      var el = document.querySelector(GRID_SELECTORS[i]);\r\n      if (el) {\r\n        console.log('[SCF] Grid found with selector:', GRID_SELECTORS[i]);\r\n        return el;\r\n      }\r\n    }\r\n    \/* Last resort: log ALL elementor widget containers so user can tell us *\/\r\n    console.warn('[SCF] Grid NOT found with any known selector.');\r\n    console.log('[SCF] Dumping all Elementor widget containers on this page:');\r\n    document.querySelectorAll('[class*=\"elementor\"]').forEach(function (el) {\r\n      if (el.children.length > 2) {\r\n        console.log('[SCF]   -', el.tagName, el.className.substring(0, 120));\r\n      }\r\n    });\r\n    return null;\r\n  }\r\n\r\n  \/* ===== FILTER STATE ===== *\/\r\n  var filters = { subcategory: '', year: '', search: '', paged: 1 };\r\n\r\n  window.scfApplyFilter = function (key, value) {\r\n    console.log('[SCF] Filter applied:', key, '=', value);\r\n    if (filters.hasOwnProperty(key)) {\r\n      filters[key] = value;\r\n    }\r\n    filters.paged = 1;\r\n    scfFetchPosts();\r\n    scfUpdateActiveFilters();\r\n    scfUpdateUI();\r\n  };\r\n\r\n  \/* ===== AJAX FETCH ===== *\/\r\n  function scfFetchPosts() {\r\n    var grid = findGrid();\r\n\r\n    if (!grid) {\r\n      console.error('[SCF] Cannot filter: grid container not found on this page.');\r\n      console.error('[SCF] Open browser DevTools > Elements tab, find your post list,');\r\n      console.error('[SCF] right-click it > Copy > Copy selector, and share it.');\r\n      return;\r\n    }\r\n\r\n    grid.style.opacity = '0.5';\r\n    grid.style.pointerEvents = 'none';\r\n\r\n    var data = new FormData();\r\n    data.append('action', 'scf_filter_posts');\r\n    data.append('parent_category', parentCategory);\r\n    data.append('subcategory', filters.subcategory);\r\n    data.append('year', filters.year);\r\n    data.append('search', filters.search);\r\n    data.append('paged', filters.paged);\r\n\r\n    var ajaxUrl = (typeof scfAjax !== 'undefined') ? scfAjax.url : '\/wp-admin\/admin-ajax.php';\r\n    console.log('[SCF] Sending AJAX to:', ajaxUrl);\r\n    console.log('[SCF] Filters:', JSON.stringify(filters));\r\n\r\n    fetch(ajaxUrl, {\r\n      method: 'POST',\r\n      body: data,\r\n      credentials: 'same-origin'\r\n    })\r\n    .then(function (res) {\r\n      console.log('[SCF] Response status:', res.status);\r\n      return res.json();\r\n    })\r\n    .then(function (response) {\r\n      console.log('[SCF] Response data:', response);\r\n\r\n      if (response.success) {\r\n        console.log('[SCF] Found', response.data.found, 'posts,', response.data.total_pages, 'pages');\r\n        grid.innerHTML = response.data.html;\r\n\r\n        var countEl = document.querySelector('.scf-result-count');\r\n        if (countEl) {\r\n          countEl.textContent = response.data.found + ' results';\r\n        }\r\n      } else {\r\n        console.warn('[SCF] AJAX returned error:', response.data);\r\n        grid.innerHTML = '<div class=\"scf-no-results\">No posts found matching your filters.<\/div>';\r\n      }\r\n\r\n      grid.style.opacity = '1';\r\n      grid.style.pointerEvents = '';\r\n    })\r\n    .catch(function (err) {\r\n      console.error('[SCF] AJAX fetch failed:', err);\r\n      grid.innerHTML = '<div class=\"scf-no-results\">Something went wrong. Please try again.<\/div>';\r\n      grid.style.opacity = '1';\r\n      grid.style.pointerEvents = '';\r\n    });\r\n  }\r\n\r\n  \/* ===== UI UPDATES ===== *\/\r\n  function scfUpdateUI() {\r\n    document.querySelectorAll('.scf-year-link').forEach(function (link) {\r\n      if (link.dataset.year === filters.year) {\r\n        link.classList.add('active');\r\n      } else {\r\n        link.classList.remove('active');\r\n      }\r\n    });\r\n\r\n    var catSelect = document.querySelector('.scf-category-select');\r\n    if (catSelect) catSelect.value = filters.subcategory;\r\n\r\n    var searchInput = document.querySelector('.scf-search-input');\r\n    if (searchInput && !filters.search) searchInput.value = '';\r\n  }\r\n\r\n  function scfUpdateActiveFilters() {\r\n    var container = document.getElementById('scfActiveFilters');\r\n    if (!container) return;\r\n\r\n    var html = '';\r\n    var hasFilters = false;\r\n\r\n    if (filters.search) {\r\n      hasFilters = true;\r\n      html += '<span class=\"scf-filter-tag\">Search: &ldquo;' + filters.search +\r\n        '&rdquo; <span class=\"remove\" onclick=\"scfApplyFilter(\\'search\\', \\'\\')\">&times;<\/span><\/span>';\r\n    }\r\n    if (filters.subcategory) {\r\n      hasFilters = true;\r\n      var label = filters.subcategory.replace(\/-\/g, ' ');\r\n      label = label.charAt(0).toUpperCase() + label.slice(1);\r\n      html += '<span class=\"scf-filter-tag\">Category: ' + label +\r\n        ' <span class=\"remove\" onclick=\"scfApplyFilter(\\'subcategory\\', \\'\\')\">&times;<\/span><\/span>';\r\n    }\r\n    if (filters.year) {\r\n      hasFilters = true;\r\n      html += '<span class=\"scf-filter-tag\">Year: ' + filters.year +\r\n        ' <span class=\"remove\" onclick=\"scfApplyFilter(\\'year\\', \\'\\')\">&times;<\/span><\/span>';\r\n    }\r\n    if (hasFilters) {\r\n      html += '<span class=\"scf-clear-all\" onclick=\"scfClearAll()\">Clear All<\/span>';\r\n    }\r\n    container.innerHTML = html;\r\n  }\r\n\r\n  window.scfClearAll = function () {\r\n    filters.subcategory = '';\r\n    filters.year = '';\r\n    filters.search = '';\r\n    filters.paged = 1;\r\n    scfFetchPosts();\r\n    scfUpdateActiveFilters();\r\n    scfUpdateUI();\r\n    var searchInput = document.querySelector('.scf-search-input');\r\n    if (searchInput) searchInput.value = '';\r\n  };\r\n\r\n})();\r\n<\/script>\r\n\r\n<style>\r\n   .scf-search-form { display:flex; align-items:center; gap:0; max-width:100%; }\r\n  .scf-search-input { flex:1; padding:14px 18px !important; border: none !important; border-bottom:0.25px solid #ddd !important; font-size:14px; outline:none; background-color:#9395981A; color:#333; border-radius: 10px 0 0 10px  !important }\r\n  .scf-search-input::placeholder { color:#999;font-family: \"Outfit\", sans-serif; font-weight: 500; font-size: 16px; }\r\n  .scf-search-btn { background:#00205F; border:none; cursor:pointer; padding: 16px !important; font-size: 18px; display:flex; align-items: center; border-radius: 0 12px 12px 0; padding:10px 10px; color:#fff;margin-left: -2px; }\r\n  .scf-category-select { padding:8px 12px; border:1px solid #ddd; border-radius:4px; font-size:14px; color:#333; background:#fff; cursor:pointer; min-width:180px; }\r\n  .scf-year-filter { display:flex; gap:8px; flex-wrap:wrap; align-items:center; }\r\n  .scf-year-link { display:inline-block; padding:6px 4vw; border:1px solid #ddd; border-radius:20px; text-decoration:none; color:#333; font-size:0.9vw; transition:all 0.2s ease; cursor:pointer; background:#fff; }\r\n  .scf-year-link:hover { background:#2C5AA0; color:#fff; border-color:#2C5AA0; }\r\n  .scf-year-link.active { background:#2C5AA0; color:#fff; border-color:#2C5AA0; font-weight:600; }\r\n  .scf-active-filters { display:flex; gap:8px; flex-wrap:wrap; align-items:center; margin-top:8px; font-size:13px; }\r\n  .scf-filter-tag { display:inline-flex; align-items:center; gap:4px; padding:4px 10px; background:#f0f4fa; border-radius:12px; color:#2C5AA0; font-size:12px; }\r\n  .scf-filter-tag .remove { cursor:pointer; font-weight:bold; margin-left:4px; color:#999; }\r\n  .scf-filter-tag .remove:hover { color:#c00; }\r\n  .scf-clear-all { color:#c00; text-decoration:underline; cursor:pointer; font-size:12px; }\r\n\r\n  \/* --- AJAX post cards (match your Elementor loop template style) --- *\/\r\n  .scf-post-card { border-bottom:1px solid #eee; padding:16px 0; }\r\n  .scf-post-link { display:flex; gap:16px; text-decoration:none; color:inherit; align-items:flex-start; }\r\n  .scf-post-thumb { flex-shrink:0; width:120px; height:90px; overflow:hidden; border-radius:6px; }\r\n  .scf-post-thumb img { width:100%; height:100%; object-fit:cover; }\r\n  .scf-post-info { flex:1; min-width:0; }\r\n  .scf-post-title { font-size:16px; font-weight:600; color:#1a1a1a; margin:0 0 6px 0; line-height:1.3; }\r\n  .scf-post-excerpt { font-size:13px; color:#666; margin:0 0 6px 0; line-height:1.5; }\r\n  .scf-post-date { font-size:12px; color:#999; }\r\n  .scf-post-link:hover .scf-post-title { color:#2C5AA0; }\r\n  .scf-no-results { padding:40px 20px; text-align:center; color:#666; font-size:15px; }\r\n  .scf-result-count { font-size:13px; color:#666; margin-bottom:8px; }\r\n  \r\n   \/* =========================\r\n   MOBILE RESPONSIVE STYLES\r\n========================= *\/\r\n@media (max-width: 768px) {\r\n\r\n\r\n\r\n  .scf-category-select {\r\n    width: 100%;\r\n    min-width: 100%;\r\n  }\r\n\r\n  \/* Year filters *\/\r\n  .scf-year-filter {\r\n    justify-content: flex-start;\r\n    gap: 6px;\r\n  }\r\n\r\n  .scf-year-link {\r\n    font-size: 13px;  \r\n    padding: 8px 14px;\r\n    flex: 1 1 auto; \r\n    text-align: center;\r\n  }\r\n\r\n  \/* Active filters *\/\r\n  .scf-active-filters {\r\n    font-size: 12px;\r\n  }\r\n\r\n  .scf-filter-tag {\r\n    font-size: 11px;\r\n  }\r\n\r\n  \/* Post cards stack better *\/\r\n  .scf-post-link {\r\n    flex-direction: column;\r\n  }\r\n\r\n  .scf-post-thumb {\r\n    width: 100%;\r\n    height: 180px;\r\n  }\r\n\r\n  .scf-post-title {\r\n    font-size: 15px;\r\n  }\r\n\r\n  .scf-post-excerpt {\r\n    font-size: 13px;\r\n  }\r\n\r\n}\r\n  \r\n  \r\n<\/style>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-5fc6230 elementor-widget elementor-widget-html\" data-id=\"5fc6230\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<form class=\"scf-search-form\"\r\n      onsubmit=\"event.preventDefault(); scfApplyFilter('search', this.querySelector('.scf-search-input').value);\">\r\n  <input type=\"search\"\r\n         class=\"scf-search-input\"\r\n         placeholder=\"Search Resources...\"\r\n         aria-label=\"Search Resources\" \/>\r\n  <button type=\"submit\" class=\"scf-search-btn\" aria-label=\"Search\">\r\n    <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"18\" height=\"18\" viewBox=\"0 0 24 24\"\r\n         fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\">\r\n      <circle cx=\"11\" cy=\"11\" r=\"8\"><\/circle>\r\n      <line x1=\"21\" y1=\"21\" x2=\"16.65\" y2=\"16.65\"><\/line>\r\n    <\/svg>\r\n  <\/button>\r\n<\/form>\r\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-85c9469 e-con-full e-flex e-con e-child\" data-id=\"85c9469\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-fb6cc57 e-con-full e-flex e-con e-child\" data-id=\"fb6cc57\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b867969 elementor-widget elementor-widget-heading\" data-id=\"b867969\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h5 class=\"elementor-heading-title elementor-size-default\">Categories<\/h5>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-187c9c1 elementor-widget elementor-widget-shortcode\" data-id=\"187c9c1\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"shortcode.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-shortcode\"><select class=\"scf-category-select\" onchange=\"scfApplyFilter('subcategory', this.value)\" aria-label=\"Filter by category\"><option value=\"\">All Categories<\/option><option value=\"finances\">finances<\/option><option value=\"financial-reports\">financial reports<\/option><option value=\"reports\">reports<\/option><\/select><\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-61377b4 elementor-widget elementor-widget-heading\" data-id=\"61377b4\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h5 class=\"elementor-heading-title elementor-size-default\">Date<\/h5>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-cb97316 elementor-widget elementor-widget-html\" data-id=\"cb97316\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t\r\n<div class=\"scf-year-filter\" style=\"display: flex; justify-content: space-around;\">\r\n  <a class=\"scf-year-link\" href=\"#\" data-year=\"\" onclick=\"event.preventDefault(); scfApplyFilter('year', '')\">All Years<\/a>\r\n  <a class=\"scf-year-link\" href=\"#\" data-year=\"2026\" onclick=\"event.preventDefault(); scfApplyFilter('year', '2026')\">2026<\/a>\r\n  <a class=\"scf-year-link\" href=\"#\" data-year=\"2025\" onclick=\"event.preventDefault(); scfApplyFilter('year', '2025')\">2025<\/a>\r\n  <a class=\"scf-year-link\" href=\"#\" data-year=\"2024\" onclick=\"event.preventDefault(); scfApplyFilter('year', '2024')\">2024<\/a>\r\n  <a class=\"scf-year-link\" href=\"#\" data-year=\"2023\" onclick=\"event.preventDefault(); scfApplyFilter('year', '2023')\">2023<\/a>\r\n  <a class=\"scf-year-link\" href=\"#\" data-year=\"2022\" onclick=\"event.preventDefault(); scfApplyFilter('year', '2022')\">2022<\/a>\r\n<\/div>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-5fcafaa elementor-widget elementor-widget-html\" data-id=\"5fcafaa\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<div class=\"scf-active-filters\" id=\"scfActiveFilters\"><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-9ee3be6 e-con-full e-flex e-con e-child\" data-id=\"9ee3be6\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-19f4339 elementor-grid-1 elementor-grid-tablet-1 elementor-grid-mobile-1 elementor-widget elementor-widget-loop-grid\" data-id=\"19f4339\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;template_id&quot;:&quot;2959&quot;,&quot;columns&quot;:1,&quot;columns_tablet&quot;:1,&quot;_skin&quot;:&quot;post&quot;,&quot;columns_mobile&quot;:&quot;1&quot;,&quot;edit_handle_selector&quot;:&quot;[data-elementor-type=\\&quot;loop-item\\&quot;]&quot;,&quot;row_gap&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;row_gap_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;row_gap_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"loop-grid.post\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"e-loop-nothing-found-message\">\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-9df7a57 elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile e-flex e-con-boxed e-con e-parent\" data-id=\"9df7a57\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-3048a26 e-con-full e-flex e-con e-child\" data-id=\"3048a26\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-f2eb89c elementor-widget elementor-widget-ucaddon_ue_listing_carousel\" data-id=\"f2eb89c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"ucaddon_ue_listing_carousel.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\n<!-- start Loop Carousel -->\n\t\t<link id='font-awesome-css' href='https:\/\/cre8ivedge.net\/scfoundation\/wp-content\/plugins\/unlimited-elements-for-elementor-premium\/assets_libraries\/font-awesome6\/fontawesome-all.min.css' type='text\/css' rel='stylesheet' >\n\t\t<link id='font-awesome-4-shim-css' href='https:\/\/cre8ivedge.net\/scfoundation\/wp-content\/plugins\/unlimited-elements-for-elementor-premium\/assets_libraries\/font-awesome6\/fontawesome-v4-shims.min.css' type='text\/css' rel='stylesheet' >\n\t\t<link id='owl-carousel-css' href='https:\/\/cre8ivedge.net\/scfoundation\/wp-content\/plugins\/unlimited-elements-for-elementor-premium\/assets_libraries\/owl-carousel-new\/assets\/owl.carousel.css' type='text\/css' rel='stylesheet' >\n\n<style>\/* widget: Loop Carousel *\/\n\n#uc_ue_listing_carousel_elementor_f2eb89c *{\n  box-sizing:border-box;\n}\n#uc_ue_listing_carousel_elementor_f2eb89c{\n  display: none;\n  position:relative;\n  min-height:1px;\n}\n#uc_ue_listing_carousel_elementor_f2eb89c .owl-item {\n  -webkit-backface-visibility: hidden;\n  -webkit-transform: translateZ(0) scale(1.0, 1.0);\n}\n\n\t\n\n#uc_ue_listing_carousel_elementor_f2eb89c .uc_carousel_item{\n  overflow:hidden;\n}\n\n\n\/* Layout type marquee *\/\n#uc_ue_listing_carousel_elementor_f2eb89c .uc_marquee {\n  display: flex;\n  align-items: center;\n  overflow: hidden;\n  position: relative;\n}\n#uc_ue_listing_carousel_elementor_f2eb89c .uc_marquee > div {\n  position:relative;\n  display: inline-flex;\n  align-items: center;\n  flex: 0 0 auto;\n  width: auto;\n  overflow: hidden;\n    animation-name: marquee-to-up;\n    animation-timing-function: linear;\n  animation-iteration-count: infinite;\n    flex-direction: column;\n  width: 100%;\n  }\n\n#uc_ue_listing_carousel_elementor_f2eb89c .uc_marquee_holder{\n  width: 100%;\n}\n\n\t\n\n\n@keyframes marquee-to-up {\n  from {transform: translate(0, 25%)}\n  to {transform: translate(0, -25%)}\n}\n\n\n\/* end carousel *\/\n\n<\/style>\n\n<div class=\"ue_listing_carousel\"  style=\"direction:ltr;\">\n        <div class=\"ue-layout uc_logo_marquee uc_marquee_ \" id=\"uc_ue_listing_carousel_elementor_f2eb89c\" >\n      <div class=\"ue_carousel uc_marquee uc-items-wrapper   uc-dynamic-popup-grid\"  data-custom-sethtml=\"true\"  data-height=\"250\" data-height-tab=\"250\" data-height-mobile=\"250\" data-speed=\"3000\" data-mobile-items=\"1\" data-tablet-items=\"2\" data-desktop-items=\"1\" data-mobile-margin=\"20\" data-tablet-margin=\"20\" data-desktop-margin=\"30\" data-paused=\"true\" data-direction=\"up\">\n   \t    <div class=\"ue-carousel-item ue-grid-item uc_marquee_holder\" data-link=\"https:\/\/cre8ivedge.net\/scfoundation\/how-one-scholarship-is-touching-hundreds-of-lives\/\" data-loop=\"false\" data-postid=\"6509\">\n  <style>.elementor-2959 .elementor-element.elementor-element-c4dd25a{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;border-style:solid;--border-style:solid;border-width:0px 0px 0.25px 0px;--border-top-width:0px;--border-right-width:0px;--border-bottom-width:0.25px;--border-left-width:0px;border-color:#DBDBDB;--border-color:#DBDBDB;}.elementor-2959 .elementor-element.elementor-element-0e2781d{--display:flex;--gap:8px 8px;--row-gap:8px;--column-gap:8px;}.elementor-widget-theme-post-featured-image .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-2959 .elementor-element.elementor-element-a192b1b img{width:100%;max-width:200px;border-radius:3px 3px 3px 3px;}.elementor-2959 .elementor-element.elementor-element-5cb05be{--display:flex;}.elementor-widget-theme-post-title .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-2959 .elementor-element.elementor-element-9b01582 .elementor-heading-title{font-family:\"Mochiy Pop One\", Sans-serif;font-size:15px;font-weight:300;line-height:1.2em;}.elementor-widget-theme-post-excerpt{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-2959 .elementor-element.elementor-element-a2b23e3{font-family:\"Outfit\", Sans-serif;font-size:13px;font-weight:400;}.elementor-widget-post-info .elementor-icon-list-item:not(:last-child):after{border-color:var( --e-global-color-text );}.elementor-widget-post-info .elementor-icon-list-icon i{color:var( --e-global-color-primary );}.elementor-widget-post-info .elementor-icon-list-icon svg{fill:var( --e-global-color-primary );}.elementor-widget-post-info .elementor-icon-list-text, .elementor-widget-post-info .elementor-icon-list-text a{color:var( --e-global-color-secondary );}.elementor-widget-post-info .elementor-icon-list-item{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-2959 .elementor-element.elementor-element-4bb2207 .elementor-icon-list-icon{width:14px;}.elementor-2959 .elementor-element.elementor-element-4bb2207 .elementor-icon-list-icon i{font-size:14px;}.elementor-2959 .elementor-element.elementor-element-4bb2207 .elementor-icon-list-icon svg{--e-icon-list-icon-size:14px;}.elementor-2959 .elementor-element.elementor-element-4bb2207 .elementor-icon-list-item{font-family:\"Outfit\", Sans-serif;font-size:10px;font-weight:400;}.elementor-widget-eael-creative-button .eael-creative-button .cretive-button-text{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-eael-creative-button .eael-creative-button--rayen::before, \n                                .elementor-widget-eael-creative-button .eael-creative-button--winona::after, \n                                .elementor-widget-eael-creative-button .eael-creative-button--tamaya .eael-creative-button--tamaya-secondary span,\n                                .elementor-widget-eael-creative-button .eael-creative-button.eael-creative-button--saqui::after{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button-icon-left svg, \n                    .elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button-icon-right svg{rotate:0deg;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button-icon-left i,\n                    .elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button-icon-right i{rotate:0deg;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button i{font-size:12px;color:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button svg{height:12px;width:12px;fill:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button .cretive-button-text{font-family:\"Outfit\", Sans-serif;font-size:12px;font-weight:400;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button--rayen::before, \n                                .elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button--winona::after, \n                                .elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button--tamaya .eael-creative-button--tamaya-secondary span,\n                                .elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button.eael-creative-button--saqui::after{font-family:\"Outfit\", Sans-serif;font-size:12px;font-weight:400;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button .creative-button-inner svg{fill:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button{color:#ffffff;border-radius:50px;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button .eael-creative-button--tamaya-secondary{color:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button.eael-creative-button--tamaya::before{color:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button.eael-creative-button--tamaya::after{color:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button::before{border-radius:50px;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button::after{border-radius:50px;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button:hover i{color:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button:hover .creative-button-inner svg{fill:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button:hover{color:#ffffff;background-color:var( --e-global-color-accent );}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button:hover svg{fill:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button.eael-creative-button--winona::after{color:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button.eael-creative-button--saqui::after{color:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button.eael-creative-button--ujarak::before{background-color:var( --e-global-color-accent );}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button.eael-creative-button--wayra:hover::before{background-color:var( --e-global-color-accent );}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button.eael-creative-button--tamaya:hover{background-color:var( --e-global-color-accent );}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button.eael-creative-button--rayen::before{background-color:var( --e-global-color-accent );}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button.eael-creative-button--rayen:hover::before{background-color:var( --e-global-color-accent );}@media(min-width:768px){.elementor-2959 .elementor-element.elementor-element-0e2781d{--width:40%;}.elementor-2959 .elementor-element.elementor-element-5cb05be{--width:60%;}}<\/style>\t\t<div data-elementor-type=\"loop-item\" data-elementor-id=\"2959\" class=\"elementor elementor-2959 uc-post-6509 e-loop-item e-loop-item-6509 post-6509 post type-post status-publish format-standard has-post-thumbnail hentry category-impact-in-action category-impact-stories category-impacts\" data-elementor-post-type=\"elementor_library\" data-custom-edit-handle=\"1\">\n\t\t\t<div class=\"elementor-element elementor-element-c4dd25a e-flex e-con-boxed e-con e-parent\" data-id=\"c4dd25a\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-0e2781d e-con-full e-flex e-con e-child\" data-id=\"0e2781d\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a192b1b elementor-widget elementor-widget-theme-post-featured-image elementor-widget-image\" data-id=\"a192b1b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"theme-post-featured-image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img fetchpriority=\"high\" decoding=\"async\" width=\"800\" height=\"533\" src=\"https:\/\/cre8ivedge.net\/scfoundation\/wp-content\/uploads\/2026\/03\/Bossville-1024x682.webp\" class=\"attachment-large size-large wp-image-6510\" alt=\"\" srcset=\"https:\/\/cre8ivedge.net\/scfoundation\/wp-content\/uploads\/2026\/03\/Bossville-1024x682.webp 1024w, https:\/\/cre8ivedge.net\/scfoundation\/wp-content\/uploads\/2026\/03\/Bossville-300x200.webp 300w, https:\/\/cre8ivedge.net\/scfoundation\/wp-content\/uploads\/2026\/03\/Bossville-768x512.webp 768w, https:\/\/cre8ivedge.net\/scfoundation\/wp-content\/uploads\/2026\/03\/Bossville-1536x1023.webp 1536w, https:\/\/cre8ivedge.net\/scfoundation\/wp-content\/uploads\/2026\/03\/Bossville.webp 1600w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-5cb05be e-con-full e-flex e-con e-child\" data-id=\"5cb05be\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-9b01582 elementor-widget elementor-widget-theme-post-title elementor-page-title elementor-widget-heading\" data-id=\"9b01582\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"theme-post-title.default\">\n\t\t\t\t\t<h4 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/cre8ivedge.net\/scfoundation\/how-one-scholarship-is-touching-hundreds-of-lives\/\">How one scholarship is touching hundreds of lives<\/a><\/h4>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-a2b23e3 elementor-widget elementor-widget-theme-post-excerpt\" data-id=\"a2b23e3\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"theme-post-excerpt.default\">\n\t\t\t\t\t<p>When Bossville Imbosa first walked into the compound of Strathmore University, he had no idea that his life was going\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4bb2207 elementor-widget elementor-widget-post-info\" data-id=\"4bb2207\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"post-info.default\">\n\t\t\t\t\t\t\t<ul class=\"elementor-inline-items elementor-icon-list-items elementor-post-info\">\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item elementor-repeater-item-c99e46a elementor-inline-item\" itemprop=\"datePublished\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text elementor-post-info__item elementor-post-info__item--type-date\">\n\t\t\t\t\t\t\t\t\t\t<time>2026<\/time>\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-ad186e5 elementor-widget elementor-widget-eael-creative-button\" data-id=\"ad186e5\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"eael-creative-button.default\">\n\t\t\t\t\t        <div class=\"eael-creative-button-wrapper\">\n\n            <a class=\"eael-creative-button eael-creative-button--rayen\" target=\"\" data-text=\"Click to Download\">\n            \t    \n                <div class=\"creative-button-inner\">\n\n                    \n                    <span class=\"cretive-button-text\">Download<\/span>\n\n                                            <span class=\"eael-creative-button-icon-right\"><svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-download\" viewBox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M216 0h80c13.3 0 24 10.7 24 24v168h87.7c17.8 0 26.7 21.5 14.1 34.1L269.7 378.3c-7.5 7.5-19.8 7.5-27.3 0L90.1 226.1c-12.6-12.6-3.7-34.1 14.1-34.1H192V24c0-13.3 10.7-24 24-24zm296 376v112c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V376c0-13.3 10.7-24 24-24h146.7l49 49c20.1 20.1 52.5 20.1 72.6 0l49-49H488c13.3 0 24 10.7 24 24zm-124 88c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20zm64 0c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20z\"><\/path><\/svg><\/span>                                    <\/div>\n\t                        <\/a>\n        <\/div>\n        \t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\n<\/div>\n<div class=\"ue-carousel-item ue-grid-item uc_marquee_holder\" data-link=\"https:\/\/cre8ivedge.net\/scfoundation\/powering-communities-through-renewable-energy\/\" data-loop=\"false\" data-postid=\"6502\">\n  <style>.elementor-2959 .elementor-element.elementor-element-c4dd25a{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;border-style:solid;--border-style:solid;border-width:0px 0px 0.25px 0px;--border-top-width:0px;--border-right-width:0px;--border-bottom-width:0.25px;--border-left-width:0px;border-color:#DBDBDB;--border-color:#DBDBDB;}.elementor-2959 .elementor-element.elementor-element-0e2781d{--display:flex;--gap:8px 8px;--row-gap:8px;--column-gap:8px;}.elementor-widget-theme-post-featured-image .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-2959 .elementor-element.elementor-element-a192b1b img{width:100%;max-width:200px;border-radius:3px 3px 3px 3px;}.elementor-2959 .elementor-element.elementor-element-5cb05be{--display:flex;}.elementor-widget-theme-post-title .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-2959 .elementor-element.elementor-element-9b01582 .elementor-heading-title{font-family:\"Mochiy Pop One\", Sans-serif;font-size:15px;font-weight:300;line-height:1.2em;}.elementor-widget-theme-post-excerpt{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-2959 .elementor-element.elementor-element-a2b23e3{font-family:\"Outfit\", Sans-serif;font-size:13px;font-weight:400;}.elementor-widget-post-info .elementor-icon-list-item:not(:last-child):after{border-color:var( --e-global-color-text );}.elementor-widget-post-info .elementor-icon-list-icon i{color:var( --e-global-color-primary );}.elementor-widget-post-info .elementor-icon-list-icon svg{fill:var( --e-global-color-primary );}.elementor-widget-post-info .elementor-icon-list-text, .elementor-widget-post-info .elementor-icon-list-text a{color:var( --e-global-color-secondary );}.elementor-widget-post-info .elementor-icon-list-item{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-2959 .elementor-element.elementor-element-4bb2207 .elementor-icon-list-icon{width:14px;}.elementor-2959 .elementor-element.elementor-element-4bb2207 .elementor-icon-list-icon i{font-size:14px;}.elementor-2959 .elementor-element.elementor-element-4bb2207 .elementor-icon-list-icon svg{--e-icon-list-icon-size:14px;}.elementor-2959 .elementor-element.elementor-element-4bb2207 .elementor-icon-list-item{font-family:\"Outfit\", Sans-serif;font-size:10px;font-weight:400;}.elementor-widget-eael-creative-button .eael-creative-button .cretive-button-text{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-eael-creative-button .eael-creative-button--rayen::before, \n                                .elementor-widget-eael-creative-button .eael-creative-button--winona::after, \n                                .elementor-widget-eael-creative-button .eael-creative-button--tamaya .eael-creative-button--tamaya-secondary span,\n                                .elementor-widget-eael-creative-button .eael-creative-button.eael-creative-button--saqui::after{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button-icon-left svg, \n                    .elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button-icon-right svg{rotate:0deg;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button-icon-left i,\n                    .elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button-icon-right i{rotate:0deg;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button i{font-size:12px;color:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button svg{height:12px;width:12px;fill:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button .cretive-button-text{font-family:\"Outfit\", Sans-serif;font-size:12px;font-weight:400;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button--rayen::before, \n                                .elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button--winona::after, \n                                .elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button--tamaya .eael-creative-button--tamaya-secondary span,\n                                .elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button.eael-creative-button--saqui::after{font-family:\"Outfit\", Sans-serif;font-size:12px;font-weight:400;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button .creative-button-inner svg{fill:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button{color:#ffffff;border-radius:50px;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button .eael-creative-button--tamaya-secondary{color:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button.eael-creative-button--tamaya::before{color:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button.eael-creative-button--tamaya::after{color:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button::before{border-radius:50px;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button::after{border-radius:50px;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button:hover i{color:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button:hover .creative-button-inner svg{fill:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button:hover{color:#ffffff;background-color:var( --e-global-color-accent );}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button:hover svg{fill:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button.eael-creative-button--winona::after{color:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button.eael-creative-button--saqui::after{color:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button.eael-creative-button--ujarak::before{background-color:var( --e-global-color-accent );}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button.eael-creative-button--wayra:hover::before{background-color:var( --e-global-color-accent );}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button.eael-creative-button--tamaya:hover{background-color:var( --e-global-color-accent );}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button.eael-creative-button--rayen::before{background-color:var( --e-global-color-accent );}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button.eael-creative-button--rayen:hover::before{background-color:var( --e-global-color-accent );}@media(min-width:768px){.elementor-2959 .elementor-element.elementor-element-0e2781d{--width:40%;}.elementor-2959 .elementor-element.elementor-element-5cb05be{--width:60%;}}<\/style>\t\t<div data-elementor-type=\"loop-item\" data-elementor-id=\"2959\" class=\"elementor elementor-2959 uc-post-6502 e-loop-item e-loop-item-6502 post-6502 post type-post status-publish format-standard has-post-thumbnail hentry category-impact-in-action category-impact-stories category-impacts\" data-elementor-post-type=\"elementor_library\" data-custom-edit-handle=\"1\">\n\t\t\t<div class=\"elementor-element elementor-element-c4dd25a e-flex e-con-boxed e-con e-parent\" data-id=\"c4dd25a\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-0e2781d e-con-full e-flex e-con e-child\" data-id=\"0e2781d\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a192b1b elementor-widget elementor-widget-theme-post-featured-image elementor-widget-image\" data-id=\"a192b1b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"theme-post-featured-image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"800\" height=\"600\" src=\"https:\/\/cre8ivedge.net\/scfoundation\/wp-content\/uploads\/2026\/03\/powering-communities-1024x768.webp\" class=\"attachment-large size-large wp-image-6504\" alt=\"\" srcset=\"https:\/\/cre8ivedge.net\/scfoundation\/wp-content\/uploads\/2026\/03\/powering-communities-1024x768.webp 1024w, https:\/\/cre8ivedge.net\/scfoundation\/wp-content\/uploads\/2026\/03\/powering-communities-300x225.webp 300w, https:\/\/cre8ivedge.net\/scfoundation\/wp-content\/uploads\/2026\/03\/powering-communities-768x576.webp 768w, https:\/\/cre8ivedge.net\/scfoundation\/wp-content\/uploads\/2026\/03\/powering-communities-1536x1152.webp 1536w, https:\/\/cre8ivedge.net\/scfoundation\/wp-content\/uploads\/2026\/03\/powering-communities-2048x1536.webp 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-5cb05be e-con-full e-flex e-con e-child\" data-id=\"5cb05be\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-9b01582 elementor-widget elementor-widget-theme-post-title elementor-page-title elementor-widget-heading\" data-id=\"9b01582\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"theme-post-title.default\">\n\t\t\t\t\t<h4 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/cre8ivedge.net\/scfoundation\/powering-communities-through-renewable-energy\/\">Powering Communities Through Renewable Energy<\/a><\/h4>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-a2b23e3 elementor-widget elementor-widget-theme-post-excerpt\" data-id=\"a2b23e3\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"theme-post-excerpt.default\">\n\t\t\t\t\t<p>In 2023, Angela Achola made a deliberate decision to visit some villages in Kisumu and Homabay counties of Kenya, armed\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4bb2207 elementor-widget elementor-widget-post-info\" data-id=\"4bb2207\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"post-info.default\">\n\t\t\t\t\t\t\t<ul class=\"elementor-inline-items elementor-icon-list-items elementor-post-info\">\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item elementor-repeater-item-c99e46a elementor-inline-item\" itemprop=\"datePublished\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text elementor-post-info__item elementor-post-info__item--type-date\">\n\t\t\t\t\t\t\t\t\t\t<time>2026<\/time>\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-ad186e5 elementor-widget elementor-widget-eael-creative-button\" data-id=\"ad186e5\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"eael-creative-button.default\">\n\t\t\t\t\t        <div class=\"eael-creative-button-wrapper\">\n\n            <a class=\"eael-creative-button eael-creative-button--rayen\" target=\"\" data-text=\"Click to Download\">\n            \t    \n                <div class=\"creative-button-inner\">\n\n                    \n                    <span class=\"cretive-button-text\">Download<\/span>\n\n                                            <span class=\"eael-creative-button-icon-right\"><svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-download\" viewBox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M216 0h80c13.3 0 24 10.7 24 24v168h87.7c17.8 0 26.7 21.5 14.1 34.1L269.7 378.3c-7.5 7.5-19.8 7.5-27.3 0L90.1 226.1c-12.6-12.6-3.7-34.1 14.1-34.1H192V24c0-13.3 10.7-24 24-24zm296 376v112c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V376c0-13.3 10.7-24 24-24h146.7l49 49c20.1 20.1 52.5 20.1 72.6 0l49-49H488c13.3 0 24 10.7 24 24zm-124 88c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20zm64 0c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20z\"><\/path><\/svg><\/span>                                    <\/div>\n\t                        <\/a>\n        <\/div>\n        \t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\n<\/div>\n<div class=\"ue-carousel-item ue-grid-item uc_marquee_holder\" data-link=\"https:\/\/cre8ivedge.net\/scfoundation\/suf-hosts-education-roundtable-dialogue-with-partners\/\" data-loop=\"false\" data-postid=\"6512\">\n  <style>.elementor-2959 .elementor-element.elementor-element-c4dd25a{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;border-style:solid;--border-style:solid;border-width:0px 0px 0.25px 0px;--border-top-width:0px;--border-right-width:0px;--border-bottom-width:0.25px;--border-left-width:0px;border-color:#DBDBDB;--border-color:#DBDBDB;}.elementor-2959 .elementor-element.elementor-element-0e2781d{--display:flex;--gap:8px 8px;--row-gap:8px;--column-gap:8px;}.elementor-widget-theme-post-featured-image .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-2959 .elementor-element.elementor-element-a192b1b img{width:100%;max-width:200px;border-radius:3px 3px 3px 3px;}.elementor-2959 .elementor-element.elementor-element-5cb05be{--display:flex;}.elementor-widget-theme-post-title .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-2959 .elementor-element.elementor-element-9b01582 .elementor-heading-title{font-family:\"Mochiy Pop One\", Sans-serif;font-size:15px;font-weight:300;line-height:1.2em;}.elementor-widget-theme-post-excerpt{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-2959 .elementor-element.elementor-element-a2b23e3{font-family:\"Outfit\", Sans-serif;font-size:13px;font-weight:400;}.elementor-widget-post-info .elementor-icon-list-item:not(:last-child):after{border-color:var( --e-global-color-text );}.elementor-widget-post-info .elementor-icon-list-icon i{color:var( --e-global-color-primary );}.elementor-widget-post-info .elementor-icon-list-icon svg{fill:var( --e-global-color-primary );}.elementor-widget-post-info .elementor-icon-list-text, .elementor-widget-post-info .elementor-icon-list-text a{color:var( --e-global-color-secondary );}.elementor-widget-post-info .elementor-icon-list-item{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-2959 .elementor-element.elementor-element-4bb2207 .elementor-icon-list-icon{width:14px;}.elementor-2959 .elementor-element.elementor-element-4bb2207 .elementor-icon-list-icon i{font-size:14px;}.elementor-2959 .elementor-element.elementor-element-4bb2207 .elementor-icon-list-icon svg{--e-icon-list-icon-size:14px;}.elementor-2959 .elementor-element.elementor-element-4bb2207 .elementor-icon-list-item{font-family:\"Outfit\", Sans-serif;font-size:10px;font-weight:400;}.elementor-widget-eael-creative-button .eael-creative-button .cretive-button-text{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-eael-creative-button .eael-creative-button--rayen::before, \n                                .elementor-widget-eael-creative-button .eael-creative-button--winona::after, \n                                .elementor-widget-eael-creative-button .eael-creative-button--tamaya .eael-creative-button--tamaya-secondary span,\n                                .elementor-widget-eael-creative-button .eael-creative-button.eael-creative-button--saqui::after{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button-icon-left svg, \n                    .elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button-icon-right svg{rotate:0deg;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button-icon-left i,\n                    .elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button-icon-right i{rotate:0deg;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button i{font-size:12px;color:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button svg{height:12px;width:12px;fill:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button .cretive-button-text{font-family:\"Outfit\", Sans-serif;font-size:12px;font-weight:400;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button--rayen::before, \n                                .elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button--winona::after, \n                                .elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button--tamaya .eael-creative-button--tamaya-secondary span,\n                                .elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button.eael-creative-button--saqui::after{font-family:\"Outfit\", Sans-serif;font-size:12px;font-weight:400;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button .creative-button-inner svg{fill:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button{color:#ffffff;border-radius:50px;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button .eael-creative-button--tamaya-secondary{color:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button.eael-creative-button--tamaya::before{color:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button.eael-creative-button--tamaya::after{color:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button::before{border-radius:50px;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button::after{border-radius:50px;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button:hover i{color:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button:hover .creative-button-inner svg{fill:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button:hover{color:#ffffff;background-color:var( --e-global-color-accent );}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button:hover svg{fill:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button.eael-creative-button--winona::after{color:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button.eael-creative-button--saqui::after{color:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button.eael-creative-button--ujarak::before{background-color:var( --e-global-color-accent );}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button.eael-creative-button--wayra:hover::before{background-color:var( --e-global-color-accent );}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button.eael-creative-button--tamaya:hover{background-color:var( --e-global-color-accent );}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button.eael-creative-button--rayen::before{background-color:var( --e-global-color-accent );}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button.eael-creative-button--rayen:hover::before{background-color:var( --e-global-color-accent );}@media(min-width:768px){.elementor-2959 .elementor-element.elementor-element-0e2781d{--width:40%;}.elementor-2959 .elementor-element.elementor-element-5cb05be{--width:60%;}}<\/style>\t\t<div data-elementor-type=\"loop-item\" data-elementor-id=\"2959\" class=\"elementor elementor-2959 uc-post-6512 e-loop-item e-loop-item-6512 post-6512 post type-post status-publish format-standard has-post-thumbnail hentry category-foundation-news-articles category-news-articles\" data-elementor-post-type=\"elementor_library\" data-custom-edit-handle=\"1\">\n\t\t\t<div class=\"elementor-element elementor-element-c4dd25a e-flex e-con-boxed e-con e-parent\" data-id=\"c4dd25a\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-0e2781d e-con-full e-flex e-con e-child\" data-id=\"0e2781d\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a192b1b elementor-widget elementor-widget-theme-post-featured-image elementor-widget-image\" data-id=\"a192b1b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"theme-post-featured-image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"800\" height=\"265\" src=\"https:\/\/cre8ivedge.net\/scfoundation\/wp-content\/uploads\/2026\/03\/edu-roundtable-dialogue-1024x339.webp\" class=\"attachment-large size-large wp-image-6513\" alt=\"\" srcset=\"https:\/\/cre8ivedge.net\/scfoundation\/wp-content\/uploads\/2026\/03\/edu-roundtable-dialogue-1024x339.webp 1024w, https:\/\/cre8ivedge.net\/scfoundation\/wp-content\/uploads\/2026\/03\/edu-roundtable-dialogue-300x99.webp 300w, https:\/\/cre8ivedge.net\/scfoundation\/wp-content\/uploads\/2026\/03\/edu-roundtable-dialogue-768x254.webp 768w, https:\/\/cre8ivedge.net\/scfoundation\/wp-content\/uploads\/2026\/03\/edu-roundtable-dialogue-1536x508.webp 1536w, https:\/\/cre8ivedge.net\/scfoundation\/wp-content\/uploads\/2026\/03\/edu-roundtable-dialogue-2048x678.webp 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-5cb05be e-con-full e-flex e-con e-child\" data-id=\"5cb05be\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-9b01582 elementor-widget elementor-widget-theme-post-title elementor-page-title elementor-widget-heading\" data-id=\"9b01582\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"theme-post-title.default\">\n\t\t\t\t\t<h4 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/cre8ivedge.net\/scfoundation\/suf-hosts-education-roundtable-dialogue-with-partners\/\">SUF Hosts Education Roundtable Dialogue with Partners<\/a><\/h4>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-a2b23e3 elementor-widget elementor-widget-theme-post-excerpt\" data-id=\"a2b23e3\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"theme-post-excerpt.default\">\n\t\t\t\t\t<p>Strathmore University Foundation (SUF) held an inaugural Education Dialogue Programme on March 10, 2026, bringing together partners and stakeholders across\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4bb2207 elementor-widget elementor-widget-post-info\" data-id=\"4bb2207\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"post-info.default\">\n\t\t\t\t\t\t\t<ul class=\"elementor-inline-items elementor-icon-list-items elementor-post-info\">\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item elementor-repeater-item-c99e46a elementor-inline-item\" itemprop=\"datePublished\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text elementor-post-info__item elementor-post-info__item--type-date\">\n\t\t\t\t\t\t\t\t\t\t<time>2026<\/time>\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-ad186e5 elementor-widget elementor-widget-eael-creative-button\" data-id=\"ad186e5\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"eael-creative-button.default\">\n\t\t\t\t\t        <div class=\"eael-creative-button-wrapper\">\n\n            <a class=\"eael-creative-button eael-creative-button--rayen\" target=\"\" data-text=\"Click to Download\">\n            \t    \n                <div class=\"creative-button-inner\">\n\n                    \n                    <span class=\"cretive-button-text\">Download<\/span>\n\n                                            <span class=\"eael-creative-button-icon-right\"><svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-download\" viewBox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M216 0h80c13.3 0 24 10.7 24 24v168h87.7c17.8 0 26.7 21.5 14.1 34.1L269.7 378.3c-7.5 7.5-19.8 7.5-27.3 0L90.1 226.1c-12.6-12.6-3.7-34.1 14.1-34.1H192V24c0-13.3 10.7-24 24-24zm296 376v112c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V376c0-13.3 10.7-24 24-24h146.7l49 49c20.1 20.1 52.5 20.1 72.6 0l49-49H488c13.3 0 24 10.7 24 24zm-124 88c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20zm64 0c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20z\"><\/path><\/svg><\/span>                                    <\/div>\n\t                        <\/a>\n        <\/div>\n        \t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\n<\/div>\n<div class=\"ue-carousel-item ue-grid-item uc_marquee_holder\" data-link=\"https:\/\/cre8ivedge.net\/scfoundation\/legacy-of-giving-dr-manu-chandaria-inspires-future-philanthropists\/\" data-loop=\"false\" data-postid=\"2106\">\n  <style>.elementor-2959 .elementor-element.elementor-element-c4dd25a{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;border-style:solid;--border-style:solid;border-width:0px 0px 0.25px 0px;--border-top-width:0px;--border-right-width:0px;--border-bottom-width:0.25px;--border-left-width:0px;border-color:#DBDBDB;--border-color:#DBDBDB;}.elementor-2959 .elementor-element.elementor-element-0e2781d{--display:flex;--gap:8px 8px;--row-gap:8px;--column-gap:8px;}.elementor-widget-theme-post-featured-image .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-2959 .elementor-element.elementor-element-a192b1b img{width:100%;max-width:200px;border-radius:3px 3px 3px 3px;}.elementor-2959 .elementor-element.elementor-element-5cb05be{--display:flex;}.elementor-widget-theme-post-title .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-2959 .elementor-element.elementor-element-9b01582 .elementor-heading-title{font-family:\"Mochiy Pop One\", Sans-serif;font-size:15px;font-weight:300;line-height:1.2em;}.elementor-widget-theme-post-excerpt{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-2959 .elementor-element.elementor-element-a2b23e3{font-family:\"Outfit\", Sans-serif;font-size:13px;font-weight:400;}.elementor-widget-post-info .elementor-icon-list-item:not(:last-child):after{border-color:var( --e-global-color-text );}.elementor-widget-post-info .elementor-icon-list-icon i{color:var( --e-global-color-primary );}.elementor-widget-post-info .elementor-icon-list-icon svg{fill:var( --e-global-color-primary );}.elementor-widget-post-info .elementor-icon-list-text, .elementor-widget-post-info .elementor-icon-list-text a{color:var( --e-global-color-secondary );}.elementor-widget-post-info .elementor-icon-list-item{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-2959 .elementor-element.elementor-element-4bb2207 .elementor-icon-list-icon{width:14px;}.elementor-2959 .elementor-element.elementor-element-4bb2207 .elementor-icon-list-icon i{font-size:14px;}.elementor-2959 .elementor-element.elementor-element-4bb2207 .elementor-icon-list-icon svg{--e-icon-list-icon-size:14px;}.elementor-2959 .elementor-element.elementor-element-4bb2207 .elementor-icon-list-item{font-family:\"Outfit\", Sans-serif;font-size:10px;font-weight:400;}.elementor-widget-eael-creative-button .eael-creative-button .cretive-button-text{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-eael-creative-button .eael-creative-button--rayen::before, \n                                .elementor-widget-eael-creative-button .eael-creative-button--winona::after, \n                                .elementor-widget-eael-creative-button .eael-creative-button--tamaya .eael-creative-button--tamaya-secondary span,\n                                .elementor-widget-eael-creative-button .eael-creative-button.eael-creative-button--saqui::after{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button-icon-left svg, \n                    .elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button-icon-right svg{rotate:0deg;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button-icon-left i,\n                    .elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button-icon-right i{rotate:0deg;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button i{font-size:12px;color:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button svg{height:12px;width:12px;fill:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button .cretive-button-text{font-family:\"Outfit\", Sans-serif;font-size:12px;font-weight:400;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button--rayen::before, \n                                .elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button--winona::after, \n                                .elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button--tamaya .eael-creative-button--tamaya-secondary span,\n                                .elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button.eael-creative-button--saqui::after{font-family:\"Outfit\", Sans-serif;font-size:12px;font-weight:400;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button .creative-button-inner svg{fill:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button{color:#ffffff;border-radius:50px;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button .eael-creative-button--tamaya-secondary{color:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button.eael-creative-button--tamaya::before{color:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button.eael-creative-button--tamaya::after{color:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button::before{border-radius:50px;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button::after{border-radius:50px;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button:hover i{color:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button:hover .creative-button-inner svg{fill:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button:hover{color:#ffffff;background-color:var( --e-global-color-accent );}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button:hover svg{fill:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button.eael-creative-button--winona::after{color:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button.eael-creative-button--saqui::after{color:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button.eael-creative-button--ujarak::before{background-color:var( --e-global-color-accent );}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button.eael-creative-button--wayra:hover::before{background-color:var( --e-global-color-accent );}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button.eael-creative-button--tamaya:hover{background-color:var( --e-global-color-accent );}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button.eael-creative-button--rayen::before{background-color:var( --e-global-color-accent );}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button.eael-creative-button--rayen:hover::before{background-color:var( --e-global-color-accent );}@media(min-width:768px){.elementor-2959 .elementor-element.elementor-element-0e2781d{--width:40%;}.elementor-2959 .elementor-element.elementor-element-5cb05be{--width:60%;}}<\/style>\t\t<div data-elementor-type=\"loop-item\" data-elementor-id=\"2959\" class=\"elementor elementor-2959 uc-post-2106 e-loop-item e-loop-item-2106 post-2106 post type-post status-publish format-standard has-post-thumbnail hentry category-kob-updates\" data-elementor-post-type=\"elementor_library\" data-custom-edit-handle=\"1\">\n\t\t\t<div class=\"elementor-element elementor-element-c4dd25a e-flex e-con-boxed e-con e-parent\" data-id=\"c4dd25a\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-0e2781d e-con-full e-flex e-con e-child\" data-id=\"0e2781d\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a192b1b elementor-widget elementor-widget-theme-post-featured-image elementor-widget-image\" data-id=\"a192b1b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"theme-post-featured-image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"456\" height=\"506\" src=\"https:\/\/cre8ivedge.net\/scfoundation\/wp-content\/uploads\/2026\/02\/kob-2-e1770988927937.jpg\" class=\"attachment-large size-large wp-image-2102\" alt=\"\" srcset=\"https:\/\/cre8ivedge.net\/scfoundation\/wp-content\/uploads\/2026\/02\/kob-2-e1770988927937.jpg 456w, https:\/\/cre8ivedge.net\/scfoundation\/wp-content\/uploads\/2026\/02\/kob-2-e1770988927937-270x300.jpg 270w\" sizes=\"(max-width: 456px) 100vw, 456px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-5cb05be e-con-full e-flex e-con e-child\" data-id=\"5cb05be\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-9b01582 elementor-widget elementor-widget-theme-post-title elementor-page-title elementor-widget-heading\" data-id=\"9b01582\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"theme-post-title.default\">\n\t\t\t\t\t<h4 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/cre8ivedge.net\/scfoundation\/legacy-of-giving-dr-manu-chandaria-inspires-future-philanthropists\/\">Legacy of Giving: Dr. Manu Chandaria Inspires Future Philanthropists<\/a><\/h4>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-a2b23e3 elementor-widget elementor-widget-theme-post-excerpt\" data-id=\"a2b23e3\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"theme-post-excerpt.default\">\n\t\t\t\t\t<p>Legacy of Giving: Dr. Manu Chandaria Inspires Future Philanthropists<\/p>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4bb2207 elementor-widget elementor-widget-post-info\" data-id=\"4bb2207\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"post-info.default\">\n\t\t\t\t\t\t\t<ul class=\"elementor-inline-items elementor-icon-list-items elementor-post-info\">\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item elementor-repeater-item-c99e46a elementor-inline-item\" itemprop=\"datePublished\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text elementor-post-info__item elementor-post-info__item--type-date\">\n\t\t\t\t\t\t\t\t\t\t<time>2026<\/time>\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-ad186e5 elementor-widget elementor-widget-eael-creative-button\" data-id=\"ad186e5\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"eael-creative-button.default\">\n\t\t\t\t\t        <div class=\"eael-creative-button-wrapper\">\n\n            <a class=\"eael-creative-button eael-creative-button--rayen\" target=\"\" data-text=\"Click to Download\">\n            \t    \n                <div class=\"creative-button-inner\">\n\n                    \n                    <span class=\"cretive-button-text\">Download<\/span>\n\n                                            <span class=\"eael-creative-button-icon-right\"><svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-download\" viewBox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M216 0h80c13.3 0 24 10.7 24 24v168h87.7c17.8 0 26.7 21.5 14.1 34.1L269.7 378.3c-7.5 7.5-19.8 7.5-27.3 0L90.1 226.1c-12.6-12.6-3.7-34.1 14.1-34.1H192V24c0-13.3 10.7-24 24-24zm296 376v112c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V376c0-13.3 10.7-24 24-24h146.7l49 49c20.1 20.1 52.5 20.1 72.6 0l49-49H488c13.3 0 24 10.7 24 24zm-124 88c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20zm64 0c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20z\"><\/path><\/svg><\/span>                                    <\/div>\n\t                        <\/a>\n        <\/div>\n        \t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\n<\/div>\n<div class=\"ue-carousel-item ue-grid-item uc_marquee_holder\" data-link=\"https:\/\/cre8ivedge.net\/scfoundation\/kes-2-billion-milestone-transforming-futures-through-scholarships\/\" data-loop=\"false\" data-postid=\"2104\">\n  <style>.elementor-2959 .elementor-element.elementor-element-c4dd25a{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;border-style:solid;--border-style:solid;border-width:0px 0px 0.25px 0px;--border-top-width:0px;--border-right-width:0px;--border-bottom-width:0.25px;--border-left-width:0px;border-color:#DBDBDB;--border-color:#DBDBDB;}.elementor-2959 .elementor-element.elementor-element-0e2781d{--display:flex;--gap:8px 8px;--row-gap:8px;--column-gap:8px;}.elementor-widget-theme-post-featured-image .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-2959 .elementor-element.elementor-element-a192b1b img{width:100%;max-width:200px;border-radius:3px 3px 3px 3px;}.elementor-2959 .elementor-element.elementor-element-5cb05be{--display:flex;}.elementor-widget-theme-post-title .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-2959 .elementor-element.elementor-element-9b01582 .elementor-heading-title{font-family:\"Mochiy Pop One\", Sans-serif;font-size:15px;font-weight:300;line-height:1.2em;}.elementor-widget-theme-post-excerpt{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-2959 .elementor-element.elementor-element-a2b23e3{font-family:\"Outfit\", Sans-serif;font-size:13px;font-weight:400;}.elementor-widget-post-info .elementor-icon-list-item:not(:last-child):after{border-color:var( --e-global-color-text );}.elementor-widget-post-info .elementor-icon-list-icon i{color:var( --e-global-color-primary );}.elementor-widget-post-info .elementor-icon-list-icon svg{fill:var( --e-global-color-primary );}.elementor-widget-post-info .elementor-icon-list-text, .elementor-widget-post-info .elementor-icon-list-text a{color:var( --e-global-color-secondary );}.elementor-widget-post-info .elementor-icon-list-item{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-2959 .elementor-element.elementor-element-4bb2207 .elementor-icon-list-icon{width:14px;}.elementor-2959 .elementor-element.elementor-element-4bb2207 .elementor-icon-list-icon i{font-size:14px;}.elementor-2959 .elementor-element.elementor-element-4bb2207 .elementor-icon-list-icon svg{--e-icon-list-icon-size:14px;}.elementor-2959 .elementor-element.elementor-element-4bb2207 .elementor-icon-list-item{font-family:\"Outfit\", Sans-serif;font-size:10px;font-weight:400;}.elementor-widget-eael-creative-button .eael-creative-button .cretive-button-text{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-eael-creative-button .eael-creative-button--rayen::before, \n                                .elementor-widget-eael-creative-button .eael-creative-button--winona::after, \n                                .elementor-widget-eael-creative-button .eael-creative-button--tamaya .eael-creative-button--tamaya-secondary span,\n                                .elementor-widget-eael-creative-button .eael-creative-button.eael-creative-button--saqui::after{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button-icon-left svg, \n                    .elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button-icon-right svg{rotate:0deg;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button-icon-left i,\n                    .elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button-icon-right i{rotate:0deg;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button i{font-size:12px;color:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button svg{height:12px;width:12px;fill:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button .cretive-button-text{font-family:\"Outfit\", Sans-serif;font-size:12px;font-weight:400;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button--rayen::before, \n                                .elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button--winona::after, \n                                .elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button--tamaya .eael-creative-button--tamaya-secondary span,\n                                .elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button.eael-creative-button--saqui::after{font-family:\"Outfit\", Sans-serif;font-size:12px;font-weight:400;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button .creative-button-inner svg{fill:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button{color:#ffffff;border-radius:50px;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button .eael-creative-button--tamaya-secondary{color:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button.eael-creative-button--tamaya::before{color:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button.eael-creative-button--tamaya::after{color:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button::before{border-radius:50px;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button::after{border-radius:50px;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button:hover i{color:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button:hover .creative-button-inner svg{fill:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button:hover{color:#ffffff;background-color:var( --e-global-color-accent );}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button:hover svg{fill:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button.eael-creative-button--winona::after{color:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button.eael-creative-button--saqui::after{color:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button.eael-creative-button--ujarak::before{background-color:var( --e-global-color-accent );}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button.eael-creative-button--wayra:hover::before{background-color:var( --e-global-color-accent );}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button.eael-creative-button--tamaya:hover{background-color:var( --e-global-color-accent );}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button.eael-creative-button--rayen::before{background-color:var( --e-global-color-accent );}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button.eael-creative-button--rayen:hover::before{background-color:var( --e-global-color-accent );}@media(min-width:768px){.elementor-2959 .elementor-element.elementor-element-0e2781d{--width:40%;}.elementor-2959 .elementor-element.elementor-element-5cb05be{--width:60%;}}<\/style>\t\t<div data-elementor-type=\"loop-item\" data-elementor-id=\"2959\" class=\"elementor elementor-2959 uc-post-2104 e-loop-item e-loop-item-2104 post-2104 post type-post status-publish format-standard has-post-thumbnail hentry category-kob-updates\" data-elementor-post-type=\"elementor_library\" data-custom-edit-handle=\"1\">\n\t\t\t<div class=\"elementor-element elementor-element-c4dd25a e-flex e-con-boxed e-con e-parent\" data-id=\"c4dd25a\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-0e2781d e-con-full e-flex e-con e-child\" data-id=\"0e2781d\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a192b1b elementor-widget elementor-widget-theme-post-featured-image elementor-widget-image\" data-id=\"a192b1b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"theme-post-featured-image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"800\" height=\"476\" src=\"https:\/\/cre8ivedge.net\/scfoundation\/wp-content\/uploads\/2026\/02\/kob-1024x609.jpg\" class=\"attachment-large size-large wp-image-2101\" alt=\"\" srcset=\"https:\/\/cre8ivedge.net\/scfoundation\/wp-content\/uploads\/2026\/02\/kob-1024x609.jpg 1024w, https:\/\/cre8ivedge.net\/scfoundation\/wp-content\/uploads\/2026\/02\/kob-300x178.jpg 300w, https:\/\/cre8ivedge.net\/scfoundation\/wp-content\/uploads\/2026\/02\/kob-768x457.jpg 768w, https:\/\/cre8ivedge.net\/scfoundation\/wp-content\/uploads\/2026\/02\/kob-1536x914.jpg 1536w, https:\/\/cre8ivedge.net\/scfoundation\/wp-content\/uploads\/2026\/02\/kob-2048x1219.jpg 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-5cb05be e-con-full e-flex e-con e-child\" data-id=\"5cb05be\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-9b01582 elementor-widget elementor-widget-theme-post-title elementor-page-title elementor-widget-heading\" data-id=\"9b01582\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"theme-post-title.default\">\n\t\t\t\t\t<h4 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/cre8ivedge.net\/scfoundation\/kes-2-billion-milestone-transforming-futures-through-scholarships\/\">KES 2 Billion Milestone: Transforming Futures Through Scholarships<\/a><\/h4>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-a2b23e3 elementor-widget elementor-widget-theme-post-excerpt\" data-id=\"a2b23e3\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"theme-post-excerpt.default\">\n\t\t\t\t\t<p>KES 2 Billion Milestone: Transforming Futures Through Scholarships<\/p>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4bb2207 elementor-widget elementor-widget-post-info\" data-id=\"4bb2207\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"post-info.default\">\n\t\t\t\t\t\t\t<ul class=\"elementor-inline-items elementor-icon-list-items elementor-post-info\">\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item elementor-repeater-item-c99e46a elementor-inline-item\" itemprop=\"datePublished\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text elementor-post-info__item elementor-post-info__item--type-date\">\n\t\t\t\t\t\t\t\t\t\t<time>2026<\/time>\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-ad186e5 elementor-widget elementor-widget-eael-creative-button\" data-id=\"ad186e5\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"eael-creative-button.default\">\n\t\t\t\t\t        <div class=\"eael-creative-button-wrapper\">\n\n            <a class=\"eael-creative-button eael-creative-button--rayen\" target=\"\" data-text=\"Click to Download\">\n            \t    \n                <div class=\"creative-button-inner\">\n\n                    \n                    <span class=\"cretive-button-text\">Download<\/span>\n\n                                            <span class=\"eael-creative-button-icon-right\"><svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-download\" viewBox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M216 0h80c13.3 0 24 10.7 24 24v168h87.7c17.8 0 26.7 21.5 14.1 34.1L269.7 378.3c-7.5 7.5-19.8 7.5-27.3 0L90.1 226.1c-12.6-12.6-3.7-34.1 14.1-34.1H192V24c0-13.3 10.7-24 24-24zm296 376v112c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V376c0-13.3 10.7-24 24-24h146.7l49 49c20.1 20.1 52.5 20.1 72.6 0l49-49H488c13.3 0 24 10.7 24 24zm-124 88c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20zm64 0c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20z\"><\/path><\/svg><\/span>                                    <\/div>\n\t                        <\/a>\n        <\/div>\n        \t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\n<\/div>\n<div class=\"ue-carousel-item ue-grid-item uc_marquee_holder\" data-link=\"https:\/\/cre8ivedge.net\/scfoundation\/pioneering-progress-groundbreaking-set-for-kob-stem-complex\/\" data-loop=\"false\" data-postid=\"2099\">\n  <style>.elementor-2959 .elementor-element.elementor-element-c4dd25a{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;border-style:solid;--border-style:solid;border-width:0px 0px 0.25px 0px;--border-top-width:0px;--border-right-width:0px;--border-bottom-width:0.25px;--border-left-width:0px;border-color:#DBDBDB;--border-color:#DBDBDB;}.elementor-2959 .elementor-element.elementor-element-0e2781d{--display:flex;--gap:8px 8px;--row-gap:8px;--column-gap:8px;}.elementor-widget-theme-post-featured-image .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-2959 .elementor-element.elementor-element-a192b1b img{width:100%;max-width:200px;border-radius:3px 3px 3px 3px;}.elementor-2959 .elementor-element.elementor-element-5cb05be{--display:flex;}.elementor-widget-theme-post-title .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-2959 .elementor-element.elementor-element-9b01582 .elementor-heading-title{font-family:\"Mochiy Pop One\", Sans-serif;font-size:15px;font-weight:300;line-height:1.2em;}.elementor-widget-theme-post-excerpt{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-2959 .elementor-element.elementor-element-a2b23e3{font-family:\"Outfit\", Sans-serif;font-size:13px;font-weight:400;}.elementor-widget-post-info .elementor-icon-list-item:not(:last-child):after{border-color:var( --e-global-color-text );}.elementor-widget-post-info .elementor-icon-list-icon i{color:var( --e-global-color-primary );}.elementor-widget-post-info .elementor-icon-list-icon svg{fill:var( --e-global-color-primary );}.elementor-widget-post-info .elementor-icon-list-text, .elementor-widget-post-info .elementor-icon-list-text a{color:var( --e-global-color-secondary );}.elementor-widget-post-info .elementor-icon-list-item{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-2959 .elementor-element.elementor-element-4bb2207 .elementor-icon-list-icon{width:14px;}.elementor-2959 .elementor-element.elementor-element-4bb2207 .elementor-icon-list-icon i{font-size:14px;}.elementor-2959 .elementor-element.elementor-element-4bb2207 .elementor-icon-list-icon svg{--e-icon-list-icon-size:14px;}.elementor-2959 .elementor-element.elementor-element-4bb2207 .elementor-icon-list-item{font-family:\"Outfit\", Sans-serif;font-size:10px;font-weight:400;}.elementor-widget-eael-creative-button .eael-creative-button .cretive-button-text{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-eael-creative-button .eael-creative-button--rayen::before, \n                                .elementor-widget-eael-creative-button .eael-creative-button--winona::after, \n                                .elementor-widget-eael-creative-button .eael-creative-button--tamaya .eael-creative-button--tamaya-secondary span,\n                                .elementor-widget-eael-creative-button .eael-creative-button.eael-creative-button--saqui::after{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button-icon-left svg, \n                    .elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button-icon-right svg{rotate:0deg;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button-icon-left i,\n                    .elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button-icon-right i{rotate:0deg;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button i{font-size:12px;color:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button svg{height:12px;width:12px;fill:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button .cretive-button-text{font-family:\"Outfit\", Sans-serif;font-size:12px;font-weight:400;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button--rayen::before, \n                                .elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button--winona::after, \n                                .elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button--tamaya .eael-creative-button--tamaya-secondary span,\n                                .elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button.eael-creative-button--saqui::after{font-family:\"Outfit\", Sans-serif;font-size:12px;font-weight:400;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button .creative-button-inner svg{fill:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button{color:#ffffff;border-radius:50px;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button .eael-creative-button--tamaya-secondary{color:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button.eael-creative-button--tamaya::before{color:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button.eael-creative-button--tamaya::after{color:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button::before{border-radius:50px;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button::after{border-radius:50px;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button:hover i{color:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button:hover .creative-button-inner svg{fill:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button:hover{color:#ffffff;background-color:var( --e-global-color-accent );}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button:hover svg{fill:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button.eael-creative-button--winona::after{color:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button.eael-creative-button--saqui::after{color:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button.eael-creative-button--ujarak::before{background-color:var( --e-global-color-accent );}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button.eael-creative-button--wayra:hover::before{background-color:var( --e-global-color-accent );}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button.eael-creative-button--tamaya:hover{background-color:var( --e-global-color-accent );}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button.eael-creative-button--rayen::before{background-color:var( --e-global-color-accent );}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button.eael-creative-button--rayen:hover::before{background-color:var( --e-global-color-accent );}@media(min-width:768px){.elementor-2959 .elementor-element.elementor-element-0e2781d{--width:40%;}.elementor-2959 .elementor-element.elementor-element-5cb05be{--width:60%;}}<\/style>\t\t<div data-elementor-type=\"loop-item\" data-elementor-id=\"2959\" class=\"elementor elementor-2959 uc-post-2099 e-loop-item e-loop-item-2099 post-2099 post type-post status-publish format-standard has-post-thumbnail hentry category-kob-updates\" data-elementor-post-type=\"elementor_library\" data-custom-edit-handle=\"1\">\n\t\t\t<div class=\"elementor-element elementor-element-c4dd25a e-flex e-con-boxed e-con e-parent\" data-id=\"c4dd25a\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-0e2781d e-con-full e-flex e-con e-child\" data-id=\"0e2781d\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a192b1b elementor-widget elementor-widget-theme-post-featured-image elementor-widget-image\" data-id=\"a192b1b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"theme-post-featured-image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"800\" height=\"534\" src=\"https:\/\/cre8ivedge.net\/scfoundation\/wp-content\/uploads\/2026\/02\/kob-1-1024x683.jpg\" class=\"attachment-large size-large wp-image-2100\" alt=\"\" srcset=\"https:\/\/cre8ivedge.net\/scfoundation\/wp-content\/uploads\/2026\/02\/kob-1-1024x683.jpg 1024w, https:\/\/cre8ivedge.net\/scfoundation\/wp-content\/uploads\/2026\/02\/kob-1-300x200.jpg 300w, https:\/\/cre8ivedge.net\/scfoundation\/wp-content\/uploads\/2026\/02\/kob-1-768x512.jpg 768w, https:\/\/cre8ivedge.net\/scfoundation\/wp-content\/uploads\/2026\/02\/kob-1-1536x1024.jpg 1536w, https:\/\/cre8ivedge.net\/scfoundation\/wp-content\/uploads\/2026\/02\/kob-1-2048x1366.jpg 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-5cb05be e-con-full e-flex e-con e-child\" data-id=\"5cb05be\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-9b01582 elementor-widget elementor-widget-theme-post-title elementor-page-title elementor-widget-heading\" data-id=\"9b01582\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"theme-post-title.default\">\n\t\t\t\t\t<h4 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/cre8ivedge.net\/scfoundation\/pioneering-progress-groundbreaking-set-for-kob-stem-complex\/\">Pioneering Progress: Groundbreaking Set for KOB STEM Complex<\/a><\/h4>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-a2b23e3 elementor-widget elementor-widget-theme-post-excerpt\" data-id=\"a2b23e3\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"theme-post-excerpt.default\">\n\t\t\t\t\t<p>The countdown has begun! Strathmore University Foundation is thrilled to announce the official groundbreaking of the Kevin O&#8217;Byrne (KOB) \u2026<\/p>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4bb2207 elementor-widget elementor-widget-post-info\" data-id=\"4bb2207\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"post-info.default\">\n\t\t\t\t\t\t\t<ul class=\"elementor-inline-items elementor-icon-list-items elementor-post-info\">\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item elementor-repeater-item-c99e46a elementor-inline-item\" itemprop=\"datePublished\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text elementor-post-info__item elementor-post-info__item--type-date\">\n\t\t\t\t\t\t\t\t\t\t<time>2026<\/time>\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-ad186e5 elementor-widget elementor-widget-eael-creative-button\" data-id=\"ad186e5\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"eael-creative-button.default\">\n\t\t\t\t\t        <div class=\"eael-creative-button-wrapper\">\n\n            <a class=\"eael-creative-button eael-creative-button--rayen\" target=\"\" data-text=\"Click to Download\">\n            \t    \n                <div class=\"creative-button-inner\">\n\n                    \n                    <span class=\"cretive-button-text\">Download<\/span>\n\n                                            <span class=\"eael-creative-button-icon-right\"><svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-download\" viewBox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M216 0h80c13.3 0 24 10.7 24 24v168h87.7c17.8 0 26.7 21.5 14.1 34.1L269.7 378.3c-7.5 7.5-19.8 7.5-27.3 0L90.1 226.1c-12.6-12.6-3.7-34.1 14.1-34.1H192V24c0-13.3 10.7-24 24-24zm296 376v112c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V376c0-13.3 10.7-24 24-24h146.7l49 49c20.1 20.1 52.5 20.1 72.6 0l49-49H488c13.3 0 24 10.7 24 24zm-124 88c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20zm64 0c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20z\"><\/path><\/svg><\/span>                                    <\/div>\n\t                        <\/a>\n        <\/div>\n        \t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\n<\/div>\n<div class=\"ue-carousel-item ue-grid-item uc_marquee_holder\" data-link=\"https:\/\/cre8ivedge.net\/scfoundation\/fireside-reflections-with-dr-manu-chandaria\/\" data-loop=\"false\" data-postid=\"267\">\n  <style>.elementor-2959 .elementor-element.elementor-element-c4dd25a{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;border-style:solid;--border-style:solid;border-width:0px 0px 0.25px 0px;--border-top-width:0px;--border-right-width:0px;--border-bottom-width:0.25px;--border-left-width:0px;border-color:#DBDBDB;--border-color:#DBDBDB;}.elementor-2959 .elementor-element.elementor-element-0e2781d{--display:flex;--gap:8px 8px;--row-gap:8px;--column-gap:8px;}.elementor-widget-theme-post-featured-image .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-2959 .elementor-element.elementor-element-a192b1b img{width:100%;max-width:200px;border-radius:3px 3px 3px 3px;}.elementor-2959 .elementor-element.elementor-element-5cb05be{--display:flex;}.elementor-widget-theme-post-title .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-2959 .elementor-element.elementor-element-9b01582 .elementor-heading-title{font-family:\"Mochiy Pop One\", Sans-serif;font-size:15px;font-weight:300;line-height:1.2em;}.elementor-widget-theme-post-excerpt{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-2959 .elementor-element.elementor-element-a2b23e3{font-family:\"Outfit\", Sans-serif;font-size:13px;font-weight:400;}.elementor-widget-post-info .elementor-icon-list-item:not(:last-child):after{border-color:var( --e-global-color-text );}.elementor-widget-post-info .elementor-icon-list-icon i{color:var( --e-global-color-primary );}.elementor-widget-post-info .elementor-icon-list-icon svg{fill:var( --e-global-color-primary );}.elementor-widget-post-info .elementor-icon-list-text, .elementor-widget-post-info .elementor-icon-list-text a{color:var( --e-global-color-secondary );}.elementor-widget-post-info .elementor-icon-list-item{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-2959 .elementor-element.elementor-element-4bb2207 .elementor-icon-list-icon{width:14px;}.elementor-2959 .elementor-element.elementor-element-4bb2207 .elementor-icon-list-icon i{font-size:14px;}.elementor-2959 .elementor-element.elementor-element-4bb2207 .elementor-icon-list-icon svg{--e-icon-list-icon-size:14px;}.elementor-2959 .elementor-element.elementor-element-4bb2207 .elementor-icon-list-item{font-family:\"Outfit\", Sans-serif;font-size:10px;font-weight:400;}.elementor-widget-eael-creative-button .eael-creative-button .cretive-button-text{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-eael-creative-button .eael-creative-button--rayen::before, \n                                .elementor-widget-eael-creative-button .eael-creative-button--winona::after, \n                                .elementor-widget-eael-creative-button .eael-creative-button--tamaya .eael-creative-button--tamaya-secondary span,\n                                .elementor-widget-eael-creative-button .eael-creative-button.eael-creative-button--saqui::after{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button-icon-left svg, \n                    .elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button-icon-right svg{rotate:0deg;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button-icon-left i,\n                    .elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button-icon-right i{rotate:0deg;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button i{font-size:12px;color:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button svg{height:12px;width:12px;fill:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button .cretive-button-text{font-family:\"Outfit\", Sans-serif;font-size:12px;font-weight:400;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button--rayen::before, \n                                .elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button--winona::after, \n                                .elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button--tamaya .eael-creative-button--tamaya-secondary span,\n                                .elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button.eael-creative-button--saqui::after{font-family:\"Outfit\", Sans-serif;font-size:12px;font-weight:400;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button .creative-button-inner svg{fill:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button{color:#ffffff;border-radius:50px;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button .eael-creative-button--tamaya-secondary{color:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button.eael-creative-button--tamaya::before{color:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button.eael-creative-button--tamaya::after{color:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button::before{border-radius:50px;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button::after{border-radius:50px;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button:hover i{color:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button:hover .creative-button-inner svg{fill:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button:hover{color:#ffffff;background-color:var( --e-global-color-accent );}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button:hover svg{fill:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button.eael-creative-button--winona::after{color:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button.eael-creative-button--saqui::after{color:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button.eael-creative-button--ujarak::before{background-color:var( --e-global-color-accent );}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button.eael-creative-button--wayra:hover::before{background-color:var( --e-global-color-accent );}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button.eael-creative-button--tamaya:hover{background-color:var( --e-global-color-accent );}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button.eael-creative-button--rayen::before{background-color:var( --e-global-color-accent );}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button.eael-creative-button--rayen:hover::before{background-color:var( --e-global-color-accent );}@media(min-width:768px){.elementor-2959 .elementor-element.elementor-element-0e2781d{--width:40%;}.elementor-2959 .elementor-element.elementor-element-5cb05be{--width:60%;}}<\/style>\t\t<div data-elementor-type=\"loop-item\" data-elementor-id=\"2959\" class=\"elementor elementor-2959 uc-post-267 e-loop-item e-loop-item-267 post-267 post type-post status-publish format-standard has-post-thumbnail hentry category-foundation category-impact-stories tag-4 tag-news tag-press-release\" data-elementor-post-type=\"elementor_library\" data-custom-edit-handle=\"1\">\n\t\t\t<div class=\"elementor-element elementor-element-c4dd25a e-flex e-con-boxed e-con e-parent\" data-id=\"c4dd25a\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-0e2781d e-con-full e-flex e-con e-child\" data-id=\"0e2781d\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a192b1b elementor-widget elementor-widget-theme-post-featured-image elementor-widget-image\" data-id=\"a192b1b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"theme-post-featured-image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"800\" height=\"412\" src=\"https:\/\/cre8ivedge.net\/scfoundation\/wp-content\/uploads\/2025\/01\/dr.-manu-banner.webp\" class=\"attachment-large size-large wp-image-7423\" alt=\"\" srcset=\"https:\/\/cre8ivedge.net\/scfoundation\/wp-content\/uploads\/2025\/01\/dr.-manu-banner.webp 1020w, https:\/\/cre8ivedge.net\/scfoundation\/wp-content\/uploads\/2025\/01\/dr.-manu-banner-300x154.webp 300w, https:\/\/cre8ivedge.net\/scfoundation\/wp-content\/uploads\/2025\/01\/dr.-manu-banner-768x395.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-5cb05be e-con-full e-flex e-con e-child\" data-id=\"5cb05be\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-9b01582 elementor-widget elementor-widget-theme-post-title elementor-page-title elementor-widget-heading\" data-id=\"9b01582\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"theme-post-title.default\">\n\t\t\t\t\t<h4 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/cre8ivedge.net\/scfoundation\/fireside-reflections-with-dr-manu-chandaria\/\">Fireside Reflections with Dr. Manu Chandaria<\/a><\/h4>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-a2b23e3 elementor-widget elementor-widget-theme-post-excerpt\" data-id=\"a2b23e3\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"theme-post-excerpt.default\">\n\t\t\t\t\t<p>Dr. Manu Chandaria was at&nbsp;Strathmore University&nbsp;on August 18, 2025, for a Fireside Chat with Dr. Vincent Ogutu, the Vice Chancellor,\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4bb2207 elementor-widget elementor-widget-post-info\" data-id=\"4bb2207\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"post-info.default\">\n\t\t\t\t\t\t\t<ul class=\"elementor-inline-items elementor-icon-list-items elementor-post-info\">\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item elementor-repeater-item-c99e46a elementor-inline-item\" itemprop=\"datePublished\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text elementor-post-info__item elementor-post-info__item--type-date\">\n\t\t\t\t\t\t\t\t\t\t<time>2025<\/time>\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-ad186e5 elementor-widget elementor-widget-eael-creative-button\" data-id=\"ad186e5\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"eael-creative-button.default\">\n\t\t\t\t\t        <div class=\"eael-creative-button-wrapper\">\n\n            <a class=\"eael-creative-button eael-creative-button--rayen\" target=\"\" data-text=\"Click to Download\">\n            \t    \n                <div class=\"creative-button-inner\">\n\n                    \n                    <span class=\"cretive-button-text\">Download<\/span>\n\n                                            <span class=\"eael-creative-button-icon-right\"><svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-download\" viewBox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M216 0h80c13.3 0 24 10.7 24 24v168h87.7c17.8 0 26.7 21.5 14.1 34.1L269.7 378.3c-7.5 7.5-19.8 7.5-27.3 0L90.1 226.1c-12.6-12.6-3.7-34.1 14.1-34.1H192V24c0-13.3 10.7-24 24-24zm296 376v112c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V376c0-13.3 10.7-24 24-24h146.7l49 49c20.1 20.1 52.5 20.1 72.6 0l49-49H488c13.3 0 24 10.7 24 24zm-124 88c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20zm64 0c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20z\"><\/path><\/svg><\/span>                                    <\/div>\n\t                        <\/a>\n        <\/div>\n        \t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\n<\/div>\n<div class=\"ue-carousel-item ue-grid-item uc_marquee_holder\" data-link=\"https:\/\/cre8ivedge.net\/scfoundation\/from-village-to-vertex-how-a-scholarship-built-a-future-engineer\/\" data-loop=\"false\" data-postid=\"265\">\n  <style>.elementor-2959 .elementor-element.elementor-element-c4dd25a{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;border-style:solid;--border-style:solid;border-width:0px 0px 0.25px 0px;--border-top-width:0px;--border-right-width:0px;--border-bottom-width:0.25px;--border-left-width:0px;border-color:#DBDBDB;--border-color:#DBDBDB;}.elementor-2959 .elementor-element.elementor-element-0e2781d{--display:flex;--gap:8px 8px;--row-gap:8px;--column-gap:8px;}.elementor-widget-theme-post-featured-image .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-2959 .elementor-element.elementor-element-a192b1b img{width:100%;max-width:200px;border-radius:3px 3px 3px 3px;}.elementor-2959 .elementor-element.elementor-element-5cb05be{--display:flex;}.elementor-widget-theme-post-title .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-2959 .elementor-element.elementor-element-9b01582 .elementor-heading-title{font-family:\"Mochiy Pop One\", Sans-serif;font-size:15px;font-weight:300;line-height:1.2em;}.elementor-widget-theme-post-excerpt{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-2959 .elementor-element.elementor-element-a2b23e3{font-family:\"Outfit\", Sans-serif;font-size:13px;font-weight:400;}.elementor-widget-post-info .elementor-icon-list-item:not(:last-child):after{border-color:var( --e-global-color-text );}.elementor-widget-post-info .elementor-icon-list-icon i{color:var( --e-global-color-primary );}.elementor-widget-post-info .elementor-icon-list-icon svg{fill:var( --e-global-color-primary );}.elementor-widget-post-info .elementor-icon-list-text, .elementor-widget-post-info .elementor-icon-list-text a{color:var( --e-global-color-secondary );}.elementor-widget-post-info .elementor-icon-list-item{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-2959 .elementor-element.elementor-element-4bb2207 .elementor-icon-list-icon{width:14px;}.elementor-2959 .elementor-element.elementor-element-4bb2207 .elementor-icon-list-icon i{font-size:14px;}.elementor-2959 .elementor-element.elementor-element-4bb2207 .elementor-icon-list-icon svg{--e-icon-list-icon-size:14px;}.elementor-2959 .elementor-element.elementor-element-4bb2207 .elementor-icon-list-item{font-family:\"Outfit\", Sans-serif;font-size:10px;font-weight:400;}.elementor-widget-eael-creative-button .eael-creative-button .cretive-button-text{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-eael-creative-button .eael-creative-button--rayen::before, \n                                .elementor-widget-eael-creative-button .eael-creative-button--winona::after, \n                                .elementor-widget-eael-creative-button .eael-creative-button--tamaya .eael-creative-button--tamaya-secondary span,\n                                .elementor-widget-eael-creative-button .eael-creative-button.eael-creative-button--saqui::after{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button-icon-left svg, \n                    .elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button-icon-right svg{rotate:0deg;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button-icon-left i,\n                    .elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button-icon-right i{rotate:0deg;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button i{font-size:12px;color:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button svg{height:12px;width:12px;fill:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button .cretive-button-text{font-family:\"Outfit\", Sans-serif;font-size:12px;font-weight:400;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button--rayen::before, \n                                .elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button--winona::after, \n                                .elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button--tamaya .eael-creative-button--tamaya-secondary span,\n                                .elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button.eael-creative-button--saqui::after{font-family:\"Outfit\", Sans-serif;font-size:12px;font-weight:400;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button .creative-button-inner svg{fill:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button{color:#ffffff;border-radius:50px;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button .eael-creative-button--tamaya-secondary{color:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button.eael-creative-button--tamaya::before{color:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button.eael-creative-button--tamaya::after{color:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button::before{border-radius:50px;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button::after{border-radius:50px;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button:hover i{color:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button:hover .creative-button-inner svg{fill:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button:hover{color:#ffffff;background-color:var( --e-global-color-accent );}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button:hover svg{fill:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button.eael-creative-button--winona::after{color:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button.eael-creative-button--saqui::after{color:#ffffff;}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button.eael-creative-button--ujarak::before{background-color:var( --e-global-color-accent );}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button.eael-creative-button--wayra:hover::before{background-color:var( --e-global-color-accent );}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button.eael-creative-button--tamaya:hover{background-color:var( --e-global-color-accent );}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button.eael-creative-button--rayen::before{background-color:var( --e-global-color-accent );}.elementor-2959 .elementor-element.elementor-element-ad186e5 .eael-creative-button.eael-creative-button--rayen:hover::before{background-color:var( --e-global-color-accent );}@media(min-width:768px){.elementor-2959 .elementor-element.elementor-element-0e2781d{--width:40%;}.elementor-2959 .elementor-element.elementor-element-5cb05be{--width:60%;}}<\/style>\t\t<div data-elementor-type=\"loop-item\" data-elementor-id=\"2959\" class=\"elementor elementor-2959 uc-post-265 e-loop-item e-loop-item-265 post-265 post type-post status-publish format-standard has-post-thumbnail hentry category-impact-stories category-strathmore tag-4 tag-news tag-press-release\" data-elementor-post-type=\"elementor_library\" data-custom-edit-handle=\"1\">\n\t\t\t<div class=\"elementor-element elementor-element-c4dd25a e-flex e-con-boxed e-con e-parent\" data-id=\"c4dd25a\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-0e2781d e-con-full e-flex e-con e-child\" data-id=\"0e2781d\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a192b1b elementor-widget elementor-widget-theme-post-featured-image elementor-widget-image\" data-id=\"a192b1b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"theme-post-featured-image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"224\" height=\"224\" src=\"https:\/\/cre8ivedge.net\/scfoundation\/wp-content\/uploads\/2026\/01\/blog-pic.jpg\" class=\"attachment-large size-large wp-image-223\" alt=\"\" srcset=\"https:\/\/cre8ivedge.net\/scfoundation\/wp-content\/uploads\/2026\/01\/blog-pic.jpg 224w, https:\/\/cre8ivedge.net\/scfoundation\/wp-content\/uploads\/2026\/01\/blog-pic-150x150.jpg 150w\" sizes=\"(max-width: 224px) 100vw, 224px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-5cb05be e-con-full e-flex e-con e-child\" data-id=\"5cb05be\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-9b01582 elementor-widget elementor-widget-theme-post-title elementor-page-title elementor-widget-heading\" data-id=\"9b01582\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"theme-post-title.default\">\n\t\t\t\t\t<h4 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/cre8ivedge.net\/scfoundation\/from-village-to-vertex-how-a-scholarship-built-a-future-engineer\/\">From Village to Vertex: How a Scholarship Built a Future Engineer<\/a><\/h4>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-a2b23e3 elementor-widget elementor-widget-theme-post-excerpt\" data-id=\"a2b23e3\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"theme-post-excerpt.default\">\n\t\t\t\t\t<p>The creation of an endowed academic Centre allows the university to develop and enhance its research and learning in a\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4bb2207 elementor-widget elementor-widget-post-info\" data-id=\"4bb2207\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"post-info.default\">\n\t\t\t\t\t\t\t<ul class=\"elementor-inline-items elementor-icon-list-items elementor-post-info\">\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item elementor-repeater-item-c99e46a elementor-inline-item\" itemprop=\"datePublished\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text elementor-post-info__item elementor-post-info__item--type-date\">\n\t\t\t\t\t\t\t\t\t\t<time>2024<\/time>\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-ad186e5 elementor-widget elementor-widget-eael-creative-button\" data-id=\"ad186e5\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"eael-creative-button.default\">\n\t\t\t\t\t        <div class=\"eael-creative-button-wrapper\">\n\n            <a class=\"eael-creative-button eael-creative-button--rayen\" target=\"\" data-text=\"Click to Download\">\n            \t    \n                <div class=\"creative-button-inner\">\n\n                    \n                    <span class=\"cretive-button-text\">Download<\/span>\n\n                                            <span class=\"eael-creative-button-icon-right\"><svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-download\" viewBox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M216 0h80c13.3 0 24 10.7 24 24v168h87.7c17.8 0 26.7 21.5 14.1 34.1L269.7 378.3c-7.5 7.5-19.8 7.5-27.3 0L90.1 226.1c-12.6-12.6-3.7-34.1 14.1-34.1H192V24c0-13.3 10.7-24 24-24zm296 376v112c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V376c0-13.3 10.7-24 24-24h146.7l49 49c20.1 20.1 52.5 20.1 72.6 0l49-49H488c13.3 0 24 10.7 24 24zm-124 88c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20zm64 0c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20z\"><\/path><\/svg><\/span>                                    <\/div>\n\t                        <\/a>\n        <\/div>\n        \t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\n<\/div>\n\n      <\/div>\n    <\/div>\n  <\/div>\n<!-- end Loop Carousel -->\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-489856e e-con-full e-flex e-con e-child\" data-id=\"489856e\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>This hub is your definitive source for the measurable impact of the Strathmore University Foundation.Explore our latest news releases, download official reports and financial statements, and discover the inspiring stories of the students and partners shaping Africa&#8217;s future. Categories Date All Years 2026 2025 2024 2023 2022 2026 Download 2026 Download 2026 Download 2026 Download [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":199,"parent":16,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"footnotes":""},"class_list":["post-191","page","type-page","status-publish","has-post-thumbnail","hentry"],"acf":[],"_links":{"self":[{"href":"https:\/\/cre8ivedge.net\/scfoundation\/wp-json\/wp\/v2\/pages\/191","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/cre8ivedge.net\/scfoundation\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/cre8ivedge.net\/scfoundation\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/cre8ivedge.net\/scfoundation\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/cre8ivedge.net\/scfoundation\/wp-json\/wp\/v2\/comments?post=191"}],"version-history":[{"count":184,"href":"https:\/\/cre8ivedge.net\/scfoundation\/wp-json\/wp\/v2\/pages\/191\/revisions"}],"predecessor-version":[{"id":5275,"href":"https:\/\/cre8ivedge.net\/scfoundation\/wp-json\/wp\/v2\/pages\/191\/revisions\/5275"}],"up":[{"embeddable":true,"href":"https:\/\/cre8ivedge.net\/scfoundation\/wp-json\/wp\/v2\/pages\/16"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/cre8ivedge.net\/scfoundation\/wp-json\/wp\/v2\/media\/199"}],"wp:attachment":[{"href":"https:\/\/cre8ivedge.net\/scfoundation\/wp-json\/wp\/v2\/media?parent=191"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}