
<!DOCTYPE html>
<html lang="en-gb" dir="ltr"
	  class='com_quix view-page itemid-959 home j31 mm-hover '>
<head>
<style>
/* SIMPLE NAVIGATION BAR - Governor Bay Theme */
#t3-mainnav,
#t3-mainnav .navbar,
#t3-mainnav .t3-navbar,
.navbar, .main-nav, .navigation, .header-nav, .nav, .menu {
    background-color: #4036AA !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    border: none !important;
}

/* MENU LINKS - Clean and simple with no borders */
#t3-mainnav .navbar-nav > li > a,
#t3-mainnav .navbar-nav > li > span,
.navbar a, .main-nav a, .navigation a, .header-nav a, .nav a, .menu a,
.navbar-nav a, .navbar-nav span,
#t3-mainnav .navbar-nav > li,
.navbar li, .main-nav li, .navigation li, .header-nav li, .nav li, .menu li {
    color: #FFFFFF !important;
    background-color: transparent !important;
    padding: 12px 16px !important;
    transition: all 0.2s ease;
    text-decoration: none !important;
    border: none !important;
    border-left: none !important;
    border-right: none !important;
    border-top: none !important;
    border-bottom: none !important;
    outline: none !important;
    box-shadow: none !important;
    font-weight: normal !important;
}

/* Remove any separators or dividers */
#t3-mainnav .navbar-nav > li:before,
#t3-mainnav .navbar-nav > li:after,
.navbar li:before, .navbar li:after,
.main-nav li:before, .main-nav li:after,
.navigation li:before, .navigation li:after {
    content: none !important;
    border: none !important;
}

/* SUBTLE HOVER EFFECT - Not flashy */
#t3-mainnav .navbar-nav > li:hover > a,
#t3-mainnav .navbar-nav > li:hover > span,
.navbar a:hover, .main-nav a:hover, .navigation a:hover, .header-nav a:hover,
.nav a:hover, .menu a:hover, .navbar li:hover a, .main-nav li:hover a,
.navigation li:hover a, .header-nav li:hover a, .nav li:hover a, .menu li:hover a,
#t3-mainnav .navbar-nav > li:hover {
    background-color: #5448CC !important;
    color: #FFFFFF !important;
    transition: all 0.2s ease;
    border: none !important;
}

/* REMOVE DEFAULT ACTIVE STYLING - Fix for HOME always highlighted */
#t3-mainnav .navbar-nav > li.active > a,
#t3-mainnav .navbar-nav > li.current > a,
#t3-mainnav .navbar-nav > li:first-child > a,
.navbar .current a, .main-nav .current a, .navigation .current a, .header-nav .current a,
.navbar .active a, .main-nav .active a, .navigation .active a, .header-nav .active a,
.navbar li:first-child a, .main-nav li:first-child a {
    background-color: transparent !important;
    color: #FFFFFF !important;
    border: none !important;
}

/* Only highlight ACTUAL current page (you may need to adjust this selector based on your CMS) */
#t3-mainnav .navbar-nav > li.current-menu-item > a,
#t3-mainnav .navbar-nav > li.current-page > a,
.navbar .current-menu-item a, .main-nav .current-menu-item a {
    background-color: #5448CC !important;
    color: #FFFFFF !important;
    border: none !important;
}

/* DROPDOWN MENU - Simple and clean */
#t3-mainnav .dropdown-menu,
.dropdown-menu {
    background-color: #4036AA !important;
    border: 1px solid #5448CC !important;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    margin-top: 0;
}

/* DROPDOWN ITEMS */
#t3-mainnav .dropdown-menu > li > a,
.dropdown-menu > li > a,
.dropdown-menu a {
    color: #FFFFFF !important;
    background-color: transparent !important;
    padding: 10px 16px !important;
    transition: all 0.2s ease;
    border: none !important;
}

/* DROPDOWN HOVER - Simple highlight */
#t3-mainnav .dropdown-menu > li > a:hover,
.dropdown-menu > li > a:hover,
.dropdown-menu a:hover {
    background-color: #5448CC !important;
    color: #FFFFFF !important;
    border: none !important;
}

/* Remove any default list styling */
#t3-mainnav ul,
#t3-mainnav li,
.navbar ul, .navbar li,
.main-nav ul, .main-nav li,
.navigation ul, .navigation li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

body {
    background-color: initial !important;
}
</style>
<style>
/* ========================================
   AI-INSPIRED SLIDER BACKGROUND (Governor Bay Theme)
   ======================================== */

.slider, .hero-slider, .main-slider, .banner-slider, 
.carousel, .slideshow, .hero-section, .banner-section,
.slider-wrapper, .hero-wrapper, .banner-wrapper,
.slider-container, .hero-container, .banner-container,
.slide, .carousel-item, .hero-slide, .banner-slide {
    background-color: #4036AA !important;  /* Governor Bay base */
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 32px rgba(64,54,170,0.15);
    /* Optional subtle depth: */
    background-image: 
        repeating-linear-gradient(120deg, rgba(255,255,255,0.04) 0 2px, transparent 2px 40px),
        repeating-linear-gradient(60deg, rgba(255,255,255,0.04) 0 2px, transparent 2px 40px);
}

/* Dots overlay for AI/data grid feel */
.slider::before, .hero-slider::before, .main-slider::before, .banner-slider::before,
.carousel::before, .slideshow::before, .hero-section::before, .banner-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    z-index: 1;
    background:
        radial-gradient(circle, rgba(207,192,203,0.12) 1.5px, transparent 1.5px) 15px 15px / 40px 40px repeat,
        radial-gradient(circle, rgba(149,159,202,0.10) 1.5px, transparent 1.5px) 35px 25px / 40px 40px repeat;
    /* Adds faint "nodes" effect */
    opacity: 0.7;
    animation: aiGridMove 15s linear infinite alternate;
}

/* Optional: Animate overlay for a living feel */
@keyframes aiGridMove {
    0% { background-position: 15px 15px, 35px 25px; }
    100% { background-position: 55px 55px, 75px 65px; }
}
</style>

<style>
/* ========================================
   BUTTON STYLING SECTION
   ======================================== */

/* ENHANCED BUTTONS with more dynamic effects using brand colors */
.btn, .button, input[type="submit"], input[type="button"], .read-more, .more-link, 
.contact-button, .submit-btn, .cta-button, .action-button, .form-button,
.btn-primary, .btn-default, .btn-secondary, .quix-button, a.button,
.readmore, .readmore-link, .download-btn, .register-btn, .login-btn,
.quix-btn, .qx-btn, .qx-button, .t3-btn, .t3-button, .academia-btn,
.module-button, .content-button, .article-button, .page-button,
.btn-large, .btn-small, .btn-block, .button-primary, .button-secondary {
    background: linear-gradient(135deg, #1B1FA9 0%, #3F3DFF 100%) !important;
    color: #FFFFFF !important;
    border: 2px solid #1B1FA9 !important;
    padding: 14px 28px !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    display: inline-block !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    box-shadow: 
        0 4px 15px rgba(27, 31, 169, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
    position: relative;
    z-index: 1;
    font-weight: bold !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    overflow: hidden;
}

/* Add animated background to buttons */
.btn::before, .button::before, input[type="submit"]::before, input[type="button"]::before,
.read-more::before, .more-link::before, .contact-button::before, .submit-btn::before,
.cta-button::before, .action-button::before, .form-button::before, .btn-primary::before,
.btn-default::before, .btn-secondary::before, .quix-button::before, a.button::before,
.readmore::before, .readmore-link::before, .download-btn::before, .register-btn::before, .login-btn::before,
.quix-btn::before, .qx-btn::before, .qx-button::before, .t3-btn::before, .t3-button::before, .academia-btn::before,
.module-button::before, .content-button::before, .article-button::before, .page-button::before,
.btn-large::before, .btn-small::before, .btn-block::before, .button-primary::before, .button-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: -1;
}

/* ========================================
   BUTTON HOVER EFFECTS
   ======================================== */

/* ENHANCED GLOWING HOVER EFFECT for buttons with scaling using brand cyan */
.btn:hover, .button:hover, input[type="submit"]:hover, input[type="button"]:hover, 
.read-more:hover, .more-link:hover, .contact-button:hover, .submit-btn:hover,
.cta-button:hover, .action-button:hover, .form-button:hover, .btn-primary:hover,
.btn-default:hover, .btn-secondary:hover, .quix-button:hover, a.button:hover,
.readmore:hover, .readmore-link:hover, .download-btn:hover, .register-btn:hover, .login-btn:hover,
.quix-btn:hover, .qx-btn:hover, .qx-button:hover, .t3-btn:hover, .t3-button:hover, .academia-btn:hover,
.module-button:hover, .content-button:hover, .article-button:hover, .page-button:hover,
.btn-large:hover, .btn-small:hover, .btn-block:hover, .button-primary:hover, .button-secondary:hover {
    background: linear-gradient(135deg, #3F3DFF 0%, #6AF3F1 100%) !important;
    border-color: #6AF3F1 !important;
    color: #FFFFFF !important;
    box-shadow: 
        0 0 30px rgba(106, 243, 241, 0.7), 
        0 0 50px rgba(106, 243, 241, 0.4), 
        0 0 70px rgba(106, 243, 241, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-4px) scale(1.08);
}

.btn:hover::before, .button:hover::before, input[type="submit"]:hover::before, input[type="button"]:hover::before,
.read-more:hover::before, .more-link:hover::before, .contact-button:hover::before, .submit-btn:hover::before,
.cta-button:hover::before, .action-button:hover::before, .form-button:hover::before, .btn-primary:hover::before,
.btn-default:hover::before, .btn-secondary:hover::before, .quix-button:hover::before, a.button:hover::before,
.readmore:hover::before, .readmore-link:hover::before, .download-btn:hover::before, .register-btn:hover::before, .login-btn:hover::before,
.quix-btn:hover::before, .qx-btn:hover::before, .qx-button:hover::before, .t3-btn:hover::before, .t3-button:hover::before, .academia-btn:hover::before,
.module-button:hover::before, .content-button:hover::before, .article-button:hover::before, .page-button:hover::before,
.btn-large:hover::before, .btn-small:hover::before, .btn-block:hover::before, .button-primary:hover::before, .button-secondary:hover::before {
    left: 0;
}



/* ========================================
   PRELOADER HEXAGONAL GRID BACKGROUND
   ======================================== */

/* Add subtle particle effect */
.slider::after, .hero-slider::after, .main-slider::after, .banner-slider::after,
.carousel::after, .slideshow::after, .hero-section::after, .banner-section::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(106, 243, 241, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, rgba(106, 243, 241, 0.08) 1px, transparent 1px),
        radial-gradient(circle at 40% 80%, rgba(106, 243, 241, 0.06) 1px, transparent 1px),
        radial-gradient(circle at 90% 20%, rgba(106, 243, 241, 0.04) 1px, transparent 1px);
    background-size: 100px 100px, 150px 150px, 200px 200px, 250px 250px;
    pointer-events: none;
    z-index: 2;
    animation: particleFloat 12s ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.3;
    }
    25% { 
        transform: translate(10px, -10px) rotate(90deg);
        opacity: 0.6;
    }
    50% { 
        transform: translate(-5px, 5px) rotate(180deg);
        opacity: 0.4;
    }
    75% { 
        transform: translate(15px, 10px) rotate(270deg);
        opacity: 0.7;
    }
}

/* Enhanced slider content positioning */
.slider .slide-content, .hero-slider .slide-content, .carousel .slide-content,
.slider h1, .slider h2, .slider h3, .slider .title, .slider .heading,
.hero-section h1, .hero-section h2, .hero-section h3, .hero-section .title,
.banner-section h1, .banner-section h2, .banner-section h3, .banner-section .title {
    position: relative;
    z-index: 10;
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(106, 243, 241, 0.2) !important;
    color: #FFFFFF !important;
}

/* Enhanced slider text content */
.slider p, .slider .description, .slider .subtitle,
.hero-section p, .hero-section .description, .hero-section .subtitle,
.banner-section p, .banner-section .description, .banner-section .subtitle {
    position: relative;
    z-index: 10;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5) !important;
    color: rgba(255, 255, 255, 0.9) !important;
}

/* ========================================
   SLIDER BUTTON EFFECTS
   ======================================== */

