{"id":25,"date":"2026-05-31T21:34:23","date_gmt":"2026-05-31T21:34:23","guid":{"rendered":"https:\/\/akoonk.org\/?page_id=25"},"modified":"2026-08-16T20:01:12","modified_gmt":"2026-08-16T20:01:12","slug":"about-us","status":"publish","type":"page","link":"https:\/\/akoonk.org\/?page_id=25","title":{"rendered":"About Us"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"25\" class=\"elementor elementor-25\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-3fe141a1 e-con-full e-flex e-con e-parent\" data-id=\"3fe141a1\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-96b4615 seperate_pages e-flex e-con-boxed e-con e-child\" data-id=\"96b4615\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;shape_divider_bottom&quot;:&quot;pyramids&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-shape elementor-shape-bottom\" aria-hidden=\"true\" data-negative=\"false\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 1000 100\" preserveAspectRatio=\"none\">\n\t<path class=\"elementor-shape-fill\" d=\"M761.9,44.1L643.1,27.2L333.8,98L0,3.8V0l1000,0v3.9\"\/>\n<\/svg>\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-e76183c elementor-widget elementor-widget-html\" data-id=\"e76183c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<canvas id=\"projects-node-mesh\"><\/canvas>\n<script>\n(function () {\n  const canvas = document.getElementById(\"projects-node-mesh\");\n  if (!canvas) return;\n\n  const ctx = canvas.getContext(\"2d\");\n  const parent = canvas.closest(\".seperate_pages\") || canvas.parentElement;\n\n  let width, height;\n  let particles = [];\n  \n  \/* --- ADJUSTABLE SETTINGS --- *\/\n  const particleCount = 95;  \/* More dots (increased density) *\/\n  const maxDistance = 110;   \/* Connection distance threshold *\/\n  const mouseRadius = 160;   \/* Interactive cursor reaction radius *\/\n  let mouse = { x: null, y: null };\n\n  function resize() {\n    width = canvas.width = parent.clientWidth;\n    height = canvas.height = parent.clientHeight;\n  }\n\n  window.addEventListener(\"resize\", resize);\n  \n  parent.addEventListener(\"mousemove\", (e) => {\n    const rect = canvas.getBoundingClientRect();\n    mouse.x = e.clientX - rect.left;\n    mouse.y = e.clientY - rect.top;\n  });\n\n  parent.addEventListener(\"mouseleave\", () => {\n    mouse.x = null;\n    mouse.y = null;\n  });\n\n  class Particle {\n    constructor() {\n      this.x = Math.random() * (width || 400);\n      this.y = Math.random() * (height || 300);\n      this.vx = (Math.random() - 0.5) * 0.9;\n      this.vy = (Math.random() - 0.5) * 0.9;\n      \n      \/* VARYING DOT SIZES: Creates a dynamic range from 1px to 5.5px *\/\n      this.radius = Math.random() * 4.5 + 1;\n      \n      \/* Subtle opacity variation based on size *\/\n      this.alpha = (this.radius \/ 5.5) * 0.6 + 0.3;\n    }\n\n    update() {\n      this.x += this.vx;\n      this.y += this.vy;\n\n      if (this.x < 0 || this.x > width) this.vx *= -1;\n      if (this.y < 0 || this.y > height) this.vy *= -1;\n\n      if (mouse.x !== null && mouse.y !== null) {\n        let dx = mouse.x - this.x;\n        let dy = mouse.y - this.y;\n        let dist = Math.sqrt(dx * dx + dy * dy);\n\n        if (dist < mouseRadius) {\n          let angle = Math.atan2(dy, dx);\n          let force = (mouseRadius - dist) \/ mouseRadius;\n          this.x -= Math.cos(angle) * force * 2.5;\n          this.y -= Math.sin(angle) * force * 2.5;\n        }\n      }\n    }\n\n    draw() {\n      ctx.beginPath();\n      ctx.arc(this.x, this.y, this.radius, 0, Math.PI * 2);\n      ctx.fillStyle = \"rgba(2, 45, 77, \" + this.alpha + \")\"; \/* Dark Navy with varying opacity *\/\n      ctx.fill();\n    }\n  }\n\n  function init() {\n    resize();\n    particles = [];\n    for (let i = 0; i < particleCount; i++) {\n      particles.push(new Particle());\n    }\n  }\n\n  function animate() {\n    ctx.clearRect(0, 0, width, height);\n\n    for (let i = 0; i < particles.length; i++) {\n      particles[i].update();\n      particles[i].draw();\n\n      for (let j = i + 1; j < particles.length; j++) {\n        let dx = particles[i].x - particles[j].x;\n        let dy = particles[i].y - particles[j].y;\n        let dist = Math.sqrt(dx * dx + dy * dy);\n\n        if (dist < maxDistance) {\n          let alpha = (1 - dist \/ maxDistance) * 0.2; \/* Lightened lines so high density stays clean *\/\n          ctx.beginPath();\n          ctx.moveTo(particles[i].x, particles[i].y);\n          ctx.lineTo(particles[j].x, particles[j].y);\n          ctx.strokeStyle = \"rgba(2, 45, 77, \" + alpha + \")\";\n          ctx.lineWidth = 0.8;\n          ctx.stroke();\n        }\n      }\n\n      if (mouse.x !== null && mouse.y !== null) {\n        let dx = particles[i].x - mouse.x;\n        let dy = particles[i].y - mouse.y;\n        let dist = Math.sqrt(dx * dx + dy * dy);\n\n        if (dist < mouseRadius) {\n          let alpha = (1 - dist \/ mouseRadius) * 0.4;\n          ctx.beginPath();\n          ctx.moveTo(particles[i].x, particles[i].y);\n          ctx.lineTo(mouse.x, mouse.y);\n          ctx.strokeStyle = \"rgba(2, 45, 77, \" + alpha + \")\";\n          ctx.lineWidth = 1;\n          ctx.stroke();\n        }\n      }\n    }\n\n    requestAnimationFrame(animate);\n  }\n\n  init();\n  animate();\n})();\n<\/script>\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-f9fbc50 glass-box1 scroll-blur-box e-con-full e-flex e-con e-child\" data-id=\"f9fbc50\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;motion_fx_motion_fx_scrolling&quot;:&quot;yes&quot;,&quot;motion_fx_devices&quot;:[&quot;desktop&quot;,&quot;tablet&quot;,&quot;mobile&quot;]}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-34a84e7 who-title  elementor-widget elementor-widget-html\" data-id=\"34a84e7\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<h2 class=\"who-title\">Who Are We?<\/h2>\n<script>\nwindow.addEventListener(\"scroll\", function () {\n  const box = document.querySelector(\".scroll-blur-box\");\n  if (!box) return;\n\n  const scrollY = window.scrollY;\n\n  \/\/ adjust sensitivity\n  const scale = 1 + scrollY \/ 1000;     \/\/ grows slowly\n  const blur = Math.min(scrollY \/ 80, 10); \/\/ max blur 10px\n\n  box.style.transform = `scale(${scale})`;\n  box.style.filter = `blur(${blur}px)`;\n});\n<\/script>\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<div class=\"elementor-element elementor-element-f8c6f06 e-flex e-con-boxed e-con e-child\" data-id=\"f8c6f06\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2ff1fe0 timeline_heading elementor-widget elementor-widget-heading\" data-id=\"2ff1fe0\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Transforming Research and Data into Actionable Insights<\/h2>\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-ceb3f18 e-con-full glass-box-new e-flex elementor-invisible e-con e-child\" data-id=\"ceb3f18\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;fadeInUp&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-c575f7a e-con-full e-flex e-con e-child\" data-id=\"c575f7a\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-f4affaf e-flex e-con-boxed e-con e-child\" data-id=\"f4affaf\" 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-9f26348 e-con-full e-flex e-con e-child\" data-id=\"9f26348\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<img fetchpriority=\"high\" decoding=\"async\" class=\"e-image-base e-0c61bb0-56adc93\" data-interaction-id=\"0c61bb0\" data-e-type=\"widget\" data-id=\"0c61bb0\" id=\"1835\" src=\"https:\/\/akoonk.org\/wp-content\/uploads\/2026\/08\/photo_2026-08-02-00.41.21.jpeg\" width=\"1024\" height=\"1024\" srcset=\"https:\/\/akoonk.org\/wp-content\/uploads\/2026\/08\/photo_2026-08-02-00.41.21.jpeg 1024w, https:\/\/akoonk.org\/wp-content\/uploads\/2026\/08\/photo_2026-08-02-00.41.21-300x300.jpeg 300w, https:\/\/akoonk.org\/wp-content\/uploads\/2026\/08\/photo_2026-08-02-00.41.21-150x150.jpeg 150w, https:\/\/akoonk.org\/wp-content\/uploads\/2026\/08\/photo_2026-08-02-00.41.21-768x768.jpeg 768w\" alt=\"\"\/>\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-c8e78e6 e-con-full e-flex e-con e-child\" data-id=\"c8e78e6\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-8f53db2 elementor-widget elementor-widget-counter\" data-id=\"8f53db2\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"counter.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<p class=\"elementor-counter-title\">Satisfied customers<\/p>\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"1400\" data-to-value=\"35\" data-from-value=\"1\" data-delimiter=\",\">1<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\">+<\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\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<div class=\"elementor-element elementor-element-5732340 e-flex e-con-boxed e-con e-child\" data-id=\"5732340\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t\t<img decoding=\"async\" class=\"e-image-base e-470ef9f-fb559bd\" data-interaction-id=\"470ef9f\" data-e-type=\"widget\" data-id=\"470ef9f\" id=\"1844\" src=\"https:\/\/akoonk.org\/wp-content\/uploads\/2026\/08\/Gemini_Generated_Image_pm6gj0pm6gj0pm6g-1.png\" width=\"1373\" height=\"613\" srcset=\"https:\/\/akoonk.org\/wp-content\/uploads\/2026\/08\/Gemini_Generated_Image_pm6gj0pm6gj0pm6g-1.png 1373w, https:\/\/akoonk.org\/wp-content\/uploads\/2026\/08\/Gemini_Generated_Image_pm6gj0pm6gj0pm6g-1-300x134.png 300w, https:\/\/akoonk.org\/wp-content\/uploads\/2026\/08\/Gemini_Generated_Image_pm6gj0pm6gj0pm6g-1-1024x457.png 1024w, https:\/\/akoonk.org\/wp-content\/uploads\/2026\/08\/Gemini_Generated_Image_pm6gj0pm6gj0pm6g-1-768x343.png 768w\" alt=\"\"\/>\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-8210227 e-con-full e-flex e-con e-child\" data-id=\"8210227\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-d069cc8 elementor-widget elementor-widget-text-editor\" data-id=\"d069cc8\" 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>Akoonk is a research, data science, and policy intelligence organization dedicated to helping decision-makers understand complex challenges through evidence and analysis. We collect, organize, and analyze information from diverse sources, including reports, surveys, databases, and field research, to generate reliable insights. By combining research expertise with advanced analytics and data visualization, we support organizations in making informed, effective, and evidence-based decisions.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-e373b97 e-con-full e-flex e-con e-child\" data-id=\"e373b97\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-e8c9a10 e-con-full e-flex e-con e-child\" data-id=\"e8c9a10\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-015873f e-con-full circle-icon e-flex e-con e-child\" data-id=\"015873f\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-dc1e588 elementor-widget elementor-widget-image\" data-id=\"dc1e588\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"512\" height=\"512\" src=\"https:\/\/akoonk.org\/wp-content\/uploads\/2026\/06\/analytics.png\" class=\"attachment-full size-full wp-image-594\" alt=\"\" srcset=\"https:\/\/akoonk.org\/wp-content\/uploads\/2026\/06\/analytics.png 512w, https:\/\/akoonk.org\/wp-content\/uploads\/2026\/06\/analytics-300x300.png 300w, https:\/\/akoonk.org\/wp-content\/uploads\/2026\/06\/analytics-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" \/>\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\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-62bd8b7 e-con-full e-flex e-con e-child\" data-id=\"62bd8b7\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<h2 data-interaction-id=\"8240535\" class=\"e-heading-base\" data-e-type=\"widget\" data-id=\"8240535\">Research Excellence<\/h2>\n\t\t\t\t<div class=\"elementor-element elementor-element-aa162f3 elementor-widget elementor-widget-text-editor\" data-id=\"aa162f3\" 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>We conduct comprehensive research by examining reports, studies, laws, datasets, and existing evidence to build a solid foundation for analysis and decision-making.<\/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-aa0802c e-con-full e-flex e-con e-child\" data-id=\"aa0802c\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-7217aab e-con-full e-flex e-con e-child\" data-id=\"7217aab\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-beb37c5 e-con-full circle-icon e-flex e-con e-child\" data-id=\"beb37c5\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-489ac21 elementor-widget elementor-widget-image\" data-id=\"489ac21\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"512\" height=\"512\" src=\"https:\/\/akoonk.org\/wp-content\/uploads\/2026\/06\/big-data-analytics.png\" class=\"attachment-full size-full wp-image-595\" alt=\"\" srcset=\"https:\/\/akoonk.org\/wp-content\/uploads\/2026\/06\/big-data-analytics.png 512w, https:\/\/akoonk.org\/wp-content\/uploads\/2026\/06\/big-data-analytics-300x300.png 300w, https:\/\/akoonk.org\/wp-content\/uploads\/2026\/06\/big-data-analytics-150x150.png 150w\" sizes=\"(max-width: 512px) 100vw, 512px\" \/>\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\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-f7af892 e-con-full e-flex e-con e-child\" data-id=\"f7af892\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<h2 data-interaction-id=\"6b73268\" class=\"e-heading-base\" data-e-type=\"widget\" data-id=\"6b73268\">Data-Driven Insights<\/h2>\n\t\t\t\t<div class=\"elementor-element elementor-element-042e509 elementor-widget elementor-widget-text-editor\" data-id=\"042e509\" 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>Through data science, analytics, visualization, and strategic intelligence, we transform information into clear insights that help organizations identify opportunities, address challenges, and plan effectively.<\/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\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 class=\"elementor-element elementor-element-123a450 elementor-widget elementor-widget-heading\" data-id=\"123a450\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Our Story<\/h2>\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-caf39f7 e-con-full e-flex e-con e-child\" data-id=\"caf39f7\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;shape_divider_bottom&quot;:&quot;triangle-asymmetrical&quot;}\">\n\t\t\t\t<div class=\"elementor-shape elementor-shape-bottom\" aria-hidden=\"true\" data-negative=\"false\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 1000 100\" preserveAspectRatio=\"none\">\n\t<path class=\"elementor-shape-fill\" d=\"M738,99l262-93V0H0v5.6L738,99z\"\/>\n<\/svg>\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-6a8e371 glass-box-new e-con-full e-flex elementor-invisible e-con e-child\" data-id=\"6a8e371\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;slideInLeft&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-21e3429 e-con-full e-flex e-con e-child\" data-id=\"21e3429\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-ba3101b elementor-widget elementor-widget-text-editor\" data-id=\"ba3101b\" 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 data-start=\"145\" data-end=\"430\">Akoonk was founded to transform information into actionable intelligence. In an environment where data is abundant but reliable insights are scarce, we help organizations, researchers, and decision-makers identify risks, understand emerging trends, and make informed strategic choices.<\/p><p data-start=\"432\" data-end=\"748\">Our work combines open-source intelligence (OSINT), cyber threat research, geopolitical analysis, data collection, and advanced analytical methodologies. By bringing together expertise from multiple disciplines, we provide clients with accurate, timely, and objective assessments tailored to their operational needs.<\/p><p data-start=\"750\" data-end=\"1011\">Whether monitoring cyber threats, investigating digital activities, analyzing regional developments, or supporting strategic planning, Akoonk delivers intelligence that helps organizations stay informed, resilient, and prepared for an evolving global landscape.<\/p><p data-start=\"1013\" data-end=\"1163\">Our commitment is simple: collect reliable information, analyze it rigorously, and present clear intelligence that supports confident decision-making.<\/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-bde38d3 glass-box-new e-con-full e-flex elementor-invisible e-con e-child\" data-id=\"bde38d3\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;slideInRight&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-d672970 e-con-full container e-flex e-con e-child\" data-id=\"d672970\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-6e83b76 e-con-full container1 e-flex e-con e-child\" data-id=\"6e83b76\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;position&quot;:&quot;absolute&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-dfae568 elementor-widget elementor-widget-image\" data-id=\"dfae568\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"1024\" src=\"https:\/\/akoonk.org\/wp-content\/uploads\/2026\/08\/Gemini_Generated_Image_wx6thpwx6thpwx6t.png\" class=\"attachment-large size-large wp-image-1848\" alt=\"\" srcset=\"https:\/\/akoonk.org\/wp-content\/uploads\/2026\/08\/Gemini_Generated_Image_wx6thpwx6thpwx6t.png 1024w, https:\/\/akoonk.org\/wp-content\/uploads\/2026\/08\/Gemini_Generated_Image_wx6thpwx6thpwx6t-300x300.png 300w, https:\/\/akoonk.org\/wp-content\/uploads\/2026\/08\/Gemini_Generated_Image_wx6thpwx6thpwx6t-150x150.png 150w, https:\/\/akoonk.org\/wp-content\/uploads\/2026\/08\/Gemini_Generated_Image_wx6thpwx6thpwx6t-768x768.png 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/>\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-5e50067 e-con-full container2 e-flex e-con e-child\" data-id=\"5e50067\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;position&quot;:&quot;absolute&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-2ee619e e-con-full container2_1 e-flex e-con e-child\" data-id=\"2ee619e\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;position&quot;:&quot;absolute&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-036d960 elementor-widget elementor-widget-image\" data-id=\"036d960\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"1024\" src=\"https:\/\/akoonk.org\/wp-content\/uploads\/2026\/08\/Gemini_Generated_Image_xjs2hyxjs2hyxjs2.png\" class=\"attachment-large size-large wp-image-1852\" alt=\"\" srcset=\"https:\/\/akoonk.org\/wp-content\/uploads\/2026\/08\/Gemini_Generated_Image_xjs2hyxjs2hyxjs2.png 1024w, https:\/\/akoonk.org\/wp-content\/uploads\/2026\/08\/Gemini_Generated_Image_xjs2hyxjs2hyxjs2-300x300.png 300w, https:\/\/akoonk.org\/wp-content\/uploads\/2026\/08\/Gemini_Generated_Image_xjs2hyxjs2hyxjs2-150x150.png 150w, https:\/\/akoonk.org\/wp-content\/uploads\/2026\/08\/Gemini_Generated_Image_xjs2hyxjs2hyxjs2-768x768.png 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/>\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-416e28d e-con-full container2_2 e-flex e-con e-child\" data-id=\"416e28d\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;position&quot;:&quot;absolute&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-275b258 elementor-widget elementor-widget-image\" data-id=\"275b258\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"1024\" src=\"https:\/\/akoonk.org\/wp-content\/uploads\/2026\/08\/Gemini_Generated_Image_cvr7k3cvr7k3cvr7.png\" class=\"attachment-large size-large wp-image-1860\" alt=\"\" srcset=\"https:\/\/akoonk.org\/wp-content\/uploads\/2026\/08\/Gemini_Generated_Image_cvr7k3cvr7k3cvr7.png 1024w, https:\/\/akoonk.org\/wp-content\/uploads\/2026\/08\/Gemini_Generated_Image_cvr7k3cvr7k3cvr7-300x300.png 300w, https:\/\/akoonk.org\/wp-content\/uploads\/2026\/08\/Gemini_Generated_Image_cvr7k3cvr7k3cvr7-150x150.png 150w, https:\/\/akoonk.org\/wp-content\/uploads\/2026\/08\/Gemini_Generated_Image_cvr7k3cvr7k3cvr7-768x768.png 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/>\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\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-4c8b83b e-con-full container3 e-flex e-con e-child\" data-id=\"4c8b83b\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;position&quot;:&quot;absolute&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-cc0954b elementor-widget elementor-widget-image\" data-id=\"cc0954b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"1024\" src=\"https:\/\/akoonk.org\/wp-content\/uploads\/2026\/08\/Gemini_Generated_Image_fmdujyfmdujyfmdu.png\" class=\"attachment-large size-large wp-image-1864\" alt=\"\" srcset=\"https:\/\/akoonk.org\/wp-content\/uploads\/2026\/08\/Gemini_Generated_Image_fmdujyfmdujyfmdu.png 1024w, https:\/\/akoonk.org\/wp-content\/uploads\/2026\/08\/Gemini_Generated_Image_fmdujyfmdujyfmdu-300x300.png 300w, https:\/\/akoonk.org\/wp-content\/uploads\/2026\/08\/Gemini_Generated_Image_fmdujyfmdujyfmdu-150x150.png 150w, https:\/\/akoonk.org\/wp-content\/uploads\/2026\/08\/Gemini_Generated_Image_fmdujyfmdujyfmdu-768x768.png 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/>\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\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-5012b94 e-flex e-con-boxed e-con e-child\" data-id=\"5012b94\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-f203893 e-con-full e-flex e-con e-child\" data-id=\"f203893\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-a269885 e-con-full e-flex elementor-invisible e-con e-child\" data-id=\"a269885\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;zoomIn&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-744ba57 e-con-full tight-row e-flex e-con e-child\" data-id=\"744ba57\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-6840aa1 glass-box-new e-con-full e-flex e-con e-child\" data-id=\"6840aa1\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-db44452 elementor-widget elementor-widget-heading\" data-id=\"db44452\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Our Mission<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0f0c618 elementor-widget elementor-widget-text-editor\" data-id=\"0f0c618\" 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>To transform information into actionable knowledge through research, data analytics, and evidence-based insights that support better decision-making.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-21eb06e glass-box-new e-con-full e-flex e-con e-child\" data-id=\"21eb06e\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-d742177 elementor-widget elementor-widget-heading\" data-id=\"d742177\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Our Values<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-293598f elementor-widget elementor-widget-text-editor\" data-id=\"293598f\" 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 class=\"isSelectedEnd\">We are guided by integrity, objectivity, collaboration, and excellence. We believe in using reliable evidence, innovative thinking, and rigorous analysis to create meaningful impact.<\/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-90bc4f0 e-con-full e-flex e-con e-child\" data-id=\"90bc4f0\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-caf63c7 glass-box-new e-con-full e-flex e-con e-child\" data-id=\"caf63c7\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-635f741 elementor-widget elementor-widget-heading\" data-id=\"635f741\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Our Vission<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-c410621 elementor-widget elementor-widget-text-editor\" data-id=\"c410621\" 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 data-start=\"1253\" data-end=\"1581\">To become a trusted leader in research, data science, and strategic intelligence, helping organizations transform complex information into clear and actionable insights. We aspire to support better decision-making, strengthen institutions, and contribute to sustainable development through knowledge, innovation, and evidence-based solutions.<\/p><ul><li>To be a trusted source of research, analytics, and intelligence for organizations seeking evidence-based solutions.<\/li><li>To empower better decisions and sustainable development through knowledge, innovation, and data-driven insights.<\/li><\/ul>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-a95a828 e-con-full image-stack e-flex e-con e-child\" data-id=\"a95a828\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-53e38f2 e-con-full img-back glass-box-new e-flex e-con e-child\" data-id=\"53e38f2\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-3b61b0e elementor-widget elementor-widget-image\" data-id=\"3b61b0e\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"1024\" src=\"https:\/\/akoonk.org\/wp-content\/uploads\/2026\/08\/Gemini_Generated_Image_wqwga2wqwga2wqwg.png\" class=\"attachment-large size-large wp-image-1869\" alt=\"\" srcset=\"https:\/\/akoonk.org\/wp-content\/uploads\/2026\/08\/Gemini_Generated_Image_wqwga2wqwga2wqwg.png 1024w, https:\/\/akoonk.org\/wp-content\/uploads\/2026\/08\/Gemini_Generated_Image_wqwga2wqwga2wqwg-300x300.png 300w, https:\/\/akoonk.org\/wp-content\/uploads\/2026\/08\/Gemini_Generated_Image_wqwga2wqwga2wqwg-150x150.png 150w, https:\/\/akoonk.org\/wp-content\/uploads\/2026\/08\/Gemini_Generated_Image_wqwga2wqwga2wqwg-768x768.png 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/>\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-a26d292 e-con-full img-front glass-box-new e-flex e-con e-child\" data-id=\"a26d292\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6e4f8da elementor-widget elementor-widget-image\" data-id=\"6e4f8da\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"1024\" src=\"https:\/\/akoonk.org\/wp-content\/uploads\/2026\/08\/Gemini_Generated_Image_9drzp09drzp09drz.png\" class=\"attachment-large size-large wp-image-1868\" alt=\"\" srcset=\"https:\/\/akoonk.org\/wp-content\/uploads\/2026\/08\/Gemini_Generated_Image_9drzp09drzp09drz.png 1024w, https:\/\/akoonk.org\/wp-content\/uploads\/2026\/08\/Gemini_Generated_Image_9drzp09drzp09drz-300x300.png 300w, https:\/\/akoonk.org\/wp-content\/uploads\/2026\/08\/Gemini_Generated_Image_9drzp09drzp09drz-150x150.png 150w, https:\/\/akoonk.org\/wp-content\/uploads\/2026\/08\/Gemini_Generated_Image_9drzp09drzp09drz-768x768.png 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/>\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\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","protected":false},"excerpt":{"rendered":"<p>Who Are We? Transforming Research and Data into Actionable Insights Satisfied customers 1 + Akoonk is a research, data science, [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"elementor_header_footer","meta":{"site-sidebar-layout":"no-sidebar","site-content-layout":"","ast-site-content-layout":"full-width-container","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"disabled","ast-breadcrumbs-content":"","ast-featured-img":"disabled","footer-sml-layout":"","ast-disable-related-posts":"","theme-transparent-header-meta":"enabled","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"class_list":["post-25","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/akoonk.org\/index.php?rest_route=\/wp\/v2\/pages\/25","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/akoonk.org\/index.php?rest_route=\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/akoonk.org\/index.php?rest_route=\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/akoonk.org\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/akoonk.org\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=25"}],"version-history":[{"count":597,"href":"https:\/\/akoonk.org\/index.php?rest_route=\/wp\/v2\/pages\/25\/revisions"}],"predecessor-version":[{"id":2451,"href":"https:\/\/akoonk.org\/index.php?rest_route=\/wp\/v2\/pages\/25\/revisions\/2451"}],"wp:attachment":[{"href":"https:\/\/akoonk.org\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=25"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}