{"id":47,"date":"2025-11-19T13:55:05","date_gmt":"2025-11-19T13:55:05","guid":{"rendered":"https:\/\/ncf.so\/?page_id=47"},"modified":"2025-11-20T13:44:10","modified_gmt":"2025-11-20T13:44:10","slug":"about","status":"publish","type":"page","link":"https:\/\/ncf.so\/index.php\/about\/","title":{"rendered":"About"},"content":{"rendered":"\n<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <title>About &#8211; 3rd National Cybersecurity Forum<\/title>\n    <link rel=\"stylesheet\" href=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/font-awesome\/6.4.0\/css\/all.min.css\">\n    <style>\n        \/* Reset and Base Styles *\/\n        * {\n            margin: 0;\n            padding: 0;\n            box-sizing: border-box;\n            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;\n        }\n\n        :root {\n            --primary-color: #428eca;\n            --primary-dark: #2a6ca7;\n            --dark-bg: #0a1a2f;\n            --light-bg: #f8f9fa;\n            --text-dark: #333;\n            --text-light: #fff;\n        }\n\n        body {\n            overflow-x: hidden;\n            background-color: var(--light-bg);\n            color: var(--text-dark);\n            line-height: 1.6;\n        }\n\n        .container {\n            width: 100%;\n            max-width: 1200px;\n            margin: 0 auto;\n            padding: 0 20px;\n        }\n\n        .full-width {\n            width: 100%;\n        }\n\n        section {\n            padding: 80px 0;\n        }\n\n        .section-title {\n            text-align: center;\n            margin-bottom: 50px;\n            position: relative;\n        }\n\n        .section-title h2 {\n            font-size: 2.5rem;\n            color: var(--primary-color);\n            margin-bottom: 15px;\n            font-weight: 700;\n            text-transform: uppercase;\n            letter-spacing: 1px;\n        }\n\n        .section-title p {\n            font-size: 1.2rem;\n            color: #666;\n            max-width: 700px;\n            margin: 0 auto;\n        }\n\n        .btn {\n            display: inline-block;\n            padding: 14px 30px;\n            background: var(--primary-color);\n            color: white;\n            text-decoration: none;\n            border-radius: 4px;\n            font-weight: 600;\n            transition: all 0.3s ease;\n            border: none;\n            cursor: pointer;\n            text-transform: uppercase;\n            letter-spacing: 1px;\n            font-size: 1rem;\n        }\n\n        .btn:hover {\n            background: var(--primary-dark);\n            transform: translateY(-3px);\n            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);\n        }\n\n        .btn-outline {\n            background: transparent;\n            border: 2px solid var(--primary-color);\n            color: var(--primary-color);\n        }\n\n        .btn-outline:hover {\n            background: var(--primary-color);\n            color: white;\n        }\n\n        \/* Hero Section *\/\n        .about-hero {\n            background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-bg) 100%);\n            color: white;\n            padding: 120px 0 80px;\n            text-align: center;\n            width: 100%;\n        }\n\n        .about-hero h1 {\n            font-size: 3.5rem;\n            margin-bottom: 20px;\n            font-weight: 700;\n            letter-spacing: 2px;\n            animation: fadeInDown 1s ease;\n        }\n\n        .about-hero p {\n            font-size: 1.3rem;\n            max-width: 800px;\n            margin: 0 auto;\n            opacity: 0.9;\n            animation: fadeInUp 1s ease 0.3s both;\n        }\n\n        \/* About Forum Section *\/\n        .about-forum {\n            background: white;\n            width: 100%;\n        }\n\n        .about-content {\n            display: flex;\n            flex-wrap: wrap;\n            gap: 40px;\n            align-items: center;\n        }\n\n        .about-text {\n            flex: 1;\n            min-width: 300px;\n        }\n\n        .about-text p {\n            margin-bottom: 20px;\n            font-size: 1.1rem;\n        }\n\n        .about-image {\n            flex: 1;\n            min-width: 300px;\n            text-align: center;\n        }\n\n        .about-image img {\n            max-width: 100%;\n            border-radius: 8px;\n            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);\n            animation: fadeInRight 1s ease;\n        }\n\n        \/* Mission Section *\/\n        .mission-section {\n            background: var(--light-bg);\n            width: 100%;\n        }\n\n        .mission-grid {\n            display: grid;\n            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n            gap: 30px;\n        }\n\n        .mission-card {\n            background: white;\n            padding: 40px 30px;\n            border-radius: 8px;\n            text-align: center;\n            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);\n            transition: transform 0.3s ease, box-shadow 0.3s ease;\n            border-top: 4px solid var(--primary-color);\n            opacity: 0;\n            transform: translateY(20px);\n            animation: fadeInUp 0.6s ease forwards;\n        }\n\n        .mission-card:nth-child(1) { animation-delay: 0.1s; }\n        .mission-card:nth-child(2) { animation-delay: 0.2s; }\n        .mission-card:nth-child(3) { animation-delay: 0.3s; }\n        .mission-card:nth-child(4) { animation-delay: 0.4s; }\n        .mission-card:nth-child(5) { animation-delay: 0.5s; }\n        .mission-card:nth-child(6) { animation-delay: 0.6s; }\n\n        .mission-card:hover {\n            transform: translateY(-10px);\n            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);\n        }\n\n        .mission-icon {\n            font-size: 3rem;\n            color: var(--primary-color);\n            margin-bottom: 20px;\n        }\n\n        .mission-card h3 {\n            font-size: 1.5rem;\n            margin-bottom: 15px;\n            color: var(--dark-bg);\n        }\n\n        \/* Objectives Section *\/\n        .objectives-section {\n            background: white;\n            width: 100%;\n        }\n\n        .objectives-container {\n            display: flex;\n            flex-wrap: wrap;\n            gap: 30px;\n            justify-content: center;\n        }\n\n        .objective-box {\n            flex: 1;\n            min-width: 300px;\n            max-width: 500px;\n            background: var(--light-bg);\n            padding: 30px;\n            border-radius: 8px;\n            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);\n            border-left: 5px solid var(--primary-color);\n            opacity: 0;\n            transform: translateX(-20px);\n            animation: fadeInLeft 0.6s ease forwards;\n        }\n\n        .objective-box:nth-child(1) { animation-delay: 0.1s; }\n        .objective-box:nth-child(2) { animation-delay: 0.2s; }\n        .objective-box:nth-child(3) { animation-delay: 0.3s; }\n        .objective-box:nth-child(4) { animation-delay: 0.4s; }\n        .objective-box:nth-child(5) { animation-delay: 0.5s; }\n\n        .objective-box h3 {\n            font-size: 1.5rem;\n            color: var(--primary-color);\n            margin-bottom: 15px;\n            display: flex;\n            align-items: center;\n        }\n\n        .objective-box h3 i {\n            margin-right: 10px;\n        }\n\n        .objective-box p {\n            font-size: 1.1rem;\n            line-height: 1.7;\n        }\n\n        \/* Mission Vision Section *\/\n        .mission-vision-section {\n            background: var(--light-bg);\n            width: 100%;\n        }\n\n        .mission-vision-container {\n            display: flex;\n            flex-wrap: wrap;\n            gap: 40px;\n            justify-content: center;\n        }\n\n        .mission-vision-box {\n            flex: 1;\n            min-width: 300px;\n            max-width: 500px;\n            background: white;\n            padding: 40px 30px;\n            border-radius: 8px;\n            text-align: center;\n            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);\n            opacity: 0;\n            transform: translateY(20px);\n            animation: fadeInUp 0.6s ease forwards;\n        }\n\n        .mission-vision-box:nth-child(1) { animation-delay: 0.1s; }\n        .mission-vision-box:nth-child(2) { animation-delay: 0.2s; }\n\n        .mission-vision-box h3 {\n            font-size: 1.8rem;\n            color: var(--primary-color);\n            margin-bottom: 20px;\n            display: flex;\n            align-items: center;\n            justify-content: center;\n        }\n\n        .mission-vision-box h3 i {\n            margin-right: 10px;\n        }\n\n        .mission-vision-box p {\n            font-size: 1.2rem;\n            line-height: 1.7;\n        }\n\n        \/* Organizers Section *\/\n        .organizers-section {\n            background: white;\n            width: 100%;\n        }\n\n        .organizers-content {\n            display: flex;\n            flex-wrap: wrap;\n            gap: 40px;\n            align-items: center;\n        }\n\n        .organizers-text {\n            flex: 1;\n            min-width: 300px;\n        }\n\n        .organizers-text p {\n            margin-bottom: 20px;\n            font-size: 1.1rem;\n        }\n\n        .organizers-logos {\n            flex: 1;\n            min-width: 300px;\n            display: flex;\n            flex-direction: column;\n            gap: 30px;\n            align-items: center;\n        }\n\n        .organizer-logo {\n            width: 100%;\n            max-width: 300px;\n            height: 150px;\n            background: var(--light-bg);\n            display: flex;\n            align-items: center;\n            justify-content: center;\n            border-radius: 8px;\n            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);\n            transition: transform 0.3s ease;\n            opacity: 0;\n            animation: fadeInRight 0.6s ease forwards;\n        }\n\n        .organizer-logo:nth-child(1) { animation-delay: 0.1s; }\n        .organizer-logo:nth-child(2) { animation-delay: 0.2s; }\n\n        .organizer-logo:hover {\n            transform: translateY(-5px);\n        }\n\n        .organizer-logo h3 {\n            color: var(--primary-color);\n            font-size: 1.5rem;\n            font-weight: 700;\n        }\n\n        \/* Stats Section *\/\n        .stats-section {\n            background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-bg) 100%);\n            color: white;\n            width: 100%;\n        }\n\n        .stats-grid {\n            display: grid;\n            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));\n            gap: 30px;\n            text-align: center;\n        }\n\n        .stat-item {\n            padding: 30px 20px;\n            opacity: 0;\n            animation: fadeInUp 0.6s ease forwards;\n        }\n\n        .stat-item:nth-child(1) { animation-delay: 0.1s; }\n        .stat-item:nth-child(2) { animation-delay: 0.2s; }\n        .stat-item:nth-child(3) { animation-delay: 0.3s; }\n        .stat-item:nth-child(4) { animation-delay: 0.4s; }\n        .stat-item:nth-child(5) { animation-delay: 0.5s; }\n\n        .stat-number {\n            font-size: 3rem;\n            font-weight: 700;\n            margin-bottom: 10px;\n        }\n\n        .stat-label {\n            font-size: 1.2rem;\n            opacity: 0.9;\n        }\n\n        \/* Team Section *\/\n        .team-section {\n            background: var(--light-bg);\n            width: 100%;\n        }\n\n        .team-grid {\n            display: grid;\n            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));\n            gap: 30px;\n        }\n\n        .team-member {\n            background: white;\n            border-radius: 8px;\n            overflow: hidden;\n            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);\n            transition: transform 0.3s ease, box-shadow 0.3s ease;\n            opacity: 0;\n            animation: fadeInUp 0.6s ease forwards;\n        }\n\n        .team-member:nth-child(1) { animation-delay: 0.1s; }\n        .team-member:nth-child(2) { animation-delay: 0.2s; }\n        .team-member:nth-child(3) { animation-delay: 0.3s; }\n        .team-member:nth-child(4) { animation-delay: 0.4s; }\n\n        .team-member:hover {\n            transform: translateY(-10px);\n            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);\n        }\n\n        .member-image {\n            height: 250px;\n            background: var(--primary-color);\n            display: flex;\n            align-items: center;\n            justify-content: center;\n            color: white;\n            font-size: 4rem;\n        }\n\n        .member-info {\n            padding: 25px;\n            text-align: center;\n        }\n\n        .member-info h3 {\n            font-size: 1.3rem;\n            margin-bottom: 5px;\n            color: var(--dark-bg);\n        }\n\n        .member-info p {\n            color: var(--primary-color);\n            font-weight: 500;\n            margin-bottom: 15px;\n        }\n\n        \/* CTA Section *\/\n        .cta-section {\n            background: white;\n            text-align: center;\n            width: 100%;\n        }\n\n        .cta-section h2 {\n            font-size: 2.5rem;\n            color: var(--primary-color);\n            margin-bottom: 20px;\n        }\n\n        .cta-section p {\n            font-size: 1.2rem;\n            margin-bottom: 30px;\n            max-width: 700px;\n            margin-left: auto;\n            margin-right: auto;\n        }\n\n        \/* Footer *\/\n        footer {\n            background: var(--dark-bg);\n            color: white;\n            padding: 60px 0 30px;\n            width: 100%;\n        }\n\n        .footer-content {\n            display: flex;\n            flex-wrap: wrap;\n            gap: 40px;\n            margin-bottom: 40px;\n        }\n\n        .footer-column {\n            flex: 1;\n            min-width: 250px;\n        }\n\n        .footer-column h3 {\n            color: var(--primary-color);\n            margin-bottom: 20px;\n            font-size: 1.3rem;\n        }\n\n        .footer-column p, .footer-column a {\n            color: #bbb;\n            margin-bottom: 10px;\n            display: block;\n            text-decoration: none;\n            transition: color 0.3s ease;\n        }\n\n        .footer-column a:hover {\n            color: var(--primary-color);\n        }\n\n        .organizers {\n            display: flex;\n            align-items: center;\n            gap: 30px;\n            margin-top: 20px;\n            flex-wrap: wrap;\n        }\n\n        .organizer-logo-footer {\n            width: 150px;\n            height: 80px;\n            background: #2c3e50;\n            display: flex;\n            align-items: center;\n            justify-content: center;\n            color: white;\n            font-weight: bold;\n            border-radius: 4px;\n        }\n\n        .copyright {\n            text-align: center;\n            padding-top: 30px;\n            border-top: 1px solid #34495e;\n            color: #bbb;\n            font-size: 0.9rem;\n        }\n\n        \/* Animation Keyframes *\/\n        @keyframes fadeInDown {\n            from {\n                opacity: 0;\n                transform: translateY(-20px);\n            }\n            to {\n                opacity: 1;\n                transform: translateY(0);\n            }\n        }\n\n        @keyframes fadeInUp {\n            from {\n                opacity: 0;\n                transform: translateY(20px);\n            }\n            to {\n                opacity: 1;\n                transform: translateY(0);\n            }\n        }\n\n        @keyframes fadeInLeft {\n            from {\n                opacity: 0;\n                transform: translateX(-20px);\n            }\n            to {\n                opacity: 1;\n                transform: translateX(0);\n            }\n        }\n\n        @keyframes fadeInRight {\n            from {\n                opacity: 0;\n                transform: translateX(20px);\n            }\n            to {\n                opacity: 1;\n                transform: translateX(0);\n            }\n        }\n\n        \/* Responsive Styles *\/\n        @media (max-width: 992px) {\n            .about-hero h1 {\n                font-size: 2.8rem;\n            }\n            \n            .section-title h2 {\n                font-size: 2rem;\n            }\n        }\n\n        @media (max-width: 768px) {\n            .about-hero {\n                padding: 100px 0 60px;\n            }\n            \n            .about-hero h1 {\n                font-size: 2.2rem;\n            }\n            \n            .about-hero p {\n                font-size: 1.1rem;\n            }\n            \n            .section-title h2 {\n                font-size: 1.8rem;\n            }\n            \n            .about-content, .organizers-content {\n                flex-direction: column;\n            }\n            \n            .objective-box, .mission-vision-box {\n                min-width: 100%;\n            }\n        }\n\n        @media (max-width: 576px) {\n            .about-hero h1 {\n                font-size: 1.8rem;\n            }\n            \n            .about-hero p {\n                font-size: 1rem;\n            }\n            \n            section {\n                padding: 60px 0;\n            }\n            \n            .stat-number {\n                font-size: 2.5rem;\n            }\n            \n            .mission-card, .team-member {\n                padding: 25px 20px;\n            }\n            \n            .cta-section .btn {\n                display: block;\n                margin-bottom: 15px;\n                width: 100%;\n            }\n            \n            .cta-section .btn-outline {\n                margin-left: 0;\n            }\n.organizers-title {\n                font-size: 1.4rem;\n            }\n            \n            .organizers-logos {\n                gap: 10px;\n                flex-direction: column;\n            }\n            \n            .organizer-logo {\n                height: 50px;\n            }\n        }\n    <\/style>\n<\/head>\n<body>\n    <!-- Hero Section -->\n    <section class=\"about-hero full-width\">\n        <div class=\"container\">\n            <h1>About the Forum<\/h1>\n        <\/div>\n    <\/section>\n\n    <!-- About Forum Section -->\n    <section class=\"about-forum full-width\">\n        <div class=\"container\">\n            <div class=\"section-title\">\n                <h2>3rd National Cybersecurity Forum<\/h2>\n            <\/div>\n            <div class=\"about-content\">\n                <div class=\"about-text\">\n                    <p style=\"text-align: justify;\">The Somalia National Cybersecurity Forum is an annual event organized by the National Communications Authority (NCA) &#038; Mogadishu University (MU) to strengthen the country&#8217;s cybersecurity resilience. It brings together stakeholders from government institutions, telecom and technology companies, ISPs, banks, academia, and civil society to build partnerships and share knowledge. The Forum also forms a core component of NCA&#8217;s nationwide cybersecurity awareness campaign, aimed at enhancing digital safety and protecting the Somali internet community.\nThe Forum invites cybersecurity professionals, experts, policymakers, and researchers to contribute and submit research papers that align with the forum&#8217;s theme and strategic priorities. These submissions support evidence-based solutions, informed decision-making, and practical recommendations for strengthening Somalia&#8217;s digital ecosystem and advancing cybersecurity resilience at the national and regional levels.\n<\/p>\n                <\/div>\n                <div class=\"about-image\">\n                    <div class=\"image-container\">\n                        <img decoding=\"async\" src=\"https:\/\/ncf.so\/wp-content\/uploads\/2025\/11\/Picture1.jpg\" alt=\"National Cybersecurity Forum Visual Representation\">\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/section>\n\n    <!-- Objectives Section -->\n    <section class=\"objectives-section full-width\">\n        <div class=\"container\">\n            <div class=\"section-title\">\n                <h2>Our Objectives<\/h2>\n                <p>Strategic goals for enhancing cybersecurity in Somalia<\/p>\n            <\/div>\n            <div class=\"objectives-container\">\n                <div class=\"objective-box\">\n                    <h3><i class=\"fas fa-shield-alt\"><\/i> Strengthen Resilience<\/h3>\n                    <p>Strengthen national cybersecurity resilience through multi-stakeholder collaboration.<\/p>\n                <\/div>\n                <div class=\"objective-box\">\n                    <h3><i class=\"fas fa-bullhorn\"><\/i> Promote Awareness<\/h3>\n                    <p>Promote public awareness and digital safety across all sectors of society.<\/p>\n                <\/div>\n                <div class=\"objective-box\">\n                    <h3><i class=\"fas fa-graduation-cap\"><\/i> Enhance Capacity<\/h3>\n                    <p>Enhance institutional capacity through knowledge-sharing, training, and best practices.<\/p>\n                <\/div>\n                <div class=\"objective-box\">\n                    <h3><i class=\"fas fa-users\"><\/i> Engage Stakeholders<\/h3>\n                    <p>Engage youth, academia, and professionals to contribute to Somalia&#8217;s cybersecurity ecosystem through research and innovation.<\/p>\n                <\/div>\n                <div class=\"objective-box\">\n                    <h3><i class=\"fas fa-handshake\"><\/i> Enhance Collaboration<\/h3>\n                    <p>Enhance collaboration among government, private sector, academia, and international partners.<\/p>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/section>\n\n    <!-- Mission & Vision Section -->\n    <section class=\"mission-vision-section full-width\">\n        <div class=\"container\">\n            <div class=\"section-title\">\n                <h2>Our Mission &#038; Vision<\/h2>\n                <p>Guiding principles for a secure digital Somalia<\/p>\n            <\/div>\n            <div class=\"mission-vision-container\">\n                <div class=\"mission-vision-box\">\n                    <h3><i class=\"fas fa-flag\"><\/i> Our Mission<\/h3>\n                    <p>To enhance Somalia&#8217;s cybersecurity readiness by promoting national collaboration, cybersecurity awareness, and empowering institutions and individuals to build a safe, trusted, and resilient digital environment.<\/p>\n                <\/div>\n                <div class=\"mission-vision-box\">\n                    <h3><i class=\"fas fa-eye\"><\/i> Our Vision<\/h3>\n                    <p>A secure, inclusive, and resilient digital Somalia where citizens, institutions, and businesses confidently engage in the digital world.<\/p>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/section>\n\n    <!-- Mission Section -->\n    <section class=\"mission-section full-width\">\n        <div class=\"container\">\n            <div class=\"section-title\">\n                <h2>Our Focus Areas<\/h2>\n                <p>Key focus areas for the 3rd National Cybersecurity Forum<\/p>\n            <\/div>\n            <div class=\"mission-grid\">\n                <div class=\"mission-card\">\n                    <div class=\"mission-icon\">\n                        <i class=\"fas fa-bullseye\"><\/i>\n                    <\/div>\n                    <h3>Threat Awareness<\/h3>\n                    <p>Raise public awareness about cybersecurity threats and promote digital literacy across all sectors of society.<\/p>\n                <\/div>\n                <div class=\"mission-card\">\n                    <div class=\"mission-icon\">\n                        <i class=\"fas fa-handshake\"><\/i>\n                    <\/div>\n                    <h3>Collaboration<\/h3>\n                    <p>Foster collaboration between government, private sector, civil society, and international partners.<\/p>\n                <\/div>\n                <div class=\"mission-card\">\n                    <div class=\"mission-icon\">\n                        <i class=\"fas fa-graduation-cap\"><\/i>\n                    <\/div>\n                    <h3>Capacity Building<\/h3>\n                    <p>Strengthen cybersecurity capacity through training, education, and workforce development programs.<\/p>\n                <\/div>\n                <div class=\"mission-card\">\n                    <div class=\"mission-icon\">\n                        <i class=\"fas fa-balance-scale\"><\/i>\n                    <\/div>\n                    <h3>Policy Development<\/h3>\n                    <p>Contribute to the development of robust legal, regulatory, and policy frameworks for cybersecurity.<\/p>\n                <\/div>\n                <div class=\"mission-card\">\n                    <div class=\"mission-icon\">\n                        <i class=\"fas fa-chart-line\"><\/i>\n                    <\/div>\n                    <h3>Innovation<\/h3>\n                    <p>Promote research and innovation in cybersecurity technologies and practices.<\/p>\n                <\/div>\n                <div class=\"mission-card\">\n                    <div class=\"mission-icon\">\n                        <i class=\"fas fa-globe\"><\/i>\n                    <\/div>\n                    <h3>Global Alignment<\/h3>\n                    <p>Align Somali cybersecurity initiatives with global best practices and standards.<\/p>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/section>\n\n    <!-- Organizers Section -->\n    <section class=\"organizers-section full-width\">\n        <div class=\"container\">\n            <div class=\"section-title\">\n                <h2>Organizers<\/h2>\n            <\/div>\n            <div class=\"organizers-content\">\n                <div class=\"organizers-text\">\n                    <p>The <strong>3rd National Cybersecurity Forum<\/strong> is jointly organized by the <strong>National Communications Authority (NCA)<\/strong> and <strong>Mogadishu University (MU)<\/strong>, two leading institutions committed to advancing digital security in Somalia.<\/p>\n                    <p>The <strong>National Communications Authority (NCA)<\/strong> is the regulatory body responsible for overseeing the communications sector in Somalia, ensuring the development of a secure and robust digital infrastructure.<\/p>\n                    <p><strong>Mogadishu University (MU)<\/strong> is a premier higher education institution in Somalia, dedicated to academic excellence and research innovation, with a strong focus on technology and cybersecurity education.<\/p>\n                    <p>Together, these institutions bring their expertise, resources, and networks to create a platform that addresses the most pressing cybersecurity challenges facing Somalia today.<\/p>\n                <\/div>\n               \n        <div class=\"container\">\n            <div class=\"organizers-content\">\n                <h2 class=\"organizers-title\">Organizers<\/h2>\n                <div class=\"organizers-logos\">\n                    <div class=\"organizer-logo\">\n                        <img decoding=\"async\" src=\"https:\/\/ncf.so\/wp-content\/uploads\/2025\/11\/NCA.png\" alt=\"National Communications Authority\">\n      \n                        <img decoding=\"async\" src=\"https:\/\/ncf.so\/wp-content\/uploads\/2025\/11\/MU-logo-scaled.png\" alt=\"Mogadishu University\">\n                    <\/div>\n                <\/div>\n       \n        <\/div>\n    <\/section>\n\n            <\/div>\n        <\/div>\n    <\/section>\n\n    <!-- Stats Section -->\n    <section class=\"stats-section full-width\">\n        <div class=\"container\">\n            <div class=\"section-title\">\n                <h2>Forum Impact<\/h2>\n                <p>Driving cybersecurity advancement in Somalia<\/p>\n            <\/div>\n            <div class=\"stats-grid\">\n                <div class=\"stat-item\">\n                    <div class=\"stat-number\">3rd<\/div>\n                    <div class=\"stat-label\">Edition<\/div>\n                <\/div>\n                <div class=\"stat-item\">\n                    <div class=\"stat-number\">500+<\/div>\n                    <div class=\"stat-label\">Expected Participants<\/div>\n                <\/div>\n                <div class=\"stat-item\">\n                    <div class=\"stat-number\">50+<\/div>\n                    <div class=\"stat-label\">Expert Speakers<\/div>\n                <\/div>\n                <div class=\"stat-item\">\n                    <div class=\"stat-number\">20+<\/div>\n                    <div class=\"stat-label\">Technical Sessions<\/div>\n                <\/div>\n                <div class=\"stat-item\">\n                    <div class=\"stat-number\">6<\/div>\n                    <div class=\"stat-label\">Key Focus Areas<\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/section>\n\n    <!-- Team Section -->\n    <section class=\"team-section full-width\">\n        <div class=\"container\">\n            <div class=\"section-title\">\n                <h2>Organizing Committee<\/h2>\n                <p> <\/p>\n            <\/div>\n\n            <div class=\"team-grid\">\n                <div class=\"team-member\">\n                    <div class=\"member-image\">\n                        <i class=\"fas fa-user\"><\/i>\n                    <\/div>\n                    <div class=\"member-info\">\n                        <h3>Mohamed Hagi Abdulkadir<\/h3>\n                        <p> <\/p>\n                        <p> <\/p>\n                    <\/div>\n                <\/div>\n\n                <div class=\"team-member\">\n                    <div class=\"member-image\">\n                        <i class=\"fas fa-user\"><\/i>\n                    <\/div>\n                    <div class=\"member-info\">\n                        <h3>Abdiaziz Mohamed Abdi<\/h3>\n                        <p> <\/p>\n                        <p> <\/p>\n                    <\/div>\n                <\/div>\n\n                <div class=\"team-member\">\n                    <div class=\"member-image\">\n                        <i class=\"fas fa-user\"><\/i>\n                    <\/div>\n                    <div class=\"member-info\">\n                        <h3>Nasra Abdi Osman<\/h3>\n                        <p> <\/p>\n                        <p> <\/p>\n                    <\/div>\n                <\/div>\n\n                <div class=\"team-member\">\n                    <div class=\"member-image\">\n                        <i class=\"fas fa-user\"><\/i>\n                    <\/div>\n                    <div class=\"member-info\">\n                        <h3>Naima Hassan<\/h3>\n                        <p> <\/p>\n                        <p> <\/p>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n\n<div class=\"container\">\n            <div class=\"section-title\">\n    \n                <p> <\/p>\n            <\/div>\n            <div class=\"team-grid\">\n                <div class=\"team-member\">\n                    <div class=\"member-image\">\n                        <i class=\"fas fa-user\"><\/i>\n                    <\/div>\n                    <div class=\"member-info\">\n                        <h3>Mohamed Ali Omar<\/h3>\n                        <p> <\/p>\n                        <p> <\/p>\n                    <\/div>\n                <\/div>\n                <div class=\"team-member\">\n                    <div class=\"member-image\">\n                        <i class=\"fas fa-user\"><\/i>\n                    <\/div>\n                    <div class=\"member-info\">\n                        <h3>Abas Omar Mohamed<\/h3>\n                        <p> <\/p>\n                        <p> <\/p>\n                    <\/div>\n                <\/div>\n                <div class=\"team-member\">\n                    <div class=\"member-image\">\n                        <i class=\"fas fa-user\"><\/i>\n                    <\/div>\n                    <div class=\"member-info\">\n                        <h3>Aweys Hussien Adow<\/h3>\n                        <p> <\/p>\n                        <p> <\/p>\n                    <\/div>\n                <\/div>\n                <div class=\"team-member\">\n                    <div class=\"member-image\">\n                        <i class=\"fas fa-user\"><\/i>\n                    <\/div>\n                    <div class=\"member-info\">\n                        <h3>Ayub Ibrahim Abdi<\/h3>\n                        <p> <\/p>\n                        <p> <\/p>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n\n    <\/section>\n\n    <!-- CTA Section -->\n    <section class=\"cta-section full-width\">\n        <div class=\"container\">\n            <h2>Join Us in December 2025<\/h2>\n            <p>Be part of the conversation shaping Somalia&#8217;s digital security future. Submit your research, register to attend, or become a partner.<\/p>\n            <a href=\"call-for-papers.html\" class=\"btn\">Submit Your Paper<\/a>\n            <a href=\"contact.html\" class=\"btn btn-outline\" style=\"margin-left: 15px;\">Contact Us<\/a>\n        <\/div>\n    <\/section>\n\n   \n    <script>\n        document.addEventListener('DOMContentLoaded', function() {\n            \/\/ Smooth scrolling for anchor links\n            document.querySelectorAll('a[href^=\"#\"]').forEach(anchor => {\n                anchor.addEventListener('click', function(e) {\n                    e.preventDefault();\n                    \n                    const targetId = this.getAttribute('href');\n                    if(targetId === '#') return;\n                    \n                    const targetElement = document.querySelector(targetId);\n                    if(targetElement) {\n                        window.scrollTo({\n                            top: targetElement.offsetTop - 80,\n                            behavior: 'smooth'\n                        });\n                    }\n                });\n            });\n            \n            \/\/ Animation on scroll\n            const observerOptions = {\n                root: null,\n                rootMargin: '0px',\n                threshold: 0.1\n            };\n            \n            const observer = new IntersectionObserver((entries) => {\n                entries.forEach(entry => {\n                    if (entry.isIntersecting) {\n                        entry.target.style.animationPlayState = 'running';\n                        observer.unobserve(entry.target);\n                    }\n                });\n            }, observerOptions);\n            \n            \/\/ Observe all animated elements\n            document.querySelectorAll('.mission-card, .objective-box, .mission-vision-box, .organizer-logo, .stat-item, .team-member').forEach(el => {\n                el.style.animationPlayState = 'paused';\n                observer.observe(el);\n            });\n        });\n    <\/script>\n<\/body>\n<\/html>\n","protected":false},"excerpt":{"rendered":"<p>About &#8211; 3rd National Cybersecurity Forum About the Forum 3rd National Cybersecurity Forum The Somalia National Cybersecurity Forum is an annual event organized by the National Communications Authority (NCA) &#038; Mogadishu University (MU) to strengthen the country&#8217;s cybersecurity resilience. It brings together stakeholders from government institutions, telecom and technology companies, ISPs, banks, academia, and civil [&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":{"footnotes":""},"class_list":["post-47","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/ncf.so\/index.php\/wp-json\/wp\/v2\/pages\/47","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/ncf.so\/index.php\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/ncf.so\/index.php\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/ncf.so\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/ncf.so\/index.php\/wp-json\/wp\/v2\/comments?post=47"}],"version-history":[{"count":31,"href":"https:\/\/ncf.so\/index.php\/wp-json\/wp\/v2\/pages\/47\/revisions"}],"predecessor-version":[{"id":138,"href":"https:\/\/ncf.so\/index.php\/wp-json\/wp\/v2\/pages\/47\/revisions\/138"}],"wp:attachment":[{"href":"https:\/\/ncf.so\/index.php\/wp-json\/wp\/v2\/media?parent=47"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}