/* Enhanced slider buttons */
.slider .btn, .slider .button, .slider .cta-button,
.hero-section .btn, .hero-section .button, .hero-section .cta-button,
.banner-section .btn, .banner-section .button, .banner-section .cta-button {
    background: linear-gradient(135deg, #3F3DFF 0%, #6AF3F1 100%) !important;
    border: 2px solid #6AF3F1 !important;
    color: #FFFFFF !important;
    padding: 16px 32px !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    display: inline-block !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    box-shadow: 
        0 4px 20px rgba(106, 243, 241, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
    position: relative;
    z-index: 10;
    font-weight: bold !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    overflow: hidden;
}

.slider .btn::before, .slider .button::before, .slider .cta-button::before,
.hero-section .btn::before, .hero-section .button::before, .hero-section .cta-button::before,
.banner-section .btn::before, .banner-section .button::before, .banner-section .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: -1;
}

/* Enhanced slider button hover */
.slider .btn:hover, .slider .button:hover, .slider .cta-button:hover,
.hero-section .btn:hover, .hero-section .button:hover, .hero-section .cta-button:hover,
.banner-section .btn:hover, .banner-section .button:hover, .banner-section .cta-button:hover {
    background: linear-gradient(135deg, #6AF3F1 0%, #3F3DFF 100%) !important;
    border-color: #6AF3F1 !important;
    color: #FFFFFF !important;
    box-shadow: 
        0 0 30px rgba(106, 243, 241, 0.8), 
        0 0 50px rgba(106, 243, 241, 0.5), 
        0 0 70px rgba(106, 243, 241, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
    transform: translateY(-3px) scale(1.05);
}

.slider .btn:hover::before, .slider .button:hover::before, .slider .cta-button:hover::before,
.hero-section .btn:hover::before, .hero-section .button:hover::before, .hero-section .cta-button:hover::before,
.banner-section .btn:hover::before, .banner-section .button:hover::before, .banner-section .cta-button:hover::before {
    left: 0;
}

/* ========================================
   AI PRELOADER SECTION
   ======================================== */

/* AI PRELOADER STYLES */
/* ========================================
   PRELOADER CONTAINER & LAYOUT
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#ai-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1B1FA9 0%, #3F3DFF 50%, #4B1F9C 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: all 0.8s ease;
}

#ai-preloader.fade-out {
    opacity: 0;
    transform: scale(1.1);
    visibility: hidden;
}

.ai-container {
    text-align: center;
    position: relative;
    z-index: 10;
}

.neural-network {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0.3;
}

.node {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #6AF3F1;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.connection {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, #6AF3F1, transparent);
    animation: flow 3s linear infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}

@keyframes flow {
    0% { opacity: 0; transform: scaleX(0); }
    50% { opacity: 1; transform: scaleX(1); }
    100% { opacity: 0; transform: scaleX(0); }
}

.ai-brain {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    position: relative;
    animation: brainGlow 2s ease-in-out infinite alternate;
}

.brain-outline {
    width: 100%;
    height: 100%;
    border: 3px solid #FFFFFF;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    position: relative;
    overflow: hidden;
}

.brain-waves {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 2px;
    background: #6AF3F1;
    border-radius: 1px;
    animation: brainWave 1.5s ease-in-out infinite;
}

.brain-waves::before,
.brain-waves::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 2px;
    background: #6AF3F1;
    border-radius: 1px;
    animation: brainWave 1.5s ease-in-out infinite;
}

.brain-waves::before {
    top: -8px;
    left: 10%;
    animation-delay: 0.3s;
}

.brain-waves::after {
    top: 8px;
    right: 10%;
    animation-delay: 0.6s;
}

@keyframes brainGlow {
    0% { filter: drop-shadow(0 0 10px rgba(106, 243, 241, 0.5)); }
    100% { filter: drop-shadow(0 0 25px rgba(106, 243, 241, 0.8)); }
}

@keyframes brainWave {
    0%, 100% { opacity: 0.3; transform: scaleX(0.5); }
    50% { opacity: 1; transform: scaleX(1.2); }
}

.ai-title {
    color: #FFFFFF;
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 10px;
    text-transform: uppercase;
    animation: titleGlow 2s ease-in-out infinite;
}

.ai-subtitle {
    color: #6AF3F1;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 40px;
    text-transform: uppercase;
    opacity: 0.8;
}

@keyframes titleGlow {
    0%, 100% { text-shadow: 0 0 10px rgba(255, 255, 255, 0.5); }
    50% { text-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 0 0 30px rgba(106, 243, 241, 0.5); }
}

.progress-ring {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    position: relative;
}

.progress-ring svg {
    transform: rotate(-90deg);
    width: 100%;
    height: 100%;
}

.progress-ring circle {
    fill: none;
    stroke-width: 3;
    stroke-linecap: round;
}

.progress-bg {
    stroke: rgba(255, 255, 255, 0.1);
}

.progress-bar {
    stroke: #6AF3F1;
    stroke-dasharray: 314;
    stroke-dashoffset: 314;
    animation: progressFill 4s ease-out forwards;
    filter: drop-shadow(0 0 5px rgba(106, 243, 241, 0.6));
}

@keyframes progressFill {
    0% { stroke-dashoffset: 314; }
    100% { stroke-dashoffset: 0; }
}

.progress-percentage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 500;
}

.status-text {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 20px;
    height: 20px;
    opacity: 0.9;
}

.particle {
    position: absolute;
    background: #6AF3F1;
    border-radius: 50%;
    pointer-events: none;
    animation: float 6s ease-in-out infinite;
}

.particle:nth-child(odd) {
    background: #D38D29;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    10%, 90% {
        opacity: 1;
    }
    50% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0.8;
    }
}

.hex-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image: 
        radial-gradient(circle at 25% 25%, #FFFFFF 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, #6AF3F1 1px, transparent 1px);
    background-size: 60px 60px;
    animation: hexMove 20s linear infinite;
}

@keyframes hexMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

.main-content {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.main-content.show {
    opacity: 1;
}


body {
    background-color: initial !important;
}

/* Add subtle page loading animation */
@keyframes pageReveal {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

body {
    animation: pageReveal 0.8s ease-out;
}
</style>



	<base href="https://dprm.pids.gov.ph/" />
	<meta http-equiv="content-type" content="text/html; charset=utf-8" />
	<meta name="keywords" content="development policy research month, dprm, policy research, PIDS, Philippine Institute for Development Studies, socioeconomic, development planning, policymaking, data, evidence, decisionmakers, policymakers, program planning, think tank, policy-oriented studies, development policies, Philippines policy conference, Philippine policy conference, public policy conference, PIDS conference" />
	<meta name="twitter:card" content="summary" />
	<meta property="og:type" content="website" />
	<meta property="og:site_name" content="Development Policy Research Month" />
	<meta property="og:url" content="https://dprm.pids.gov.ph/" />
	<meta name="generator" content="Joomla! - Open Source Content Management" />
	<title>Home</title>
    <script data-cfasync="false">var QUIX_ROOT_URL = "https://dprm.pids.gov.ph/";window.FILE_MANAGER_ROOT_URL = "https://dprm.pids.gov.ph/images/";</script>
	<link href="http://localhost/academia/site//?feed=rss2" rel="canonical" />
	<link href="/templates/tx_academia2/favicon.ico" rel="shortcut icon" type="image/vnd.microsoft.icon" />
	<link href="/t3-assets/css/css-1749d-92321.css" rel="stylesheet" type="text/css" media="all" />
	<link href="/t3-assets/css/css-9b046-39625.css" rel="stylesheet" type="text/css" media="all" />
	<link href="//fonts.googleapis.com/css?family=Verdana:regular,italic&amp;subset=latin" rel="stylesheet" type="text/css" />
	<link href="//fonts.googleapis.com/css?family=Nexa:regular,italic&amp;subset=latin" rel="stylesheet" type="text/css" />
	<link href="/t3-assets/css/css-6ab09-92321.css" rel="stylesheet" type="text/css" media="all" />
	<style type="text/css">
@media screen and (min-width: 768px) and (max-width: 992px){  } @media screen and (max-width: 767px) {  } #qx-section-2978{
    
      }
  






#qx-row-441858{
    background-color : rgba(255, 255, 255, 1);       }
 


#qx-column-861860{
    
  background-color : rgba(255, 255, 255, 1); 	
    }

 



#qx-custom-html-94176{
      }
#qx-custom-html-94176 *{
  }

#qx-section-71694{
    
      }
  






#qx-row-63695{
          }
 


#qx-column-44698{
    
  	
    }

 




#qx-section-465028{
    
      }
  






#qx-row-4579{
          }
 


#qx-column-181{
    
  	
    }

 



#qx-text-9471{
      }

#qx-text-9471 *{
  }
#qx-row-812482{
          }
 


#qx-column-3912484{
    
  	
    }

 



#qx-video-3412144{
    overflow:hidden;
    padding-bottom:56.25%;
    height:0;
}
#qx-video-3412144 iframe{
    left:0;
    top:0;
    height:100%;
    width:100%;
    position:absolute;
    border:0;
}
#qx-column-1012486{
    
  	
    }

 



#qx-text-9412296{
      }

#qx-text-9412296 *{
  }
#qx-row-2812476{
          }
 


#qx-column-1112478{
    
  	
    }

 



#qx-text-2412773{
      }

#qx-text-2412773 *{
  }
#qx-button-303509 .qx-btn {
  color : rgba(252, 252, 252, 1);   background : rgba(27, 31, 169, 1);     }

 

  
  #qx-button-303509 .qx-btn:hover{
    color : rgba(255, 255, 255, 1);     background : rgba(63, 61, 255, 1);     border-color : rgba(98, 208, 245, 1);   }



#qx-row-6410069{
          }
 


#qx-column-510071{
    
  	
    }

 




#qx-row-30178{
          }
 


#qx-column-49180{
    
  	
    }

 



#qx-text-46183{
      }

#qx-text-46183 *{
  }
#qx-text-55306{
      }

#qx-text-55306 *{
  }
#qx-button-12905 .qx-btn {
  color : rgba(252, 252, 252, 1);   background : rgba(27, 31, 169, 1);     }

 

  
  #qx-button-12905 .qx-btn:hover{
    color : rgba(255, 255, 255, 1);     background : rgba(63, 61, 255, 1);     border-color : rgba(98, 208, 245, 1);   }



#qx-row-98427{
          }
 


#qx-column-31903{
    
  	
    }

 




#qx-section-6940{
    
      }
  






#qx-row-74941{
          }
 


#qx-column-45942{
    
  	
    }

 



#qx-text-10943{
      }

#qx-text-10943 *{
  }
#qx-row-8673{
          }
 


#qx-column-3075{
    
  	
    }

 



#qx-image-7393 img{  
  }


 


#qx-text-673252{
      }

#qx-text-673252 *{
  }

#qx-button-39587 .qx-btn {
  color : rgba(255, 255, 255, 1);   background : rgba(27, 31, 169, 1);     }

 

  
  #qx-button-39587 .qx-btn:hover{
        background : rgba(63, 61, 255, 1);     border-color : rgba(98, 208, 245, 1);   }



#qx-button-7815147 .qx-btn {
  color : rgba(255, 255, 255, 1);   background : rgba(27, 31, 169, 1);     }

 

  
  #qx-button-7815147 .qx-btn:hover{
        background : rgba(63, 61, 255, 1);     border-color : rgba(98, 208, 245, 1);   }




#qx-column-7877{
    
  	
    }

 



#qx-image-36387 img{  
  }


 


#qx-text-68460{
      }

#qx-text-68460 *{
  }

#qx-button-38107 .qx-btn {
  color : rgba(255, 255, 255, 1);   background : rgba(27, 31, 169, 1);     }

 

  
  #qx-button-38107 .qx-btn:hover{
        background : rgba(63, 61, 255, 1);     border-color : rgba(98, 208, 245, 1);   }



#qx-button-922184 .qx-btn {
  color : rgba(255, 255, 255, 1);   background : rgba(27, 31, 169, 1);     }

 

  
  #qx-button-922184 .qx-btn:hover{
        background : rgba(63, 61, 255, 1);     border-color : rgba(98, 208, 245, 1);   }



