{"id":45,"date":"2025-01-09T02:56:19","date_gmt":"2025-01-09T02:56:19","guid":{"rendered":"https:\/\/wahanadata.co.id\/?page_id=45"},"modified":"2025-02-28T03:16:26","modified_gmt":"2025-02-28T03:16:26","slug":"home","status":"publish","type":"page","link":"https:\/\/old.wahanadata.co.id.\/","title":{"rendered":"Home"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"45\" class=\"elementor elementor-45\">\n\t\t\t\t<div class=\"elementor-element elementor-element-922c355 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent\" data-id=\"922c355\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-fdc3469 elementor-widget elementor-widget-wpr-elementor-template\" data-id=\"fdc3469\" data-element_type=\"widget\" data-widget_type=\"wpr-elementor-template.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<style>.elementor-436 .elementor-element.elementor-element-2828853{--display:flex;}<\/style>\t\t<div data-elementor-type=\"page\" data-elementor-id=\"436\" class=\"elementor elementor-436\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2828853 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent\" data-id=\"2828853\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-25cd0c6c elementor-widget elementor-widget-html\" data-id=\"25cd0c6c\" data-element_type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<!DOCTYPE html>\r\n<html lang=\"en\">\r\n<head>\r\n    <meta charset=\"UTF-8\">\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\r\n    <title>Responsive Navbar<\/title>\r\n    <style>\r\n        * {\r\n            margin: 0;\r\n            padding: 0;\r\n            box-sizing: border-box;\r\n        }\r\n        body {\r\n            font-family: 'Montserrat', sans-serif;\r\n        }\r\n        .navbar {\r\n            display: flex;\r\n            justify-content: space-between;\r\n            align-items: center;\r\n            padding: 15px 30px;\r\n            background-color: #fff;\r\n            color: #000;\r\n        }\r\n        .navbar .logo img {\r\n            max-height: 25px;\r\n            width: auto;\r\n            object-fit: contain;\r\n        }\r\n        .navbar .menu {\r\n            display: flex;\r\n            list-style: none;\r\n            position: relative;\r\n        }\r\n        .navbar .menu li {\r\n            margin: 0 15px;\r\n            display: flex;\r\n            align-items: center;\r\n            position: relative;\r\n        }\r\n        .navbar .menu li a {\r\n            text-decoration: none;\r\n            color: rgb(0, 0, 0);\r\n            font-size: 16px;\r\n            transition: color 0.3s, transform 0.3s;\r\n        }\r\n        .navbar .menu li a:hover {\r\n            color: #34C759;\r\n            transform: scale(1.1);\r\n        }\r\n        .navbar .menu li::after {\r\n            content: '';\r\n            display: block;\r\n            width: 0;\r\n            height: 2px;\r\n            background-color: #34C759;\r\n            position: absolute;\r\n            bottom: -5px;\r\n            left: 0;\r\n            transition: width 0.3s ease;\r\n        }\r\n        .navbar .menu li:hover::after {\r\n            width: 100%;\r\n        }\r\n        .navbar .button {\r\n            background: linear-gradient(90deg, #58c651, #2A5230);\r\n            color: #fff;\r\n            border: none;\r\n            padding: 10px 20px;\r\n            border-radius: 10px;\r\n            cursor: pointer;\r\n            font-size: 14px;\r\n            width: 100%;\r\n            text-align: center;\r\n            transition: all 0.3s ease;\r\n        }\r\n        .navbar .button:hover {\r\n            transform: translateY(-3px);\r\n        }\r\n        .navbar .button span {\r\n            display: block;\r\n            line-height: 1.2;\r\n        }\r\n        .navbar .lang-toggle {\r\n            display: flex;\r\n            align-items: center;\r\n            cursor: pointer;\r\n        }\r\n        .navbar .lang-toggle img {\r\n            height: 16px;\r\n            margin-right: 5px;\r\n        }\r\n        .navbar .hamburger {\r\n            display: none;\r\n            flex-direction: column;\r\n            cursor: pointer;\r\n            z-index: 999;\r\n        }\r\n        .navbar .hamburger div {\r\n            width: 25px;\r\n            height: 3px;\r\n            background-color: #000;\r\n            margin: 3px 0;\r\n        }\r\n\r\n        \/* Tablet view *\/\r\n        @media (max-width: 768px) {\r\n            .navbar .menu {\r\n                display: none;\r\n                flex-direction: column;\r\n                background-color: #fff;\r\n                position: absolute;\r\n                top: 60px;\r\n                right: 0;\r\n                width: 200px;\r\n                border-radius: 8px;\r\n                box-shadow: 0 4px 6px rgba(0,0,0,0.1);\r\n                z-index: 1000;\r\n            }\r\n            .navbar .menu.active {\r\n                display: flex;\r\n            }\r\n            .navbar .hamburger {\r\n                display: flex;\r\n                z-index: 1001;\r\n            }\r\n            .navbar .logo img {\r\n                max-height: 35px;\r\n            }\r\n        }\r\n\r\n        \/* Mobile view *\/\r\n        @media (max-width: 480px) {\r\n            .navbar .logo img {\r\n                max-height: 30px;\r\n            }\r\n            .navbar .menu li a {\r\n                margin-bottom: 10px;\r\n                font-size: 14px;\r\n            }\r\n            .navbar .button {\r\n                font-size: 14px;\r\n                padding: 8px 15px;\r\n                margin-top: 10px; \/* Add space between button and links *\/\r\n            }\r\n        }\r\n    <\/style>\r\n<\/head>\r\n<body>\r\n    <nav class=\"navbar\">\r\n        <div class=\"logo\">\r\n            <a href=\"https:\/\/wahanadata.co.id\/\"><img decoding=\"async\" src=\"https:\/\/wahanadata.co.id\/img\/wdu-ijo.png\" alt=\"Logo\"><\/a>\r\n        <\/div>\r\n        <ul class=\"menu\">\r\n            <li><a href=\"https:\/\/wahanadata.co.id\/\">Beranda<\/a><\/li>\r\n            <li><a href=\"https:\/\/wahanadata.co.id\/?page_id=594\">Tentang Kami<\/a><\/li>\r\n            <li><a href=\"https:\/\/wahanadata.co.id\/?page_id=610\">Layanan<\/a><\/li>\r\n            <li><a href=\"https:\/\/wahanadata.co.id\/?page_id=616\">Pengalaman<\/a><\/li>\r\n            <li><a href=\"https:\/\/sis.wahanadata.co.id\/\">SIS-WDU<\/a><\/li>\r\n            <li><a href=\"https:\/\/wahanadata.co.id\/?page_id=625\">Kontak<\/a><\/li>\r\n            <li>\r\n                <button class=\"button\">\r\n                    <span>Download<\/span>\r\n                    <span>Company Profile<\/span>\r\n                <\/button>\r\n            <\/li>\r\n        <\/ul>\r\n        <div class=\"hamburger\">\r\n            <div><\/div>\r\n            <div><\/div>\r\n            <div><\/div>\r\n        <\/div>\r\n    <\/nav>\r\n\r\n    <script>\r\n        const hamburger = document.querySelector('.hamburger');\r\n        const menu = document.querySelector('.menu');\r\n\r\n        hamburger.addEventListener('click', () => {\r\n            menu.classList.toggle('active');\r\n        });\r\n    <\/script>\r\n<\/body>\r\n<\/html>\r\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<span class=\"wpr-template-edit-btn\" data-permalink=\"https:\/\/old.wahanadata.co.id.\/?elementor_library=header-responsive-fixed\">Edit Template<\/span>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-8f33794 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent\" data-id=\"8f33794\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<header class=\"ep-section-eql-height elementor-element elementor-element-4c54f9e e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-child\" bdt-height-match=\"target: .ep-section-eql-height .elementor-element .elementor-widget &gt; div\" data-id=\"4c54f9e\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-253830e elementor-widget__width-inherit bdt-backdrop-filter-yes elementor-arrows-position-inside elementor-invisible elementor-widget elementor-widget-image-carousel\" data-id=\"253830e\" data-element_type=\"widget\" data-settings=\"{&quot;slides_to_show&quot;:&quot;1&quot;,&quot;navigation&quot;:&quot;arrows&quot;,&quot;autoplay_speed&quot;:2500,&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;autoplay&quot;:&quot;yes&quot;,&quot;pause_on_hover&quot;:&quot;yes&quot;,&quot;infinite&quot;:&quot;yes&quot;,&quot;effect&quot;:&quot;slide&quot;,&quot;speed&quot;:500}\" data-widget_type=\"image-carousel.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-image-carousel-wrapper swiper\" role=\"region\" aria-roledescription=\"carousel\" aria-label=\"Image Carousel\" dir=\"ltr\">\n\t\t\t<div class=\"elementor-image-carousel swiper-wrapper swiper-image-stretch\" aria-live=\"off\">\n\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"1 of 2\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/wahanadata.co.id\/wp-content\/uploads\/elementor\/thumbs\/wdu-header-2-scaled-qzz41v3uq1iw5ezxx3694wk5veazbnw3q62nnmrcww.jpg\" alt=\"wdu-header-2\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"2 of 2\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/wahanadata.co.id\/wp-content\/uploads\/elementor\/thumbs\/wdu-header-scaled-qzz45b6js68qpxzpskt0a190a9bfjpko786r05ne3k.jpg\" alt=\"wdu-header\" \/><\/figure><\/div>\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-swiper-button elementor-swiper-button-prev\" role=\"button\" tabindex=\"0\">\n\t\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-eicon-chevron-left\" viewBox=\"0 0 1000 1000\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"><\/path><\/svg>\t\t\t\t\t<\/div>\n\t\t\t\t\t<div class=\"elementor-swiper-button elementor-swiper-button-next\" role=\"button\" tabindex=\"0\">\n\t\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-eicon-chevron-right\" viewBox=\"0 0 1000 1000\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"><\/path><\/svg>\t\t\t\t\t<\/div>\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-57d0587 elementor-widget__width-initial elementor-absolute elementor-widget-tablet__width-initial elementor-widget-mobile__width-initial elementor-hidden-mobile elementor-hidden-tablet elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"57d0587\" data-element_type=\"widget\" data-settings=\"{&quot;_position&quot;:&quot;absolute&quot;,&quot;_animation&quot;:&quot;fadeInLeft&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Percayakan kebutuhan riset, analisis data, dan teknologi kepada Wahana Data Utama.\n<br>Kami mengubah data menjadi wawasan berharga dan solusi praktis yang membantu<br>Anda meraih keunggulan kompetitif di era digital.<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-42869e6 elementor-absolute elementor-hidden-mobile elementor-hidden-tablet elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"42869e6\" data-element_type=\"widget\" data-settings=\"{&quot;_position&quot;:&quot;absolute&quot;,&quot;_animation&quot;:&quot;fadeInLeft&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Data Terpadu, Solusi Cerdas,<br>Hasil Maksimal<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/header>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<header class=\"ep-section-eql-height elementor-element elementor-element-6fe32bc e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent\" bdt-height-match=\"target: .ep-section-eql-height .elementor-element .elementor-widget &gt; div\" data-id=\"6fe32bc\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-91f9519 elementor-widget elementor-widget-spacer\" data-id=\"91f9519\" data-element_type=\"widget\" data-widget_type=\"spacer.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-679504c elementor-arrows-position-outside elementor-widget__width-initial custom-carousel-shadow elementor-pagination-position-inside elementor-invisible elementor-widget elementor-widget-image-carousel\" data-id=\"679504c\" data-element_type=\"widget\" data-settings=\"{&quot;slides_to_show&quot;:&quot;3&quot;,&quot;image_spacing_custom&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:19,&quot;sizes&quot;:[]},&quot;_animation&quot;:&quot;slideInLeft&quot;,&quot;navigation&quot;:&quot;both&quot;,&quot;autoplay&quot;:&quot;yes&quot;,&quot;pause_on_hover&quot;:&quot;yes&quot;,&quot;pause_on_interaction&quot;:&quot;yes&quot;,&quot;autoplay_speed&quot;:5000,&quot;infinite&quot;:&quot;yes&quot;,&quot;speed&quot;:500,&quot;image_spacing_custom_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;image_spacing_custom_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"image-carousel.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-image-carousel-wrapper swiper\" role=\"region\" aria-roledescription=\"carousel\" aria-label=\"Image Carousel\" dir=\"ltr\">\n\t\t\t<div class=\"elementor-image-carousel swiper-wrapper swiper-image-stretch\" aria-live=\"off\">\n\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"1 of 6\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/wahanadata.co.id\/wp-content\/uploads\/2025\/01\/survei-768x910.png\" alt=\"survei\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"2 of 6\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/wahanadata.co.id\/wp-content\/uploads\/2025\/01\/riset-pasar-768x910.png\" alt=\"riset-pasar\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"3 of 6\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/wahanadata.co.id\/wp-content\/uploads\/2025\/01\/riset-data-768x910.png\" alt=\"riset-data\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"4 of 6\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/wahanadata.co.id\/wp-content\/uploads\/2025\/01\/konsultasi-it-768x910.png\" alt=\"konsultasi-it\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"5 of 6\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/wahanadata.co.id\/wp-content\/uploads\/2025\/01\/analisis-data-768x910.png\" alt=\"analisis-data\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"6 of 6\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/wahanadata.co.id\/wp-content\/uploads\/2025\/01\/event-768x910.png\" alt=\"event\" \/><\/figure><\/div>\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-swiper-button elementor-swiper-button-prev\" role=\"button\" tabindex=\"0\">\n\t\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-chevron-circle-left\" viewBox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M256 504C119 504 8 393 8 256S119 8 256 8s248 111 248 248-111 248-248 248zM142.1 273l135.5 135.5c9.4 9.4 24.6 9.4 33.9 0l17-17c9.4-9.4 9.4-24.6 0-33.9L226.9 256l101.6-101.6c9.4-9.4 9.4-24.6 0-33.9l-17-17c-9.4-9.4-24.6-9.4-33.9 0L142.1 239c-9.4 9.4-9.4 24.6 0 34z\"><\/path><\/svg>\t\t\t\t\t<\/div>\n\t\t\t\t\t<div class=\"elementor-swiper-button elementor-swiper-button-next\" role=\"button\" tabindex=\"0\">\n\t\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-chevron-circle-right\" viewBox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm113.9 231L234.4 103.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L285.1 256 183.5 357.6c-9.4 9.4-9.4 24.6 0 33.9l17 17c9.4 9.4 24.6 9.4 33.9 0L369.9 273c9.4-9.4 9.4-24.6 0-34z\"><\/path><\/svg>\t\t\t\t\t<\/div>\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<div class=\"swiper-pagination\"><\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-b28a4c5 elementor-widget elementor-widget-spacer\" data-id=\"b28a4c5\" data-element_type=\"widget\" data-widget_type=\"spacer.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-d06d1aa elementor-invisible elementor-widget elementor-widget-text-editor\" data-id=\"d06d1aa\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInLeft&quot;}\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div style=\"display: flex; justify-content: center; align-items: center; text-align: center;\"><img decoding=\"async\" class=\"wp-image-668 alignnone\" src=\"https:\/\/wahanadata.co.id\/wp-content\/uploads\/2025\/01\/line-300x45.png\" alt=\"\" width=\"87\" height=\"13\" srcset=\"https:\/\/old.wahanadata.co.id.\/wp-content\/uploads\/2025\/01\/line-300x45.png 300w, https:\/\/old.wahanadata.co.id.\/wp-content\/uploads\/2025\/01\/line.png 720w\" sizes=\"(max-width: 87px) 100vw, 87px\" \/><br \/><span style=\"margin-left: 20px;\">Solusi terbaik untuk Anda!<\/span><\/div>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-9da2b15 elementor-widget__width-initial elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"9da2b15\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInLeft&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\"><b>Wahana Data Utama<\/b> berkomitmen untuk membantu bisnis dan organisasi Anda mengelola, menganalisis, dan memanfaatkan data secara optimal. Dengan tim profesional yang berpengalaman, kami bekerja sama dengan Anda untuk merancang solusi berbasis data yang relevan, akurat, dan dapat diandalkan, membantu Anda mencapai tujuan dengan lebih efisien.<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-05bbfdb elementor-widget elementor-widget-spacer\" data-id=\"05bbfdb\" data-element_type=\"widget\" data-widget_type=\"spacer.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/header>\n\t\t<div class=\"elementor-element elementor-element-ad71667 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent\" data-id=\"ad71667\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-596d9c2 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-child\" data-id=\"596d9c2\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-043422e elementor-widget elementor-widget-spacer\" data-id=\"043422e\" data-element_type=\"widget\" data-widget_type=\"spacer.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-00cb8df elementor-widget__width-initial elementor-invisible elementor-widget elementor-widget-image\" data-id=\"00cb8df\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInLeft&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img fetchpriority=\"high\" decoding=\"async\" width=\"870\" height=\"934\" src=\"https:\/\/wahanadata.co.id\/wp-content\/uploads\/2025\/02\/Pak-Yudi-homepage-2.png\" class=\"attachment-full size-full wp-image-1709\" alt=\"\" srcset=\"https:\/\/wahanadata.co.id\/wp-content\/uploads\/2025\/02\/Pak-Yudi-homepage-2.png 870w, https:\/\/wahanadata.co.id\/wp-content\/uploads\/2025\/02\/Pak-Yudi-homepage-2-279x300.png 279w, https:\/\/wahanadata.co.id\/wp-content\/uploads\/2025\/02\/Pak-Yudi-homepage-2-768x824.png 768w\" sizes=\"(max-width: 870px) 100vw, 870px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-6f0df47 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-child\" data-id=\"6f0df47\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-88dba4e elementor-widget elementor-widget-spacer\" data-id=\"88dba4e\" data-element_type=\"widget\" data-widget_type=\"spacer.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-93f504b elementor-widget__width-initial elementor-invisible elementor-widget elementor-widget-text-editor\" data-id=\"93f504b\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInRight&quot;}\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div style=\"display: flex; align-items: flex-start; text-align: left;\"><br \/><img decoding=\"async\" class=\"wp-image-668 alignnone\" style=\"align-self: flex-start; margin-top: 20px;\" src=\"https:\/\/wahanadata.co.id\/wp-content\/uploads\/2025\/01\/line-300x45.png\" alt=\"\" width=\"87\" height=\"13\" srcset=\"https:\/\/old.wahanadata.co.id.\/wp-content\/uploads\/2025\/01\/line-300x45.png 300w, https:\/\/old.wahanadata.co.id.\/wp-content\/uploads\/2025\/01\/line.png 720w\" sizes=\"(max-width: 87px) 100vw, 87px\" \/><br \/><span style=\"margin-left: 20px;\">Memiliki pengalaman yang luas serta didukung oleh tim profesional yang kompeten.<\/span><\/div>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-18fc00a elementor-widget elementor-widget-spacer\" data-id=\"18fc00a\" data-element_type=\"widget\" data-widget_type=\"spacer.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-8441b7b elementor-widget__width-initial elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"8441b7b\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInLeft&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Wahana Data Utama didirikan pada 2006 merupakan perusahaan riset dan survei yang berfokus pada bidang sosial-politik, ekonomi, pemasaran, pertanian, dan lainnya. Dengan visi menjadi penyedia data riset global, WDU didukung oleh tim profesional berpengalaman lebih dari 10 tahun. Berkantor di Bogor, kami telah memperoleh kepercayaan dari berbagai instansi pemerintah dan swasta untuk menangani berbagai proyek konsultasi, mulai dari riset hingga <i>event organizing<\/i>.<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-97567f3 elementor-widget elementor-widget-spacer\" data-id=\"97567f3\" data-element_type=\"widget\" data-widget_type=\"spacer.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-8d828ad elementor-widget__width-initial elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"8d828ad\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInRight&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Ir. Yudi A. Idrus, M.M<br>\n<b><font size=\"2\">  \n    DIREKTUR UTAMA\n<\/font><\/b><\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-545d130 elementor-widget elementor-widget-spacer\" data-id=\"545d130\" data-element_type=\"widget\" data-widget_type=\"spacer.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-74b59a1 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent\" data-id=\"74b59a1\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-dad98a2 elementor-widget elementor-widget-spacer\" data-id=\"dad98a2\" data-element_type=\"widget\" data-widget_type=\"spacer.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-c1eaad2 e-grid e-con-full wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-child\" data-id=\"c1eaad2\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-ca9f6e1 elementor-widget__width-initial elementor-invisible elementor-widget elementor-widget-text-editor\" data-id=\"ca9f6e1\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInRight&quot;}\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div style=\"display: flex; align-items: flex-start; text-align: left;\"><img decoding=\"async\" class=\"wp-image-668 alignnone\" style=\"align-self: flex-start; margin-top: 20px;\" src=\"https:\/\/wahanadata.co.id\/wp-content\/uploads\/2025\/01\/line-300x45.png\" alt=\"\" width=\"87\" height=\"13\" srcset=\"https:\/\/old.wahanadata.co.id.\/wp-content\/uploads\/2025\/01\/line-300x45.png 300w, https:\/\/old.wahanadata.co.id.\/wp-content\/uploads\/2025\/01\/line.png 720w\" sizes=\"(max-width: 87px) 100vw, 87px\" \/>\n<span style=\"margin-left: 20px;\">Kepercayaan klien terhadap kami<\/span><\/div>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-7ce560a elementor-widget__width-initial elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"7ce560a\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInLeft&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Dengan pengalaman selama 18 tahun, kami membangun kolaborasi strategis untuk organisasi pemerintah dan juga sektor swasta.<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-fb89f5f elementor-widget elementor-widget-spacer\" data-id=\"fb89f5f\" data-element_type=\"widget\" data-widget_type=\"spacer.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-92b4e7f elementor-arrows-position-outside elementor-widget__width-initial elementor-pagination-position-outside elementor-invisible elementor-widget elementor-widget-image-carousel\" data-id=\"92b4e7f\" data-element_type=\"widget\" data-settings=\"{&quot;slides_to_show&quot;:&quot;5&quot;,&quot;slides_to_scroll&quot;:&quot;1&quot;,&quot;image_spacing_custom&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:16,&quot;sizes&quot;:[]},&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;navigation&quot;:&quot;both&quot;,&quot;autoplay&quot;:&quot;yes&quot;,&quot;pause_on_hover&quot;:&quot;yes&quot;,&quot;pause_on_interaction&quot;:&quot;yes&quot;,&quot;autoplay_speed&quot;:5000,&quot;infinite&quot;:&quot;yes&quot;,&quot;speed&quot;:500,&quot;image_spacing_custom_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;image_spacing_custom_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"image-carousel.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-image-carousel-wrapper swiper\" role=\"region\" aria-roledescription=\"carousel\" aria-label=\"Image Carousel\" dir=\"ltr\">\n\t\t\t<div class=\"elementor-image-carousel swiper-wrapper swiper-image-stretch\" aria-live=\"off\">\n\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"1 of 19\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/wahanadata.co.id\/wp-content\/uploads\/elementor\/thumbs\/komdigi-qzsnm1hhc3etpudfe7s4lcfzxo8qs85nuksc7tsmik.png\" alt=\"komdigi\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"2 of 19\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/wahanadata.co.id\/wp-content\/uploads\/elementor\/thumbs\/ojk-qzsnm4azwliooo9bxr00atqdptuufbguuyqsnnofzw.png\" alt=\"ojk\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"3 of 19\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/wahanadata.co.id\/wp-content\/uploads\/elementor\/thumbs\/kpk-qzsnm3d5prhed2ap38ldqbyx4fzh7md4iu3b6dpu64.png\" alt=\"kpk\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"4 of 19\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/wahanadata.co.id\/wp-content\/uploads\/elementor\/thumbs\/kota-bogor-qzsnm2fbixg41gc28q6r5u7gj243zx9e6pftp3r8cc.png\" alt=\"kota-bogor\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"5 of 19\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/wahanadata.co.id\/wp-content\/uploads\/elementor\/thumbs\/klh-qzsnm0jn59dje8esjpdi0uojcaddkj1xig4uqju0os.png\" alt=\"klh\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"6 of 19\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/wahanadata.co.id\/wp-content\/uploads\/elementor\/thumbs\/kemenristek-qzsnlzlsyfc92mg5p6yvgcx2qwi0cty76bhd99vev0.png\" alt=\"kemenristek\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"7 of 19\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/wahanadata.co.id\/wp-content\/uploads\/elementor\/thumbs\/kemenkopukm-qzsnlxq4kr9ofeiw065mbde5k4r9xfqqi26eapy77g.png\" alt=\"kemenkopukm\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"8 of 19\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/wahanadata.co.id\/wp-content\/uploads\/elementor\/thumbs\/kemendesa-qzsnlxq4kr9ofeiw065mbde5k4r9xfqqi26eapy77g.png\" alt=\"kemendesa\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"9 of 19\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/wahanadata.co.id\/wp-content\/uploads\/elementor\/thumbs\/jakarta-qzsnlwsadx8e3sk95nqzqvmoyqvwpqn05xiwtfzldo.png\" alt=\"jakarta\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"10 of 19\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/wahanadata.co.id\/wp-content\/uploads\/elementor\/thumbs\/pupr-qzsnm58u3fjz0a7ys9emvbhub7q7n0kl73ea4xn1to.png\" alt=\"pupr\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"11 of 19\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/wahanadata.co.id\/wp-content\/uploads\/elementor\/thumbs\/esdm-qzsnluwm095tgkmzgmxqlw3rrz56acfjho7xuw2dq4.png\" alt=\"esdm\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"12 of 19\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/wahanadata.co.id\/wp-content\/uploads\/elementor\/thumbs\/kemenperin-qzsnlynyrlayr0hiuok8vv5m5imn54ugu6tvrzwt18.png\" alt=\"kemenperin\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"13 of 19\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/wahanadata.co.id\/wp-content\/uploads\/elementor\/thumbs\/bumn-qzsn7zsb786k7mrzf56ubw20cdh9r2e2l1t40ymfi4.png\" alt=\"bumn\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"14 of 19\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/wahanadata.co.id\/wp-content\/uploads\/elementor\/thumbs\/bps-qzsmwqnvdmrz7p4g4s2mz8acbay2liprdcmu6pb3zw.png\" alt=\"bps\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"15 of 19\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/wahanadata.co.id\/wp-content\/uploads\/elementor\/thumbs\/bpom-qzsmvfnxvwzn370pr7raik5am1dpwnj6iw0k6v8sn0.png\" alt=\"bpom\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"16 of 19\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/wahanadata.co.id\/wp-content\/uploads\/elementor\/thumbs\/bkpm-qzsmr5ier34m758mrd4h5n1p6uhiuaj79p0xhhlczg.png\" alt=\"bkpm\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"17 of 19\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/wahanadata.co.id\/wp-content\/uploads\/elementor\/thumbs\/bank-indonesia-qzsmr4kkk93bvj9zwupul5a8lgm5mlfgxkdg07mr5o.png\" alt=\"bank-indonesia\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"18 of 19\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/wahanadata.co.id\/wp-content\/uploads\/elementor\/thumbs\/bpk-qzsmdae3y25cy7dmpvdkvmzxr8tmb0hqd2m3nk5erg.png\" alt=\"bpk\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"19 of 19\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/wahanadata.co.id\/wp-content\/uploads\/elementor\/thumbs\/bangka-selatan-1-qzsmd5owzvyxc5kghbcg166msbgs8iz2ofco96cdmk.png\" alt=\"bangka-selatan\" \/><\/figure><\/div>\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-swiper-button elementor-swiper-button-prev\" role=\"button\" tabindex=\"0\">\n\t\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-eicon-chevron-left\" viewBox=\"0 0 1000 1000\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"><\/path><\/svg>\t\t\t\t\t<\/div>\n\t\t\t\t\t<div class=\"elementor-swiper-button elementor-swiper-button-next\" role=\"button\" tabindex=\"0\">\n\t\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-eicon-chevron-right\" viewBox=\"0 0 1000 1000\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"><\/path><\/svg>\t\t\t\t\t<\/div>\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<div class=\"swiper-pagination\"><\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-b45e6e7 elementor-widget elementor-widget-spacer\" data-id=\"b45e6e7\" data-element_type=\"widget\" data-widget_type=\"spacer.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-d88609a e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent\" data-id=\"d88609a\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b21e717 elementor-widget elementor-widget-spacer\" data-id=\"b21e717\" data-element_type=\"widget\" data-widget_type=\"spacer.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4b7294d elementor-invisible elementor-widget elementor-widget-text-editor\" data-id=\"4b7294d\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInLeft&quot;}\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div style=\"display: flex; justify-content: center; align-items: center; text-align: center;\"><img decoding=\"async\" class=\"wp-image-668 alignnone\" src=\"https:\/\/wahanadata.co.id\/wp-content\/uploads\/2025\/01\/line-300x45.png\" alt=\"\" width=\"87\" height=\"13\" srcset=\"https:\/\/old.wahanadata.co.id.\/wp-content\/uploads\/2025\/01\/line-300x45.png 300w, https:\/\/old.wahanadata.co.id.\/wp-content\/uploads\/2025\/01\/line.png 720w\" sizes=\"(max-width: 87px) 100vw, 87px\" \/><br \/><span style=\"margin-left: 20px;\">Potret kegiatan dan kolaborasi kami<\/span><\/div>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-b471f9c elementor-widget__width-initial elementor-arrows-position-inside elementor-pagination-position-outside elementor-invisible elementor-widget elementor-widget-image-carousel\" data-id=\"b471f9c\" data-element_type=\"widget\" data-settings=\"{&quot;image_spacing_custom&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:18,&quot;sizes&quot;:[]},&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;navigation&quot;:&quot;both&quot;,&quot;autoplay&quot;:&quot;yes&quot;,&quot;pause_on_hover&quot;:&quot;yes&quot;,&quot;pause_on_interaction&quot;:&quot;yes&quot;,&quot;autoplay_speed&quot;:5000,&quot;infinite&quot;:&quot;yes&quot;,&quot;speed&quot;:500,&quot;image_spacing_custom_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;image_spacing_custom_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"image-carousel.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-image-carousel-wrapper swiper\" role=\"region\" aria-roledescription=\"carousel\" aria-label=\"Image Carousel\" dir=\"ltr\">\n\t\t\t<div class=\"elementor-image-carousel swiper-wrapper\" aria-live=\"off\">\n\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"1 of 6\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/wahanadata.co.id\/wp-content\/uploads\/2025\/01\/91ff19eb-9bae-41be-bd79-86c09efa26ae.jpg\" alt=\"91ff19eb-9bae-41be-bd79-86c09efa26ae\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"2 of 6\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/wahanadata.co.id\/wp-content\/uploads\/2025\/01\/1384bbe7-3362-446d-b989-77114335e7ea-scaled.jpg\" alt=\"1384bbe7-3362-446d-b989-77114335e7ea\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"3 of 6\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/wahanadata.co.id\/wp-content\/uploads\/2025\/01\/433319d2-e1de-4c4f-9a80-b83df6470507-scaled.jpg\" alt=\"433319d2-e1de-4c4f-9a80-b83df6470507\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"4 of 6\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/wahanadata.co.id\/wp-content\/uploads\/2025\/01\/feac7c05-7818-4564-951d-893e14f37bfe-scaled.jpg\" alt=\"feac7c05-7818-4564-951d-893e14f37bfe\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"5 of 6\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/wahanadata.co.id\/wp-content\/uploads\/2025\/01\/a3f30e87-3b43-418b-b4ba-4529ed4e895a.jpg\" alt=\"a3f30e87-3b43-418b-b4ba-4529ed4e895a\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"6 of 6\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/wahanadata.co.id\/wp-content\/uploads\/2025\/01\/34695135-c70d-4d76-92d5-10c39eb5390f.jpg\" alt=\"34695135-c70d-4d76-92d5-10c39eb5390f\" \/><\/figure><\/div>\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-swiper-button elementor-swiper-button-prev\" role=\"button\" tabindex=\"0\">\n\t\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-eicon-chevron-left\" viewBox=\"0 0 1000 1000\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"><\/path><\/svg>\t\t\t\t\t<\/div>\n\t\t\t\t\t<div class=\"elementor-swiper-button elementor-swiper-button-next\" role=\"button\" tabindex=\"0\">\n\t\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-eicon-chevron-right\" viewBox=\"0 0 1000 1000\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"><\/path><\/svg>\t\t\t\t\t<\/div>\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<div class=\"swiper-pagination\"><\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-7979a3e elementor-widget elementor-widget-spacer\" data-id=\"7979a3e\" data-element_type=\"widget\" data-widget_type=\"spacer.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-0b73cdd e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent\" data-id=\"0b73cdd\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-81562e2 elementor-widget elementor-widget-wpr-elementor-template\" data-id=\"81562e2\" data-element_type=\"widget\" data-widget_type=\"wpr-elementor-template.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<style>.elementor-411 .elementor-element.elementor-element-2c98693a{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-411 .elementor-element.elementor-element-2c98693a:not(.elementor-motion-effects-element-type-background), .elementor-411 .elementor-element.elementor-element-2c98693a > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#2A5230;}.elementor-411 .elementor-element.elementor-element-fbe8ba8{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-widget-image .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-411 .elementor-element.elementor-element-1b0af5b6{width:var( --container-widget-width, 51% );max-width:51%;--container-widget-width:51%;--container-widget-flex-grow:0;}.elementor-411 .elementor-element.elementor-element-1b0af5b6 > .elementor-widget-container{margin:0px 0px 0px 50px;}.elementor-411 .elementor-element.elementor-element-1b0af5b6.elementor-element{--align-self:flex-start;--order:-99999 \/* order start hack *\/;}.elementor-411 .elementor-element.elementor-element-1b0af5b6 img{width:100%;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-411 .elementor-element.elementor-element-6eea76d7 > .elementor-widget-container{margin:-30px 0px 0px 60px;}.elementor-411 .elementor-element.elementor-element-6eea76d7 .elementor-heading-title{font-family:\"Work Sans\", Sans-serif;font-size:18px;font-weight:300;color:#FFFFFF;}.elementor-411 .elementor-element.elementor-element-105ce581 > .elementor-widget-container{margin:0px 0px 0px 60px;}.elementor-411 .elementor-element.elementor-element-105ce581 .elementor-heading-title{font-family:\"Work Sans\", Sans-serif;font-size:14px;font-weight:300;color:#FFFFFF;}.elementor-411 .elementor-element.elementor-element-5e240a3e{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-411 .elementor-element.elementor-element-18d9fbf2 > .elementor-widget-container{margin:20px 60px 0px 0px;}.elementor-411 .elementor-element.elementor-element-18d9fbf2.elementor-element{--align-self:center;}.elementor-411 .elementor-element.elementor-element-18d9fbf2 .elementor-heading-title{font-family:\"Work Sans\", Sans-serif;font-size:18px;font-weight:300;color:#FFFFFF;}@media(max-width:1024px){.elementor-411 .elementor-element.elementor-element-1b0af5b6{--container-widget-width:332px;--container-widget-flex-grow:0;width:var( --container-widget-width, 332px );max-width:332px;}}@media(min-width:768px){.elementor-411 .elementor-element.elementor-element-fbe8ba8{--width:50%;}.elementor-411 .elementor-element.elementor-element-5e240a3e{--width:50%;}}@media(max-width:767px){.elementor-411 .elementor-element.elementor-element-1b0af5b6 > .elementor-widget-container{margin:0px 0px 0px 0px;}.elementor-411 .elementor-element.elementor-element-6eea76d7 > .elementor-widget-container{margin:-30px 0px 0px 15px;}.elementor-411 .elementor-element.elementor-element-6eea76d7.elementor-element{--align-self:center;}.elementor-411 .elementor-element.elementor-element-105ce581 > .elementor-widget-container{margin:0px 0px 0px 15px;}.elementor-411 .elementor-element.elementor-element-18d9fbf2 > .elementor-widget-container{margin:20px 0px 0px -107px;}}<\/style>\t\t<div data-elementor-type=\"container\" data-elementor-id=\"411\" class=\"elementor elementor-411\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2c98693a e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-parent\" data-id=\"2c98693a\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-fbe8ba8 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-child\" data-id=\"fbe8ba8\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-1b0af5b6 elementor-widget__width-initial elementor-widget elementor-widget-image\" data-id=\"1b0af5b6\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"205\" src=\"https:\/\/wahanadata.co.id\/wp-content\/uploads\/2025\/01\/wdu-putih-1024x205.png\" class=\"attachment-large size-large wp-image-349\" alt=\"\" srcset=\"https:\/\/wahanadata.co.id\/wp-content\/uploads\/2025\/01\/wdu-putih-1024x205.png 1024w, https:\/\/wahanadata.co.id\/wp-content\/uploads\/2025\/01\/wdu-putih-300x60.png 300w, https:\/\/wahanadata.co.id\/wp-content\/uploads\/2025\/01\/wdu-putih-768x153.png 768w, https:\/\/wahanadata.co.id\/wp-content\/uploads\/2025\/01\/wdu-putih-1536x307.png 1536w, https:\/\/wahanadata.co.id\/wp-content\/uploads\/2025\/01\/wdu-putih.png 1767w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-6eea76d7 elementor-widget elementor-widget-heading\" data-id=\"6eea76d7\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Blok AE No. 01, Jl. Terapi Raya, RT 03\/19, Menteng<br>Kec. Bogor Barat, Kota Bogor, Jawa Barat 16111\n<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-105ce581 elementor-widget elementor-widget-heading\" data-id=\"105ce581\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">\u00a9 2025 Wahana Data Utama. All Rights Reserved<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-5e240a3e e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no e-con e-child\" data-id=\"5e240a3e\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-18d9fbf2 elementor-widget elementor-widget-heading\" data-id=\"18d9fbf2\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\"><b>Kontak Kami<\/b>\n<br><br>\nwahanadata@yahoo.com\n<br>\n(0251) 755 2099\n<br><br>\n<b>Temukan Kami<\/b>\n<br>\n<div style=\"display: flex; align-items: center; gap: 10px;\">\n  <a href=\"https:\/\/www.instagram.com\/wahanadatautama\/\" target=\"_blank\">\n    <img decoding=\"async\" src=\"https:\/\/wahanadata.co.id\/img\/body\/ig-white.png\" alt=\"Instagram Icon\" style=\"width: 60px; height: auto;\">\n  <\/a>\n  <a href=\"https:\/\/www.youtube.com\/@wahanadatautama9110\" target=\"_blank\">\n    <img decoding=\"async\" src=\"https:\/\/wahanadata.co.id\/img\/body\/youtube-white.png\" alt=\"YouTube Icon\" style=\"width: 35px; height: auto;\">\n  <\/a>\n<\/div>\n<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<span class=\"wpr-template-edit-btn\" data-permalink=\"https:\/\/old.wahanadata.co.id.\/?elementor_library=footer-responsive\">Edit Template<\/span>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>Responsive Navbar Beranda Tentang Kami Layanan Pengalaman SIS-WDU Kontak Download Company Profile Edit Template Percayakan kebutuhan riset, analisis data, dan teknologi kepada Wahana Data Utama. Kami mengubah data menjadi wawasan berharga dan solusi praktis yang membantuAnda meraih keunggulan kompetitif di era digital. Data Terpadu, Solusi Cerdas,Hasil Maksimal Solusi terbaik untuk Anda! Wahana Data Utama berkomitmen untuk membantu bisnis dan organisasi Anda mengelola, menganalisis, dan memanfaatkan data secara optimal. Dengan tim profesional yang berpengalaman, kami bekerja sama dengan Anda untuk merancang solusi berbasis data yang relevan, akurat, dan dapat diandalkan, membantu Anda mencapai tujuan dengan lebih efisien. Memiliki pengalaman yang luas serta didukung oleh tim profesional yang kompeten. Wahana Data Utama didirikan pada 2006 merupakan perusahaan riset dan survei yang berfokus pada bidang sosial-politik, ekonomi, pemasaran, pertanian, dan lainnya. Dengan visi menjadi penyedia data riset global, WDU didukung oleh tim profesional berpengalaman lebih dari 10 tahun. Berkantor di Bogor, kami telah memperoleh kepercayaan dari berbagai instansi pemerintah dan swasta untuk menangani berbagai proyek konsultasi, mulai dari riset hingga event organizing. Ir. Yudi A. Idrus, M.M DIREKTUR UTAMA Kepercayaan klien terhadap kami Dengan pengalaman selama 18 tahun, kami membangun kolaborasi strategis untuk organisasi pemerintah dan juga sektor swasta. Potret kegiatan dan kolaborasi kami Blok AE No. 01, Jl. Terapi Raya, RT 03\/19, MentengKec. Bogor Barat, Kota Bogor, Jawa Barat 16111 \u00a9 2025 Wahana Data Utama. All Rights Reserved Kontak Kami wahanadata@yahoo.com (0251) 755 2099 Temukan Kami Edit Template<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"elementor_canvas","meta":{"footnotes":""},"class_list":["post-45","page","type-page","status-publish","hentry"],"jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/old.wahanadata.co.id.\/index.php?rest_route=\/wp\/v2\/pages\/45","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/old.wahanadata.co.id.\/index.php?rest_route=\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/old.wahanadata.co.id.\/index.php?rest_route=\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/old.wahanadata.co.id.\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/old.wahanadata.co.id.\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=45"}],"version-history":[{"count":686,"href":"https:\/\/old.wahanadata.co.id.\/index.php?rest_route=\/wp\/v2\/pages\/45\/revisions"}],"predecessor-version":[{"id":1713,"href":"https:\/\/old.wahanadata.co.id.\/index.php?rest_route=\/wp\/v2\/pages\/45\/revisions\/1713"}],"wp:attachment":[{"href":"https:\/\/old.wahanadata.co.id.\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=45"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}