{"id":10298,"date":"2025-12-01T14:31:42","date_gmt":"2025-12-01T08:01:42","guid":{"rendered":"https:\/\/nhmyanmar.com\/?page_id=10298"},"modified":"2025-12-02T13:09:17","modified_gmt":"2025-12-02T06:39:17","slug":"components05","status":"publish","type":"page","link":"https:\/\/nhmyanmar.com\/my\/components05\/","title":{"rendered":"Components05"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"10298\" class=\"elementor elementor-10298\">\n\t\t\t\t<div class=\"elementor-element elementor-element-9932ad1 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-parent\" data-id=\"9932ad1\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-8c298d5 elementor-widget elementor-widget-html\" data-id=\"8c298d5\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<!-- Liquid Tube Button \u2014 paste into Elementor HTML widget or WP Custom HTML widget -->\r\n<div id=\"liquid-tube-wrap\" style=\"width:260px;height:96px;\">\r\n  <svg id=\"tube-svg\" viewBox=\"0 0 260 96\" preserveAspectRatio=\"none\" style=\"width:100%;height:100%;display:block;\">\r\n    <defs>\r\n      <clipPath id=\"clipCapsule\"><rect x=\"0\" y=\"0\" width=\"260\" height=\"96\" rx=\"48\" ry=\"48\"\/><\/clipPath>\r\n      <linearGradient id=\"liqGrad\" x1=\"0\" y1=\"0\" x2=\"0\" y2=\"1\">\r\n        <stop offset=\"0%\" stop-color=\"#4de6a6\"\/>\r\n        <stop offset=\"100%\" stop-color=\"#1b8b57\"\/>\r\n      <\/linearGradient>\r\n      <filter id=\"innerShadow\" x=\"-50%\" y=\"-50%\" width=\"200%\" height=\"200%\">\r\n        <feOffset dx=\"0\" dy=\"2\" result=\"off\"\/>\r\n        <feGaussianBlur in=\"off\" stdDeviation=\"3\" result=\"blur\"\/>\r\n        <feComposite in=\"blur\" in2=\"SourceAlpha\" operator=\"in\" result=\"shadow\"\/>\r\n        <feColorMatrix in=\"shadow\" type=\"matrix\" values=\"0 0 0 0 0   0 0 0 0 0   0 0 0 0 0  0 0 0 0.25 0\" result=\"shadowColor\"\/>\r\n        <feBlend in=\"SourceGraphic\" in2=\"shadowColor\" mode=\"normal\"\/>\r\n      <\/filter>\r\n    <\/defs>\r\n\r\n    <!-- tube frame -->\r\n    <rect x=\"0\" y=\"0\" width=\"260\" height=\"96\" rx=\"48\" ry=\"48\" fill=\"#08131a\" filter=\"url(#innerShadow)\"\/>\r\n    <rect x=\"0\" y=\"0\" width=\"260\" height=\"96\" rx=\"48\" ry=\"48\" fill=\"none\" stroke=\"rgba(255,255,255,0.04)\"\/>\r\n\r\n    <!-- clipped group for liquid, bubbles, foam -->\r\n    <g clip-path=\"url(#clipCapsule)\">\r\n      <path id=\"liquidPath\" fill=\"url(#liqGrad)\"><\/path>\r\n      <g id=\"foamGroup\"><\/g>\r\n      <g id=\"bubblesGroup\"><\/g>\r\n    <\/g>\r\n  <\/svg>\r\n\r\n  <div id=\"tube-label\" style=\"\r\n       position:relative;\r\n       margin-top:-96px;\r\n       height:96px;\r\n       display:flex;\r\n       align-items:center;\r\n       justify-content:center;\r\n       pointer-events:none;\r\n       font-weight:700;\r\n       color:#eafaf0;\r\n       font-family:Inter, system-ui, Arial;\r\n       \">Services<\/div>\r\n<\/div>\r\n\r\n<script>\r\n\/* Minimal stable driver: wave + foam + bubbles. Safe, no external libs. *\/\r\n(function(){\r\n  const liquidPath = document.getElementById('liquidPath');\r\n  const foamGroup = document.getElementById('foamGroup');\r\n  const bubblesGroup = document.getElementById('bubblesGroup');\r\n\r\n  const W = 260, H = 96;\r\n  const FILL = 0.55;    \/\/ 55% fill\r\n  const AMP = 5;        \/\/ wave height\r\n  const FREQ = 0.035;   \/\/ frequency\r\n  let phase = 0;\r\n\r\n  \/\/ Create foam dots pool\r\n  const MAX_FOAM = 20;\r\n  const foamDots = [];\r\n  for(let i=0;i<MAX_FOAM;i++){\r\n    const c = document.createElementNS(\"http:\/\/www.w3.org\/2000\/svg\",\"circle\");\r\n    c.setAttribute('r', 1.2 + Math.random()*1.6);\r\n    c.setAttribute('fill', '#ffffff');\r\n    c.style.opacity = 0;\r\n    foamGroup.appendChild(c);\r\n    foamDots.push(c);\r\n  }\r\n\r\n  \/\/ Create bubbles pool\r\n  const NUM_BUBBLES = 10;\r\n  const bubblePool = [];\r\n  for(let i=0;i<NUM_BUBBLES;i++){\r\n    const c = document.createElementNS(\"http:\/\/www.w3.org\/2000\/svg\",\"circle\");\r\n    const r = 1 + Math.random()*3;\r\n    c.setAttribute('r', r);\r\n    c.setAttribute('fill', 'rgba(255,255,255,0.45)');\r\n    c.style.opacity = 0;\r\n    bubblesGroup.appendChild(c);\r\n    bubblePool.push({el:c, cx: Math.random()*(W-40)+20, cy: H - (FILL*H) + Math.random()*20, r, vy:0.3+Math.random()*0.6, age: Math.random()*100, life: 80 + Math.random()*120});\r\n  }\r\n\r\n  function buildWave(p){\r\n    const yBase = H * (1 - FILL);\r\n    let d = `M0 ${H} L0 ${yBase} `;\r\n    for(let x=0;x<=W;x++){\r\n      const y = yBase + Math.sin((x*FREQ + p)) * AMP;\r\n      d += `L ${x} ${y} `;\r\n    }\r\n    d += `L ${W} ${H} Z`;\r\n    return d;\r\n  }\r\n\r\n  function findCrests(p){\r\n    const yBase = H * (1 - FILL);\r\n    const crests = [];\r\n    for(let x=2; x< W-2; x++){\r\n      const yPrev = yBase + Math.sin(((x-1)*FREQ + p)) * AMP;\r\n      const yCurr = yBase + Math.sin((x*FREQ + p)) * AMP;\r\n      const yNext = yBase + Math.sin(((x+1)*FREQ + p)) * AMP;\r\n      if((yCurr < yPrev) && (yCurr < yNext)){ \/\/ local minimum means crest up (SVG y grows downward)\r\n        const heightAbove = yBase - yCurr;\r\n        if(heightAbove > 1.5) crests.push({x, y: yCurr, amp: heightAbove});\r\n      }\r\n    }\r\n    return crests;\r\n  }\r\n\r\n  function animate(){\r\n    \/\/ update phase\r\n    phase += 0.06;\r\n\r\n    \/\/ wave path\r\n    liquidPath.setAttribute('d', buildWave(phase));\r\n\r\n    \/\/ foam: place dots at crests\r\n    const crests = findCrests(phase);\r\n    for(let i=0;i<foamDots.length;i++){\r\n      const el = foamDots[i];\r\n      if(i < crests.length){\r\n        const c = crests[i];\r\n        el.setAttribute('cx', Math.max(8, Math.min(W-8, c.x + (Math.random()-0.5)*3)));\r\n        el.setAttribute('cy', c.y - 2 + (Math.random()-0.5)*1.2);\r\n        el.style.opacity = 0.9 - Math.random()*0.35;\r\n      } else {\r\n        el.style.opacity = 0;\r\n      }\r\n    }\r\n\r\n    \/\/ bubbles: rise + recycle\r\n    bubblePool.forEach(b=>{\r\n      b.age++;\r\n      b.cy -= b.vy * (1 + 0.15 * Math.sin((phase + b.cx)*0.02));\r\n      b.cx += Math.sin((phase + b.cy)*0.01) * 0.25; \/\/ drift\r\n      const lifeRatio = b.age \/ b.life;\r\n      b.el.style.opacity = String(Math.max(0, 1 - lifeRatio));\r\n      b.el.setAttribute('cx', b.cx);\r\n      b.el.setAttribute('cy', b.cy);\r\n      if(b.age > b.life || b.cy < H*(1-FILL)+4){\r\n        b.age = 0;\r\n        b.life = 80 + Math.random()*120;\r\n        b.cx = Math.random()*(W-40)+20;\r\n        b.cy = H - 6;\r\n        b.vy = 0.3 + Math.random()*0.6;\r\n      }\r\n    });\r\n\r\n    requestAnimationFrame(animate);\r\n  }\r\n\r\n  \/\/ start\r\n  animate();\r\n\r\n})();\r\n<\/script>\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","protected":false},"excerpt":{"rendered":"<p>\u101d\u1014\u103a\u1006\u1031\u102c\u1004\u103a\u1019\u103e\u102f\u1019\u103b\u102c\u1038<\/p>","protected":false},"author":2,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_uag_custom_page_level_css":"","site-sidebar-layout":"no-sidebar","site-content-layout":"","ast-site-content-layout":"full-width-container","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"disabled","footer-sml-layout":"","ast-disable-related-posts":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"class_list":["post-10298","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Components05 - NongHyup Finance Myanmar<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/nhmyanmar.com\/my\/components05\/\" \/>\n<meta property=\"og:locale\" content=\"my_MM\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Components05 - NongHyup Finance Myanmar\" \/>\n<meta property=\"og:description\" content=\"Services\" \/>\n<meta property=\"og:url\" content=\"https:\/\/nhmyanmar.com\/my\/components05\/\" \/>\n<meta property=\"og:site_name\" content=\"NongHyup Finance Myanmar\" \/>\n<meta property=\"article:modified_time\" content=\"2025-12-02T06:39:17+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/nhmyanmar.com\\\/components05\\\/\",\"url\":\"https:\\\/\\\/nhmyanmar.com\\\/components05\\\/\",\"name\":\"Components05 - NongHyup Finance Myanmar\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/nhmyanmar.com\\\/#website\"},\"datePublished\":\"2025-12-01T08:01:42+00:00\",\"dateModified\":\"2025-12-02T06:39:17+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/nhmyanmar.com\\\/components05\\\/#breadcrumb\"},\"inLanguage\":\"my-MM\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/nhmyanmar.com\\\/components05\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/nhmyanmar.com\\\/components05\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/nhmyanmar.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Components05\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/nhmyanmar.com\\\/#website\",\"url\":\"https:\\\/\\\/nhmyanmar.com\\\/\",\"name\":\"NongHyup Finance Myanmar\",\"description\":\"With You through Every Financial Moment\",\"publisher\":{\"@id\":\"https:\\\/\\\/nhmyanmar.com\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/nhmyanmar.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"my-MM\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/nhmyanmar.com\\\/#organization\",\"name\":\"NongHyup Finance Myanmar\",\"url\":\"https:\\\/\\\/nhmyanmar.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"my-MM\",\"@id\":\"https:\\\/\\\/nhmyanmar.com\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/nhmyanmar.com\\\/wp-content\\\/uploads\\\/2025\\\/09\\\/cyber_symbol-2-e1757745949154.gif\",\"contentUrl\":\"https:\\\/\\\/nhmyanmar.com\\\/wp-content\\\/uploads\\\/2025\\\/09\\\/cyber_symbol-2-e1757745949154.gif\",\"width\":512,\"height\":365,\"caption\":\"NongHyup Finance Myanmar\"},\"image\":{\"@id\":\"https:\\\/\\\/nhmyanmar.com\\\/#\\\/schema\\\/logo\\\/image\\\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Components05 - NongHyup Finance Myanmar","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/nhmyanmar.com\/my\/components05\/","og_locale":"my_MM","og_type":"article","og_title":"Components05 - NongHyup Finance Myanmar","og_description":"Services","og_url":"https:\/\/nhmyanmar.com\/my\/components05\/","og_site_name":"NongHyup Finance Myanmar","article_modified_time":"2025-12-02T06:39:17+00:00","twitter_card":"summary_large_image","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/nhmyanmar.com\/components05\/","url":"https:\/\/nhmyanmar.com\/components05\/","name":"Components05 - NongHyup Finance Myanmar","isPartOf":{"@id":"https:\/\/nhmyanmar.com\/#website"},"datePublished":"2025-12-01T08:01:42+00:00","dateModified":"2025-12-02T06:39:17+00:00","breadcrumb":{"@id":"https:\/\/nhmyanmar.com\/components05\/#breadcrumb"},"inLanguage":"my-MM","potentialAction":[{"@type":"ReadAction","target":["https:\/\/nhmyanmar.com\/components05\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/nhmyanmar.com\/components05\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/nhmyanmar.com\/"},{"@type":"ListItem","position":2,"name":"Components05"}]},{"@type":"WebSite","@id":"https:\/\/nhmyanmar.com\/#website","url":"https:\/\/nhmyanmar.com\/","name":"\u1014\u102f\u1014\u103a\u1038\u101a\u1031\u102c\u1037\u1016\u103a\u1001\u103b\u1031\u1038\u1004\u103d\u1031\u101c\u102f\u1015\u103a\u1004\u1014\u103a\u1038","description":"\u1001\u103b\u1031\u1038\u1004\u103d\u1031\u1000\u102d\u1005\u1039\u1005\u1019\u103b\u102c\u1038 \u1021\u102c\u1038\u1011\u102c\u1038\u101b\u102c","publisher":{"@id":"https:\/\/nhmyanmar.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/nhmyanmar.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"my-MM"},{"@type":"Organization","@id":"https:\/\/nhmyanmar.com\/#organization","name":"\u1014\u102f\u1014\u103a\u1038\u101a\u1031\u102c\u1037\u1016\u103a\u1001\u103b\u1031\u1038\u1004\u103d\u1031\u101c\u102f\u1015\u103a\u1004\u1014\u103a\u1038","url":"https:\/\/nhmyanmar.com\/","logo":{"@type":"ImageObject","inLanguage":"my-MM","@id":"https:\/\/nhmyanmar.com\/#\/schema\/logo\/image\/","url":"https:\/\/nhmyanmar.com\/wp-content\/uploads\/2025\/09\/cyber_symbol-2-e1757745949154.gif","contentUrl":"https:\/\/nhmyanmar.com\/wp-content\/uploads\/2025\/09\/cyber_symbol-2-e1757745949154.gif","width":512,"height":365,"caption":"NongHyup Finance Myanmar"},"image":{"@id":"https:\/\/nhmyanmar.com\/#\/schema\/logo\/image\/"}}]}},"uagb_featured_image_src":{"full":false,"thumbnail":false,"medium":false,"medium_large":false,"large":false,"1536x1536":false,"2048x2048":false,"trp-custom-language-flag":false},"uagb_author_info":{"display_name":"nhmyanmar","author_link":"https:\/\/nhmyanmar.com\/my\/author\/nhmyanmar\/"},"uagb_comment_info":0,"uagb_excerpt":"Services","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/nhmyanmar.com\/my\/wp-json\/wp\/v2\/pages\/10298","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/nhmyanmar.com\/my\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/nhmyanmar.com\/my\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/nhmyanmar.com\/my\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/nhmyanmar.com\/my\/wp-json\/wp\/v2\/comments?post=10298"}],"version-history":[{"count":17,"href":"https:\/\/nhmyanmar.com\/my\/wp-json\/wp\/v2\/pages\/10298\/revisions"}],"predecessor-version":[{"id":10349,"href":"https:\/\/nhmyanmar.com\/my\/wp-json\/wp\/v2\/pages\/10298\/revisions\/10349"}],"wp:attachment":[{"href":"https:\/\/nhmyanmar.com\/my\/wp-json\/wp\/v2\/media?parent=10298"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}