#qx-button-6117053 .qx-btn {
  color : rgba(255, 255, 255, 1);   background : rgba(27, 31, 169, 1);     }

 

  
  #qx-button-6117053 .qx-btn:hover{
        background : rgba(63, 61, 255, 1);     border-color : rgba(98, 208, 245, 1);   }




#qx-column-1515357{
    
  	
    }

 



#qx-image-38468 img{  
  }


 


#qx-text-8815549{
      }

#qx-text-8815549 *{
  }

#qx-button-7417748 .qx-btn {
        }

 

  




#qx-row-235904{
          }
 


#qx-column-545906{
    
  	
    }

 



#qx-image-6480 img{  
  }


 


#qx-text-6918980{
      }

#qx-text-6918980 *{
  }

#qx-button-7719044 .qx-btn {
        }

 

  




#qx-column-5784{
    
  	
    }

 



#qx-image-5619151 img{  
  }


 


#qx-text-82214{
      }

#qx-text-82214 *{
  }

#qx-button-912306 .qx-btn {
  color : rgba(255, 255, 255, 1);   background : rgba(27, 31, 169, 1);     }

 

  
  #qx-button-912306 .qx-btn:hover{
        background : rgba(63, 61, 255, 1);     border-color : rgba(98, 208, 245, 1);   }




#qx-column-119340{
    
  	
    }

 




#qx-section-54650{
    
      }
  






#qx-row-90651{
          }
 


#qx-column-13652{
    
  	
    }

 




#qx-text-77653{
      }

#qx-text-77653 *{
  }
#qx-column-8646{
    
  	
    }

 




#qx-section-10744{
    
      }
  






#qx-row-482647{
          }
 


#qx-column-162649{
    
  background-color : rgba(255, 255, 255, 1); 	
    }

 



.at-cols2 li {
width: 50%
}

.at-cols3 li {
width: 33.33%
}

.at-cols4 li {
width: 25%
}

.at-cols5 li {
width: 20%
}

.ateam ul {
list-style-type: none;
margin: 0
}

.ateam ul {
margin: 0 -10px
}

.ateam ul li {
float: left
}

.ateam .at-inner {
margin: 0 10px 10px
}

.ateam .at-name,
.ateam .at-designation,
.ateam .at-desc,
.ateam .at-social {
margin: 10px 0 0
}

.at-default {
text-align: center
}

.at-default .at-name,
.at-default .at-designation {
line-height: 1
}

.at-default .at-name {
font-size: 1.5em;
font-width: bold;
text-transform: uppercase
}

.at-default .at-designation {
font-size: 1.2em;
color: #888
}

.at-classic .at-inner {
background: #f8f8f8;
padding: 15px;
border: 1px solid #ebebeb
}

.at-classic figure {
float: left;
width: 25%;
margin: 0 5% 0 0;
text-align: center
}

.at-classic .at-info {
float: left;
width: 70%
}

.at-classic .at-designation {
float: right;
background: silver;
color: #fff;
padding: 3px 10px;
font-size: 13px;
line-height: 1
}

.at-classic .at-name {
margin-top: 0
}

.at-classic .at-social {
text-align: left;
margin-top: 15px
}

.at-overlay-social figure {
margin: 0;
overflow: hidden;
position: relative
}

.at-overlay-social .overlay {
display: flex;
align-items: center;
justify-content: center;
position: absolute;
z-index: 20;
background: rgba(0, 0, 0, .8);
transition: all .3s;
width: 100%;
height: 0;
margin-top: 20px
}

.at-overlay-social figure:hover .overlay {
bottom: 0;
left: 0;
right: 0;
height: 100%
}





.module-teachers-team .ateam figure {
overflow: hidden;
}
.module-teachers-team .ateam .at-inner img {
<!--height: auto;-->
}
.qx-element-academia-teachers {
<!--overflow: hidden; -->
}


.ateam .at-social a .fa {
font-size: 16px;
font-style: normal;
margin: 0 5px 0 0;
border-radius: 50%;
color: #fff;
width: 30px;
height: 30px;
line-height: 30px;
}

.ateam .at-social a .fa-facebook {
background: #3f5896
}

.ateam .at-social a .fa-home {
background: #d6492f
}

.ateam .at-social a .fa-linkedin {
background: #126698
}

.ateam .at-social a .fa-twitter {
background: #46cbfd
}
#qx-section-8453{
    
      }
  






#qx-row-6654{
          }
 


#qx-column-4855{
    
  	
    }

 



#qx-academia-icon-7556 i{
  font-size: 59px;
  color : 00F0FF;   
  }



#qx-column-7257{
    
  	
    }

 



#qx-academia-icon-2958 i{
  font-size: 70px;
    
  }



#qx-section-799952{
    
      }
  






#qx-row-309953{
          }
 


#qx-column-129954{
    
  	
    }

 



#qx-divider-279955.qx-element-divider:before{
    border-top-color : rgba(255, 255, 255, 1);           border-top-width: 100px;
      
    border-top-style : solid;       }

#qx-section-749957{
    
      }
  






#qx-row-79958{
          }
 


#qx-column-259959{
    
  	
    }

 



#qx-divider-199960.qx-element-divider:before{
    border-top-color : rgba(255, 255, 255, 1);           border-top-width: 100px;
      
    border-top-style : solid;       }

#qx-section-579962{
    
      }
  






#qx-row-119963{
          }
 


#qx-column-639964{
    
  	
    }

 



#qx-divider-399965.qx-element-divider:before{
    border-top-color : rgba(255, 255, 255, 1);           border-top-width: 100px;
      
    border-top-style : solid;       }
#qx-row-441858 { padding-top:-20; } #qx-column-861860 { margin-top:-20;margin-bottom:-20;padding-top:-30;padding-bottom:-30; } #qx-custom-html-94176 { text-align : left;  } #qx-divider-79240 { height : 82px;  } #qx-section-465028 { padding-top:10px; } #qx-text-9471 { text-align : left;  } #qx-text-9471, #qx-text-9471 * { font-size : 26px;  } #qx-column-3912484 { margin-top:-80px; } #qx-text-9412296 { text-align : left;  } #qx-column-1112478 { margin-top:-50px; } #qx-text-2412773 { text-align : left;  } #qx-button-303509 { margin-top:0px;text-align : center;  } #qx-button-303509 .qx-btn { font-size : 13px; font-weight : bold;  } #qx-text-46183 { text-align : left;  } #qx-text-46183, #qx-text-46183 * { font-size : 26px;  } #qx-text-55306 { text-align : left;  } #qx-button-12905 { margin-top:20px;text-align : center;  } #qx-button-12905 .qx-btn { font-size : 13px; font-weight : bold;  } #qx-divider-32906 { height : 15px;  } #qx-text-10943 { text-align : left;  } #qx-text-10943, #qx-text-10943 * { font-size : 26px;  } #qx-image-7393 { text-align : center;  } #qx-divider-96719 { height : 5px;  } #qx-text-673252 { text-align : left;  } #qx-divider-61788 { height : 5px;  } #qx-button-39587 { margin-bottom:5px;text-align : center;  } #qx-button-39587 .qx-btn { font-size : 10px;  } #qx-button-7815147 .qx-btn { font-size : 10px;  } #qx-button-7815147 { text-align : center;  } #qx-divider-28480 { height : 5px;  } #qx-image-36387 { text-align : center;  } #qx-divider-8779 { height : 5px;  } #qx-text-68460 { text-align : left;  } #qx-divider-57791 { height : 2px;  } #qx-button-38107 { margin-bottom:3px;text-align : center;  } #qx-button-38107 .qx-btn { font-size : 8px;  } #qx-button-922184 { margin-bottom:5px;text-align : center;  } #qx-button-922184 .qx-btn { font-size : 10px;  } #qx-button-6117053 .qx-btn { font-size : 10px;  } #qx-button-6117053 { text-align : center;  } #qx-divider-82141 { height : 5px;  } #qx-image-38468 { text-align : center;  } #qx-divider-1715373 { height : 5px;  } #qx-text-8815549 { text-align : left;  } #qx-divider-1315728 { height : 5px;  } #qx-button-7417748 { margin-bottom:5px;text-align : center;  } #qx-button-7417748 .qx-btn { font-size : 10px;  } #qx-divider-815940 { height : 5px;  } #qx-image-6480 { text-align : center;  } #qx-divider-6118808 { height : 5px;  } #qx-text-6918980 { text-align : left;  } #qx-divider-2519041 { height : 5px;  } #qx-button-7719044 .qx-btn { font-size : 10px;  } #qx-button-7719044 { text-align : center;  } #qx-divider-5419148 { height : 5px;  } #qx-image-5619151 { text-align : center;  } #qx-divider-8883 { height : 5px;  } #qx-text-82214 { text-align : left;  } #qx-divider-68145 { height : 5px;  } #qx-button-912306 .qx-btn { font-size : 10px;  } #qx-button-912306 { text-align : center;  } #qx-divider-66226 { height : 5px;  } #qx-section-54650 { padding-bottom:10px; } #qx-divider-71649 { height : 30px;  } #qx-text-77653 { margin-top:10px;text-align : left;  } #qx-text-77653, #qx-text-77653 * { font-size : 26px; font-weight : bold;  } #qx-section-10744 { padding-bottom:30px; } #qx-row-482647 { margin-right:0px;margin-left:0px;padding-right:0px;padding-left:0px; } #qx-column-162649 { padding-right:0px;padding-left:0px; } #qx-academia-teachers-8045 .ateam ul li { padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px; } #qx-row-6654 { padding-top:20px;padding-bottom:20px; } #qx-academia-icon-7556 a { text-align : right;  } #qx-academia-icon-2958 i { margin-left:-20px; } #qx-academia-icon-2958 a { text-align : right;  } #qx-divider-279955 { margin-top:-64px;height : 64px;  } #qx-divider-199960 { margin-top:-64px;height : 64px;  } #qx-divider-399965 { margin-top:-64px;height : 64px;  } @media screen and (min-width: 768px) and (max-width: 992px){ #qx-button-303509 { text-align : left;  } #qx-button-12905 { text-align : left;  } #qx-button-39587 { text-align : left;  } #qx-button-7815147 { text-align : left;  } #qx-button-38107 { text-align : left;  } #qx-button-922184 { text-align : left;  } #qx-button-6117053 { text-align : left;  } #qx-button-7417748 { text-align : left;  } #qx-button-7719044 { text-align : left;  } #qx-button-912306 { text-align : left;  } #qx-text-77653 { text-align : left;  } #qx-academia-icon-7556 a { text-align : left;  } #qx-academia-icon-2958 a { text-align : left;  }  } @media screen and (max-width: 767px) { #qx-button-303509 { text-align : left;  } #qx-button-12905 { text-align : left;  } #qx-button-39587 { text-align : left;  } #qx-button-7815147 { text-align : left;  } #qx-button-38107 { text-align : left;  } #qx-button-922184 { text-align : left;  } #qx-button-6117053 { text-align : left;  } #qx-button-7417748 { text-align : left;  } #qx-button-7719044 { text-align : left;  } #qx-button-912306 { text-align : left;  } #qx-text-77653 { text-align : left;  } #qx-academia-icon-7556 a { text-align : left;  } #qx-academia-icon-2958 a { text-align : left;  }  } body{font-family:Verdana, sans-serif; font-size:14px; font-weight:normal; }h1{font-family:Nexa, sans-serif; font-size:14px; font-weight:bold; }h2{font-family:Nexa, sans-serif; font-size:14px; font-weight:bold; }
	</style>
	<script src="/media/jui/js/jquery.min.js?2527198595ee0ba82b82199f04fadd89" type="text/javascript"></script>
	<script src="/media/jui/js/jquery-noconflict.js?2527198595ee0ba82b82199f04fadd89" type="text/javascript"></script>
	<script src="/media/jui/js/jquery-migrate.min.js?2527198595ee0ba82b82199f04fadd89" type="text/javascript"></script>
	<script src="/plugins/system/t3/base-bs3/bootstrap/js/bootstrap.js?2527198595ee0ba82b82199f04fadd89" type="text/javascript"></script>
	<script src="/libraries/quix/assets/js/jquery.easing.js?ver=5.2.8" type="text/javascript"></script>
	<script src="/libraries/quix/assets/js/wow.js?ver=5.2.8" type="text/javascript"></script>
	<script src="/libraries/quix/assets/js/jquery.magnific-popup.js?ver=5.2.8" type="text/javascript"></script>
	<script src="/libraries/quix/assets/js/quix.js?ver=5.2.8" type="text/javascript"></script>
	<script src="/plugins/system/t3/base-bs3/js/jquery.tap.min.js" type="text/javascript"></script>
	<script src="/plugins/system/t3/base-bs3/js/script.js" type="text/javascript"></script>
	<script src="/plugins/system/t3/base-bs3/js/menu.js" type="text/javascript"></script>
	<script src="/templates/tx_academia2/js/wow.js" type="text/javascript"></script>
	<script src="/templates/tx_academia2/js/switcher.js" type="text/javascript"></script>
	<script src="/templates/tx_academia2/js/search-classie.js" type="text/javascript"></script>
	<script src="/templates/tx_academia2/js/search-uisearch.js" type="text/javascript"></script>
	<script src="/templates/tx_academia2/js/atvImg-min.js" type="text/javascript"></script>
	<script src="/templates/tx_academia2/js/script.js" type="text/javascript"></script>
	<script type="application/ld+json">
{"@context":"http:\/\/schema.org","@type":"Organization","name":"Development Policy Research Month","url":"https:\/\/dprm.pids.gov.ph\/"}
	</script>
	<script type="text/javascript">
