{"id":203,"date":"2026-01-14T06:58:03","date_gmt":"2026-01-14T06:58:03","guid":{"rendered":"https:\/\/cre8ivedge.net\/scfoundation\/hello-world\/news-and-articles\/"},"modified":"2026-03-23T15:44:56","modified_gmt":"2026-03-23T15:44:56","slug":"news-and-articles","status":"publish","type":"page","link":"https:\/\/cre8ivedge.net\/scfoundation\/media-center\/news-and-articles\/","title":{"rendered":"News and Articles"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"203\" class=\"elementor elementor-203\" 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>Stay connected with the latest developments from the Strathmore University Foundation. From strategic partnership announcements and funding milestones to updates, this is your official source for the events and decisions shaping the future of the University. Explore press releases, thought leadership, and institutional highlights below.<\/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-9b1b229 e-con-full e-flex e-con e-parent\" data-id=\"9b1b229\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-c92b28e elementor-widget elementor-widget-html\" data-id=\"c92b28e\" 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                       : 'news-articles';\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:.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<div class=\"elementor-element elementor-element-fec3c56 e-con-full e-flex e-con e-child\" data-id=\"fec3c56\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-83758bc e-con-full e-flex e-con e-child\" data-id=\"83758bc\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-0732f18 elementor-widget elementor-widget-html\" data-id=\"0732f18\" 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 News and articles...\"\r\n         aria-label=\"Search news-articles\" \/>\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-d57f095 e-con-full e-flex e-con e-child\" data-id=\"d57f095\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-4524a8d e-con-full e-flex e-con e-child\" data-id=\"4524a8d\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-71fa018 elementor-widget elementor-widget-heading\" data-id=\"71fa018\" 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-4e2051b elementor-widget elementor-widget-shortcode\" data-id=\"4e2051b\" 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=\"foundation-news-articles\">foundation<\/option><option value=\"news\">news<\/option><option value=\"press-release\">Press release<\/option><option value=\"strathmore-news-articles\">strathmore<\/option><\/select><\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-82cebc0 elementor-widget elementor-widget-heading\" data-id=\"82cebc0\" 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-07b10d8 elementor-widget elementor-widget-html\" data-id=\"07b10d8\" 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\r\n<\/div>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-edd58a8 elementor-widget elementor-widget-html\" data-id=\"edd58a8\" 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 class=\"elementor-element elementor-element-3cbf3f4 elementor-widget elementor-widget-html\" data-id=\"3cbf3f4\" 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-47b4902 e-con-full e-flex e-con e-child\" data-id=\"47b4902\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-1e2a3f8 elementor-widget elementor-widget-shortcode\" data-id=\"1e2a3f8\" 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\"><\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-bc3d476 elementor-grid-1 elementor-grid-tablet-2 elementor-grid-mobile-1 elementor-widget elementor-widget-loop-grid\" data-id=\"bc3d476\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;template_id&quot;:&quot;2409&quot;,&quot;columns&quot;:1,&quot;_skin&quot;:&quot;post&quot;,&quot;columns_tablet&quot;:&quot;2&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=\"elementor-loop-container elementor-grid\" role=\"list\">\n\t\t<style id=\"loop-2409\">.elementor-2409 .elementor-element.elementor-element-58bafa83{--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;--gap:0px 0px;--row-gap:0px;--column-gap:0px;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-2409 .elementor-element.elementor-element-5b253e53{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.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-2409 .elementor-element.elementor-element-610fae8d img{width:200px;height:140px;object-fit:cover;object-position:center center;border-radius:10px 10px 10px 10px;}.elementor-2409 .elementor-element.elementor-element-1eb8bdab{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.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-2409 .elementor-element.elementor-element-16cf01e .elementor-heading-title{font-family:\"Outfit\", Sans-serif;font-size:20px;font-weight:500;}.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-2409 .elementor-element.elementor-element-b0cdd9c{font-family:\"Outfit\", Sans-serif;font-size:16px;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-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-items:not(.elementor-inline-items) .elementor-icon-list-item:not(:last-child){padding-bottom:calc(5px\/2);}.elementor-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-items:not(.elementor-inline-items) .elementor-icon-list-item:not(:first-child){margin-top:calc(5px\/2);}.elementor-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item{margin-right:calc(5px\/2);margin-left:calc(5px\/2);}.elementor-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-items.elementor-inline-items{margin-right:calc(-5px\/2);margin-left:calc(-5px\/2);}body.rtl .elementor-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item:after{left:calc(-5px\/2);}body:not(.rtl) .elementor-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item:after{right:calc(-5px\/2);}.elementor-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-icon{width:14px;}.elementor-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-icon i{font-size:14px;}.elementor-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-icon svg{--e-icon-list-icon-size:14px;}.elementor-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-item{font-family:\"Outfit\", Sans-serif;font-size:12px;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-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button-icon-left svg, \n                    .elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button-icon-right svg{rotate:0deg;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button-icon-left i,\n                    .elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button-icon-right i{rotate:0deg;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button i{font-size:11px;color:#ffffff;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button svg{height:11px;width:11px;fill:#ffffff;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button .cretive-button-text{font-family:\"Outfit\", Sans-serif;font-size:14px;font-weight:600;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button--rayen::before, \n                                .elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button--winona::after, \n                                .elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button--tamaya .eael-creative-button--tamaya-secondary span,\n                                .elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--saqui::after{font-family:\"Outfit\", Sans-serif;font-size:12px;font-weight:600;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button-wrapper{justify-content:flex-start;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button{width:0px;padding:8px 3px 8px 03px;color:#ffffff;background-color:var( --e-global-color-primary );border-radius:50px;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--winona::after{padding:8px 3px 8px 03px;color:#ffffff;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--winona > .creative-button-inner{padding:8px 3px 8px 03px;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--tamaya::before{padding:8px 3px 8px 03px;color:#ffffff;background-color:var( --e-global-color-primary );}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--rayen::before{padding:8px 3px 8px 03px;background-color:var( --e-global-color-accent );}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--rayen > .creative-button-inner{padding:8px 3px 8px 03px;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--saqui::after{padding:8px 3px 8px 03px;color:#ffffff;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button .creative-button-inner svg{fill:#ffffff;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button .eael-creative-button--tamaya-secondary{color:#ffffff;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--tamaya::after{color:#ffffff;background-color:var( --e-global-color-primary );}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--ujarak:hover{background-color:var( --e-global-color-primary );}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--wayra:hover{background-color:var( --e-global-color-primary );}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button::before{border-radius:50px;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button::after{border-radius:50px;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button:hover i{color:#ffffff;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button:hover .creative-button-inner svg{fill:#ffffff;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button:hover{color:#ffffff;background-color:var( --e-global-color-accent );}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button:hover svg{fill:#ffffff;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--ujarak::before{background-color:var( --e-global-color-accent );}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--wayra:hover::before{background-color:var( --e-global-color-accent );}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--tamaya:hover{background-color:var( --e-global-color-accent );}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--rayen:hover::before{background-color:var( --e-global-color-accent );}@media(min-width:768px){.elementor-2409 .elementor-element.elementor-element-5b253e53{--width:50%;}.elementor-2409 .elementor-element.elementor-element-1eb8bdab{--width:66.6666%;}}<\/style>\t\t<div data-elementor-type=\"loop-item\" data-elementor-id=\"2409\" class=\"elementor elementor-2409 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-58bafa83 e-flex e-con-boxed e-con e-parent\" data-id=\"58bafa83\" 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-5b253e53 e-con-full e-flex e-con e-child\" data-id=\"5b253e53\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-610fae8d elementor-widget elementor-widget-theme-post-featured-image elementor-widget-image\" data-id=\"610fae8d\" 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\t<a href=\"https:\/\/cre8ivedge.net\/scfoundation\/suf-hosts-education-roundtable-dialogue-with-partners\/\">\n\t\t\t\t\t\t\t<img fetchpriority=\"high\" 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<\/a>\n\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-1eb8bdab e-con-full e-flex e-con e-child\" data-id=\"1eb8bdab\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-16cf01e elementor-widget elementor-widget-theme-post-title elementor-page-title elementor-widget-heading\" data-id=\"16cf01e\" 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-b0cdd9c elementor-widget elementor-widget-theme-post-excerpt\" data-id=\"b0cdd9c\" 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-3958dc85 elementor-align-left elementor-widget elementor-widget-post-info\" data-id=\"3958dc85\" 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-icon-list-items elementor-post-info\">\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item elementor-repeater-item-dd86f3b\" itemprop=\"datePublished\">\n\t\t\t\t\t\t<a href=\"https:\/\/cre8ivedge.net\/scfoundation\/2026\/03\/11\/\">\n\t\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\t<\/a>\n\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-7ff719d8 elementor-widget elementor-widget-eael-creative-button\" data-id=\"7ff719d8\" 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--default\" href=\"https:\/\/cre8ivedge.net\/scfoundation\/suf-hosts-education-roundtable-dialogue-with-partners\/\" data-text=\"\">\n            \t    \n                <div class=\"creative-button-inner\">\n\n                    \n                    <span class=\"cretive-button-text\">Learn More<\/span>\n\n                                    <\/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\t\t<\/div>\n\t\t\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-40ecc4b elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile e-flex e-con-boxed e-con e-parent\" data-id=\"40ecc4b\" 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-d543cc9 e-con-full e-flex e-con e-child\" data-id=\"d543cc9\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2cd91d2 elementor-widget elementor-widget-ucaddon_ue_listing_carousel\" data-id=\"2cd91d2\" 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_2cd91d2 *{\n  box-sizing:border-box;\n}\n#uc_ue_listing_carousel_elementor_2cd91d2{\n  display: none;\n  position:relative;\n  min-height:1px;\n}\n#uc_ue_listing_carousel_elementor_2cd91d2 .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_2cd91d2 .uc_carousel_item{\n  overflow:hidden;\n}\n\n\n\/* Layout type marquee *\/\n#uc_ue_listing_carousel_elementor_2cd91d2 .uc_marquee {\n  display: flex;\n  align-items: center;\n  overflow: hidden;\n  position: relative;\n}\n#uc_ue_listing_carousel_elementor_2cd91d2 .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_2cd91d2 .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_2cd91d2\" >\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-2409 .elementor-element.elementor-element-58bafa83{--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;--gap:0px 0px;--row-gap:0px;--column-gap:0px;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-2409 .elementor-element.elementor-element-5b253e53{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.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-2409 .elementor-element.elementor-element-610fae8d img{width:200px;height:140px;object-fit:cover;object-position:center center;border-radius:10px 10px 10px 10px;}.elementor-2409 .elementor-element.elementor-element-1eb8bdab{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.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-2409 .elementor-element.elementor-element-16cf01e .elementor-heading-title{font-family:\"Outfit\", Sans-serif;font-size:20px;font-weight:500;}.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-2409 .elementor-element.elementor-element-b0cdd9c{font-family:\"Outfit\", Sans-serif;font-size:16px;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-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-items:not(.elementor-inline-items) .elementor-icon-list-item:not(:last-child){padding-bottom:calc(5px\/2);}.elementor-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-items:not(.elementor-inline-items) .elementor-icon-list-item:not(:first-child){margin-top:calc(5px\/2);}.elementor-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item{margin-right:calc(5px\/2);margin-left:calc(5px\/2);}.elementor-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-items.elementor-inline-items{margin-right:calc(-5px\/2);margin-left:calc(-5px\/2);}body.rtl .elementor-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item:after{left:calc(-5px\/2);}body:not(.rtl) .elementor-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item:after{right:calc(-5px\/2);}.elementor-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-icon{width:14px;}.elementor-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-icon i{font-size:14px;}.elementor-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-icon svg{--e-icon-list-icon-size:14px;}.elementor-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-item{font-family:\"Outfit\", Sans-serif;font-size:12px;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-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button-icon-left svg, \n                    .elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button-icon-right svg{rotate:0deg;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button-icon-left i,\n                    .elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button-icon-right i{rotate:0deg;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button i{font-size:11px;color:#ffffff;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button svg{height:11px;width:11px;fill:#ffffff;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button .cretive-button-text{font-family:\"Outfit\", Sans-serif;font-size:14px;font-weight:600;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button--rayen::before, \n                                .elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button--winona::after, \n                                .elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button--tamaya .eael-creative-button--tamaya-secondary span,\n                                .elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--saqui::after{font-family:\"Outfit\", Sans-serif;font-size:12px;font-weight:600;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button-wrapper{justify-content:flex-start;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button{width:0px;padding:8px 3px 8px 03px;color:#ffffff;background-color:var( --e-global-color-primary );border-radius:50px;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--winona::after{padding:8px 3px 8px 03px;color:#ffffff;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--winona > .creative-button-inner{padding:8px 3px 8px 03px;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--tamaya::before{padding:8px 3px 8px 03px;color:#ffffff;background-color:var( --e-global-color-primary );}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--rayen::before{padding:8px 3px 8px 03px;background-color:var( --e-global-color-accent );}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--rayen > .creative-button-inner{padding:8px 3px 8px 03px;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--saqui::after{padding:8px 3px 8px 03px;color:#ffffff;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button .creative-button-inner svg{fill:#ffffff;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button .eael-creative-button--tamaya-secondary{color:#ffffff;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--tamaya::after{color:#ffffff;background-color:var( --e-global-color-primary );}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--ujarak:hover{background-color:var( --e-global-color-primary );}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--wayra:hover{background-color:var( --e-global-color-primary );}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button::before{border-radius:50px;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button::after{border-radius:50px;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button:hover i{color:#ffffff;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button:hover .creative-button-inner svg{fill:#ffffff;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button:hover{color:#ffffff;background-color:var( --e-global-color-accent );}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button:hover svg{fill:#ffffff;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--ujarak::before{background-color:var( --e-global-color-accent );}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--wayra:hover::before{background-color:var( --e-global-color-accent );}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--tamaya:hover{background-color:var( --e-global-color-accent );}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--rayen:hover::before{background-color:var( --e-global-color-accent );}@media(min-width:768px){.elementor-2409 .elementor-element.elementor-element-5b253e53{--width:50%;}.elementor-2409 .elementor-element.elementor-element-1eb8bdab{--width:66.6666%;}}<\/style>\t\t<div data-elementor-type=\"loop-item\" data-elementor-id=\"2409\" class=\"elementor elementor-2409 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-58bafa83 e-flex e-con-boxed e-con e-parent\" data-id=\"58bafa83\" 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-5b253e53 e-con-full e-flex e-con e-child\" data-id=\"5b253e53\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-610fae8d elementor-widget elementor-widget-theme-post-featured-image elementor-widget-image\" data-id=\"610fae8d\" 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\t<a href=\"https:\/\/cre8ivedge.net\/scfoundation\/how-one-scholarship-is-touching-hundreds-of-lives\/\">\n\t\t\t\t\t\t\t<img 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<\/a>\n\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-1eb8bdab e-con-full e-flex e-con e-child\" data-id=\"1eb8bdab\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-16cf01e elementor-widget elementor-widget-theme-post-title elementor-page-title elementor-widget-heading\" data-id=\"16cf01e\" 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-b0cdd9c elementor-widget elementor-widget-theme-post-excerpt\" data-id=\"b0cdd9c\" 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-3958dc85 elementor-align-left elementor-widget elementor-widget-post-info\" data-id=\"3958dc85\" 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-icon-list-items elementor-post-info\">\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item elementor-repeater-item-dd86f3b\" itemprop=\"datePublished\">\n\t\t\t\t\t\t<a href=\"https:\/\/cre8ivedge.net\/scfoundation\/2026\/03\/17\/\">\n\t\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\t<\/a>\n\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-7ff719d8 elementor-widget elementor-widget-eael-creative-button\" data-id=\"7ff719d8\" 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--default\" href=\"https:\/\/cre8ivedge.net\/scfoundation\/how-one-scholarship-is-touching-hundreds-of-lives\/\" data-text=\"\">\n            \t    \n                <div class=\"creative-button-inner\">\n\n                    \n                    <span class=\"cretive-button-text\">Learn More<\/span>\n\n                                    <\/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-2409 .elementor-element.elementor-element-58bafa83{--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;--gap:0px 0px;--row-gap:0px;--column-gap:0px;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-2409 .elementor-element.elementor-element-5b253e53{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.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-2409 .elementor-element.elementor-element-610fae8d img{width:200px;height:140px;object-fit:cover;object-position:center center;border-radius:10px 10px 10px 10px;}.elementor-2409 .elementor-element.elementor-element-1eb8bdab{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.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-2409 .elementor-element.elementor-element-16cf01e .elementor-heading-title{font-family:\"Outfit\", Sans-serif;font-size:20px;font-weight:500;}.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-2409 .elementor-element.elementor-element-b0cdd9c{font-family:\"Outfit\", Sans-serif;font-size:16px;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-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-items:not(.elementor-inline-items) .elementor-icon-list-item:not(:last-child){padding-bottom:calc(5px\/2);}.elementor-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-items:not(.elementor-inline-items) .elementor-icon-list-item:not(:first-child){margin-top:calc(5px\/2);}.elementor-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item{margin-right:calc(5px\/2);margin-left:calc(5px\/2);}.elementor-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-items.elementor-inline-items{margin-right:calc(-5px\/2);margin-left:calc(-5px\/2);}body.rtl .elementor-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item:after{left:calc(-5px\/2);}body:not(.rtl) .elementor-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item:after{right:calc(-5px\/2);}.elementor-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-icon{width:14px;}.elementor-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-icon i{font-size:14px;}.elementor-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-icon svg{--e-icon-list-icon-size:14px;}.elementor-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-item{font-family:\"Outfit\", Sans-serif;font-size:12px;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-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button-icon-left svg, \n                    .elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button-icon-right svg{rotate:0deg;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button-icon-left i,\n                    .elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button-icon-right i{rotate:0deg;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button i{font-size:11px;color:#ffffff;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button svg{height:11px;width:11px;fill:#ffffff;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button .cretive-button-text{font-family:\"Outfit\", Sans-serif;font-size:14px;font-weight:600;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button--rayen::before, \n                                .elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button--winona::after, \n                                .elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button--tamaya .eael-creative-button--tamaya-secondary span,\n                                .elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--saqui::after{font-family:\"Outfit\", Sans-serif;font-size:12px;font-weight:600;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button-wrapper{justify-content:flex-start;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button{width:0px;padding:8px 3px 8px 03px;color:#ffffff;background-color:var( --e-global-color-primary );border-radius:50px;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--winona::after{padding:8px 3px 8px 03px;color:#ffffff;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--winona > .creative-button-inner{padding:8px 3px 8px 03px;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--tamaya::before{padding:8px 3px 8px 03px;color:#ffffff;background-color:var( --e-global-color-primary );}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--rayen::before{padding:8px 3px 8px 03px;background-color:var( --e-global-color-accent );}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--rayen > .creative-button-inner{padding:8px 3px 8px 03px;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--saqui::after{padding:8px 3px 8px 03px;color:#ffffff;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button .creative-button-inner svg{fill:#ffffff;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button .eael-creative-button--tamaya-secondary{color:#ffffff;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--tamaya::after{color:#ffffff;background-color:var( --e-global-color-primary );}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--ujarak:hover{background-color:var( --e-global-color-primary );}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--wayra:hover{background-color:var( --e-global-color-primary );}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button::before{border-radius:50px;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button::after{border-radius:50px;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button:hover i{color:#ffffff;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button:hover .creative-button-inner svg{fill:#ffffff;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button:hover{color:#ffffff;background-color:var( --e-global-color-accent );}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button:hover svg{fill:#ffffff;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--ujarak::before{background-color:var( --e-global-color-accent );}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--wayra:hover::before{background-color:var( --e-global-color-accent );}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--tamaya:hover{background-color:var( --e-global-color-accent );}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--rayen:hover::before{background-color:var( --e-global-color-accent );}@media(min-width:768px){.elementor-2409 .elementor-element.elementor-element-5b253e53{--width:50%;}.elementor-2409 .elementor-element.elementor-element-1eb8bdab{--width:66.6666%;}}<\/style>\t\t<div data-elementor-type=\"loop-item\" data-elementor-id=\"2409\" class=\"elementor elementor-2409 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-58bafa83 e-flex e-con-boxed e-con e-parent\" data-id=\"58bafa83\" 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-5b253e53 e-con-full e-flex e-con e-child\" data-id=\"5b253e53\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-610fae8d elementor-widget elementor-widget-theme-post-featured-image elementor-widget-image\" data-id=\"610fae8d\" 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\t<a href=\"https:\/\/cre8ivedge.net\/scfoundation\/powering-communities-through-renewable-energy\/\">\n\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<\/a>\n\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-1eb8bdab e-con-full e-flex e-con e-child\" data-id=\"1eb8bdab\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-16cf01e elementor-widget elementor-widget-theme-post-title elementor-page-title elementor-widget-heading\" data-id=\"16cf01e\" 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-b0cdd9c elementor-widget elementor-widget-theme-post-excerpt\" data-id=\"b0cdd9c\" 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-3958dc85 elementor-align-left elementor-widget elementor-widget-post-info\" data-id=\"3958dc85\" 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-icon-list-items elementor-post-info\">\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item elementor-repeater-item-dd86f3b\" itemprop=\"datePublished\">\n\t\t\t\t\t\t<a href=\"https:\/\/cre8ivedge.net\/scfoundation\/2026\/03\/17\/\">\n\t\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\t<\/a>\n\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-7ff719d8 elementor-widget elementor-widget-eael-creative-button\" data-id=\"7ff719d8\" 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--default\" href=\"https:\/\/cre8ivedge.net\/scfoundation\/powering-communities-through-renewable-energy\/\" data-text=\"\">\n            \t    \n                <div class=\"creative-button-inner\">\n\n                    \n                    <span class=\"cretive-button-text\">Learn More<\/span>\n\n                                    <\/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-2409 .elementor-element.elementor-element-58bafa83{--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;--gap:0px 0px;--row-gap:0px;--column-gap:0px;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-2409 .elementor-element.elementor-element-5b253e53{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.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-2409 .elementor-element.elementor-element-610fae8d img{width:200px;height:140px;object-fit:cover;object-position:center center;border-radius:10px 10px 10px 10px;}.elementor-2409 .elementor-element.elementor-element-1eb8bdab{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.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-2409 .elementor-element.elementor-element-16cf01e .elementor-heading-title{font-family:\"Outfit\", Sans-serif;font-size:20px;font-weight:500;}.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-2409 .elementor-element.elementor-element-b0cdd9c{font-family:\"Outfit\", Sans-serif;font-size:16px;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-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-items:not(.elementor-inline-items) .elementor-icon-list-item:not(:last-child){padding-bottom:calc(5px\/2);}.elementor-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-items:not(.elementor-inline-items) .elementor-icon-list-item:not(:first-child){margin-top:calc(5px\/2);}.elementor-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item{margin-right:calc(5px\/2);margin-left:calc(5px\/2);}.elementor-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-items.elementor-inline-items{margin-right:calc(-5px\/2);margin-left:calc(-5px\/2);}body.rtl .elementor-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item:after{left:calc(-5px\/2);}body:not(.rtl) .elementor-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item:after{right:calc(-5px\/2);}.elementor-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-icon{width:14px;}.elementor-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-icon i{font-size:14px;}.elementor-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-icon svg{--e-icon-list-icon-size:14px;}.elementor-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-item{font-family:\"Outfit\", Sans-serif;font-size:12px;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-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button-icon-left svg, \n                    .elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button-icon-right svg{rotate:0deg;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button-icon-left i,\n                    .elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button-icon-right i{rotate:0deg;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button i{font-size:11px;color:#ffffff;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button svg{height:11px;width:11px;fill:#ffffff;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button .cretive-button-text{font-family:\"Outfit\", Sans-serif;font-size:14px;font-weight:600;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button--rayen::before, \n                                .elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button--winona::after, \n                                .elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button--tamaya .eael-creative-button--tamaya-secondary span,\n                                .elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--saqui::after{font-family:\"Outfit\", Sans-serif;font-size:12px;font-weight:600;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button-wrapper{justify-content:flex-start;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button{width:0px;padding:8px 3px 8px 03px;color:#ffffff;background-color:var( --e-global-color-primary );border-radius:50px;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--winona::after{padding:8px 3px 8px 03px;color:#ffffff;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--winona > .creative-button-inner{padding:8px 3px 8px 03px;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--tamaya::before{padding:8px 3px 8px 03px;color:#ffffff;background-color:var( --e-global-color-primary );}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--rayen::before{padding:8px 3px 8px 03px;background-color:var( --e-global-color-accent );}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--rayen > .creative-button-inner{padding:8px 3px 8px 03px;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--saqui::after{padding:8px 3px 8px 03px;color:#ffffff;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button .creative-button-inner svg{fill:#ffffff;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button .eael-creative-button--tamaya-secondary{color:#ffffff;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--tamaya::after{color:#ffffff;background-color:var( --e-global-color-primary );}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--ujarak:hover{background-color:var( --e-global-color-primary );}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--wayra:hover{background-color:var( --e-global-color-primary );}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button::before{border-radius:50px;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button::after{border-radius:50px;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button:hover i{color:#ffffff;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button:hover .creative-button-inner svg{fill:#ffffff;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button:hover{color:#ffffff;background-color:var( --e-global-color-accent );}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button:hover svg{fill:#ffffff;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--ujarak::before{background-color:var( --e-global-color-accent );}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--wayra:hover::before{background-color:var( --e-global-color-accent );}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--tamaya:hover{background-color:var( --e-global-color-accent );}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--rayen:hover::before{background-color:var( --e-global-color-accent );}@media(min-width:768px){.elementor-2409 .elementor-element.elementor-element-5b253e53{--width:50%;}.elementor-2409 .elementor-element.elementor-element-1eb8bdab{--width:66.6666%;}}<\/style>\t\t<div data-elementor-type=\"loop-item\" data-elementor-id=\"2409\" class=\"elementor elementor-2409 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-58bafa83 e-flex e-con-boxed e-con e-parent\" data-id=\"58bafa83\" 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-5b253e53 e-con-full e-flex e-con e-child\" data-id=\"5b253e53\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-610fae8d elementor-widget elementor-widget-theme-post-featured-image elementor-widget-image\" data-id=\"610fae8d\" 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\t<a href=\"https:\/\/cre8ivedge.net\/scfoundation\/suf-hosts-education-roundtable-dialogue-with-partners\/\">\n\t\t\t\t\t\t\t<img fetchpriority=\"high\" 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<\/a>\n\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-1eb8bdab e-con-full e-flex e-con e-child\" data-id=\"1eb8bdab\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-16cf01e elementor-widget elementor-widget-theme-post-title elementor-page-title elementor-widget-heading\" data-id=\"16cf01e\" 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-b0cdd9c elementor-widget elementor-widget-theme-post-excerpt\" data-id=\"b0cdd9c\" 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-3958dc85 elementor-align-left elementor-widget elementor-widget-post-info\" data-id=\"3958dc85\" 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-icon-list-items elementor-post-info\">\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item elementor-repeater-item-dd86f3b\" itemprop=\"datePublished\">\n\t\t\t\t\t\t<a href=\"https:\/\/cre8ivedge.net\/scfoundation\/2026\/03\/11\/\">\n\t\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\t<\/a>\n\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-7ff719d8 elementor-widget elementor-widget-eael-creative-button\" data-id=\"7ff719d8\" 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--default\" href=\"https:\/\/cre8ivedge.net\/scfoundation\/suf-hosts-education-roundtable-dialogue-with-partners\/\" data-text=\"\">\n            \t    \n                <div class=\"creative-button-inner\">\n\n                    \n                    <span class=\"cretive-button-text\">Learn More<\/span>\n\n                                    <\/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-2409 .elementor-element.elementor-element-58bafa83{--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;--gap:0px 0px;--row-gap:0px;--column-gap:0px;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-2409 .elementor-element.elementor-element-5b253e53{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.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-2409 .elementor-element.elementor-element-610fae8d img{width:200px;height:140px;object-fit:cover;object-position:center center;border-radius:10px 10px 10px 10px;}.elementor-2409 .elementor-element.elementor-element-1eb8bdab{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.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-2409 .elementor-element.elementor-element-16cf01e .elementor-heading-title{font-family:\"Outfit\", Sans-serif;font-size:20px;font-weight:500;}.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-2409 .elementor-element.elementor-element-b0cdd9c{font-family:\"Outfit\", Sans-serif;font-size:16px;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-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-items:not(.elementor-inline-items) .elementor-icon-list-item:not(:last-child){padding-bottom:calc(5px\/2);}.elementor-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-items:not(.elementor-inline-items) .elementor-icon-list-item:not(:first-child){margin-top:calc(5px\/2);}.elementor-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item{margin-right:calc(5px\/2);margin-left:calc(5px\/2);}.elementor-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-items.elementor-inline-items{margin-right:calc(-5px\/2);margin-left:calc(-5px\/2);}body.rtl .elementor-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item:after{left:calc(-5px\/2);}body:not(.rtl) .elementor-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item:after{right:calc(-5px\/2);}.elementor-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-icon{width:14px;}.elementor-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-icon i{font-size:14px;}.elementor-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-icon svg{--e-icon-list-icon-size:14px;}.elementor-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-item{font-family:\"Outfit\", Sans-serif;font-size:12px;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-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button-icon-left svg, \n                    .elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button-icon-right svg{rotate:0deg;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button-icon-left i,\n                    .elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button-icon-right i{rotate:0deg;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button i{font-size:11px;color:#ffffff;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button svg{height:11px;width:11px;fill:#ffffff;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button .cretive-button-text{font-family:\"Outfit\", Sans-serif;font-size:14px;font-weight:600;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button--rayen::before, \n                                .elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button--winona::after, \n                                .elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button--tamaya .eael-creative-button--tamaya-secondary span,\n                                .elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--saqui::after{font-family:\"Outfit\", Sans-serif;font-size:12px;font-weight:600;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button-wrapper{justify-content:flex-start;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button{width:0px;padding:8px 3px 8px 03px;color:#ffffff;background-color:var( --e-global-color-primary );border-radius:50px;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--winona::after{padding:8px 3px 8px 03px;color:#ffffff;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--winona > .creative-button-inner{padding:8px 3px 8px 03px;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--tamaya::before{padding:8px 3px 8px 03px;color:#ffffff;background-color:var( --e-global-color-primary );}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--rayen::before{padding:8px 3px 8px 03px;background-color:var( --e-global-color-accent );}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--rayen > .creative-button-inner{padding:8px 3px 8px 03px;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--saqui::after{padding:8px 3px 8px 03px;color:#ffffff;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button .creative-button-inner svg{fill:#ffffff;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button .eael-creative-button--tamaya-secondary{color:#ffffff;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--tamaya::after{color:#ffffff;background-color:var( --e-global-color-primary );}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--ujarak:hover{background-color:var( --e-global-color-primary );}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--wayra:hover{background-color:var( --e-global-color-primary );}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button::before{border-radius:50px;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button::after{border-radius:50px;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button:hover i{color:#ffffff;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button:hover .creative-button-inner svg{fill:#ffffff;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button:hover{color:#ffffff;background-color:var( --e-global-color-accent );}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button:hover svg{fill:#ffffff;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--ujarak::before{background-color:var( --e-global-color-accent );}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--wayra:hover::before{background-color:var( --e-global-color-accent );}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--tamaya:hover{background-color:var( --e-global-color-accent );}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--rayen:hover::before{background-color:var( --e-global-color-accent );}@media(min-width:768px){.elementor-2409 .elementor-element.elementor-element-5b253e53{--width:50%;}.elementor-2409 .elementor-element.elementor-element-1eb8bdab{--width:66.6666%;}}<\/style>\t\t<div data-elementor-type=\"loop-item\" data-elementor-id=\"2409\" class=\"elementor elementor-2409 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-58bafa83 e-flex e-con-boxed e-con e-parent\" data-id=\"58bafa83\" 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-5b253e53 e-con-full e-flex e-con e-child\" data-id=\"5b253e53\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-610fae8d elementor-widget elementor-widget-theme-post-featured-image elementor-widget-image\" data-id=\"610fae8d\" 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\t<a href=\"https:\/\/cre8ivedge.net\/scfoundation\/legacy-of-giving-dr-manu-chandaria-inspires-future-philanthropists\/\">\n\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<\/a>\n\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-1eb8bdab e-con-full e-flex e-con e-child\" data-id=\"1eb8bdab\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-16cf01e elementor-widget elementor-widget-theme-post-title elementor-page-title elementor-widget-heading\" data-id=\"16cf01e\" 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-b0cdd9c elementor-widget elementor-widget-theme-post-excerpt\" data-id=\"b0cdd9c\" 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-3958dc85 elementor-align-left elementor-widget elementor-widget-post-info\" data-id=\"3958dc85\" 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-icon-list-items elementor-post-info\">\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item elementor-repeater-item-dd86f3b\" itemprop=\"datePublished\">\n\t\t\t\t\t\t<a href=\"https:\/\/cre8ivedge.net\/scfoundation\/2026\/02\/12\/\">\n\t\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\t<\/a>\n\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-7ff719d8 elementor-widget elementor-widget-eael-creative-button\" data-id=\"7ff719d8\" 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--default\" href=\"https:\/\/cre8ivedge.net\/scfoundation\/legacy-of-giving-dr-manu-chandaria-inspires-future-philanthropists\/\" data-text=\"\">\n            \t    \n                <div class=\"creative-button-inner\">\n\n                    \n                    <span class=\"cretive-button-text\">Learn More<\/span>\n\n                                    <\/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-2409 .elementor-element.elementor-element-58bafa83{--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;--gap:0px 0px;--row-gap:0px;--column-gap:0px;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-2409 .elementor-element.elementor-element-5b253e53{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.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-2409 .elementor-element.elementor-element-610fae8d img{width:200px;height:140px;object-fit:cover;object-position:center center;border-radius:10px 10px 10px 10px;}.elementor-2409 .elementor-element.elementor-element-1eb8bdab{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.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-2409 .elementor-element.elementor-element-16cf01e .elementor-heading-title{font-family:\"Outfit\", Sans-serif;font-size:20px;font-weight:500;}.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-2409 .elementor-element.elementor-element-b0cdd9c{font-family:\"Outfit\", Sans-serif;font-size:16px;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-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-items:not(.elementor-inline-items) .elementor-icon-list-item:not(:last-child){padding-bottom:calc(5px\/2);}.elementor-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-items:not(.elementor-inline-items) .elementor-icon-list-item:not(:first-child){margin-top:calc(5px\/2);}.elementor-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item{margin-right:calc(5px\/2);margin-left:calc(5px\/2);}.elementor-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-items.elementor-inline-items{margin-right:calc(-5px\/2);margin-left:calc(-5px\/2);}body.rtl .elementor-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item:after{left:calc(-5px\/2);}body:not(.rtl) .elementor-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item:after{right:calc(-5px\/2);}.elementor-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-icon{width:14px;}.elementor-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-icon i{font-size:14px;}.elementor-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-icon svg{--e-icon-list-icon-size:14px;}.elementor-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-item{font-family:\"Outfit\", Sans-serif;font-size:12px;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-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button-icon-left svg, \n                    .elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button-icon-right svg{rotate:0deg;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button-icon-left i,\n                    .elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button-icon-right i{rotate:0deg;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button i{font-size:11px;color:#ffffff;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button svg{height:11px;width:11px;fill:#ffffff;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button .cretive-button-text{font-family:\"Outfit\", Sans-serif;font-size:14px;font-weight:600;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button--rayen::before, \n                                .elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button--winona::after, \n                                .elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button--tamaya .eael-creative-button--tamaya-secondary span,\n                                .elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--saqui::after{font-family:\"Outfit\", Sans-serif;font-size:12px;font-weight:600;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button-wrapper{justify-content:flex-start;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button{width:0px;padding:8px 3px 8px 03px;color:#ffffff;background-color:var( --e-global-color-primary );border-radius:50px;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--winona::after{padding:8px 3px 8px 03px;color:#ffffff;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--winona > .creative-button-inner{padding:8px 3px 8px 03px;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--tamaya::before{padding:8px 3px 8px 03px;color:#ffffff;background-color:var( --e-global-color-primary );}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--rayen::before{padding:8px 3px 8px 03px;background-color:var( --e-global-color-accent );}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--rayen > .creative-button-inner{padding:8px 3px 8px 03px;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--saqui::after{padding:8px 3px 8px 03px;color:#ffffff;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button .creative-button-inner svg{fill:#ffffff;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button .eael-creative-button--tamaya-secondary{color:#ffffff;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--tamaya::after{color:#ffffff;background-color:var( --e-global-color-primary );}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--ujarak:hover{background-color:var( --e-global-color-primary );}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--wayra:hover{background-color:var( --e-global-color-primary );}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button::before{border-radius:50px;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button::after{border-radius:50px;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button:hover i{color:#ffffff;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button:hover .creative-button-inner svg{fill:#ffffff;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button:hover{color:#ffffff;background-color:var( --e-global-color-accent );}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button:hover svg{fill:#ffffff;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--ujarak::before{background-color:var( --e-global-color-accent );}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--wayra:hover::before{background-color:var( --e-global-color-accent );}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--tamaya:hover{background-color:var( --e-global-color-accent );}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--rayen:hover::before{background-color:var( --e-global-color-accent );}@media(min-width:768px){.elementor-2409 .elementor-element.elementor-element-5b253e53{--width:50%;}.elementor-2409 .elementor-element.elementor-element-1eb8bdab{--width:66.6666%;}}<\/style>\t\t<div data-elementor-type=\"loop-item\" data-elementor-id=\"2409\" class=\"elementor elementor-2409 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-58bafa83 e-flex e-con-boxed e-con e-parent\" data-id=\"58bafa83\" 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-5b253e53 e-con-full e-flex e-con e-child\" data-id=\"5b253e53\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-610fae8d elementor-widget elementor-widget-theme-post-featured-image elementor-widget-image\" data-id=\"610fae8d\" 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\t<a href=\"https:\/\/cre8ivedge.net\/scfoundation\/kes-2-billion-milestone-transforming-futures-through-scholarships\/\">\n\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<\/a>\n\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-1eb8bdab e-con-full e-flex e-con e-child\" data-id=\"1eb8bdab\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-16cf01e elementor-widget elementor-widget-theme-post-title elementor-page-title elementor-widget-heading\" data-id=\"16cf01e\" 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-b0cdd9c elementor-widget elementor-widget-theme-post-excerpt\" data-id=\"b0cdd9c\" 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-3958dc85 elementor-align-left elementor-widget elementor-widget-post-info\" data-id=\"3958dc85\" 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-icon-list-items elementor-post-info\">\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item elementor-repeater-item-dd86f3b\" itemprop=\"datePublished\">\n\t\t\t\t\t\t<a href=\"https:\/\/cre8ivedge.net\/scfoundation\/2026\/02\/12\/\">\n\t\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\t<\/a>\n\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-7ff719d8 elementor-widget elementor-widget-eael-creative-button\" data-id=\"7ff719d8\" 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--default\" href=\"https:\/\/cre8ivedge.net\/scfoundation\/kes-2-billion-milestone-transforming-futures-through-scholarships\/\" data-text=\"\">\n            \t    \n                <div class=\"creative-button-inner\">\n\n                    \n                    <span class=\"cretive-button-text\">Learn More<\/span>\n\n                                    <\/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-2409 .elementor-element.elementor-element-58bafa83{--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;--gap:0px 0px;--row-gap:0px;--column-gap:0px;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-2409 .elementor-element.elementor-element-5b253e53{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.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-2409 .elementor-element.elementor-element-610fae8d img{width:200px;height:140px;object-fit:cover;object-position:center center;border-radius:10px 10px 10px 10px;}.elementor-2409 .elementor-element.elementor-element-1eb8bdab{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.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-2409 .elementor-element.elementor-element-16cf01e .elementor-heading-title{font-family:\"Outfit\", Sans-serif;font-size:20px;font-weight:500;}.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-2409 .elementor-element.elementor-element-b0cdd9c{font-family:\"Outfit\", Sans-serif;font-size:16px;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-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-items:not(.elementor-inline-items) .elementor-icon-list-item:not(:last-child){padding-bottom:calc(5px\/2);}.elementor-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-items:not(.elementor-inline-items) .elementor-icon-list-item:not(:first-child){margin-top:calc(5px\/2);}.elementor-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item{margin-right:calc(5px\/2);margin-left:calc(5px\/2);}.elementor-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-items.elementor-inline-items{margin-right:calc(-5px\/2);margin-left:calc(-5px\/2);}body.rtl .elementor-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item:after{left:calc(-5px\/2);}body:not(.rtl) .elementor-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item:after{right:calc(-5px\/2);}.elementor-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-icon{width:14px;}.elementor-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-icon i{font-size:14px;}.elementor-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-icon svg{--e-icon-list-icon-size:14px;}.elementor-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-item{font-family:\"Outfit\", Sans-serif;font-size:12px;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-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button-icon-left svg, \n                    .elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button-icon-right svg{rotate:0deg;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button-icon-left i,\n                    .elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button-icon-right i{rotate:0deg;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button i{font-size:11px;color:#ffffff;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button svg{height:11px;width:11px;fill:#ffffff;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button .cretive-button-text{font-family:\"Outfit\", Sans-serif;font-size:14px;font-weight:600;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button--rayen::before, \n                                .elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button--winona::after, \n                                .elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button--tamaya .eael-creative-button--tamaya-secondary span,\n                                .elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--saqui::after{font-family:\"Outfit\", Sans-serif;font-size:12px;font-weight:600;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button-wrapper{justify-content:flex-start;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button{width:0px;padding:8px 3px 8px 03px;color:#ffffff;background-color:var( --e-global-color-primary );border-radius:50px;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--winona::after{padding:8px 3px 8px 03px;color:#ffffff;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--winona > .creative-button-inner{padding:8px 3px 8px 03px;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--tamaya::before{padding:8px 3px 8px 03px;color:#ffffff;background-color:var( --e-global-color-primary );}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--rayen::before{padding:8px 3px 8px 03px;background-color:var( --e-global-color-accent );}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--rayen > .creative-button-inner{padding:8px 3px 8px 03px;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--saqui::after{padding:8px 3px 8px 03px;color:#ffffff;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button .creative-button-inner svg{fill:#ffffff;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button .eael-creative-button--tamaya-secondary{color:#ffffff;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--tamaya::after{color:#ffffff;background-color:var( --e-global-color-primary );}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--ujarak:hover{background-color:var( --e-global-color-primary );}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--wayra:hover{background-color:var( --e-global-color-primary );}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button::before{border-radius:50px;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button::after{border-radius:50px;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button:hover i{color:#ffffff;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button:hover .creative-button-inner svg{fill:#ffffff;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button:hover{color:#ffffff;background-color:var( --e-global-color-accent );}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button:hover svg{fill:#ffffff;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--ujarak::before{background-color:var( --e-global-color-accent );}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--wayra:hover::before{background-color:var( --e-global-color-accent );}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--tamaya:hover{background-color:var( --e-global-color-accent );}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--rayen:hover::before{background-color:var( --e-global-color-accent );}@media(min-width:768px){.elementor-2409 .elementor-element.elementor-element-5b253e53{--width:50%;}.elementor-2409 .elementor-element.elementor-element-1eb8bdab{--width:66.6666%;}}<\/style>\t\t<div data-elementor-type=\"loop-item\" data-elementor-id=\"2409\" class=\"elementor elementor-2409 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-58bafa83 e-flex e-con-boxed e-con e-parent\" data-id=\"58bafa83\" 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-5b253e53 e-con-full e-flex e-con e-child\" data-id=\"5b253e53\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-610fae8d elementor-widget elementor-widget-theme-post-featured-image elementor-widget-image\" data-id=\"610fae8d\" 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\t<a href=\"https:\/\/cre8ivedge.net\/scfoundation\/pioneering-progress-groundbreaking-set-for-kob-stem-complex\/\">\n\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<\/a>\n\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-1eb8bdab e-con-full e-flex e-con e-child\" data-id=\"1eb8bdab\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-16cf01e elementor-widget elementor-widget-theme-post-title elementor-page-title elementor-widget-heading\" data-id=\"16cf01e\" 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-b0cdd9c elementor-widget elementor-widget-theme-post-excerpt\" data-id=\"b0cdd9c\" 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-3958dc85 elementor-align-left elementor-widget elementor-widget-post-info\" data-id=\"3958dc85\" 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-icon-list-items elementor-post-info\">\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item elementor-repeater-item-dd86f3b\" itemprop=\"datePublished\">\n\t\t\t\t\t\t<a href=\"https:\/\/cre8ivedge.net\/scfoundation\/2026\/02\/12\/\">\n\t\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\t<\/a>\n\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-7ff719d8 elementor-widget elementor-widget-eael-creative-button\" data-id=\"7ff719d8\" 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--default\" href=\"https:\/\/cre8ivedge.net\/scfoundation\/pioneering-progress-groundbreaking-set-for-kob-stem-complex\/\" data-text=\"\">\n            \t    \n                <div class=\"creative-button-inner\">\n\n                    \n                    <span class=\"cretive-button-text\">Learn More<\/span>\n\n                                    <\/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-2409 .elementor-element.elementor-element-58bafa83{--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;--gap:0px 0px;--row-gap:0px;--column-gap:0px;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-2409 .elementor-element.elementor-element-5b253e53{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.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-2409 .elementor-element.elementor-element-610fae8d img{width:200px;height:140px;object-fit:cover;object-position:center center;border-radius:10px 10px 10px 10px;}.elementor-2409 .elementor-element.elementor-element-1eb8bdab{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.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-2409 .elementor-element.elementor-element-16cf01e .elementor-heading-title{font-family:\"Outfit\", Sans-serif;font-size:20px;font-weight:500;}.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-2409 .elementor-element.elementor-element-b0cdd9c{font-family:\"Outfit\", Sans-serif;font-size:16px;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-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-items:not(.elementor-inline-items) .elementor-icon-list-item:not(:last-child){padding-bottom:calc(5px\/2);}.elementor-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-items:not(.elementor-inline-items) .elementor-icon-list-item:not(:first-child){margin-top:calc(5px\/2);}.elementor-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item{margin-right:calc(5px\/2);margin-left:calc(5px\/2);}.elementor-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-items.elementor-inline-items{margin-right:calc(-5px\/2);margin-left:calc(-5px\/2);}body.rtl .elementor-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item:after{left:calc(-5px\/2);}body:not(.rtl) .elementor-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item:after{right:calc(-5px\/2);}.elementor-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-icon{width:14px;}.elementor-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-icon i{font-size:14px;}.elementor-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-icon svg{--e-icon-list-icon-size:14px;}.elementor-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-item{font-family:\"Outfit\", Sans-serif;font-size:12px;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-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button-icon-left svg, \n                    .elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button-icon-right svg{rotate:0deg;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button-icon-left i,\n                    .elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button-icon-right i{rotate:0deg;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button i{font-size:11px;color:#ffffff;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button svg{height:11px;width:11px;fill:#ffffff;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button .cretive-button-text{font-family:\"Outfit\", Sans-serif;font-size:14px;font-weight:600;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button--rayen::before, \n                                .elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button--winona::after, \n                                .elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button--tamaya .eael-creative-button--tamaya-secondary span,\n                                .elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--saqui::after{font-family:\"Outfit\", Sans-serif;font-size:12px;font-weight:600;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button-wrapper{justify-content:flex-start;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button{width:0px;padding:8px 3px 8px 03px;color:#ffffff;background-color:var( --e-global-color-primary );border-radius:50px;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--winona::after{padding:8px 3px 8px 03px;color:#ffffff;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--winona > .creative-button-inner{padding:8px 3px 8px 03px;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--tamaya::before{padding:8px 3px 8px 03px;color:#ffffff;background-color:var( --e-global-color-primary );}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--rayen::before{padding:8px 3px 8px 03px;background-color:var( --e-global-color-accent );}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--rayen > .creative-button-inner{padding:8px 3px 8px 03px;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--saqui::after{padding:8px 3px 8px 03px;color:#ffffff;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button .creative-button-inner svg{fill:#ffffff;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button .eael-creative-button--tamaya-secondary{color:#ffffff;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--tamaya::after{color:#ffffff;background-color:var( --e-global-color-primary );}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--ujarak:hover{background-color:var( --e-global-color-primary );}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--wayra:hover{background-color:var( --e-global-color-primary );}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button::before{border-radius:50px;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button::after{border-radius:50px;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button:hover i{color:#ffffff;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button:hover .creative-button-inner svg{fill:#ffffff;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button:hover{color:#ffffff;background-color:var( --e-global-color-accent );}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button:hover svg{fill:#ffffff;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--ujarak::before{background-color:var( --e-global-color-accent );}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--wayra:hover::before{background-color:var( --e-global-color-accent );}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--tamaya:hover{background-color:var( --e-global-color-accent );}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--rayen:hover::before{background-color:var( --e-global-color-accent );}@media(min-width:768px){.elementor-2409 .elementor-element.elementor-element-5b253e53{--width:50%;}.elementor-2409 .elementor-element.elementor-element-1eb8bdab{--width:66.6666%;}}<\/style>\t\t<div data-elementor-type=\"loop-item\" data-elementor-id=\"2409\" class=\"elementor elementor-2409 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-58bafa83 e-flex e-con-boxed e-con e-parent\" data-id=\"58bafa83\" 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-5b253e53 e-con-full e-flex e-con e-child\" data-id=\"5b253e53\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-610fae8d elementor-widget elementor-widget-theme-post-featured-image elementor-widget-image\" data-id=\"610fae8d\" 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\t<a href=\"https:\/\/cre8ivedge.net\/scfoundation\/fireside-reflections-with-dr-manu-chandaria\/\">\n\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<\/a>\n\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-1eb8bdab e-con-full e-flex e-con e-child\" data-id=\"1eb8bdab\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-16cf01e elementor-widget elementor-widget-theme-post-title elementor-page-title elementor-widget-heading\" data-id=\"16cf01e\" 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-b0cdd9c elementor-widget elementor-widget-theme-post-excerpt\" data-id=\"b0cdd9c\" 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-3958dc85 elementor-align-left elementor-widget elementor-widget-post-info\" data-id=\"3958dc85\" 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-icon-list-items elementor-post-info\">\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item elementor-repeater-item-dd86f3b\" itemprop=\"datePublished\">\n\t\t\t\t\t\t<a href=\"https:\/\/cre8ivedge.net\/scfoundation\/2025\/01\/14\/\">\n\t\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\t<\/a>\n\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-7ff719d8 elementor-widget elementor-widget-eael-creative-button\" data-id=\"7ff719d8\" 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--default\" href=\"https:\/\/cre8ivedge.net\/scfoundation\/fireside-reflections-with-dr-manu-chandaria\/\" data-text=\"\">\n            \t    \n                <div class=\"creative-button-inner\">\n\n                    \n                    <span class=\"cretive-button-text\">Learn More<\/span>\n\n                                    <\/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-2409 .elementor-element.elementor-element-58bafa83{--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;--gap:0px 0px;--row-gap:0px;--column-gap:0px;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-2409 .elementor-element.elementor-element-5b253e53{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.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-2409 .elementor-element.elementor-element-610fae8d img{width:200px;height:140px;object-fit:cover;object-position:center center;border-radius:10px 10px 10px 10px;}.elementor-2409 .elementor-element.elementor-element-1eb8bdab{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.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-2409 .elementor-element.elementor-element-16cf01e .elementor-heading-title{font-family:\"Outfit\", Sans-serif;font-size:20px;font-weight:500;}.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-2409 .elementor-element.elementor-element-b0cdd9c{font-family:\"Outfit\", Sans-serif;font-size:16px;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-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-items:not(.elementor-inline-items) .elementor-icon-list-item:not(:last-child){padding-bottom:calc(5px\/2);}.elementor-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-items:not(.elementor-inline-items) .elementor-icon-list-item:not(:first-child){margin-top:calc(5px\/2);}.elementor-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item{margin-right:calc(5px\/2);margin-left:calc(5px\/2);}.elementor-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-items.elementor-inline-items{margin-right:calc(-5px\/2);margin-left:calc(-5px\/2);}body.rtl .elementor-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item:after{left:calc(-5px\/2);}body:not(.rtl) .elementor-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item:after{right:calc(-5px\/2);}.elementor-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-icon{width:14px;}.elementor-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-icon i{font-size:14px;}.elementor-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-icon svg{--e-icon-list-icon-size:14px;}.elementor-2409 .elementor-element.elementor-element-3958dc85 .elementor-icon-list-item{font-family:\"Outfit\", Sans-serif;font-size:12px;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-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button-icon-left svg, \n                    .elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button-icon-right svg{rotate:0deg;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button-icon-left i,\n                    .elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button-icon-right i{rotate:0deg;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button i{font-size:11px;color:#ffffff;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button svg{height:11px;width:11px;fill:#ffffff;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button .cretive-button-text{font-family:\"Outfit\", Sans-serif;font-size:14px;font-weight:600;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button--rayen::before, \n                                .elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button--winona::after, \n                                .elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button--tamaya .eael-creative-button--tamaya-secondary span,\n                                .elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--saqui::after{font-family:\"Outfit\", Sans-serif;font-size:12px;font-weight:600;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button-wrapper{justify-content:flex-start;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button{width:0px;padding:8px 3px 8px 03px;color:#ffffff;background-color:var( --e-global-color-primary );border-radius:50px;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--winona::after{padding:8px 3px 8px 03px;color:#ffffff;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--winona > .creative-button-inner{padding:8px 3px 8px 03px;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--tamaya::before{padding:8px 3px 8px 03px;color:#ffffff;background-color:var( --e-global-color-primary );}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--rayen::before{padding:8px 3px 8px 03px;background-color:var( --e-global-color-accent );}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--rayen > .creative-button-inner{padding:8px 3px 8px 03px;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--saqui::after{padding:8px 3px 8px 03px;color:#ffffff;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button .creative-button-inner svg{fill:#ffffff;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button .eael-creative-button--tamaya-secondary{color:#ffffff;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--tamaya::after{color:#ffffff;background-color:var( --e-global-color-primary );}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--ujarak:hover{background-color:var( --e-global-color-primary );}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--wayra:hover{background-color:var( --e-global-color-primary );}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button::before{border-radius:50px;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button::after{border-radius:50px;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button:hover i{color:#ffffff;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button:hover .creative-button-inner svg{fill:#ffffff;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button:hover{color:#ffffff;background-color:var( --e-global-color-accent );}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button:hover svg{fill:#ffffff;}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--ujarak::before{background-color:var( --e-global-color-accent );}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--wayra:hover::before{background-color:var( --e-global-color-accent );}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--tamaya:hover{background-color:var( --e-global-color-accent );}.elementor-2409 .elementor-element.elementor-element-7ff719d8 .eael-creative-button.eael-creative-button--rayen:hover::before{background-color:var( --e-global-color-accent );}@media(min-width:768px){.elementor-2409 .elementor-element.elementor-element-5b253e53{--width:50%;}.elementor-2409 .elementor-element.elementor-element-1eb8bdab{--width:66.6666%;}}<\/style>\t\t<div data-elementor-type=\"loop-item\" data-elementor-id=\"2409\" class=\"elementor elementor-2409 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-58bafa83 e-flex e-con-boxed e-con e-parent\" data-id=\"58bafa83\" 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-5b253e53 e-con-full e-flex e-con e-child\" data-id=\"5b253e53\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-610fae8d elementor-widget elementor-widget-theme-post-featured-image elementor-widget-image\" data-id=\"610fae8d\" 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\t<a href=\"https:\/\/cre8ivedge.net\/scfoundation\/from-village-to-vertex-how-a-scholarship-built-a-future-engineer\/\">\n\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<\/a>\n\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-1eb8bdab e-con-full e-flex e-con e-child\" data-id=\"1eb8bdab\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-16cf01e elementor-widget elementor-widget-theme-post-title elementor-page-title elementor-widget-heading\" data-id=\"16cf01e\" 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-b0cdd9c elementor-widget elementor-widget-theme-post-excerpt\" data-id=\"b0cdd9c\" 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-3958dc85 elementor-align-left elementor-widget elementor-widget-post-info\" data-id=\"3958dc85\" 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-icon-list-items elementor-post-info\">\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item elementor-repeater-item-dd86f3b\" itemprop=\"datePublished\">\n\t\t\t\t\t\t<a href=\"https:\/\/cre8ivedge.net\/scfoundation\/2024\/01\/14\/\">\n\t\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\t<\/a>\n\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-7ff719d8 elementor-widget elementor-widget-eael-creative-button\" data-id=\"7ff719d8\" 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--default\" href=\"https:\/\/cre8ivedge.net\/scfoundation\/from-village-to-vertex-how-a-scholarship-built-a-future-engineer\/\" data-text=\"\">\n            \t    \n                <div class=\"creative-button-inner\">\n\n                    \n                    <span class=\"cretive-button-text\">Learn More<\/span>\n\n                                    <\/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-c726e8d e-con-full e-flex e-con e-child\" data-id=\"c726e8d\" 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>Stay connected with the latest developments from the Strathmore University Foundation. From strategic partnership announcements and funding milestones to updates, this is your official source for the events and decisions shaping the future of the University. Explore press releases, thought leadership, and institutional highlights below. Categories Date All Years 2026 2025 2024 2023 2022 2026 [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":7024,"parent":16,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"footnotes":""},"class_list":["post-203","page","type-page","status-publish","has-post-thumbnail","hentry"],"acf":[],"_links":{"self":[{"href":"https:\/\/cre8ivedge.net\/scfoundation\/wp-json\/wp\/v2\/pages\/203","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=203"}],"version-history":[{"count":124,"href":"https:\/\/cre8ivedge.net\/scfoundation\/wp-json\/wp\/v2\/pages\/203\/revisions"}],"predecessor-version":[{"id":5269,"href":"https:\/\/cre8ivedge.net\/scfoundation\/wp-json\/wp\/v2\/pages\/203\/revisions\/5269"}],"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\/7024"}],"wp:attachment":[{"href":"https:\/\/cre8ivedge.net\/scfoundation\/wp-json\/wp\/v2\/media?parent=203"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}