{"id":28,"date":"2019-10-30T08:05:01","date_gmt":"2019-10-30T08:05:01","guid":{"rendered":"https:\/\/demo.casethemes.net\/consultio-business\/?page_id=28"},"modified":"2025-11-27T14:11:31","modified_gmt":"2025-11-27T14:11:31","slug":"team","status":"publish","type":"page","link":"https:\/\/pengasih.asia\/biz\/team\/","title":{"rendered":"Team"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"28\" class=\"elementor elementor-28\">\n\t\t\t\t        <section class=\"elementor-section elementor-top-section elementor-element elementor-element-53e9f59 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default ct-header-fixed-none ct-row-max-none\" data-id=\"53e9f59\" data-element_type=\"section\">\n            \n                        <div class=\"elementor-container elementor-column-gap-extended \">\n                    <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-2d122fa\" data-id=\"2d122fa\" data-element_type=\"column\">\n        <div class=\"elementor-widget-wrap elementor-element-populated\">\n                    \n        \t\t<div class=\"elementor-element elementor-element-a1dc510 elementor-widget elementor-widget-ct_heading\" data-id=\"a1dc510\" data-element_type=\"widget\" data-widget_type=\"ct_heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div id=\"ct_heading-a1dc510\" class=\"ct-heading h-align- sub-style1 ct-heading-left item-st-default\">\r\n\t<div class=\"ct-item--inner\">\r\n        <div class=\"ct-inline-css\"  data-css=\"\r\n            \">\r\n        <\/div>\r\n            \t\t<div class=\"item--sub-title style1 show-line\">\r\n                                                Team                                                            <\/div>\r\n    \t        <h3 class=\"item--title st-default case-animate-time\" data-wow-delay=\"ms\">\r\n                        <span class=\"sp-main\">\r\n                \r\n                We draw on our global network to assemble a team of experts.\r\n                \r\n                            <\/span>\r\n                    <\/h3>\r\n    <\/div>\r\n<\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t            <\/div>\n        <\/div>\n                <div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-603daca\" data-id=\"603daca\" data-element_type=\"column\">\n        <div class=\"elementor-widget-wrap elementor-element-populated\">\n                    \n        \t\t<div class=\"elementor-element elementor-element-3d3ffe8 elementor-widget elementor-widget-text-editor\" data-id=\"3d3ffe8\" data-element_type=\"widget\" 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\tWe also bring a strong interest in coaching and capability building, with an emphasis on emotional intelligence and effective stakeholder relationships.\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t            <\/div>\n        <\/div>\n                    <\/div>\n        <\/section>\n                <section class=\"elementor-section elementor-top-section elementor-element elementor-element-6dc6244 elementor-section-boxed elementor-section-height-default elementor-section-height-default ct-header-fixed-none ct-row-max-none\" data-id=\"6dc6244\" data-element_type=\"section\">\n            \n                        <div class=\"elementor-container elementor-column-gap-extended \">\n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-d5aaa1c\" data-id=\"d5aaa1c\" data-element_type=\"column\">\n        <div class=\"elementor-widget-wrap elementor-element-populated\">\n                    \n        \t\t<div class=\"elementor-element elementor-element-3267e6b elementor-widget elementor-widget-html\" data-id=\"3267e6b\" 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>\n<html lang=\"en\">\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <title>Team Member Grid with Popup<\/title>\n    <link rel=\"stylesheet\" href=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/font-awesome\/6.4.0\/css\/all.min.css\">\n    <style>\n        \/* CSS khusus untuk komponen team grid sahaja *\/\n        .tm-team-grid-container {\n            width: 100%;\n            padding: 20px 0;\n        }\n\n        .tm-team-grid {\n            display: grid;\n            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));\n            gap: 30px;\n            margin-bottom: 40px;\n        }\n\n        .tm-team-card {\n            background: white;\n            border-radius: 15px;\n            overflow: hidden;\n            box-shadow: 0 10px 20px rgba(0,0,0,0.1);\n            transition: transform 0.3s ease, box-shadow 0.3s ease;\n            text-align: center;\n        }\n\n        .tm-team-card:hover {\n            transform: translateY(-10px);\n            box-shadow: 0 15px 30px rgba(0,0,0,0.15);\n        }\n\n        .tm-card-image {\n            height: 220px;\n            overflow: hidden;\n            display: flex;\n            justify-content: center;\n            align-items: center;\n            padding: 20px;\n        }\n\n        .tm-card-image img {\n            width: 180px;\n            height: 180px;\n            object-fit: cover;\n            border-radius: 50%;\n            transition: transform 0.5s ease;\n            border: 5px solid #f0f0f0;\n        }\n\n        .tm-team-card:hover .tm-card-image img {\n            transform: scale(1.05);\n        }\n\n        .tm-card-content {\n            padding: 20px;\n        }\n\n        .tm-card-content h3 {\n            color: #2c3e50;\n            margin-bottom: 5px;\n            font-size: 1.4rem;\n        }\n\n        .tm-card-content p {\n            color: #7f8c8d;\n            margin-bottom: 15px;\n            font-size: 0.95rem;\n        }\n\n        .tm-details-btn {\n            background: #3498db;\n            color: white;\n            border: none;\n            padding: 10px 20px;\n            border-radius: 30px;\n            font-weight: 600;\n            cursor: pointer;\n            transition: background 0.3s ease;\n            display: inline-flex;\n            align-items: center;\n            gap: 8px;\n        }\n\n        .tm-details-btn:hover {\n            background: #2980b9;\n        }\n\n        \/* ----------------- Popup Styles ----------------- *\/\n        .tm-popup-overlay {\n            position: fixed;\n            top: 0;\n            left: 0;\n            width: 100%;\n            height: 100%;\n            background: rgba(0,0,0,0.7);\n            display: flex;\n            justify-content: center;\n            align-items: center;\n            z-index: 1000;\n            opacity: 0;\n            visibility: hidden;\n            padding: 20px;\n            box-sizing: border-box;\n            transition: opacity 0.3s ease, visibility 0.3s ease;\n        }\n\n        .tm-popup-overlay.active {\n            opacity: 1;\n            visibility: visible;\n        }\n\n        .tm-popup-content {\n            background: white;\n            border-radius: 15px;\n            width: 100%;\n            max-width: 800px;\n            max-height: 90vh;\n            overflow-y: auto;\n            display: flex;\n            box-shadow: 0 15px 40px rgba(0,0,0,0.2);\n            transform: scale(0.8);\n            opacity: 0;\n            transition: transform 0.5s ease, opacity 0.5s ease;\n            margin: 0 auto;\n        }\n\n        .tm-popup-overlay.active .tm-popup-content {\n            transform: scale(1);\n            opacity: 1;\n        }\n\n        .tm-popup-image {\n            flex: 0 0 40%;\n            overflow: hidden;\n            display: flex;\n            justify-content: center;\n            align-items: center;\n            padding: 30px;\n            box-sizing: border-box;\n        }\n\n        .tm-popup-image img {\n            width: 100%;\n            max-width: 250px;\n            height: 250px;\n            object-fit: cover;\n            border-radius: 50%;\n            border: 5px solid #f0f0f0;\n        }\n\n        .tm-popup-details {\n            flex: 1;\n            padding: 30px;\n            display: flex;\n            flex-direction: column;\n            box-sizing: border-box;\n        }\n\n        .tm-popup-details h2 {\n            color: #2c3e50;\n            font-size: 1.8rem;\n            margin-bottom: 5px;\n        }\n\n        .tm-position {\n            color: #3498db;\n            font-weight: 600;\n            margin-bottom: 20px;\n            font-size: 1.1rem;\n        }\n\n        .tm-description {\n            color: #555;\n            line-height: 1.6;\n            margin-bottom: 25px;\n        }\n\n        .tm-skills {\n            margin-bottom: 25px;\n        }\n\n        .tm-skills h3 {\n            color: #2c3e50;\n            margin-bottom: 10px;\n            font-size: 1.2rem;\n        }\n\n        .tm-skill-tags {\n            display: flex;\n            flex-wrap: wrap;\n            gap: 8px;\n        }\n\n        .tm-skill-tag {\n            background: #e1f0fa;\n            color: #3498db;\n            padding: 5px 12px;\n            border-radius: 20px;\n            font-size: 0.85rem;\n        }\n\n        .tm-contact-info {\n            margin-top: auto;\n        }\n\n        .tm-contact-info h3 {\n            color: #2c3e50;\n            margin-bottom: 10px;\n            font-size: 1.2rem;\n        }\n\n        .tm-social-links {\n            display: flex;\n            gap: 15px;\n        }\n\n        .tm-social-links a {\n            display: flex;\n            align-items: center;\n            justify-content: center;\n            width: 40px;\n            height: 40px;\n            background: #f5f5f5;\n            border-radius: 50%;\n            color: #555;\n            transition: all 0.3s ease;\n        }\n\n        .tm-social-links a:hover {\n            background: #3498db;\n            color: white;\n            transform: translateY(-3px);\n        }\n\n        .tm-close-btn {\n            position: absolute;\n            top: 20px;\n            right: 20px;\n            background: none;\n            border: none;\n            font-size: 1.5rem;\n            color: white;\n            cursor: pointer;\n            width: 40px;\n            height: 40px;\n            border-radius: 50%;\n            display: flex;\n            align-items: center;\n            justify-content: center;\n            transition: background 0.3s ease;\n        }\n\n        .tm-close-btn:hover {\n            background: rgba(255,255,255,0.2);\n        }\n\n        @media (max-width: 768px) {\n            .tm-popup-content {\n                flex-direction: column;\n                max-height: 95vh;\n            }\n            \n            .tm-popup-image {\n                flex: 0 0 auto;\n                padding: 20px;\n            }\n            \n            .tm-popup-image img {\n                max-width: 200px;\n                height: 200px;\n            }\n        }\n    <\/style>\n<\/head>\n<body>\n    <div class=\"tm-team-grid-container\">\n        <div class=\"tm-team-grid\">\n            <!-- Team Member 1 -->\n            <div class=\"tm-team-card\">\n                <div class=\"tm-card-image\">\n                    <img decoding=\"async\" src=\"https:\/\/pengasih.asia\/biz\/wp-content\/uploads\/2025\/11\/hafizi.png\">\n                <\/div>\n                <div class=\"tm-card-content\">\n                    <h3>Hafizi Bin Harun<\/h3>\n                    <p>In-House Trainer<\/p>\n                    <button class=\"tm-details-btn\" onclick=\"tmOpenPopup(0)\">\n                        <i class=\"fas fa-info-circle\"><\/i> Details\n                    <\/button>\n                <\/div>\n            <\/div>\n            \n            <!-- Team Member 2 -->\n            <div class=\"tm-team-card\">\n                <div class=\"tm-card-image\">\n                    <img decoding=\"async\" src=\"https:\/\/pengasih.asia\/biz\/wp-content\/uploads\/2025\/06\/kas-scaled-e1750319835177.jpg\">\n                <\/div>\n                <div class=\"tm-card-content\">\n                    <h3>Noor Kasmara Sokarnor<\/h3>\n                    <p>In-House Trainer<\/p>\n                    <button class=\"tm-details-btn\" onclick=\"tmOpenPopup(1)\">\n                        <i class=\"fas fa-info-circle\"><\/i> Details\n                    <\/button>\n                <\/div>\n            <\/div>\n            \n            <!-- Team Member 3 -->\n            <div class=\"tm-team-card\">\n                <div class=\"tm-card-image\">\n                    <img decoding=\"async\" src=\"https:\/\/pengasih.asia\/biz\/wp-content\/uploads\/2025\/11\/Roslan-Yahya.png\">\n                <\/div>\n                <div class=\"tm-card-content\">\n                    <h3>Haji Roslan Yahya<\/h3>\n                    <p>In-House Trainer<\/p>\n                    <button class=\"tm-details-btn\" onclick=\"tmOpenPopup(2)\">\n                        <i class=\"fas fa-info-circle\"><\/i> Details\n                    <\/button>\n                <\/div>\n            <\/div>\n            \n            <!-- Team Member 4 -->\n            <div class=\"tm-team-card\">\n                <div class=\"tm-card-image\">\n                    <img decoding=\"async\" src=\"https:\/\/pengasih.asia\/biz\/wp-content\/uploads\/2025\/11\/Sattish-Ram.png\">\n                <\/div>\n                <div class=\"tm-card-content\">\n                    <h3>Sattish Ram A\/L Subramaniam<\/h3>\n                    <p>In-House Trainer<\/p>\n                    <button class=\"tm-details-btn\" onclick=\"tmOpenPopup(3)\">\n                        <i class=\"fas fa-info-circle\"><\/i> Details\n                    <\/button>\n                <\/div>\n            <\/div>\n            \n            <!-- Team Member 5 -->\n            <div class=\"tm-team-card\">\n                <div class=\"tm-card-image\">\n                    <img decoding=\"async\" src=\"https:\/\/pengasih.asia\/biz\/wp-content\/uploads\/2025\/11\/Razman-Rahmat.png\" alt=\"Mohd Razman Rahmat\">\n                <\/div>\n                <div class=\"tm-card-content\">\n                    <h3>Mohd Razman Rahmat<\/h3>\n                    <p>In-House Trainer<\/p>\n                    <button class=\"tm-details-btn\" onclick=\"tmOpenPopup(4)\">\n                        <i class=\"fas fa-info-circle\"><\/i> Details\n                    <\/button>\n                <\/div>\n            <\/div>\n            \n            <!-- Team Member 6 -->\n            <div class=\"tm-team-card\">\n                <div class=\"tm-card-image\">\n                    <img decoding=\"async\" src=\"https:\/\/pengasih.asia\/biz\/wp-content\/uploads\/2025\/11\/Firdaus-Zakaria.png\" alt=\"Firdaus Zakaria\">\n                <\/div>\n                <div class=\"tm-card-content\">\n                    <h3>Firdaus Zakaria<\/h3>\n                    <p>Guest Trainer<\/p>\n                    <button class=\"tm-details-btn\" onclick=\"tmOpenPopup(5)\">\n                        <i class=\"fas fa-info-circle\"><\/i> Details\n                    <\/button>\n                <\/div>\n            <\/div>\n            \n            <!-- Team Member 7 -->\n            <div class=\"tm-team-card\">\n                <div class=\"tm-card-image\">\n                    <img decoding=\"async\" src=\"https:\/\/pengasih.asia\/biz\/wp-content\/uploads\/2025\/11\/Untitled-design3.png\" alt=\"Mohamad Fairus Shidi\">\n                <\/div>\n                <div class=\"tm-card-content\">\n                    <h3>Mohamad Fairus Shidi<\/h3>\n                    <p>Guest Trainer<\/p>\n                    <button class=\"tm-details-btn\" onclick=\"tmOpenPopup(6)\">\n                        <i class=\"fas fa-info-circle\"><\/i> Details\n                    <\/button>\n                <\/div>\n            <\/div>\n            \n            <!-- Team Member 8 -->\n            <div class=\"tm-team-card\">\n                <div class=\"tm-card-image\">\n                    <img decoding=\"async\" src=\"https:\/\/pengasih.asia\/biz\/wp-content\/uploads\/2025\/11\/Julie.png\" alt=\"Julie Marlina Hassan\">\n                <\/div>\n                <div class=\"tm-card-content\">\n                    <h3>Julie Marlina Hassan<\/h3>\n                    <p>Guest Trainer<\/p>\n                    <button class=\"tm-details-btn\" onclick=\"tmOpenPopup(7)\">\n                        <i class=\"fas fa-info-circle\"><\/i> Details\n                    <\/button>\n                <\/div>\n            <\/div>\n            \n            <!-- Team Member 9 -->\n            <div class=\"tm-team-card\">\n                <div class=\"tm-card-image\">\n                    <img decoding=\"async\" src=\"https:\/\/pengasih.asia\/biz\/wp-content\/uploads\/2025\/11\/azlann.jpeg\">\n                <\/div>\n                <div class=\"tm-card-content\">\n                    <h3>Noor Azlan Iskandar Mohd Taha<\/h3>\n                    <p>Guest Trainer<\/p>\n                    <button class=\"tm-details-btn\" onclick=\"tmOpenPopup(8)\">\n                        <i class=\"fas fa-info-circle\"><\/i> Details\n                    <\/button>\n                <\/div>\n            <\/div>\n            \n            <!-- Team Member 9 -->\n            <div class=\"tm-team-card\">\n                <div class=\"tm-card-image\">\n                    <img decoding=\"async\" src=\"https:\/\/pengasih.asia\/biz\/wp-content\/uploads\/2025\/11\/Untitled-design5.png\">\n                <\/div>\n                <div class=\"tm-card-content\">\n                    <h3>Radzman Basinon<\/h3>\n                    <p>Guest Trainer<\/p>\n                    <button class=\"tm-details-btn\" onclick=\"tmOpenPopup(9)\">\n                        <i class=\"fas fa-info-circle\"><\/i> Details\n                    <\/button>\n                <\/div>\n            <\/div>\n            \n            <!-- Team Member 9 -->\n            <div class=\"tm-team-card\">\n                <div class=\"tm-card-image\">\n                    <img decoding=\"async\" src=\"https:\/\/pengasih.asia\/biz\/wp-content\/uploads\/2025\/11\/Untitled-design6.png\">\n                <\/div>\n                <div class=\"tm-card-content\">\n                    <h3>Nurul Nisha Mohd Shah<\/h3>\n                    <p>Guest Trainer<\/p>\n                    <button class=\"tm-details-btn\" onclick=\"tmOpenPopup(10)\">\n                        <i class=\"fas fa-info-circle\"><\/i> Details\n                    <\/button>\n                <\/div>\n            <\/div>\n            \n            <!-- Anda boleh tambah lebih banyak ahli di sini -->\n            \n        <\/div>\n    <\/div>\n    \n    <!-- Popup Overlay -->\n    <div class=\"tm-popup-overlay\" id=\"tmPopupOverlay\">\n        <button class=\"tm-close-btn\" onclick=\"tmClosePopup()\">\n            <i class=\"fas fa-times\"><\/i>\n        <\/button>\n        <div class=\"tm-popup-content\">\n            <div class=\"tm-popup-image\">\n                <img decoding=\"async\" id=\"tmPopupImg\" src=\"\" alt=\"\">\n            <\/div>\n            <div class=\"tm-popup-details\">\n                <h2 id=\"tmPopupName\"><\/h2>\n                <p class=\"tm-position\" id=\"tmPopupPosition\"><\/p>\n                <p class=\"tm-description\" id=\"tmPopupDescription\"><\/p>\n                \n                <div class=\"tm-skills\">\n                    <div class=\"tm-skill-tags\" id=\"tmPopupSkills\"><\/div>\n                <\/div>\n                \n                <div class=\"tm-contact-info\">\n                    <!-- Maklumat hubungan boleh ditambah di sini -->\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n\n    <script>\n        \/\/ Team member data\n        const tmTeamMembers = [\n            {\n                name: \"Hafizi Bin Harun\",\n                position: \"In-House Trainer\",\n                image: \"https:\/\/pengasih.asia\/biz\/wp-content\/uploads\/2025\/11\/hafizi.png\",\n                description: \"Hafizi Harun is a Master Trainer and Board Certified Counselor with over 28 years of extensive experience, specializing in addiction rehabilitation, mental health, and behavioral change management. His expertise is rooted in a Master's degree in Counselling Psychology, and he is a Registered Counsellor with the Malaysian Board of Counsellors, an International Certified Addiction Professional (ICAP I), and a Certified Substance Abuse Therapist (CSAT III). As a Global Master Trainer for the Colombo Plan Drug Advisory Programme, he has designed and delivered training internationally for various government bodies and organizations, including the Oman Ministry of Health and the Anti-Narcotics Force of Pakistan, bridging professional therapeutic knowledge with practical rehabilitation strategies.\",\n                skills: []\n            },\n            {\n                name: \"Noor Kasmara Sokarnor\",\n                position: \"In-House Trainer\",\n                image: \"https:\/\/pengasih.asia\/biz\/wp-content\/uploads\/2025\/06\/kas-scaled-e1750319835177.jpg\",\n                description: \"Noor Kasmara Sokarnor is an HRDCorp-accredited trainer and an experienced public speaking and presentation speaker with a diverse skill set spanning event organizing, team building, scriptwriting, acting, stage directing, and multimedia production. He holds a degree in Teaching English as a Second Language (TESL) from Universiti Putra Malaysia and served as an English lecturer for 19 years before retiring early in 2022. With a strong background in theatre, he has directed and acted in award-winning stage performances and has been actively involved in cultural research and creative writing, including editing published books and having his poetry featured in local media. Currently, he serves as the Chief Executive Officer of Pengasih Asia Sdn. Bhd. and manages his own companies in event services and marketing.\",\n                skills: []\n            },\n            {\n                name: \"Haji Roslan Yahya\",\n                position: \"In-House Trainer\",\n                image: \"https:\/\/pengasih.asia\/biz\/wp-content\/uploads\/2025\/11\/Roslan-Yahya.png\",\n                description: \"Haji Roslan Yahya is an HRDF Certified Trainer and Coach with 25 years of extensive experience in drug prevention, rehabilitation, and treatment. A Certified Substance Abuse Therapist from the Asia Pacific Certification Board in Singapore, he has conducted life skills workshops and consulting sessions both locally and internationally, including in Indonesia, Brunei, Pakistan, Maldives, and Oman. He has also presented at international conferences across Asia and previously served as the Secretary of the Asian Federation of Therapeutic Communities. Roslan specializes in individual, group, and family counseling, self-empowerment training, recovery coaching, and training consultancy.\",\n                skills: []\n            },\n            {\n                name: \"Sattish Ram A\/L Subramaniam\",\n                position: \"In-House Trainer\",\n                image: \"https:\/\/pengasih.asia\/biz\/wp-content\/uploads\/2025\/11\/Sattish-Ram.png\",\n                description: \"Sattish Ram Subramaniam is an HRDC-accredited trainer and Certified Recovery Coach with over 10 years of dedicated experience in addiction recovery, mental health, and behavioral change coaching. Leveraging a unique background that includes a decade in plantation management as a Senior Executive, he specializes in delivering impactful training on essential life skills, substance use recovery, and soft skills development for institutionalized individuals and corporate clients. Fluent in multiple languages including English, Bahasa Malaysia, and Tamil, Sattish has collaborated with organizations such as the Malaysian Prison Department, Ministry of Health, and the After Care Support Association in Brunei, empowering diverse audiences through compassionate and structured coaching approaches.\",\n                skills: []\n            },\n            {\n                name: \"Mohd Razman Rahmat\",\n                position: \"In-House Trainer\",\n                image: \"https:\/\/pengasih.asia\/biz\/wp-content\/uploads\/2025\/11\/Razman-Rahmat.png\",\n                description: \"Razman is a highly accomplished trainer, facilitator, and therapist with over 14 years of experience in addiction recovery, occupational safety and health (OSH), and organizational management. Beginning his career in maintenance and quality inspection roles, he transitioned to addiction therapy in 2010 with PENGASIH Malaysia, where he has since held key leadership positions including Assistant Director, OSH Coordinator, and Assistant Secretary-General. A Dean\u2019s Award recipient with a Diploma in OSH from UTM, Razman is also a certified Occupational Psychological First Aider and Mental Health First Aider. He has collaborated with various prominent organizations such as the Malaysian Department of Prisons, the Ministry of Health, and Indah Water Konsortium, delivering impactful training and facilitation sessions across multiple sectors.\",\n                skills: []\n            },\n            {\n                name: \"Firdaus Zakaria\",\n                position: \"Guest Trainer\",\n                image: \"https:\/\/pengasih.asia\/biz\/wp-content\/uploads\/2025\/11\/Firdaus-Zakaria.png\",\n                description: \"Budi Firdaus is an HRDCorp-accredited trainer and Professional Learning Facilitator with extensive experience in human resource development, talent management, and organizational culture transformation. Holding a Bachelor's degree in Islamic Political Science from the University of Malaya and certified as an NLP Coach and Culture Transformation Practitioner, he has conducted over 1,000 training hours since 2019. His expertise includes team building, motivational speaking, supervisory programs, effective communication, and people development, making him a versatile facilitator dedicated to empowering individuals and transforming workplace culture.\",\n                skills: []\n            },\n            {\n                name: \"Mohamad Fairus Shidi\",\n                position: \"Guest Trainer\",\n                image: \"https:\/\/pengasih.asia\/biz\/wp-content\/uploads\/2025\/11\/Untitled-design3.png\",\n                description: \"Haji Mohamad Fairus Bin Shidi is an internationally qualified trainer and Director of Talent Development with over 30 years of experience in human capital development. Holding an LL.B (Hons) from the University of Nottingham, he is an HRD Corp Accredited Trainer, Certified Training Professional (ASTD & CIPD), and Certified Coach (ICF). Specializing in sales, leadership, customer service, and strategic planning, he has conducted training across Malaysia, Singapore, Brunei, Oman, and other ASEAN countries for clients including Petronas, EPF, and the Ministry of Health. Known for his energetic and engaging delivery style, he has also appeared as a motivational speaker on national television and radio programs.\",\n                skills: []\n            },\n            {\n                name: \"Julie Marlina Hassan\",\n                position: \"Guest Trainer\",\n                image: \"https:\/\/pengasih.asia\/biz\/wp-content\/uploads\/2025\/11\/Julie.png\",\n                description: \"Julie Marlina Hasan is an HRD Corp Accredited Trainer and experienced learning facilitator with a strong educational foundation, holding a Master's in Guidance & Counselling and a Bachelor's in TESL from Universiti Putra Malaysia. With over 15 years of experience as a Higher Education Officer at Politeknik Port Dickson and previously Politeknik Kuching Sarawak, she specializes in team building, creative thinking, effective communication, and English language training. Her recent certifications in AI & Digital Assets (PADAC) and NLP-enhanced training approaches reflect her commitment to modern, impactful learning experiences for diverse audiences.\",\n                skills: []\n            },\n            {\n                name: \"Noor Azlan Iskandar Mohd Taha\",\n                position: \"Guest Trainer\",\n                image: \"https:\/\/pengasih.asia\/biz\/wp-content\/uploads\/2025\/11\/azlann.jpeg\",\n                description: \"Noor Azlan Iskandar Mohd Taha is an HRDC-accredited trainer with over 10 years of experience in recovery and behavioral health, specializing in communication skills, relapse prevention, documentation, client assessment, and analytical thinking. Holding a Master's in Counselling Psychology and a Bachelor's in Business Administration (Finance), he is also a Certified Recovery Coach and Malaysian Certified Addiction Recovery Specialist. His training approach focuses on empowering both professionals and clients through structured recovery education and practical skill-building in areas such as program planning, problem-solving, and financial-based decision making.\",\n                skills: []\n            },\n            {\n                name: \"Radzman Basinon\",\n                position: \"Guest Trainer\",\n                image: \"https:\/\/pengasih.asia\/biz\/wp-content\/uploads\/2025\/11\/Untitled-design5.png\",\n                description: \"Mohd Radzman Basinon is a certified Film Director (FDAM) and HRD Corp trainer with extensive expertise in creative multimedia, live streaming, and broadcast production. As the Creative Director of Sixtysix Action Academy, he specializes in Multi-Camera Production (MCP), digital illustration, and audio-visual technical training. With a diverse background spanning education, sales, and media production for major networks like RTM and Astro, he is also an appointed TVET expert and assessor for the Department of Skills Development, bringing practical industry experience directly into his training modules.\",\n                skills: []\n            },\n            {\n                name: \"Nurul Nisha Mohd Shah\",\n                position: \"Guest Trainer\",\n                image: \"https:\/\/pengasih.asia\/biz\/wp-content\/uploads\/2025\/11\/Untitled-design6.png\",\n                description: \"Nurul Nisha Mohd Shah is a highly accomplished HRD Corp-accredited trainer, lecturer, and certified coach with a Master's in Mass Communication from UiTM. Specializing in communication strategies, media literacy, leadership, and emotional intelligence, she brings over a decade of experience from her role as a lecturer at UiTM Negeri Sembilan. A prolific writer and media commentator, she is also a certified NLP Practitioner, ESQ Coach, and a respected TVET assessor for the Ministry of Human Resources, recognized with multiple national and international awards for her teaching innovations.\",\n                skills: []\n            }\n        ];\n        \n        \/\/ Open popup function\n        function tmOpenPopup(index) {\n            const member = tmTeamMembers[index];\n            document.getElementById('tmPopupImg').src = member.image;\n            document.getElementById('tmPopupName').textContent = member.name;\n            document.getElementById('tmPopupPosition').textContent = member.position;\n            document.getElementById('tmPopupDescription').textContent = member.description;\n            \n            \/\/ Clear and add skills\n            const skillsContainer = document.getElementById('tmPopupSkills');\n            skillsContainer.innerHTML = '';\n            member.skills.forEach(skill => {\n                const skillTag = document.createElement('span');\n                skillTag.className = 'tm-skill-tag';\n                skillTag.textContent = skill;\n                skillsContainer.appendChild(skillTag);\n            });\n            \n            \/\/ Show popup with animation\n            document.getElementById('tmPopupOverlay').classList.add('active');\n            document.body.style.overflow = 'hidden';\n        }\n        \n        \/\/ Close popup function\n        function tmClosePopup() {\n            document.getElementById('tmPopupOverlay').classList.remove('active');\n            document.body.style.overflow = 'auto';\n        }\n        \n        \/\/ Close popup when clicking outside content\n        document.getElementById('tmPopupOverlay').addEventListener('click', function(e) {\n            if (e.target === this) {\n                tmClosePopup();\n            }\n        });\n        \n        \/\/ Close popup with Escape key\n        document.addEventListener('keydown', function(e) {\n            if (e.key === 'Escape') {\n                tmClosePopup();\n            }\n        });\n    <\/script>\n<\/body>\n<\/html>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t            <\/div>\n        <\/div>\n                    <\/div>\n        <\/section>\n        \t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>Team We draw on our global network to assemble a team of experts. We also bring a strong interest in coaching and capability building, with an emphasis on emotional intelligence and effective stakeholder relationships. Team Member Grid with Popup Hafizi Bin Harun In-House Trainer Details Noor Kasmara Sokarnor In-House Trainer Details Haji Roslan Yahya In-House [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-28","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/pengasih.asia\/biz\/wp-json\/wp\/v2\/pages\/28","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pengasih.asia\/biz\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/pengasih.asia\/biz\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/pengasih.asia\/biz\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/pengasih.asia\/biz\/wp-json\/wp\/v2\/comments?post=28"}],"version-history":[{"count":15,"href":"https:\/\/pengasih.asia\/biz\/wp-json\/wp\/v2\/pages\/28\/revisions"}],"predecessor-version":[{"id":4744,"href":"https:\/\/pengasih.asia\/biz\/wp-json\/wp\/v2\/pages\/28\/revisions\/4744"}],"wp:attachment":[{"href":"https:\/\/pengasih.asia\/biz\/wp-json\/wp\/v2\/media?parent=28"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}