new WOW().init();
	</script>

	
<!-- META FOR IOS & HANDHELD -->
	<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>

	
	<style type="text/stylesheet">
		@-webkit-viewport   { width: device-width; }
		@-moz-viewport      { width: device-width; }
		@-ms-viewport       { width: device-width; }
		@-o-viewport        { width: device-width; }
		@viewport           { width: device-width; }
	</style>
	<script type="text/javascript">
		//<![CDATA[
		if (navigator.userAgent.match(/IEMobile\/10\.0/)) {
			var msViewportStyle = document.createElement("style");
			msViewportStyle.appendChild(
				document.createTextNode("@-ms-viewport{width:auto!important}")
			);
			document.getElementsByTagName("head")[0].appendChild(msViewportStyle);
		}
		//]]>
	</script>
<meta name="HandheldFriendly" content="true"/>
<meta name="apple-mobile-web-app-capable" content="YES"/>
<!-- //META FOR IOS & HANDHELD -->





<!-- Le HTML5 shim and media query for IE8 support -->
<!--[if lt IE 9]>
<script src="//html5shim.googlecode.com/svn/trunk/html5.js"></script>
<script type="text/javascript" src="/plugins/system/t3/base-bs3/js/respond.min.js"></script>
<![endif]-->

<!-- You can add Google Analytics here or use T3 Injection feature -->

		
	</head>

<body>
<div id="ai-preloader">
    <div class="hex-grid"></div>
    <div class="neural-network" id="neuralNetwork"></div>
    <div class="particles" id="particles"></div>
    
    <div class="ai-container">
        <div class="ai-brain">
            <div class="brain-outline">
                <div class="brain-waves"></div>
            </div>
        </div>
        
        <h1 class="ai-title">#AIforGoodGovernance</h1>
        <p class="ai-subtitle">Initializing Intelligence</p>
        
        <div class="progress-ring">
            <svg>
                <circle class="progress-bg" cx="60" cy="60" r="50"></circle>
                <circle class="progress-bar" cx="60" cy="60" r="50"></circle>
            </svg>
            <div class="progress-percentage" id="progressText">0%</div>
        </div>
        
        <div class="status-text" id="statusText">Loading neural networks...</div>
    </div>
</div>

<script>
function isHomePage() {
    const currentPath = window.location.pathname;
    const isHome = currentPath === '/' || 
                  currentPath === '/index.html' || 
                  currentPath === '/home' || 
                  currentPath === '' ||
                  currentPath.endsWith('/');
    
    const hasSeenLoader = sessionStorage.getItem('ai-loader-shown');
    return isHome && !hasSeenLoader;
}

function createNeuralNetwork() {
    const network = document.getElementById('neuralNetwork');
    const nodeCount = 20;
    
    for (let i = 0; i < nodeCount; i++) {
        const node = document.createElement('div');
        node.className = 'node';
        node.style.left = Math.random() * 100 + '%';
        node.style.top = Math.random() * 100 + '%';
        node.style.animationDelay = Math.random() * 2 + 's';
        network.appendChild(node);
    }
    
    for (let i = 0; i < nodeCount / 2; i++) {
        const connection = document.createElement('div');
        connection.className = 'connection';
        connection.style.left = Math.random() * 100 + '%';
        connection.style.top = Math.random() * 100 + '%';
        connection.style.width = Math.random() * 200 + 50 + 'px';
        connection.style.transform = 'rotate(' + Math.random() * 360 + 'deg)';
        connection.style.animationDelay = Math.random() * 3 + 's';
        network.appendChild(connection);
    }
}

function createParticles() {
    const container = document.getElementById('particles');
    for (let i = 0; i < 15; i++) {
        const particle = document.createElement('div');
        particle.className = 'particle';
        particle.style.left = Math.random() * 100 + '%';
        particle.style.width = particle.style.height = Math.random() * 4 + 2 + 'px';
        particle.style.animationDelay = Math.random() * 6 + 's';
        particle.style.animationDuration = (Math.random() * 3 + 4) + 's';
        container.appendChild(particle);
    }
}

function animateProgress() {
    const progressText = document.getElementById('progressText');
    const statusText = document.getElementById('statusText');
    const statuses = [
        'Loading neural networks...',
        'Initializing AI models...',
        'Connecting to governance systems...',
        'Calibrating intelligence protocols...',
        'Finalizing setup...'
    ];
    
    let progress = 0;
    let statusIndex = 0;
    
    const interval = setInterval(() => {
        progress += Math.random() * 15 + 5;
        if (progress > 100) progress = 100;
        
        progressText.textContent = Math.round(progress) + '%';
        
        if (progress > statusIndex * 20 && statusIndex < statuses.length - 1) {
            statusIndex++;
            statusText.textContent = statuses[statusIndex];
        }
        
        if (progress >= 100) {
            clearInterval(interval);
            statusText.textContent = 'Ready to launch!';
            
            sessionStorage.setItem('ai-loader-shown', 'true');
            
            setTimeout(() => {
                const preloader = document.getElementById('ai-preloader');
                const mainContent = document.getElementById('mainContent');
                
                preloader.classList.add('fade-out');
                
                setTimeout(() => {
                    if (mainContent) mainContent.classList.add('show');
                }, 400);
                
                setTimeout(() => {
                    preloader.remove();
                }, 800);
            }, 1000);
        }
    }, 200);
}

function hideLoaderImmediately() {
    const preloader = document.getElementById('ai-preloader');
    const mainContent = document.getElementById('mainContent');
    
    if (preloader) {
        preloader.style.display = 'none';
        if (mainContent) mainContent.classList.add('show');
    }
}

window.addEventListener('load', function() {
    if (isHomePage()) {
        createNeuralNetwork();
        createParticles();
        setTimeout(animateProgress, 500);
        
        setTimeout(function() {
            const preloader = document.getElementById('ai-preloader');
            const mainContent = document.getElementById('mainContent');
            
            if (preloader && !sessionStorage.getItem('ai-loader-shown')) {
                sessionStorage.setItem('ai-loader-shown', 'true');
                preloader.classList.add('fade-out');
                setTimeout(() => {
                    if (mainContent) mainContent.classList.add('show');
                    if (preloader.parentNode) {
                        preloader.remove();
                    }
                }, 800);
            }
        }, 10000);
    } else {
        hideLoaderImmediately();
    }
});

document.addEventListener('DOMContentLoaded', function() {
    if (!isHomePage()) {
        hideLoaderImmediately();
    }
});
</script>

    <!--Start Preloader-->
        <!--End Preloader-->

    <div class="t3-wrapper"> <!-- Need this wrapper for off-canvas menu. Remove if you don't use of-canvas -->

		


		
<!-- HEADER -->
<header id="t3-header" class="t3-header header-default">
    <div class="container">
        <div class="row">
            <!-- LOGO -->
            <div class="col-xs-12 col-sm-4 logo">
			    

<div class="logo-image">
  <a href="https://dprm.pids.gov.ph/" title="Development Policy Research Month">
          <img class="logo-img" src="/images/DPRM2025/23rd_AI.png" alt="Development Policy Research Month" />
            <span>Development Policy Research Month</span>
  </a>
  <small class="site-slogan"></small>
</div>
            </div>
            <!-- //LOGO -->
            <div class="col-xs-12 col-sm-8 header-info">

			    			                </div>

        </div>
    </div>
	
<!-- MAIN NAVIGATION -->
<nav id="t3-mainnav" class="wrap navbar navbar-default t3-mainnav">
	<div class="container">

		<!-- Brand and toggle get grouped for better mobile display -->
		<div class="navbar-header pull-right">

											<!--<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".t3-navbar-collapse">
					<i class="fa fa-bars"></i>
				</button>-->
			
			
							<!-- HEAD SEARCH -->
<!--				<div class="head-search --><!--">-->
<!--					<a id="head-search-trigger" href="#" class="btn btn-search"><i class="fa fa-search"></i></a>-->
<!--					-->
<!--				</div>-->
				<!-- //HEAD SEARCH -->
			
		</div>

						<div class="t3-navbar-collapse navbar-collapse collapse"></div>
			
			<div class="t3-navbar navbar-collapse collapse">
						<ul class="nav navbar-nav">
			<li class="item-959 current active">				<a href="/" >Home</a>
				</li><li class="item-961 divider deeper dropdown parent">		<span class="separator" >ABOUT</span>
		<ul class="dropdown-menu" role="menu"><li class="item-963">				<a href="/about-2025/about-the-drmp-2025" >About the DPRM</a>
				</li><li class="item-964">				<a href="/about-2025/about-the-theme" >About the Theme</a>
				</li><li class="item-965">				<a href="/about-2025/faqs-about-dprm" >FAQs About DPRM</a>
				</li><li class="item-966">				<a href="/about-2025/ways-to-participate-2025" >Ways to Participate</a>
				</li><li class="item-971">				<a href="/about-2025/dilg-csc-circular-2025" >DILG and CSC Circulars 2025</a>
				</li></ul></li><li class="item-967 divider deeper dropdown parent">		<span class="separator" >EVENTS</span>
		<ul class="dropdown-menu" role="menu"><li class="item-960">				<a href="/events-2025/dprm-2025-events" >DPRM Events</a>
				</li><li class="item-968">				<a href="/events-2025/dprm-activities" >DPRM in Action! (Padlet)</a>
				</li></ul></li><li class="item-969 divider deeper dropdown parent">		<span class="separator" >11TH APPC</span>
		<ul class="dropdown-menu" role="menu"><li class="item-970">				<a href="/11th-appc/about-the-appc-2025" >About the APPC</a>
				</li><li class="item-973">				<a href="/11th-appc/2025-conference-brief" >Conference Brief</a>
				</li><li class="item-974">				<a href="/11th-appc/conference-program-2025" >Conference Program</a>
				</li><li class="item-975">				<a href="/11th-appc/appc-speaker" >APPC Speaker</a>
				</li></ul></li><li class="item-976 divider deeper dropdown parent">		<span class="separator" >RESOURCES</span>
		<ul class="dropdown-menu" role="menu"><li class="item-977">				<a href="/resources-2025/dprm-banner-2025" >DPRM Banner</a>
				</li><li class="item-978">				<a href="/resources-2025/dprm-assest-kits" >DPRM Assets</a>
				</li><li class="item-979">				<a href="/resources-2025/content-guide" >Content Guide</a>
				</li><li class="item-980">				<a href="/resources-2025/presentations-2025" >Presentations</a>
				</li><li class="item-981">				<a href="/resources-2025/infographics-2025" >Infographics</a>
				</li></ul></li><li class="item-982 divider deeper dropdown parent">		<span class="separator" >GALLERY</span>
		<ul class="dropdown-menu" role="menu"><li class="item-983">				<a href="/gallery-2025/banner-gallery-2025" >DPRM Banner Gallery </a>
				</li><li class="item-985">				<a href="/gallery-2025/video-gallery-2025" >Video Gallery</a>
				</li><li class="item-984">				<a href="/gallery-2025/photo-gallery" >Photo Gallery</a>
				</li><li class="item-988">				<a href="/gallery-2025/voices-of-support" >Voices of Support</a>
				</li></ul></li><li class="item-986">				<a href="/contact-us" >Contact Us</a>
				</li>		</ul>
	
			</div>
	</div>

</nav>
<!-- //MAIN NAVIGATION -->

</header>
<!-- //HEADER -->



				
		<div id="t3-mainbody" class="t3-mainbody">

		<!-- MAIN CONTENT -->
		<div id="t3-content" class="t3-content">
						<div id="system-message-container">
	</div>

						
	    <div class="qx quix">
    
    
    <div class="qx-inner http://www_feedburner_com) classic">

    
    <div id="qx-section-2978" class="qx-section "  >

  <!-- Shape -->
    
  
    <div 
    id="qx-row-441858" 
    class="qx-row  qx-equal-column"    >

    <div id="qx-column-861860" class="qx-column  qx-col-lg-12 qx-col-md-12 qx-col-sm-12 qx-col-xs-12" >
 	<div class="qx-col-wrap">
     	<div class="qx-element-wrap">
			<div id="qx-custom-html-94176" class="qx-element qx-element-custom-html ">
  <!-- DPRM Split Slider (image LEFT, text RIGHT) — with 3rd slide for DPRM 2025 Banner -->
<section id="dprm-split-slider" class="dprm edge-to-edge" aria-label="DPRM highlights">
  <style>
    /* Edge-to-edge inside Quix */
    .edge-to-edge,
    .edge-to-edge > .qx-container,
    .edge-to-edge .qx-row,
    .edge-to-edge .qx-column,
    .edge-to-edge .qx-element{
      width:100% !important; max-width:none !important;
      padding:0 !important; margin:0 !important; border:0 !important;
    }

    /* Theme */
    .dprm{
      --brand:#2F3CB3;      /* Governor Bay */
      --ink:#ffffff;
      --muted:#d9ddff;
      --panel:#1a1f7f;
      --ring:rgba(47,60,179,.25);
      font-family:system-ui,-apple-system, Segoe UI, Roboto, Arial, sans-serif;
      color:var(--ink);
    }

    /* Slider shell */
    .dprm .hero{ position:relative; overflow:hidden; background:#0d114d; }
    .dprm .track{ display:flex; transition:transform .6s ease; will-change:transform; }
    .dprm .slide{ flex:0 0 100%; min-height:clamp(460px, 64vh, 680px); }

    /* Split columns */
    .dprm .split{
      display:grid; grid-template-columns: 1fr; align-items:stretch;
      width:100%; height:100%;
    }
    @media (min-width: 980px){
      .dprm .split{ grid-template-columns: 1.15fr .85fr; }
    }

    /* LEFT: media fills column */
    .dprm .media-left{ position:relative; overflow:hidden; background:#0b0f2e; }
    .dprm .media-left img{
      position:absolute; inset:0; width:100%; height:100%;
      object-fit:cover; object-position:center; display:block;
    }
    .dprm .padlet-wrap{ position:absolute; inset:0; }
    .dprm .padlet-wrap iframe{ position:absolute; inset:0; width:100%; height:100%; border:0; }

    /* RIGHT: text panel */
    .dprm .panel{
      position:relative; padding: clamp(22px, 5vw, 56px);
      background:var(--panel);
      display:flex; align-items:center; justify-content:center;
    }
    .dprm .panel::before{
      content:""; position:absolute; inset:0; opacity:.22; pointer-events:none;
      background:
        radial-gradient(1400px 600px at -5% -10%, rgba(255,255,255,.08), transparent 60%),
        radial-gradient(900px 700px at 110% 110%, rgba(255,255,255,.08), transparent 60%),
        repeating-linear-gradient(45deg, rgba(255,255,255,.08) 0 2px, transparent 2px 40px),
        repeating-linear-gradient(-45deg, rgba(255,255,255,.08) 0 2px, transparent 2px 40px);
    }
    .dprm .panel > .content{ position:relative; z-index:1; width:min(720px, 92%); }

    /* Type + button */
    .dprm .eyebrow{
      display:inline-block; font-weight:800; letter-spacing:.06em;
      text-transform:uppercase; font-size:12px;
      background:rgba(255,255,255,.14); padding:.35rem .6rem; border-radius:999px;
      margin-bottom:.75rem;
    }
    .dprm h2{ font-size: clamp(28px, 4.2vw, 56px); line-height:1.1; margin:.15rem 0 .8rem; }
    .dprm p{
      color:var(--muted); line-height:1.7;
      font-size: clamp(15px, 1.6vw, 18px); margin:0 0 1.1rem; max-width:58ch;
    }
    .dprm .btn{
      display:inline-flex; align-items:center; justify-content:center;
      padding:.9rem 1.25rem; border-radius:999px;
      background:#fff; color:var(--brand); font-weight:800; font-size:16px;
      text-decoration:none; border:3px solid transparent;
      box-shadow:0 12px 28px rgba(0,0,0,.25);
    }
    .dprm .btn:hover{ border-color:var(--ring); transform:translateY(-1px) }

    /* Dots & improved arrows — .pager avoids template collisions */
    .dprm .pager{
      position:absolute; left:0; right:0; bottom:16px;
      display:flex; gap:10px; justify-content:center; z-index:6;
    }
    .dprm .dot{
      width:12px; height:12px; border-radius:50%;
      background:rgba(255,255,255,.45); border:2px solid rgba(255,255,255,.85);
      cursor:pointer; transition:transform .2s ease, background .2s ease;
    }
    .dprm .dot[aria-current="true"]{ background:#fff; transform:scale(1.25) }

    /* BIGGER, HIGHER-CONTRAST ARROWS */
    .dprm .arrow{
      position:absolute; top:50%; transform:translateY(-50%);
      width:60px; height:60px; border-radius:999px;
      display:grid; place-items:center; cursor:pointer; z-index:6;
      background:rgba(47,60,179,.95); border:3px solid #ffffff; color:#fff;
      font-size:28px; line-height:1;
      box-shadow:0 14px 32px rgba(0,0,0,.35), 0 0 0 4px rgba(47,60,179,.18);
      transition:transform .15s ease, background .15s ease, box-shadow .15s ease;
      backdrop-filter:saturate(1.2);
    }
    .dprm .arrow:hover{ transform:translateY(-50%) scale(1.06); background:#2F3CB3; }
    .dprm .arrow:focus-visible{ outline:0; box-shadow:0 0 0 4px rgba(255,255,255,.8), 0 0 0 8px rgba(47,60,179,.6); }
    .dprm .arrow.prev{ left:16px; } .dprm .arrow.next{ right:16px; }

    /* Keep arrows comfortable on small screens */
    @media (max-width:640px){
      .dprm .arrow{ width:48px; height:48px; font-size:24px; border-width:2px; }
      .dprm .arrow.prev{ left:10px; } .dprm .arrow.next{ right:10px; }
    }
  </style>

  <div class="hero" data-index="0">
    <div class="track">

      <!-- SLIDE 1: LEFT image, RIGHT copy -->
      <article class="slide">
        <div class="split">
          <div class="media-left" aria-hidden="true">
            <img src="/images/DPRM2025/Final_banner.png" alt="DPRM 2025 banner">
          </div>
          <aside class="panel">
            <div class="content">
              <span class="eyebrow">DPRM 2025 Activities</span>
              <h2>DPRM 2025 ACTIVITIES</h2>
              <p>
                This year's celebration of the Development Policy Research Month (DPRM) in September
                carries the theme, “Reimagining Governance in the Age of AI”. Join us in rethinking
                governance practices and strategies to harness the opportunities presented by intelligent technologies.
              </p>
              <a class="btn" href="https://dprm.pids.gov.ph/events-2025/dprm-2025-events">LEARN MORE ABOUT THE DPRM</a>
            </div>
          </aside>
        </div>
      </article>

      <!-- SLIDE 2: LEFT Padlet (responsive), RIGHT copy -->
      <article class="slide">
        <div class="split">
          <div class="media-left" aria-label="DPRM Padlet live board">
            <div class="padlet-wrap">
              <iframe
                src="https://padlet.com/embed/4ivwmmjlfvu5cb76"
                allow="clipboard-write; camera; microphone; geolocation; display-capture"
                title="DPRM in Action Padlet"
                loading="lazy"></iframe>
            </div>
          </div>
          <aside class="panel">
            <div class="content">
              <span class="eyebrow">DPRM in Action!</span>
              <h2>DPRM IN ACTION!</h2>
              <p>
                See how our partners across the Philippines are bringing development policy to life.
                From forums to fairs, here’s a live snapshot of DPRM 2025 in action!
                <a href="/../events-2025/dprm-activities" style="color:#b8c2ff;text-decoration:underline">Click here</a>
                to learn how to post your DPRM activities on the Padlet. Want to add your event? Click the ‘+’.
              </p>
              <a class="btn" href="https://padlet.com/DPRM2025/tell-us-your-activities-for-the-dprm-4ivwmmjlfvu5cb76">POST YOUR DPRM ACTIVITY</a>
            </div>
          </aside>
        </div>
      </article>

      <!-- SLIDE 3: DPRM 2025 BANNER (image LEFT, text RIGHT) -->
      <article class="slide">
        <div class="split">
          <div class="media-left" aria-hidden="true">
            <!-- Replace src with your banner-collage image if different -->
            <img src="/images/DPRM2025/SC.jpg" alt="DPRM 2025 banners in multiple Philippine languages">
          </div>
          <aside class="panel">
            <div class="content">
              <span class="eyebrow">Resources</span>
              <h2>DPRM 2025 BANNER</h2>
              <p>
                The 23rd DPRM banner comes in other major Philippine languages in addition to the English and Filipino versions.
                Support the DPRM and promote this year’s theme by displaying the physical banner on your office premises or
                posting the electronic banner on your official website and social media pages. Special thanks to the
                Komisyon sa Wikang Filipino for providing the translations.
              </p>
              <a class="btn" href="https://dprm.pids.gov.ph/resources-2025/dprm-banner-2025">VIEW DETAILS</a>
            </div>
          </aside>
        </div>
      </article>

    </div>

    <!-- Bigger, clearer arrows -->
    <button class="arrow prev" aria-label="Previous slide" type="button">‹</button>
    <button class="arrow next" aria-label="Next slide" type="button">›</button>

    <!-- Dots (now 3) -->
    <div class="pager" role="tablist" aria-label="Slider navigation">
      <button class="dot" data-go="0" aria-label="Slide 1" aria-current="true"></button>
      <button class="dot" data-go="1" aria-label="Slide 2"></button>
      <button class="dot" data-go="2" aria-label="Slide 3"></button>
    </div>
  </div>

  <script>
    (function(){
      const root = document.querySelector('#dprm-split-slider .hero');
      const track = root.querySelector('.track');
      const slides = Array.from(track.children);
      const dots  = Array.from(root.querySelectorAll('.pager .dot'));
      const prev  = root.querySelector('.prev');
      const next  = root.querySelector('.next');
      let i = 0, timer;

      function go(n){
        i = (n + slides.length) % slides.length;
        track.style.transform = `translateX(-${i*100}%)`;
        dots.forEach((d,idx)=>d.setAttribute('aria-current', idx===i ? 'true':'false'));
        reset();
      }
      function reset(){ clearInterval(timer); timer = setInterval(()=>go(i+1), 7000); }

      prev.addEventListener('click', ()=>go(i-1));
      next.addEventListener('click', ()=>go(i+1));
      dots.forEach(d=>d.addEventListener('click', e=>go(+e.currentTarget.dataset.go)));

      // basic swipe
      let sx=0; track.addEventListener('touchstart',e=>sx=e.touches[0].clientX,{passive:true});
      track.addEventListener('touchend',e=>{
        const dx = e.changedTouches[0].clientX - sx;
        if(Math.abs(dx)>50) go(i + (dx<0?1:-1));
      });

      reset();
    })();
  </script>
</section>
</div>
<!-- qx-element-text -->		</div>
	</div>
</div>
<!-- qx-col -->    
  </div>
  <!-- qx-row -->

  
</div>
<!-- qx-section -->

<div id="qx-section-71694" class="qx-section "  >

  <!-- Shape -->
    
  
    <div 
    id="qx-row-63695" 
    class="qx-row "    >

    <div id="qx-column-44698" class="qx-column  qx-col-lg-12 qx-col-md-12 qx-col-sm-12 qx-col-xs-12" >
 	<div class="qx-col-wrap">
     	<div class="qx-element-wrap">
			<hr id="qx-divider-79240" class="qx-element qx-element-space "  />		</div>
	</div>
</div>
<!-- qx-col -->    
  </div>
  <!-- qx-row -->

  
</div>
<!-- qx-section -->

<div id="qx-section-465028" class="qx-section "  >

  <!-- Shape -->
    
    <div class="qx-container">
  
    <div 
    id="qx-row-4579" 
    class="qx-row "    >

    <div id="qx-column-181" class="qx-column  qx-col-lg-12 qx-col-md-12 qx-col-sm-12 qx-col-xs-12" >
 	<div class="qx-col-wrap">
     	<div class="qx-element-wrap">
			<div id="qx-text-9471" class="qx-element qx-element-text " >
  <div style="position: relative; top: -80px;">
<h2 style="text-align: left;"><span style="font-size: 24pt;">About the DPRM</span></h2>
<hr /></div></div>
<!-- qx-element-text -->		</div>
	</div>
</div>
<!-- qx-col -->    
  </div>
  <!-- qx-row -->
<div 
    id="qx-row-812482" 
    class="qx-row "    >

    <div id="qx-column-3912484" class="qx-column  qx-col-lg-6 qx-col-md-6 qx-col-sm-6 qx-col-xs-12" >
 	<div class="qx-col-wrap">
     	<div class="qx-element-wrap">
			<div id="qx-video-3412144" class="qx-element qx-element-video " >
  <iframe 
    class="qx-video" 
    src="//www.youtube.com/embed/GQFpcZ9E_YI" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
</div>
<!-- qx-element-video -->		</div>
	</div>
</div>
<!-- qx-col --><div id="qx-column-1012486" class="qx-column  qx-col-lg-6 qx-col-md-6 qx-col-sm-6 qx-col-xs-12" >
 	<div class="qx-col-wrap">
     	<div class="qx-element-wrap">
			<div id="qx-text-9412296" class="qx-element qx-element-text " >
  <div style="position: relative; top: -80px;">
<p style="text-align: justify;"><span style="font-size: 14pt;">Proclamation No. 247, issued by Malacañang in September 2002 and declaring the month of September of every year as Development Policy Research Month (DPRM), came at a most opportune time. It highlights the critical role of policy research in the socioeconomic advancement of the Philippines.</span></p>
<p style="text-align: justify;"><span style="font-size: 14pt;"> The Proclamation underscores the “need for promoting, enhancing, instilling, and drawing awareness and appreciation of the importance and necessity of policy research” in development planning and policymaking. </span></p>
</div></div>
<!-- qx-element-text -->		</div>
	</div>
</div>
<!-- qx-col -->    
  </div>
  <!-- qx-row -->
<div 
    id="qx-row-2812476" 
    class="qx-row "    >

    <div id="qx-column-1112478" class="qx-column  qx-col-lg-12 qx-col-md-12 qx-col-sm-12 qx-col-xs-12" >
 	<div class="qx-col-wrap">
     	<div class="qx-element-wrap">
			<div id="qx-text-2412773" class="qx-element qx-element-text " >
  <p style="text-align: justify;"><span style="font-size: 14pt;"> Thus, the observance of the DPRM is intended to cultivate a strong culture of research and use of data and evidence among the country's national and local decisionmakers in policymaking and program planning. Through the different topics highlighted in every DPRM celebration, this event also aims to raise the public's literacy of important socioeconomic issues.</span></p></div>
<!-- qx-element-text --><div id="qx-button-303509" class="qx-element qx-element-button" >
  <a class="qx-btn  qx-btn-info"
     href="https://dprm.pids.gov.ph/about-2025/about-the-drmp-2025" >
        LEARN MORE ABOUT THE DPRM      </a>
</div>
<!-- qx-element-button -->
		</div>
	</div>
</div>
<!-- qx-col -->    
  </div>
  <!-- qx-row -->
<div 
    id="qx-row-6410069" 
    class="qx-row "    >

    <div id="qx-column-510071" class="qx-column  qx-col-lg-12 qx-col-md-12 qx-col-sm-12 qx-col-xs-12" >
 	<div class="qx-col-wrap">
     	<div class="qx-element-wrap">
			<hr id="qx-divider-1110074" class="qx-element qx-element-space "  />		</div>
	</div>
</div>
<!-- qx-col -->    
  </div>
  <!-- qx-row -->
<div class="qx-container">
  <div 
    id="qx-row-30178" 
    class="qx-row "    >

    <div id="qx-column-49180" class="qx-column  qx-col-lg-12 qx-col-md-12 qx-col-sm-12 qx-col-xs-12" >
 	<div class="qx-col-wrap">
     	<div class="qx-element-wrap">
			<div id="qx-text-46183" class="qx-element qx-element-text " >
  <h2 style="text-align: left;"><span style="font-size: 24pt;">About the Theme</span></h2>
<hr />
<h2 style="text-align: left;"></h2></div>
<!-- qx-element-text --><div id="qx-text-55306" class="qx-element qx-element-text " >
  <p style="text-align: justify;"><span style="font-size: 14pt;">This year marks the 23rd DPRM celebration, with the theme “Reimagining Governance in the Age of AI.” The Philippine Institute for Development Studies (PIDS), as the lead agency for this annual observance with the support of other government agencies and this Department, aims to engage national and local government agencies, civil society, academia, and the general public in understanding how intelligent technologies are transforming governance.</span></p>
<p style="text-align: justify;"><span style="font-size: 14pt;">The theme highlights the urgency of building more adaptive, responsive, and inclusive governance systems in the face of accelerated developments in artificial intelligence (AI), data analytics, and digital platforms. It emphasizes how AI can be used to improve energy governance, combat corruption, and address the challenges of an aging population, while ensuring digital inclusion, ethical data use, and institutional capacity-building.</span></p></div>
<!-- qx-element-text --><div id="qx-button-12905" class="qx-element qx-element-button" >
  <a class="qx-btn  qx-btn-info"
     href="https://dprm.pids.gov.ph/about-2025/about-the-theme" >
        LEARN MORE ABOUT THE THEME      </a>
</div>
<!-- qx-element-button -->
		</div>
	</div>
</div>
<!-- qx-col -->    
  </div>
  <!-- qx-row -->
</div>
<div 
    id="qx-row-98427" 
    class="qx-row "    >

    <div id="qx-column-31903" class="qx-column  qx-col-lg-12 qx-col-md-12 qx-col-sm-12 qx-col-xs-12" >
 	<div class="qx-col-wrap">
     	<div class="qx-element-wrap">
			<hr id="qx-divider-32906" class="qx-element qx-element-space "  />		</div>
	</div>
</div>
<!-- qx-col -->    
  </div>
  <!-- qx-row -->

    </div>
  
</div>
<!-- qx-section -->

<div id="qx-section-6940" class="qx-section "  >

  <!-- Shape -->
    
    <div class="qx-container">
  
    <div class="qx-container">
  <div 
    id="qx-row-74941" 
    class="qx-row "    >

    <div id="qx-column-45942" class="qx-column  qx-col-lg-12 qx-col-md-12 qx-col-sm-12 qx-col-xs-12" >
 	<div class="qx-col-wrap">
     	<div class="qx-element-wrap">
			<div id="qx-text-10943" class="qx-element qx-element-text " >
  <h2 style="text-align: left;"><span style="font-size: 24pt;">23rd DPRM Activities</span></h2>
<hr />
<h2 style="text-align: left;"></h2></div>
<!-- qx-element-text -->		</div>
	</div>
</div>
<!-- qx-col -->    
  </div>
  <!-- qx-row -->
</div>
<div 
    id="qx-row-8673" 
    class="qx-row  qx-equal-column"    >

    <div id="qx-column-3075" class="qx-column  qx-col-lg-4 qx-col-md-4 qx-col-sm-6 qx-col-xs-12" >
 	<div class="qx-col-wrap">
     	<div class="qx-element-wrap">
			<div id="qx-image-7393" class="qx-element qx-element-image " > 
  
    <img 
      class="qx-img " 
      src="/images/NLKickoffMainBanner.png" 
             
    />
  </div>
<!-- qx-element-image --><hr id="qx-divider-96719" class="qx-element qx-element-space "  /><div id="qx-text-673252" class="qx-element qx-element-text " >
  <p style="text-align: center;"><span style="font-size: 12pt;"><strong>2025 Development Policy Research Month North Luzon Media Kickoff</strong></span></p>
<p style="text-align: center;"><span style="font-size: 10pt;">August 20, 2025 | 9:00 AM – 12:00 NN | Baguio City and via Facebook Live</span></p></div>
<!-- qx-element-text --><hr id="qx-divider-61788" class="qx-element qx-element-space "  /><div id="qx-button-39587" class="qx-element qx-element-button" >
  <a class="qx-btn  qx-btn-info"
     href="https://www.pids.gov.ph/details/event/2025-development-policy-research-month-north-luzon-media-kickoff"  target="_blank" rel="noopener noreferrer">
        DOWNLOAD PRESENTATIONS HERE      </a>
</div>
<!-- qx-element-button -->
<div id="qx-button-7815147" class="qx-element qx-element-button" >
  <a class="qx-btn  qx-btn-info"
     href="https://www.pids.gov.ph/details/resource/videos/2025-development-policy-research-month-north-luzon-media-kickoff"  target="_blank" rel="noopener noreferrer">
        WATCH RECORDING HERE      </a>
</div>
<!-- qx-element-button -->
<hr id="qx-divider-28480" class="qx-element qx-element-space "  />		</div>
	</div>
</div>
<!-- qx-col --><div id="qx-column-7877" class="qx-column  qx-col-lg-4 qx-col-md-4 qx-col-sm-6 qx-col-xs-12" >
 	<div class="qx-col-wrap">
     	<div class="qx-element-wrap">
			<div id="qx-image-36387" class="qx-element qx-element-image " > 
  
    <img 
      class="qx-img " 
      src="/images/Main Banner.png" 
             
    />
  </div>
<!-- qx-element-image --><hr id="qx-divider-8779" class="qx-element qx-element-space "  /><div id="qx-text-68460" class="qx-element qx-element-text " >
  <p style="text-align: center;"><span style="font-size: 12pt;"><strong>2025 DPRM National Kickoff Press Conference and Media Awards</strong></span></p>
<p style="text-align: center;"><span style="font-size: 10pt;">September 1, 2025 | 9:00 AM – 12:00 NN | Seda Hotel, Vertis North, Quezon City and via Facebook Live</span></p></div>
<!-- qx-element-text --><hr id="qx-divider-57791" class="qx-element qx-element-space "  /><div id="qx-button-38107" class="qx-element qx-element-button" >
  <a class="qx-btn  qx-btn-info"
     href="https://pids.gov.ph/details/resource/videos/2025-dprm-national-kickoff-press-conference-and-media-awards"  target="_blank" rel="noopener noreferrer">
        WATCH RECORDING HERE      </a>
</div>
<!-- qx-element-button -->
<div id="qx-button-922184" class="qx-element qx-element-button" >
  <a class="qx-btn  qx-btn-info"
     href="https://bit.ly/pidsevent090125"  target="_blank" rel="noopener noreferrer">
        RSVP HERE      </a>
</div>
<!-- qx-element-button -->
<div id="qx-button-6117053" class="qx-element qx-element-button" >
  <a class="qx-btn  qx-btn-info"
     href="https://bit.ly/eventprogram090125"  target="_blank" rel="noopener noreferrer">
        VIEW PROGRAM HERE      </a>
</div>
<!-- qx-element-button -->
<hr id="qx-divider-82141" class="qx-element qx-element-space "  />		</div>
	</div>
</div>
<!-- qx-col --><div id="qx-column-1515357" class="qx-column  qx-col-lg-4 qx-col-md-4 qx-col-sm-6 qx-col-xs-12" >
 	<div class="qx-col-wrap">
     	<div class="qx-element-wrap">
			<div id="qx-image-38468" class="qx-element qx-element-image " > 
  
    <img 
      class="qx-img " 
      src="/images/APPC_updated.jpg" 
             
    />
  </div>
<!-- qx-element-image --><hr id="qx-divider-1715373" class="qx-element qx-element-space "  /><div id="qx-text-8815549" class="qx-element qx-element-text " >
  <p style="text-align: center;"><span style="font-size: 12pt;"><strong>[Hybrid] 11th Annual Public Policy Conference</strong></span></p>
<p style="text-align: center;"><span style="font-size: 10pt;">September 18, 2025 | 9:00 AM – 6:00 PM | New World Makati Hotel, Makati City, via Zoom, and Facebook Live</span></p></div>
<!-- qx-element-text --><hr id="qx-divider-1315728" class="qx-element qx-element-space "  /><div id="qx-button-7417748" class="qx-element qx-element-button" >
  <a class="qx-btn  qx-btn-default"
     href="https://youtu.be/MCc41wzARtw?si=gxlvnq3k_B7XzLo5&t=248"  target="_blank" rel="noopener noreferrer">
        WATCH RECORDING HERE      </a>
</div>
<!-- qx-element-button -->
<hr id="qx-divider-815940" class="qx-element qx-element-space "  />		</div>
	</div>
</div>
<!-- qx-col -->    
  </div>
  <!-- qx-row -->
<div 
    id="qx-row-235904" 
    class="qx-row  qx-equal-column"    >

    <div id="qx-column-545906" class="qx-column  qx-col-lg-4 qx-col-md-4 qx-col-sm-6 qx-col-xs-12" >
 	<div class="qx-col-wrap">
     	<div class="qx-element-wrap">
			<div id="qx-image-6480" class="qx-element qx-element-image " > 
  
    <img 
      class="qx-img " 
      src="/images/Homepage & DPRM Events - 2nd BPPF.jpg" 
             
    />
  </div>
<!-- qx-element-image --><hr id="qx-divider-6118808" class="qx-element qx-element-space "  /><div id="qx-text-6918980" class="qx-element qx-element-text " >
  <p style="text-align: center;"><span style="font-size: 12pt;"><strong>2nd Bangsamoro Public Policy</strong></span></p>
<p style="text-align: center;"><span style="font-size: 10pt;">Date: September 25, 2025| Venue: KCC Convention Center, Cotabato City</span></p></div>
<!-- qx-element-text --><hr id="qx-divider-2519041" class="qx-element qx-element-space "  /><div id="qx-button-7719044" class="qx-element qx-element-button" >
  <a class="qx-btn  qx-btn-default"
     href="https://www.facebook.com/BPDA.Bangsamoro/videos/803429822853817" >
        Watch recording here      </a>
</div>
<!-- qx-element-button -->
<hr id="qx-divider-5419148" class="qx-element qx-element-space "  />		</div>
	</div>
</div>
<!-- qx-col --><div id="qx-column-5784" class="qx-column  qx-col-lg-4 qx-col-md-4 qx-col-sm-6 qx-col-xs-12" >
 	<div class="qx-col-wrap">
     	<div class="qx-element-wrap">
			<div id="qx-image-5619151" class="qx-element qx-element-image " > 
  
    <img 
      class="qx-img " 
      src="/images/Homepage & DPRM Events - 11th MPRF.jpg" 
             
    />
  </div>
<!-- qx-element-image --><hr id="qx-divider-8883" class="qx-element qx-element-space "  /><div id="qx-text-82214" class="qx-element qx-element-text " >
  <p style="text-align: center;"><span style="font-size: 12pt;"><strong>11th Mindanao Policy Research Forum</strong></span></p>
<p style="text-align: center;"><span style="font-size: 10pt;">Date: October 10, 2025| Venue: Bukidnon State University, Malaybalay City, Bukidnon</span></p></div>
<!-- qx-element-text --><hr id="qx-divider-68145" class="qx-element qx-element-space "  /><div id="qx-button-912306" class="qx-element qx-element-button" >
  <a class="qx-btn  qx-btn-info"
     href="#"  target="_blank" rel="noopener noreferrer">
        STAY TUNED FOR DETAILS      </a>
</div>
<!-- qx-element-button -->
<hr id="qx-divider-66226" class="qx-element qx-element-space "  />		</div>
	</div>
</div>
<!-- qx-col --><div id="qx-column-119340" class="qx-column  qx-col-lg-4 qx-col-md-4 qx-col-sm-6 qx-col-xs-12" >
 	<div class="qx-col-wrap">
     	<div class="qx-element-wrap">
					</div>
	</div>
</div>
<!-- qx-col -->    
  </div>
  <!-- qx-row -->

    </div>
  
</div>
<!-- qx-section -->

<div id="qx-section-54650" class="qx-section "  >

  <!-- Shape -->
    
    <div class="qx-container">
  
    <div 
    id="qx-row-90651" 
    class="qx-row "    >

    <div id="qx-column-13652" class="qx-column  qx-col-lg-12 qx-col-md-12 qx-col-sm-12 qx-col-xs-12" >
 	<div class="qx-col-wrap">
     	<div class="qx-element-wrap">
			<hr id="qx-divider-71649" class="qx-element qx-element-space "  /><div id="qx-text-77653" class="qx-element qx-element-text " >
  <h2><span style="font-size: 24pt;"><strong>2025 DPRM Steering Committee</strong></span></h2>
<h2></h2></div>
<!-- qx-element-text -->		</div>
	</div>
</div>
<!-- qx-col --><div id="qx-column-8646" class="qx-column  qx-col-lg-4 qx-col-md-4 qx-col-sm-2 qx-col-xs-12" >
 	<div class="qx-col-wrap">
     	<div class="qx-element-wrap">
					</div>
	</div>
</div>
<!-- qx-col -->    
  </div>
  <!-- qx-row -->

    </div>
  
</div>
<!-- qx-section -->

<div id="qx-section-10744" class="qx-section "  >

  <!-- Shape -->
    
    <div class="qx-container">
  
    <div 
    id="qx-row-482647" 
    class="qx-row "    >

    <div id="qx-column-162649" class="qx-column  qx-col-lg-12 qx-col-md-12 qx-col-sm-12 qx-col-xs-12 qx-flex qx-flex-middle qx-flex-center" >
 	<div class="qx-col-wrap">
     	<div class="qx-element-wrap">
			<div id="qx-academia-teachers-8045" class="qx-element qx-element-academia-teachers ">

    <div class="module-teachers-team">
      <div class="ateam">
        <ul class="at-default at-cols4">

                                    
              <li>
                <div class="at-inner">

                                      <figure>
                      <img class="qx-img-responsive square" src="/images/Steering_Committee_Logo_PIDS.png" alt="Philippine Institute for Development Studies">

                      <figcaption>
                        <h4>Philippine Institute for Development Studies</h4>
                        <h5>Steering Committee Chair</h5>
                      </figcaption>
                    </figure>
                  
                  <div class="team-body">
                    <h4>Philippine Institute for Development Studies</h4>
                    <h5>Steering Committee Chair</h5>

                    
                                        <div class="at-social">
                                              <a href="https://www.facebook.com/pidsgovph" target="_blank"><span class="fa fa-facebook"></span></a>
                      
                                              <a href="https://x.com/pidsgovph" target="_blank"><span class="fa fa-twitter"></span></a>
                      
                                              <a href="https://www.pids.gov.ph/" target="_blank"><span class="fa fa-home"></span></a>
                      
                                          </div>
                    
                  </div>

                </div>

              </li>
                          
              <li>
                <div class="at-inner">

                                      <figure>
                      <img class="qx-img-responsive square" src="/images/Steering_Committee_Logo_BSP.png" alt="Bangko Sentral ng Pilipinas">

                      <figcaption>
                        <h4>Bangko Sentral ng Pilipinas</h4>
                        <h5>Permanent Member</h5>
                      </figcaption>
                    </figure>
                  
                  <div class="team-body">
                    <h4>Bangko Sentral ng Pilipinas</h4>
                    <h5>Permanent Member</h5>

                    
                                        <div class="at-social">
                                              <a href="https://www.facebook.com/BangkoSentralngPilipinas" target="_blank"><span class="fa fa-facebook"></span></a>
                      
                                              <a href="http://www.twitter.com/BangkoSentral" target="_blank"><span class="fa fa-twitter"></span></a>
                      
                                              <a href="http://www.bsp.gov.ph/" target="_blank"><span class="fa fa-home"></span></a>
                      
                                          </div>
                    
                  </div>

                </div>

              </li>
                          
              <li>
                <div class="at-inner">

                                      <figure>
                      <img class="qx-img-responsive square" src="/images/Steering_Committee_Logo_CSC.png" alt="Civil Service Commission">

                      <figcaption>
                        <h4>Civil Service Commission</h4>
                        <h5>Permanent Member</h5>
                      </figcaption>
                    </figure>
                  
                  <div class="team-body">
                    <h4>Civil Service Commission</h4>
                    <h5>Permanent Member</h5>

                    
                                        <div class="at-social">
                                              <a href="https://www.facebook.com/civilservicegovph" target="_blank"><span class="fa fa-facebook"></span></a>
                      
                                              <a href="https://twitter.com/cscphmedia" target="_blank"><span class="fa fa-twitter"></span></a>
                      
                                              <a href="http://csc.gov.ph" target="_blank"><span class="fa fa-home"></span></a>
                      
                                          </div>
                    
                  </div>

                </div>

              </li>
                                                
              <li>
                <div class="at-inner">

                                      <figure>
                      <img class="qx-img-responsive square" src="/images/Steering_Committee_Logo_DBM.png" alt="Department of Budget and Management">

                      <figcaption>
                        <h4>Department of Budget and Management</h4>
                        <h5>Permanent Member</h5>
                      </figcaption>
                    </figure>
                  
                  <div class="team-body">
                    <h4>Department of Budget and Management</h4>
                    <h5>Permanent Member</h5>

                    
                                        <div class="at-social">
                                              <a href="https://www.facebook.com/DBMgovph/" target="_blank"><span class="fa fa-facebook"></span></a>
                      
                                              <a href="https://twitter.com/DBMgovph" target="_blank"><span class="fa fa-twitter"></span></a>
                      
                                              <a href="https://dbm.gov.ph/" target="_blank"><span class="fa fa-home"></span></a>
                      
                                          </div>
                    
                  </div>

                </div>

              </li>
                          
              <li>
                <div class="at-inner">

                                      <figure>
                      <img class="qx-img-responsive square" src="/images/depdev-white.jpg" alt="Department of Economy, Planning, and Development">

                      <figcaption>
                        <h4>Department of Economy, Planning, and Development</h4>
                        <h5>Permanent Member</h5>
                      </figcaption>
                    </figure>
                  
                  <div class="team-body">
                    <h4>Department of Economy, Planning, and Development</h4>
                    <h5>Permanent Member</h5>

                    
                                        <div class="at-social">
                                              <a href="https://www.facebook.com/DEPDevgovph/" target="_blank"><span class="fa fa-facebook"></span></a>
                      
                                              <a href="https://x.com/depdevgovph" target="_blank"><span class="fa fa-twitter"></span></a>
                      
                                              <a href="https://depdev.gov.ph/" target="_blank"><span class="fa fa-home"></span></a>
                      
                                          </div>
                    
                  </div>

                </div>

              </li>
                          
              <li>
                <div class="at-inner">

                                      <figure>
                      <img class="qx-img-responsive square" src="/images/Steering_Committee_Logo_DILG.png" alt="Department of the Interior and Local Government">

                      <figcaption>
                        <h4>Department of the Interior and Local Government</h4>
                        <h5>Permanent Member</h5>
                      </figcaption>
                    </figure>
                  
                  <div class="team-body">
                    <h4>Department of the Interior and Local Government</h4>
                    <h5>Permanent Member</h5>

                    
                                        <div class="at-social">
                                              <a href="https://www.facebook.com/dilg.philippines" target="_blank"><span class="fa fa-facebook"></span></a>
                      
                                              <a href="https://twitter.com/dilgphilippines" target="_blank"><span class="fa fa-twitter"></span></a>
                      
                                              <a href="http://www.dilg.gov.ph/" target="_blank"><span class="fa fa-home"></span></a>
                      
                                          </div>
                    
                  </div>

                </div>

              </li>
                                                
              <li>
                <div class="at-inner">

                                      <figure>
                      <img class="qx-img-responsive square" src="/images/Steering_Committee_Logo_CPBRD.png" alt="HRep - Congressional Policy and Budget Research Department">

                      <figcaption>
                        <h4>HRep - Congressional Policy and Budget Research Department</h4>
                        <h5>Permanent Member</h5>
                      </figcaption>
                    </figure>
                  
                  <div class="team-body">
                    <h4>HRep - Congressional Policy and Budget Research Department</h4>
                    <h5>Permanent Member</h5>

                    
                                        <div class="at-social">
                      
                      
                                              <a href="http://cpbrd.congress.gov.ph/" target="_blank"><span class="fa fa-home"></span></a>
                      
                                          </div>
                    
                  </div>

                </div>

              </li>
                          
              <li>
                <div class="at-inner">

                                      <figure>
                      <img class="qx-img-responsive square" src="/images/Steering_Committee_Logo_PIA.png" alt="Philippine Information Agency">

                      <figcaption>
                        <h4>Philippine Information Agency</h4>
                        <h5>Permanent Member</h5>
                      </figcaption>
                    </figure>
                  
                  <div class="team-body">
                    <h4>Philippine Information Agency</h4>
                    <h5>Permanent Member</h5>

                    
                                        <div class="at-social">
                                              <a href="https://www.facebook.com/pia.gov.ph" target="_blank"><span class="fa fa-facebook"></span></a>
                      
                                              <a href="https://twitter.com/PIADesk" target="_blank"><span class="fa fa-twitter"></span></a>
                      
                                              <a href="http://pia.gov.ph/" target="_blank"><span class="fa fa-home"></span></a>
                      
                                          </div>
                    
                  </div>

                </div>

              </li>
                          
              <li>
                <div class="at-inner">

                                      <figure>
                      <img class="qx-img-responsive square" src="/images/Steering_Committee_Logo_PMS.png" alt="Presidential Management Staff">

                      <figcaption>
                        <h4>Presidential Management Staff</h4>
                        <h5>Permanent Member</h5>
                      </figcaption>
                    </figure>
                  
                  <div class="team-body">
                    <h4>Presidential Management Staff</h4>
                    <h5>Permanent Member</h5>

                    
                                        <div class="at-social">
                      
                      
                                              <a href="http://www.pms.gov.ph" target="_blank"><span class="fa fa-home"></span></a>
                      
                                          </div>
                    
                  </div>

                </div>

              </li>
                                                
              <li>
                <div class="at-inner">

                                      <figure>
                      <img class="qx-img-responsive square" src="/images/Steering_Committee_Logo_SEPO.png" alt="Senate Economic Planning Office">

                      <figcaption>
                        <h4>Senate Economic Planning Office</h4>
                        <h5>Permanent Member</h5>
                      </figcaption>
                    </figure>
                  
                  <div class="team-body">
                    <h4>Senate Economic Planning Office</h4>
                    <h5>Permanent Member</h5>

                    
                                        <div class="at-social">
                                              <a href="https://www.facebook.com/senateph/" target="_blank"><span class="fa fa-facebook"></span></a>
                      
                                              <a href="https://x.com/senatePH" target="_blank"><span class="fa fa-twitter"></span></a>
                      
                                              <a href="https://www.senate.gov.ph" target="_blank"><span class="fa fa-home"></span></a>
                      
                                          </div>
                    
                  </div>

                </div>

              </li>
                          
              <li>
                <div class="at-inner">

                                      <figure>
                      <img class="qx-img-responsive square" src="/images/dost-white2jpg.jpg" alt="Department of Science and Technology">

                      <figcaption>
                        <h4>Department of Science and Technology</h4>
                        <h5>Member</h5>
                      </figcaption>
                    </figure>
                  
                  <div class="team-body">
                    <h4>Department of Science and Technology</h4>
                    <h5>Member</h5>

                    
                                        <div class="at-social">
                                              <a href="https://www.facebook.com/DOSTph/" target="_blank"><span class="fa fa-facebook"></span></a>
                      
                                              <a href="https://x.com/dostphl" target="_blank"><span class="fa fa-twitter"></span></a>
                      
                                              <a href="https://www.dost.gov.ph/" target="_blank"><span class="fa fa-home"></span></a>
                      
                                          </div>
                    
                  </div>

                </div>

              </li>
                              </ul>
      </div>
    </div>
</div>
<!-- qx-element-filterable-gallery -->		</div>
	</div>
</div>
<!-- qx-col -->    
  </div>
  <!-- qx-row -->

    </div>
  
</div>
<!-- qx-section -->

<div id="qx-section-8453" class="qx-section "  >

  <!-- Shape -->
    
    <div class="qx-container">
  
    <div 
    id="qx-row-6654" 
    class="qx-row "    >

    <div id="qx-column-4855" class="qx-column  qx-col-lg-6 qx-col-md-6 qx-col-sm-6 qx-col-xs-12" >
 	<div class="qx-col-wrap">
     	<div class="qx-element-wrap">
			<div id="qx-academia-icon-7556" class="module-social-media-count qx-element qx-element-academia-icon ">
<!--  <i class="--><!--"></i>-->


  <a class="btn btn-default btn-block" href="https://www.facebook.com/pidsgovph/"  target="_blank">
    <!-- <i class=" fa-5x"></i> -->
    <i class="fa fa-facebook-official fa-5x"></i>
    <p class="msg">Like Our Page</p>
    <h5>60K Followers</h5>
  </a>
  
  
  
</div>
<!-- qx-element-icon -->		</div>
	</div>
</div>
<!-- qx-col --><div id="qx-column-7257" class="qx-column  qx-col-lg-6 qx-col-md-6 qx-col-sm-6 qx-col-xs-12" >
 	<div class="qx-col-wrap">
     	<div class="qx-element-wrap">
			<div id="qx-academia-icon-2958" class="module-social-media-count qx-element qx-element-academia-icon ">
<!--  <i class="--><!--"></i>-->


  <a class="btn btn-default btn-block" href="https://x.com/pidsgovph"  target="_blank">
    <!-- <i class=" fa-5x"></i> -->
    <i class="fa fa-twitter fa-5x"></i>
    <p class="msg">Follow Us</p>
    <h5>3K Followers</h5>
  </a>
  
  
  
</div>
<!-- qx-element-icon -->		</div>
	</div>
</div>
<!-- qx-col -->    
  </div>
  <!-- qx-row -->

    </div>
  
</div>
<!-- qx-section -->

<div id="qx-section-799952" class="qx-section "  >

  <!-- Shape -->
    
  
    <div 
    id="qx-row-309953" 
    class="qx-row "    >

    <div id="qx-column-129954" class="qx-column  qx-col-lg-12 qx-col-md-12 qx-col-sm-12 qx-col-xs-12" >
 	<div class="qx-col-wrap">
     	<div class="qx-element-wrap">
			<hr id="qx-divider-279955" class="qx-element qx-element-space  qx-element-divider"  />		</div>
	</div>
</div>
<!-- qx-col -->    
  </div>
  <!-- qx-row -->

  
</div>
<!-- qx-section -->

<div id="qx-section-749957" class="qx-section "  >

  <!-- Shape -->
    
  
    <div 
    id="qx-row-79958" 
    class="qx-row "    >

    <div id="qx-column-259959" class="qx-column  qx-col-lg-12 qx-col-md-12 qx-col-sm-12 qx-col-xs-12" >
 	<div class="qx-col-wrap">
     	<div class="qx-element-wrap">
			<hr id="qx-divider-199960" class="qx-element qx-element-space  qx-element-divider"  />		</div>
	</div>
</div>
<!-- qx-col -->    
  </div>
  <!-- qx-row -->

  
</div>
<!-- qx-section -->

<div id="qx-section-579962" class="qx-section "  >

  <!-- Shape -->
    
  
    <div 
    id="qx-row-119963" 
    class="qx-row "    >

    <div id="qx-column-639964" class="qx-column  qx-col-lg-12 qx-col-md-12 qx-col-sm-12 qx-col-xs-12" >
 	<div class="qx-col-wrap">
     	<div class="qx-element-wrap">
			<hr id="qx-divider-399965" class="qx-element qx-element-space  qx-element-divider"  />		</div>
	</div>
</div>
<!-- qx-col -->    
  </div>
  <!-- qx-row -->

  
</div>
<!-- qx-section -->


    </div>
  </div>
  

		</div>
		<!-- //MAIN CONTENT -->

</div>

		
			
		
<!-- FOOTER -->
<footer id="t3-footer" class="wrap t3-footer">
	<div class="section-wrapper">
		
					<!-- FOOT NAVIGATION -->
			<div class="container">
					<!-- SPOTLIGHT -->
	<div class="t3-spotlight t3-footnav  row">
					<div class=" col-lg-4 col-md-4 col-sm-4 col-xs-6">
								<div class="t3-module module-blog-article " id="Mod143"><div class="module-inner"><div class="module-ct"><div class="mod-txcustom">
      <div class="image-wrapper pull-leftmedia-wrapper">
  <img src="/" alt="" class="img-responsive"/>
</div>
    
  <div class="content-wrapper content-wrapper">
    <div class="content-inner">

            <div class="content-desc">
        <div style="margin-top: -150px;">
<p> </p>
<p><span style="font-size: 10pt; font-family: tahoma, arial, helvetica, sans-serif;"> <a href="https://www.pids.gov.ph/"> <img src="/images/PIDS.png" alt="PIDS Logo" width="210" height="110" /> </a> </span></p>
<p><span style="font-size: 10pt; font-family: tahoma, arial, helvetica, sans-serif;"> 18F Three Cyberpod Centris - North Tower, EDSA corner Quezon Avenue, Quezon City </span></p>
<p><span style="font-size: 10pt; font-family: tahoma, arial, helvetica, sans-serif; color: #00ccff;"> <a style="color: #00ccff;" href="https://www.facebook.com/PIDS.PH">Facebook</a> | <a style="color: #00ccff;" href="https://www.pids.gov.ph/">Website</a> </span></p>
<p><span style="font-size: 10pt; font-family: tahoma, arial, helvetica, sans-serif; color: #00ccff;"> <a style="color: #00ccff;" href="https://twitter.com/PIDS_PH">X (Twitter)</a> | <a style="color: #00ccff;" href="https://www.youtube.com/PIDSPHL">YouTube</a> </span></p>
<p> </p>
</div>
<p><a style="display: inline-block; padding: 12px 24px; border: 2px solid #00ccff; border-radius: 8px; text-decoration: none; font-weight: bold; font-family: 'Segoe UI', Tahoma, sans-serif; background-color: transparent; color: #00ccff; transition: all 0.3s ease-in-out;" href="/contact-us" target="_blank" rel="noopener noreferrer"> Contact Us </a></p>
              </div>

    </div>
  </div>

  
</div>
</div></div></div>
							</div>
					<div class=" col-lg-4 col-md-4 col-sm-4 col-xs-6">
								<div class="t3-module module- " id="Mod144"><div class="module-inner"><div class="module-ct">

<div class="custom"  >
	<p style="text-align: left;"><span style="font-size: 12pt;"><strong><br />Find related studies</strong></span></p>
<p style="text-align: left;"><span style="color: #ffffff;">Search related studies. Visit the </span><br /><span style="color: #00ccff;"><a style="color: #00ccff;" href="https://serp-p.pids.gov.ph/" target="_blank" rel="noopener noreferrer">Socioeconomic Research Portal for the Philippines</a></span></p></div>
</div></div></div>
							</div>
					<div class=" col-lg-4 col-md-4 col-sm-4 col-xs-12">
								&nbsp;
							</div>
			</div>
<!-- SPOTLIGHT -->
			</div>
			<!-- //FOOT NAVIGATION -->
			</div>
</footer>
<!-- //FOOTER -->


		
		<section class="t3-copyright">
	<div class="container">
		<div class="row">
			<div class="col-md-12 copyright ">
				<div class="module">
	<p class="pull-left">
			Copyright &#169; 2026 Development Policy Research Month. All Rights Reserved.	</p>
	<p class="pull-right">
			Designed by <a href="https://www.themexpert.com/" title="Visit ThemeXpert!" >ThemeXpert</a></small>
	</p>
</div>




				<div class="module">
					<p class="pull-left">
						Copyright © 2025. Philippine Institute for Development Studies. All Rights Reserved.					</p>

					<p class="pull-right">

						
					</p>
				</div>



			</div>

			
		</div>
	</div>
</section>

	</div>

	
	
</body>

</html>
