{"id":8,"date":"2020-06-20T19:19:19","date_gmt":"2020-06-20T19:19:19","guid":{"rendered":"https:\/\/democontent.codex-themes.com\/sites-elementor\/fullscreen-vertical-slider-1\/?page_id=8"},"modified":"2024-11-21T06:46:44","modified_gmt":"2024-11-21T06:46:44","slug":"homepage","status":"publish","type":"page","link":"https:\/\/lightsandlove.com.my\/","title":{"rendered":"Homepage (Demo)"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"8\" class=\"elementor elementor-8\">\n\t\t\t\t\t\t<section data-header-colors=\"default\" data-dots-colors=\"default\" class=\"elementor-section elementor-top-section elementor-element elementor-element-40602b3 elementor-section-height-min-height elementor-section-items-stretch elementor-section-content-middle elementor-section-stretched elementor-section-full_width elementor-section-height-default\" data-id=\"40602b3\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;stretch_section&quot;:&quot;section-stretched&quot;}\">\r\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-thegem\"><div class=\"elementor-row\">\r\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-d0c9b33\" data-id=\"d0c9b33\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-253aa73 flex-horizontal-align-default flex-horizontal-align-tablet-default flex-horizontal-align-mobile-default flex-vertical-align-default flex-vertical-align-tablet-default flex-vertical-align-mobile-default elementor-widget elementor-widget-html\" data-id=\"253aa73\" 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<div class=\"animation-wrapper\">\n    <canvas id=\"animation-visual-canvas\"><\/canvas>\n<\/div>\n    \n<style>\n\n        .animation-wrapper {\n            width: 100%;\n            height: 1000px;\n    position: absolute;\n    top: 0;\n    overflow: hidden;\n    z-index: 1;\n        }\n        .animation-wrapper canvas {\n            width: 100%;\n            height: 100%;\n            position: absolute;\n            left: 0;\n            top: 0;\n            opacity: 1;\n    z-index: 1;\n        }\n    <\/style>\n\n    <script type=\"text\/javascript\" src=\" https:\/\/codex-themes.com\/thegem\/wp-content\/plugins\/thegem-custom-options\/js\/TweenLite.min.js\"><\/script>\n    <script type=\"text\/javascript\" src=\"https:\/\/codex-themes.com\/thegem\/wp-content\/plugins\/thegem-custom-options\/js\/EasePack.min.js\"><\/script>\n\n<script type=\"text\/javascript\">\n    (function() {\n        var lastTime = 0;\n        var vendors = ['ms', 'moz', 'webkit', 'o'];\n        for (var x = 0; x < vendors.length && !window.requestAnimationFrame; ++x) {\n            window.requestAnimationFrame = window[vendors[x]+'RequestAnimationFrame'];\n            window.cancelAnimationFrame = window[vendors[x]+'CancelAnimationFrame'] || window[vendors[x]+'CancelRequestAnimationFrame'];\n        }\n\n        if (!window.requestAnimationFrame)\n            window.requestAnimationFrame = function(callback, element) {\n                var currTime = new Date().getTime();\n                var timeToCall = Math.max(0, 16 - (currTime - lastTime));\n                var id = window.setTimeout(function() { callback(currTime + timeToCall); },\n                    timeToCall);\n                    lastTime = currTime + timeToCall;\n                return id;\n            };\n\n            if (!window.cancelAnimationFrame)\n                window.cancelAnimationFrame = function(id) {\n                    clearTimeout(id);\n                };\n    }());\n\n    (function() {\n        var canvas,\n            contentWidth,\n            contentHeight,\n            ctx,\n            points = [],\n            target;\n\n        function initVisualAnimation() {\n            canvas = document.getElementById(\"animation-visual-canvas\");\n\n            resize();\n\n            ctx = canvas.getContext('2d');\n\n            target = {\n                x: contentWidth \/ 2,\n                y: contentHeight \/ 2\n            };\n\n            \/\/ create points\n            for (var x = 0; x < contentWidth; x = x + contentWidth \/ 20) {\n                for (var y = 0; y < contentHeight; y = y + contentHeight \/ 20) {\n                    var px = x + Math.random() * contentWidth \/ 20;\n                    var py = y + Math.random() * contentHeight \/ 20;\n                    points.push({\n                        x: px,\n                        originX: px,\n                        y: py,\n                        originY: py\n                    });\n                }\n            }\n\n            \/\/ for each point find the 5 closest points\n            for (var i = 0; i < points.length; i++) {\n                var closest = [];\n                var p1 = points[i];\n                for (var j = 0; j < points.length; j++) {\n                    var p2 = points[j];\n                    if (p1 != p2) {\n                        var placed = false;\n                        for (var k = 0; k < 5; k++) {\n                            if (!placed) {\n                                if (closest[k] == undefined) {\n                                    closest[k] = p2;\n                                    placed = true;\n                                }\n                            }\n                        }\n\n                        for (var k = 0; k < 5; k++) {\n                            if (!placed) {\n                                if (getDistance(p1, p2) < getDistance(p1, closest[k])) {\n                                    closest[k] = p2;\n                                    placed = true;\n                                }\n                            }\n                        }\n                    }\n                }\n                p1.closest = closest;\n            }\n\n            \/\/ assign a circle to each point\n            for (var i in points) {\n                points[i].circle = new Circle(points[i], 2 + Math.random() * 2, 'rgba(255, 255, 255, 0.3)');\n            }\n\n            addListeners();\n\n            animate();\n            for (var i in points) {\n                shiftPoint(points[i]);\n            }\n        }\n\n        function addListeners() {\n            if( !('ontouchstart' in window)) {\n                window.addEventListener('mousemove', mouseMove);\n            }\n\n            window.addEventListener('resize', resize);\n        }\n\n        function mouseMove(e) {\n            var posx = posy = 0;\n            var offset_top = getElementPosition(canvas).top;\n\n            if (e.pageX || e.pageY) {\n                posx = e.pageX;\n                posy = e.pageY;\n            } else if (e.clientX || e.clientY)    {\n                posx = e.clientX + document.body.scrollLeft + document.documentElement.scrollLeft;\n                posy = e.clientY + document.body.scrollTop + document.documentElement.scrollTop;\n            }\n\n            target.x = posx;\n            target.y = posy - offset_top;\n        }\n\n        function getElementPosition(elem) {\n            var w = elem.offsetWidth,\n                h = elem.offsetHeight,\n                l = 0,\n                t = 0;\n\n            while (elem) {\n                l += elem.offsetLeft;\n                t += elem.offsetTop;\n                elem = elem.offsetParent;\n            }\n\n            return {\n                left: l,\n                top: t,\n                width: w,\n                height: h\n            };\n        }\n\n        function resize() {\n            \/\/ parent node size\n            contentWidth = canvas.parentNode.offsetWidth;\n            contentHeight = canvas.parentNode.offsetHeight;\n\n            \/\/ set canvas size equal size of parent node\n            canvas.width = contentWidth;\n            canvas.height = contentHeight;\n        }\n\n        function getDistance(p1, p2) {\n            return Math.pow(p1.x - p2.x, 2) + Math.pow(p1.y - p2.y, 2);\n        }\n\n        function Circle(pos, rad, color) {\n            var _this = this;\n\n            (function() {\n                _this.pos = pos || null;\n                _this.radius = rad || null;\n                _this.color = color || null;\n            })();\n\n            this.draw = function() {\n                if (!_this.active) return;\n                ctx.beginPath();\n                ctx.arc(_this.pos.x, _this.pos.y, _this.radius, 0, 2 * Math.PI, false);\n                ctx.fillStyle = 'rgba(255, 255, 255, ' + _this.active + ')';\n                ctx.fill();\n            };\n        }\n\n        function animate() {\n            ctx.clearRect(0, 0, contentWidth, contentHeight);\n\n            for (var i in points) {\n                \/\/ detect points in range\n                if (Math.abs(getDistance(target, points[i])) < 4000) {\n                    points[i].active = 0.3;\n                    points[i].circle.active = 0.6;\n                } else if (Math.abs(getDistance(target, points[i])) < 20000) {\n                    points[i].active = 0.1;\n                    points[i].circle.active = 0.3;\n                } else if (Math.abs(getDistance(target, points[i])) < 40000) {\n                    points[i].active = 0.02;\n                    points[i].circle.active = 0.1;\n                } else {\n                    points[i].active = 0;\n                    points[i].circle.active = 0;\n                }\n\n                drawLines(points[i]);\n                points[i].circle.draw();\n            }\n\n            requestAnimationFrame(animate);\n        }\n\n        function drawLines(p) {\n            if (!p.active) {\n                return;\n            }\n\n            for (var i in p.closest) {\n                ctx.beginPath();\n                ctx.moveTo(p.x, p.y);\n                ctx.lineTo(p.closest[i].x, p.closest[i].y);\n                ctx.strokeStyle = 'rgba(255, 255, 255, ' + p.active + ')';\n                ctx.stroke();\n            }\n        }\n\n        function shiftPoint(p) {\n            TweenLite.to(\n                p,\n                1 + 1 * Math.random(),\n                {\n                    x: p.originX - 50 + Math.random() * 100,\n                    y: p.originY - 50 + Math.random() * 100,\n                    ease:Circ.easeInOut,\n                    onComplete: function() {\n                        shiftPoint(p);\n                    }\n                }\n            );\n        }\n\n        window.onload = initVisualAnimation;\n    })();\n<\/script>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-1af66da flex-horizontal-align-default flex-horizontal-align-tablet-default flex-horizontal-align-mobile-default flex-vertical-align-default flex-vertical-align-tablet-default flex-vertical-align-mobile-default elementor-widget elementor-widget-slider_revolution\" data-id=\"1af66da\" data-element_type=\"widget\" data-widget_type=\"slider_revolution.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\n\t\t<div class=\"wp-block-themepunch-revslider\">\n\t\t\t<!-- START Vertical Slider REVOLUTION SLIDER 6.7.29 --><p class=\"rs-p-wp-fix\"><\/p>\n\t\t\t<rs-module-wrap id=\"rev_slider_1_1_wrapper\" data-source=\"gallery\" style=\"visibility:hidden;background:transparent;padding:0;\">\n\t\t\t\t<rs-module id=\"rev_slider_1_1\" style=\"\" data-version=\"6.7.29\">\n\t\t\t\t\t<rs-slides style=\"overflow: hidden; position: absolute;\">\n\t\t\t\t\t\t<rs-slide style=\"position: absolute;\" data-key=\"rs-1\" data-title=\"Slide\" data-anim=\"ms:600;\" data-in=\"o:0;\" data-out=\"a:false;\">\n\t\t\t\t\t\t\t<img fetchpriority=\"high\" src=\"\/\/lightsandlove.com.my\/wp-content\/uploads\/2020\/06\/Image1.jpg\" alt=\"\" title=\"21-4 (Demo)\" width=\"961\" height=\"1081\" class=\"rev-slidebg tp-rs-img\" data-no-retina>\n\t\t\t\t\t\t\t<rs-bgvideo \n\t\t\t\t\t\t\t\tdata-video=\"w:100%;h:100%;nse:false;l:loopandnoslidestop;ptimer:false;vfc:true;\"\n\t\t\t\t\t\t\t\tdata-mp4=\"\/\/lightsandlove.com.my\/wp-content\/uploads\/2020\/06\/Diamond-Background-02.mp4\"\n\t\t\t\t\t\t\t><\/rs-bgvideo>\n<!--\n\t\t\t\t\t\t\t--><rs-layer\n\t\t\t\t\t\t\t\tid=\"slider-1-slide-1-layer-0\" \n\t\t\t\t\t\t\t\tdata-type=\"text\"\n\t\t\t\t\t\t\t\tdata-color=\"#fff\"\n\t\t\t\t\t\t\t\tdata-rsp_ch=\"on\"\n\t\t\t\t\t\t\t\tdata-xy=\"x:430px;y:522px;\"\n\t\t\t\t\t\t\t\tdata-text=\"w:normal;s:40;l:50;fw:900;\"\n\t\t\t\t\t\t\t\tdata-dim=\"minh:0px;\"\n\t\t\t\t\t\t\t\tdata-frame_0=\"sX:0.9;sY:0.9;\"\n\t\t\t\t\t\t\t\tdata-frame_1=\"st:860;sp:1000;sR:860;\"\n\t\t\t\t\t\t\t\tdata-frame_999=\"o:0;st:w;sR:7140;\"\n\t\t\t\t\t\t\t\tstyle=\"z-index:8;font-family:'Roboto';text-transform:uppercase;\"\n\t\t\t\t\t\t\t>Every Event Matters \n\t\t\t\t\t\t\t<\/rs-layer><!--\n\n\t\t\t\t\t\t\t--><rs-layer\n\t\t\t\t\t\t\t\tid=\"slider-1-slide-1-layer-1\" \n\t\t\t\t\t\t\t\tdata-type=\"text\"\n\t\t\t\t\t\t\t\tdata-color=\"rgba(255,255,255,1)\"\n\t\t\t\t\t\t\t\tdata-rsp_ch=\"on\"\n\t\t\t\t\t\t\t\tdata-xy=\"x:100px;y:100px;\"\n\t\t\t\t\t\t\t\tdata-text=\"l:22;\"\n\t\t\t\t\t\t\t\tdata-frame_1=\"e:power2.inOut;st:500;sR:500;\"\n\t\t\t\t\t\t\t\tdata-frame_999=\"o:0;e:nothing;st:w;sR:8200;\"\n\t\t\t\t\t\t\t\tstyle=\"z-index:7;font-family:'Roboto';\"\n\t\t\t\t\t\t\t> \n\t\t\t\t\t\t\t<\/rs-layer><!--\n\n\t\t\t\t\t\t\t--><rs-layer\n\t\t\t\t\t\t\t\tid=\"slider-1-slide-1-layer-3\" \n\t\t\t\t\t\t\t\tdata-type=\"image\"\n\t\t\t\t\t\t\t\tdata-rsp_ch=\"on\"\n\t\t\t\t\t\t\t\tdata-xy=\"x:c;xo:-5px;y:c;yo:-60px;\"\n\t\t\t\t\t\t\t\tdata-text=\"l:22;\"\n\t\t\t\t\t\t\t\tdata-dim=\"w:768px;h:291px;\"\n\t\t\t\t\t\t\t\tdata-frame_1=\"e:power2.inOut;st:500;sR:500;\"\n\t\t\t\t\t\t\t\tdata-frame_999=\"o:0;e:nothing;st:w;sR:8200;\"\n\t\t\t\t\t\t\t\tstyle=\"z-index:6;\"\n\t\t\t\t\t\t\t><img src=\"\/\/lightsandlove.com.my\/wp-content\/uploads\/2024\/08\/Lights-Love-logo-White-768x291.png\" alt=\"\" class=\"tp-rs-img\" width=\"768\" height=\"291\" data-no-retina> \n\t\t\t\t\t\t\t<\/rs-layer><!--\n-->\t\t\t\t\t<\/rs-slide>\n\t\t\t\t\t<\/rs-slides>\n\t\t\t\t<\/rs-module>\n\t\t\t\t<script data-jetpack-boost=\"ignore\">\n\t\t\t\t\tsetREVStartSize({c: 'rev_slider_1_1',rl:[1240,1024,778,480],el:[868],gw:[1240],gh:[868],type:'standard',justify:'',layout:'fullscreen',offsetContainer:'',offset:'',mh:\"0\"});if (window.RS_MODULES!==undefined && window.RS_MODULES.modules!==undefined && window.RS_MODULES.modules[\"revslider11\"]!==undefined) {window.RS_MODULES.modules[\"revslider11\"].once = false;window.revapi1 = undefined;if (window.RS_MODULES.checkMinimal!==undefined) window.RS_MODULES.checkMinimal()}\n\t\t\t\t<\/script>\n\t\t\t<\/rs-module-wrap>\n\t\t\t<!-- END REVOLUTION SLIDER -->\n<\/div>\n\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div><\/div>\r\n\t\t<\/section>\r\n\t\t\t\t<section data-header-colors=\"default\" data-dots-colors=\"default\" class=\"elementor-section elementor-top-section elementor-element elementor-element-6e265e8 elementor-section-height-min-height elementor-section-items-stretch elementor-section-content-middle elementor-section-boxed elementor-section-height-default\" data-id=\"6e265e8\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\r\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-thegem\"><div class=\"elementor-row\">\r\n\t\t\t\t\t<div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-50bc384\" data-id=\"50bc384\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-4f155e5 flex-horizontal-align-default flex-horizontal-align-tablet-default flex-horizontal-align-mobile-default flex-vertical-align-default flex-vertical-align-tablet-default flex-vertical-align-mobile-default elementor-widget elementor-widget-text-editor\" data-id=\"4f155e5\" 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\t\t\t\t<div class=\"elementor-text-editor elementor-clearfix\">\r\n\t\t\t\t\t\t<div class=\"title-xlarge\"><span class=\"light\" style=\"color: #cc99ff;\">blissful.<\/span><br \/><span style=\"color: #ff99cc;\">ENCHANTING.<\/span><br \/><span style=\"color: #212331;\">MEMORABLE.<\/span><\/div>\t\t\t\t\t\t\t<\/div>\r\n\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-a19be81 elementor-widget-tablet__width-initial flex-horizontal-align-default flex-horizontal-align-tablet-default flex-horizontal-align-mobile-default flex-vertical-align-default flex-vertical-align-tablet-default flex-vertical-align-mobile-default elementor-widget elementor-widget-text-editor\" data-id=\"a19be81\" 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\t\t\t\t<div class=\"elementor-text-editor elementor-clearfix\">\r\n\t\t\t\t\t\t<p class=\"styled-subtitle\"><span style=\"color: #000000;\">Feeling stressful and drained planning your big day? Let our expert wedding planner handles every detail, ensuring your special day is seamlessly coordinated, stress-free, and perfectly tailored to your vision.<\/span><\/p>\t\t\t\t\t\t\t<\/div>\r\n\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-1cf795e flex-horizontal-align-default flex-horizontal-align-tablet-default flex-horizontal-align-mobile-default flex-vertical-align-default flex-vertical-align-tablet-default flex-vertical-align-mobile-default elementor-widget elementor-widget-thegem-styledbutton\" data-id=\"1cf795e\" data-element_type=\"widget\" data-settings=\"{&quot;thegem_button_skin&quot;:&quot;outline&quot;,&quot;add_icon&quot;:&quot;yes&quot;}\" data-widget_type=\"thegem-styledbutton.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\n<div class=\"gem-button-container gem-widget-button\">\n\n\t\t<a class=\"gem-button gem-button-size-medium gem-button-text-weight-bold gem-button-style-outline gem-button-border-3\" href=\"https:\/\/api.whatsapp.com\/send?phone=60128113263\" target=\"_blank\">\n\t\t<span class=\"gem-inner-wrapper-btn\">\n\t\t\t\t\t\t\t<span class=\"gem-button-icon\">\n\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fab-whatsapp\" viewBox=\"0 0 448 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z\"><\/path><\/svg>\t\t\t\t<\/span>\n\t\t\t\t\t\t<span class=\"gem-text-button\">\n\t\t\t\tEnquire Now\t\t\t<\/span>\n\t\t<\/span>\n\t<\/a>\n\n\t\n<\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-53c1aec elementor-hidden-tablet elementor-hidden-phone\" data-id=\"53c1aec\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap\">\n\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div><\/div>\r\n\t\t<\/section>\r\n\t\t\t\t<section data-header-colors=\"default\" data-dots-colors=\"default\" class=\"elementor-section elementor-top-section elementor-element elementor-element-172948d elementor-section-height-min-height elementor-section-items-stretch elementor-section-content-middle elementor-section-boxed elementor-section-height-default\" data-id=\"172948d\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\r\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-thegem\"><div class=\"elementor-row\">\r\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-c50be96\" data-id=\"c50be96\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<section data-header-colors=\"default\" data-dots-colors=\"default\" class=\"elementor-section elementor-inner-section elementor-element elementor-element-0b638c3 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"0b638c3\" data-element_type=\"section\">\r\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-thegem\"><div class=\"elementor-row\">\r\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-04367f4\" data-id=\"04367f4\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-1bee298 elementor-widget__width-initial flex-horizontal-align-default flex-horizontal-align-tablet-default flex-horizontal-align-mobile-default flex-vertical-align-default flex-vertical-align-tablet-default flex-vertical-align-mobile-default elementor-widget elementor-widget-text-editor\" data-id=\"1bee298\" 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\t\t\t\t<div class=\"elementor-text-editor elementor-clearfix\">\r\n\t\t\t\t\t\t<div class=\"title-h1\" style=\"text-align: right;\"><span class=\"light\" style=\"color: #000000;\">CREATIVITY MEETS MAGIC AND MEMORIES ARE MADE TO LAST A LIFETIME.<\/span><\/div>\t\t\t\t\t\t\t<\/div>\r\n\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-c99116e elementor-widget__width-initial flex-horizontal-align-default flex-horizontal-align-tablet-default flex-horizontal-align-mobile-default flex-vertical-align-default flex-vertical-align-tablet-default flex-vertical-align-mobile-default elementor-widget elementor-widget-thegem-styled-textbox\" data-id=\"c99116e\" data-element_type=\"widget\" data-settings=\"{&quot;thegem_elementor_preset&quot;:&quot;basic&quot;}\" data-widget_type=\"thegem-styled-textbox.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\n<div class=\"gem-textbox styled-textbox-basic\">\n\n\t\n\t\t<div class=\"gem-textbox-top gem-textbox-top-none default-fill\">\n\t\t\t\t\t<\/div>\n\t\n\t<div class=\"gem-textbox-inner\">\n\n\t\t<div class=\"gem-textbox-content default-background centered-box button-bottom\">\n\n\t\t\t\n\t\t\t<div class=\"gem-texbox-text-wrapper\">\n\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t<div class=\"gem-textbox-description gem-text-output\">\n\t\t\t\t\t\t\t<p class=\"styled-subtitle\" style=\"text-align: right\"><span style=\"color: #000000\">Celebrate with a memorable anniversary gala dinner that combines creative flair, magical ambiance, and exciting experiences, ensuring an unforgettable evening of elegance and joy.<\/span><\/p>\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"gem-button-container gem-widget-button\">\n\t\t\t\t\t\t\t\t\t\t\t\t<a class=\"gem-button gem-button-size-medium gem-button-text-weight-bold gem-button-style-outline\" target=\"_blank\" href=\"https:\/\/api.whatsapp.com\/send?phone=60128113263\">\n\t\t\t\t\t\t\t<span class=\"gem-inner-wrapper-btn\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"gem-button-icon\">\n\t\t\t\t\t\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fab-whatsapp\" viewBox=\"0 0 448 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z\"><\/path><\/svg>\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"gem-text-button\">\n\t\t\t\t\t\t\t\t\tENQUIRE NOW\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/a>\n\t\t\t\t\t<\/div>\n\t\t\t\t\n\t\t\t<\/div>\n\n\t\t<\/div>\n\n\t<\/div>\n\n\t\n\t\t<div class=\"gem-textbox-bottom gem-textbox-bottom-none default-fill\">\n\t\t\t\t<\/div>\n\t\n\t\n<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div><\/div>\r\n\t\t<\/section>\r\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div><\/div>\r\n\t\t<\/section>\r\n\t\t\t\t<section data-header-colors=\"default\" data-dots-colors=\"default\" class=\"elementor-section elementor-top-section elementor-element elementor-element-1c9dae3 elementor-section-full_width elementor-section-height-min-height elementor-section-items-stretch elementor-section-content-top elementor-section-height-default\" data-id=\"1c9dae3\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\r\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\"><div class=\"elementor-row\">\r\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-c0ef766\" data-id=\"c0ef766\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-aabb3df flex-horizontal-align-default flex-horizontal-align-tablet-default flex-horizontal-align-mobile-default flex-vertical-align-default flex-vertical-align-tablet-default flex-vertical-align-mobile-default elementor-widget elementor-widget-thegem-animated-heading\" data-id=\"aabb3df\" data-element_type=\"widget\" data-widget_type=\"thegem-animated-heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"thegem-heading thegem-animated-heading title-h2 thegem-heading-animate lines-slide-up\" id=\"thegem-heading-aabb3df\" data-animation-name=\"lines-slide-up\" data-animation-interval=\"80\"><span class=\"thegem-heading-word\">Why<\/span> <span class=\"thegem-heading-word\">clients<\/span> <span class=\"thegem-heading-word\">choose<\/span> <span class=\"thegem-heading-word\">us?<\/span><\/h2><style type=\"text\/css\">#thegem-heading-aabb3df {margin: 0;}#thegem-heading-aabb3df {margin-left: auto; margin-right: auto;}#thegem-heading-aabb3df > * {justify-content: center;}<\/style>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-1cb4107 elementor-widget__width-inherit flex-horizontal-align-default flex-horizontal-align-tablet-default flex-horizontal-align-mobile-default flex-vertical-align-default flex-vertical-align-tablet-default flex-vertical-align-mobile-default elementor-widget elementor-widget-thegem-quickfinders\" data-id=\"1cb4107\" data-element_type=\"widget\" data-settings=\"{&quot;thegem_elementor_preset&quot;:&quot;grid-basic-right-align&quot;}\" data-widget_type=\"thegem-quickfinders.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\n<div class=\"quickfinder row inline-row quickfinder-style-grid-basic-right-align\">\n\t\t\t<div class=\"lazy-loading  quickfinder-item inline-column col-md-4 col-sm-6 col-xs-12 no-gap\">\n\n\t\t\t\n\t\t\t\t<div class=\"quickfinder-item-inner icon-top icon-horizontal-right icon-wrapping-inline centered-box button-bottom lazy-loading-item\" data-ll-effect=\"fading\" data-ll-item-delay=\"200\"> \n\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"quickfinder-icon-container\">\n\n\t<div class=\"connector-container\">\n\t\t<span><\/span>\n\t<\/div>\n\n\t<div class=\"gem-qf-icon-image-wrapper lazy-loading-item\" data-ll-effect=\"clip\">\n\t\t\n\t\t\t<div class=\"gem-icon gem-icon-pack-fontawesome gem-icon-size-medium  gem-icon-shape-default\">\n\n\t\t\t\t\n\t\t\t\t<div class=\"icon-hover-bg fade\"><\/div>\n\n\t\t\t\t<div class=\"gem-icon-inner\">\n\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"padding-box-inner\">\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"gem-icon-half-1\">\n\t\t\t\t\t\t\t\t\t<span class=\"back-angle\">\n\t\t\t\t\t\t\t\t\t\t<i aria-hidden=\"true\" class=\"gem-mdi mdi-account-star-variant\"><\/i>\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<span class=\"gem-icon-half-2\">\n\t\t\t\t\t\t\t\t\t<span class=\"back-angle\">\n\t\t\t\t\t\t\t\t\t\t<i aria-hidden=\"true\" class=\"gem-mdi mdi-account-star-variant\"><\/i>\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\n\t\t\t<\/div>\n\n\t\t\n\t\t\t<\/div>\n\n\t<div class=\"connector-container\">\n\t\t<span><\/span>\n\t<\/div>\n\n<\/div>\n\n\t\t\t\t\t\n\t\t\t\t\t<div class=\"quickfinder-item-info-wrapper\"> \n\t\t\t\t\t\t<div class=\"quickfinder-item-info lazy-loading-item\" data-ll-effect=\"fading\" data-ll-item-delay=\"200\">\n\t\n\t\t<div class=\"quickfinder-title title-h4 bold\">\n\t\t\tMemorable\t\t<\/div>\n\t\n\t\n\t\t<div class=\"quickfinder-description gem-text-output\">\n\t\t\t<p><span style=\"color: #000000;\">We craft timeless events with lasting yet memorable celebrations. With a focus on timeless elegance and heartfelt moments, we bring your vision to life, ensuring each event is uniquely meaningful and cherished for years to come.<\/span><\/p>\t\t<\/div>\n\t\n\t<\/div>\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\n\t\t\t\t<\/div>\n\n\t\t\t\t\t<\/div>\n\t\t\t<div class=\"lazy-loading  quickfinder-item inline-column col-md-4 col-sm-6 col-xs-12 no-gap\">\n\n\t\t\t\n\t\t\t\t<div class=\"quickfinder-item-inner icon-top icon-horizontal-right icon-wrapping-inline centered-box button-bottom lazy-loading-item\" data-ll-effect=\"fading\" data-ll-item-delay=\"200\"> \n\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"quickfinder-icon-container\">\n\n\t<div class=\"connector-container\">\n\t\t<span><\/span>\n\t<\/div>\n\n\t<div class=\"gem-qf-icon-image-wrapper lazy-loading-item\" data-ll-effect=\"clip\">\n\t\t\n\t\t\t<div class=\"gem-icon gem-icon-pack-fontawesome gem-icon-size-medium  gem-icon-shape-default\">\n\n\t\t\t\t\n\t\t\t\t<div class=\"icon-hover-bg fade\"><\/div>\n\n\t\t\t\t<div class=\"gem-icon-inner\">\n\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"padding-box-inner\">\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"gem-icon-half-1\">\n\t\t\t\t\t\t\t\t\t<span class=\"back-angle\">\n\t\t\t\t\t\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-hand-holding-heart\" viewBox=\"0 0 576 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M275.3 250.5c7 7.4 18.4 7.4 25.5 0l108.9-114.2c31.6-33.2 29.8-88.2-5.6-118.8-30.8-26.7-76.7-21.9-104.9 7.7L288 36.9l-11.1-11.6C248.7-4.4 202.8-9.2 172 17.5c-35.3 30.6-37.2 85.6-5.6 118.8l108.9 114.2zm290 77.6c-11.8-10.7-30.2-10-42.6 0L430.3 402c-11.3 9.1-25.4 14-40 14H272c-8.8 0-16-7.2-16-16s7.2-16 16-16h78.3c15.9 0 30.7-10.9 33.3-26.6 3.3-20-12.1-37.4-31.6-37.4H192c-27 0-53.1 9.3-74.1 26.3L71.4 384H16c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16h356.8c14.5 0 28.6-4.9 40-14L564 377c15.2-12.1 16.4-35.3 1.3-48.9z\"><\/path><\/svg>\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<span class=\"gem-icon-half-2\">\n\t\t\t\t\t\t\t\t\t<span class=\"back-angle\">\n\t\t\t\t\t\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-hand-holding-heart\" viewBox=\"0 0 576 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M275.3 250.5c7 7.4 18.4 7.4 25.5 0l108.9-114.2c31.6-33.2 29.8-88.2-5.6-118.8-30.8-26.7-76.7-21.9-104.9 7.7L288 36.9l-11.1-11.6C248.7-4.4 202.8-9.2 172 17.5c-35.3 30.6-37.2 85.6-5.6 118.8l108.9 114.2zm290 77.6c-11.8-10.7-30.2-10-42.6 0L430.3 402c-11.3 9.1-25.4 14-40 14H272c-8.8 0-16-7.2-16-16s7.2-16 16-16h78.3c15.9 0 30.7-10.9 33.3-26.6 3.3-20-12.1-37.4-31.6-37.4H192c-27 0-53.1 9.3-74.1 26.3L71.4 384H16c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16h356.8c14.5 0 28.6-4.9 40-14L564 377c15.2-12.1 16.4-35.3 1.3-48.9z\"><\/path><\/svg>\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\n\t\t\t<\/div>\n\n\t\t\n\t\t\t<\/div>\n\n\t<div class=\"connector-container\">\n\t\t<span><\/span>\n\t<\/div>\n\n<\/div>\n\n\t\t\t\t\t\n\t\t\t\t\t<div class=\"quickfinder-item-info-wrapper\"> \n\t\t\t\t\t\t<div class=\"quickfinder-item-info lazy-loading-item\" data-ll-effect=\"fading\" data-ll-item-delay=\"200\">\n\t\n\t\t<div class=\"quickfinder-title title-h4 bold\">\n\t\t\tFulfilling\t\t<\/div>\n\t\n\t\n\t\t<div class=\"quickfinder-description gem-text-output\">\n\t\t\t<p><span style=\"color: #000000;\">We focus on creating fulfilling experiences that bring joy and happiness. With thoughtful planning and personalized touches, we turn your dreams into meaningful celebrations that leave lasting smiles.<\/span><\/p>\t\t<\/div>\n\t\n\t<\/div>\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\n\t\t\t\t<\/div>\n\n\t\t\t\t\t<\/div>\n\t\t\t<div class=\"lazy-loading  quickfinder-item inline-column col-md-4 col-sm-6 col-xs-12 no-gap\">\n\n\t\t\t\n\t\t\t\t<div class=\"quickfinder-item-inner icon-top icon-horizontal-right icon-wrapping-inline centered-box button-bottom lazy-loading-item\" data-ll-effect=\"fading\" data-ll-item-delay=\"200\"> \n\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"quickfinder-icon-container\">\n\n\t<div class=\"connector-container\">\n\t\t<span><\/span>\n\t<\/div>\n\n\t<div class=\"gem-qf-icon-image-wrapper lazy-loading-item\" data-ll-effect=\"clip\">\n\t\t\n\t\t\t<div class=\"gem-icon gem-icon-pack-fontawesome gem-icon-size-medium  gem-icon-shape-default\">\n\n\t\t\t\t\n\t\t\t\t<div class=\"icon-hover-bg fade\"><\/div>\n\n\t\t\t\t<div class=\"gem-icon-inner\">\n\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"padding-box-inner\">\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"gem-icon-half-1\">\n\t\t\t\t\t\t\t\t\t<span class=\"back-angle\">\n\t\t\t\t\t\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-lightbulb\" viewBox=\"0 0 352 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M96.06 454.35c.01 6.29 1.87 12.45 5.36 17.69l17.09 25.69a31.99 31.99 0 0 0 26.64 14.28h61.71a31.99 31.99 0 0 0 26.64-14.28l17.09-25.69a31.989 31.989 0 0 0 5.36-17.69l.04-38.35H96.01l.05 38.35zM0 176c0 44.37 16.45 84.85 43.56 115.78 16.52 18.85 42.36 58.23 52.21 91.45.04.26.07.52.11.78h160.24c.04-.26.07-.51.11-.78 9.85-33.22 35.69-72.6 52.21-91.45C335.55 260.85 352 220.37 352 176 352 78.61 272.91-.3 175.45 0 73.44.31 0 82.97 0 176zm176-80c-44.11 0-80 35.89-80 80 0 8.84-7.16 16-16 16s-16-7.16-16-16c0-61.76 50.24-112 112-112 8.84 0 16 7.16 16 16s-7.16 16-16 16z\"><\/path><\/svg>\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<span class=\"gem-icon-half-2\">\n\t\t\t\t\t\t\t\t\t<span class=\"back-angle\">\n\t\t\t\t\t\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-lightbulb\" viewBox=\"0 0 352 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M96.06 454.35c.01 6.29 1.87 12.45 5.36 17.69l17.09 25.69a31.99 31.99 0 0 0 26.64 14.28h61.71a31.99 31.99 0 0 0 26.64-14.28l17.09-25.69a31.989 31.989 0 0 0 5.36-17.69l.04-38.35H96.01l.05 38.35zM0 176c0 44.37 16.45 84.85 43.56 115.78 16.52 18.85 42.36 58.23 52.21 91.45.04.26.07.52.11.78h160.24c.04-.26.07-.51.11-.78 9.85-33.22 35.69-72.6 52.21-91.45C335.55 260.85 352 220.37 352 176 352 78.61 272.91-.3 175.45 0 73.44.31 0 82.97 0 176zm176-80c-44.11 0-80 35.89-80 80 0 8.84-7.16 16-16 16s-16-7.16-16-16c0-61.76 50.24-112 112-112 8.84 0 16 7.16 16 16s-7.16 16-16 16z\"><\/path><\/svg>\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\n\t\t\t<\/div>\n\n\t\t\n\t\t\t<\/div>\n\n\t<div class=\"connector-container\">\n\t\t<span><\/span>\n\t<\/div>\n\n<\/div>\n\n\t\t\t\t\t\n\t\t\t\t\t<div class=\"quickfinder-item-info-wrapper\"> \n\t\t\t\t\t\t<div class=\"quickfinder-item-info lazy-loading-item\" data-ll-effect=\"fading\" data-ll-item-delay=\"200\">\n\t\n\t\t<div class=\"quickfinder-title title-h4 bold\">\n\t\t\tPersonalize\t\t<\/div>\n\t\n\t\n\t\t<div class=\"quickfinder-description gem-text-output\">\n\t\t\t<p><span style=\"color: #000000;\">We specialise in adding a personal touch to every detail. By tailoring each celebration to reflect your unique personality and style, we create unforgettable experiences that feel truly one-of-a-kind<\/span><\/p>\t\t<\/div>\n\t\n\t<\/div>\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\n\t\t\t\t<\/div>\n\n\t\t\t\t\t<\/div>\n\t\t\t<div class=\"lazy-loading  quickfinder-item inline-column col-md-4 col-sm-6 col-xs-12 no-gap\">\n\n\t\t\t\n\t\t\t\t<div class=\"quickfinder-item-inner icon-top icon-horizontal-right icon-wrapping-inline centered-box button-bottom lazy-loading-item\" data-ll-effect=\"fading\" data-ll-item-delay=\"200\"> \n\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"quickfinder-icon-container\">\n\n\t<div class=\"connector-container\">\n\t\t<span><\/span>\n\t<\/div>\n\n\t<div class=\"gem-qf-icon-image-wrapper lazy-loading-item\" data-ll-effect=\"clip\">\n\t\t\n\t\t\t<div class=\"gem-icon gem-icon-pack-fontawesome gem-icon-size-medium  gem-icon-shape-default\">\n\n\t\t\t\t\n\t\t\t\t<div class=\"icon-hover-bg fade\"><\/div>\n\n\t\t\t\t<div class=\"gem-icon-inner\">\n\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"padding-box-inner\">\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"gem-icon-half-1\">\n\t\t\t\t\t\t\t\t\t<span class=\"back-angle\">\n\t\t\t\t\t\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-assistive-listening-systems\" viewBox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M216 260c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-44.112 35.888-80 80-80s80 35.888 80 80c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-13.234-10.767-24-24-24s-24 10.766-24 24zm24-176c-97.047 0-176 78.953-176 176 0 15.464 12.536 28 28 28s28-12.536 28-28c0-66.168 53.832-120 120-120s120 53.832 120 120c0 75.164-71.009 70.311-71.997 143.622L288 404c0 28.673-23.327 52-52 52-15.464 0-28 12.536-28 28s12.536 28 28 28c59.475 0 107.876-48.328 108-107.774.595-34.428 72-48.24 72-144.226 0-97.047-78.953-176-176-176zm-80 236c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zM32 448c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm480-187.993c0-1.518-.012-3.025-.045-4.531C510.076 140.525 436.157 38.47 327.994 1.511c-14.633-4.998-30.549 2.809-35.55 17.442-5 14.633 2.81 30.549 17.442 35.55 85.906 29.354 144.61 110.513 146.077 201.953l.003.188c.026 1.118.033 2.236.033 3.363 0 15.464 12.536 28 28 28s28.001-12.536 28.001-28zM152.971 439.029l-80-80L39.03 392.97l80 80 33.941-33.941z\"><\/path><\/svg>\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<span class=\"gem-icon-half-2\">\n\t\t\t\t\t\t\t\t\t<span class=\"back-angle\">\n\t\t\t\t\t\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-assistive-listening-systems\" viewBox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M216 260c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-44.112 35.888-80 80-80s80 35.888 80 80c0 15.464-12.536 28-28 28s-28-12.536-28-28c0-13.234-10.767-24-24-24s-24 10.766-24 24zm24-176c-97.047 0-176 78.953-176 176 0 15.464 12.536 28 28 28s28-12.536 28-28c0-66.168 53.832-120 120-120s120 53.832 120 120c0 75.164-71.009 70.311-71.997 143.622L288 404c0 28.673-23.327 52-52 52-15.464 0-28 12.536-28 28s12.536 28 28 28c59.475 0 107.876-48.328 108-107.774.595-34.428 72-48.24 72-144.226 0-97.047-78.953-176-176-176zm-80 236c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zM32 448c-17.673 0-32 14.327-32 32s14.327 32 32 32 32-14.327 32-32-14.327-32-32-32zm480-187.993c0-1.518-.012-3.025-.045-4.531C510.076 140.525 436.157 38.47 327.994 1.511c-14.633-4.998-30.549 2.809-35.55 17.442-5 14.633 2.81 30.549 17.442 35.55 85.906 29.354 144.61 110.513 146.077 201.953l.003.188c.026 1.118.033 2.236.033 3.363 0 15.464 12.536 28 28 28s28.001-12.536 28.001-28zM152.971 439.029l-80-80L39.03 392.97l80 80 33.941-33.941z\"><\/path><\/svg>\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\n\t\t\t<\/div>\n\n\t\t\n\t\t\t<\/div>\n\n\t<div class=\"connector-container\">\n\t\t<span><\/span>\n\t<\/div>\n\n<\/div>\n\n\t\t\t\t\t\n\t\t\t\t\t<div class=\"quickfinder-item-info-wrapper\"> \n\t\t\t\t\t\t<div class=\"quickfinder-item-info lazy-loading-item\" data-ll-effect=\"fading\" data-ll-item-delay=\"200\">\n\t\n\t\t<div class=\"quickfinder-title title-h4 bold\">\n\t\t\tActive Listening\t\t<\/div>\n\t\n\t\n\t\t<div class=\"quickfinder-description gem-text-output\">\n\t\t\t<p><span style=\"color: #000000;\">We are dedicated to actively listening and understanding your unique vision. We work closely with you to bring your ideas to life, ensuring every detail reflects your style and creates a celebration that feels authentically yours.<\/span><\/p>\t\t<\/div>\n\t\n\t<\/div>\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\n\t\t\t\t<\/div>\n\n\t\t\t\t\t<\/div>\n\t\t\t<div class=\"lazy-loading  quickfinder-item inline-column col-md-4 col-sm-6 col-xs-12 no-gap\">\n\n\t\t\t\n\t\t\t\t<div class=\"quickfinder-item-inner icon-top icon-horizontal-right icon-wrapping-inline centered-box button-bottom lazy-loading-item\" data-ll-effect=\"fading\" data-ll-item-delay=\"200\"> \n\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"quickfinder-icon-container\">\n\n\t<div class=\"connector-container\">\n\t\t<span><\/span>\n\t<\/div>\n\n\t<div class=\"gem-qf-icon-image-wrapper lazy-loading-item\" data-ll-effect=\"clip\">\n\t\t\n\t\t\t<div class=\"gem-icon gem-icon-pack-fontawesome gem-icon-size-medium  gem-icon-shape-default\">\n\n\t\t\t\t\n\t\t\t\t<div class=\"icon-hover-bg fade\"><\/div>\n\n\t\t\t\t<div class=\"gem-icon-inner\">\n\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"padding-box-inner\">\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"gem-icon-half-1\">\n\t\t\t\t\t\t\t\t\t<span class=\"back-angle\">\n\t\t\t\t\t\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-people-arrows\" viewBox=\"0 0 576 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M96,128A64,64,0,1,0,32,64,64,64,0,0,0,96,128Zm0,176.08a44.11,44.11,0,0,1,13.64-32L181.77,204c1.65-1.55,3.77-2.31,5.61-3.57A63.91,63.91,0,0,0,128,160H64A64,64,0,0,0,0,224v96a32,32,0,0,0,32,32V480a32,32,0,0,0,32,32h64a32,32,0,0,0,32-32V383.61l-50.36-47.53A44.08,44.08,0,0,1,96,304.08ZM480,128a64,64,0,1,0-64-64A64,64,0,0,0,480,128Zm32,32H448a63.91,63.91,0,0,0-59.38,40.42c1.84,1.27,4,2,5.62,3.59l72.12,68.06a44.37,44.37,0,0,1,0,64L416,383.62V480a32,32,0,0,0,32,32h64a32,32,0,0,0,32-32V352a32,32,0,0,0,32-32V224A64,64,0,0,0,512,160ZM444.4,295.34l-72.12-68.06A12,12,0,0,0,352,236v36H224V236a12,12,0,0,0-20.28-8.73L131.6,295.34a12.4,12.4,0,0,0,0,17.47l72.12,68.07A12,12,0,0,0,224,372.14V336H352v36.14a12,12,0,0,0,20.28,8.74l72.12-68.07A12.4,12.4,0,0,0,444.4,295.34Z\"><\/path><\/svg>\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<span class=\"gem-icon-half-2\">\n\t\t\t\t\t\t\t\t\t<span class=\"back-angle\">\n\t\t\t\t\t\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-people-arrows\" viewBox=\"0 0 576 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M96,128A64,64,0,1,0,32,64,64,64,0,0,0,96,128Zm0,176.08a44.11,44.11,0,0,1,13.64-32L181.77,204c1.65-1.55,3.77-2.31,5.61-3.57A63.91,63.91,0,0,0,128,160H64A64,64,0,0,0,0,224v96a32,32,0,0,0,32,32V480a32,32,0,0,0,32,32h64a32,32,0,0,0,32-32V383.61l-50.36-47.53A44.08,44.08,0,0,1,96,304.08ZM480,128a64,64,0,1,0-64-64A64,64,0,0,0,480,128Zm32,32H448a63.91,63.91,0,0,0-59.38,40.42c1.84,1.27,4,2,5.62,3.59l72.12,68.06a44.37,44.37,0,0,1,0,64L416,383.62V480a32,32,0,0,0,32,32h64a32,32,0,0,0,32-32V352a32,32,0,0,0,32-32V224A64,64,0,0,0,512,160ZM444.4,295.34l-72.12-68.06A12,12,0,0,0,352,236v36H224V236a12,12,0,0,0-20.28-8.73L131.6,295.34a12.4,12.4,0,0,0,0,17.47l72.12,68.07A12,12,0,0,0,224,372.14V336H352v36.14a12,12,0,0,0,20.28,8.74l72.12-68.07A12.4,12.4,0,0,0,444.4,295.34Z\"><\/path><\/svg>\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\n\t\t\t<\/div>\n\n\t\t\n\t\t\t<\/div>\n\n\t<div class=\"connector-container\">\n\t\t<span><\/span>\n\t<\/div>\n\n<\/div>\n\n\t\t\t\t\t\n\t\t\t\t\t<div class=\"quickfinder-item-info-wrapper\"> \n\t\t\t\t\t\t<div class=\"quickfinder-item-info lazy-loading-item\" data-ll-effect=\"fading\" data-ll-item-delay=\"200\">\n\t\n\t\t<div class=\"quickfinder-title title-h4 bold\">\n\t\t\tEmpathy\t\t<\/div>\n\t\n\t\n\t\t<div class=\"quickfinder-description gem-text-output\">\n\t\t\t<p><span style=\"color: #000000;\">We empathise with every step of your journey, from joyful milestones to occasional challenges. We provide unwavering support, ensuring you feel understood and cared for as we create a celebration that truly reflects your story.<\/span><\/p>\t\t<\/div>\n\t\n\t<\/div>\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\n\t\t\t\t<\/div>\n\n\t\t\t\t\t<\/div>\n\t\t\t<div class=\"lazy-loading  quickfinder-item inline-column col-md-4 col-sm-6 col-xs-12 no-gap\">\n\n\t\t\t\n\t\t\t\t<div class=\"quickfinder-item-inner icon-top icon-horizontal-right icon-wrapping-inline centered-box button-bottom lazy-loading-item\" data-ll-effect=\"fading\" data-ll-item-delay=\"200\"> \n\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"quickfinder-icon-container\">\n\n\t<div class=\"connector-container\">\n\t\t<span><\/span>\n\t<\/div>\n\n\t<div class=\"gem-qf-icon-image-wrapper lazy-loading-item\" data-ll-effect=\"clip\">\n\t\t\n\t\t\t<div class=\"gem-icon gem-icon-pack-fontawesome gem-icon-size-medium  gem-icon-shape-default\">\n\n\t\t\t\t\n\t\t\t\t<div class=\"icon-hover-bg fade\"><\/div>\n\n\t\t\t\t<div class=\"gem-icon-inner\">\n\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"padding-box-inner\">\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"gem-icon-half-1\">\n\t\t\t\t\t\t\t\t\t<span class=\"back-angle\">\n\t\t\t\t\t\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-handshake\" viewBox=\"0 0 640 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M434.7 64h-85.9c-8 0-15.7 3-21.6 8.4l-98.3 90c-.1.1-.2.3-.3.4-16.6 15.6-16.3 40.5-2.1 56 12.7 13.9 39.4 17.6 56.1 2.7.1-.1.3-.1.4-.2l79.9-73.2c6.5-5.9 16.7-5.5 22.6 1 6 6.5 5.5 16.6-1 22.6l-26.1 23.9L504 313.8c2.9 2.4 5.5 5 7.9 7.7V128l-54.6-54.6c-5.9-6-14.1-9.4-22.6-9.4zM544 128.2v223.9c0 17.7 14.3 32 32 32h64V128.2h-96zm48 223.9c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zM0 384h64c17.7 0 32-14.3 32-32V128.2H0V384zm48-63.9c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16c0-8.9 7.2-16 16-16zm435.9 18.6L334.6 217.5l-30 27.5c-29.7 27.1-75.2 24.5-101.7-4.4-26.9-29.4-24.8-74.9 4.4-101.7L289.1 64h-83.8c-8.5 0-16.6 3.4-22.6 9.4L128 128v223.9h18.3l90.5 81.9c27.4 22.3 67.7 18.1 90-9.3l.2-.2 17.9 15.5c15.9 13 39.4 10.5 52.3-5.4l31.4-38.6 5.4 4.4c13.7 11.1 33.9 9.1 45-4.7l9.5-11.7c11.2-13.8 9.1-33.9-4.6-45.1z\"><\/path><\/svg>\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<span class=\"gem-icon-half-2\">\n\t\t\t\t\t\t\t\t\t<span class=\"back-angle\">\n\t\t\t\t\t\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-handshake\" viewBox=\"0 0 640 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M434.7 64h-85.9c-8 0-15.7 3-21.6 8.4l-98.3 90c-.1.1-.2.3-.3.4-16.6 15.6-16.3 40.5-2.1 56 12.7 13.9 39.4 17.6 56.1 2.7.1-.1.3-.1.4-.2l79.9-73.2c6.5-5.9 16.7-5.5 22.6 1 6 6.5 5.5 16.6-1 22.6l-26.1 23.9L504 313.8c2.9 2.4 5.5 5 7.9 7.7V128l-54.6-54.6c-5.9-6-14.1-9.4-22.6-9.4zM544 128.2v223.9c0 17.7 14.3 32 32 32h64V128.2h-96zm48 223.9c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16zM0 384h64c17.7 0 32-14.3 32-32V128.2H0V384zm48-63.9c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16c0-8.9 7.2-16 16-16zm435.9 18.6L334.6 217.5l-30 27.5c-29.7 27.1-75.2 24.5-101.7-4.4-26.9-29.4-24.8-74.9 4.4-101.7L289.1 64h-83.8c-8.5 0-16.6 3.4-22.6 9.4L128 128v223.9h18.3l90.5 81.9c27.4 22.3 67.7 18.1 90-9.3l.2-.2 17.9 15.5c15.9 13 39.4 10.5 52.3-5.4l31.4-38.6 5.4 4.4c13.7 11.1 33.9 9.1 45-4.7l9.5-11.7c11.2-13.8 9.1-33.9-4.6-45.1z\"><\/path><\/svg>\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\n\t\t\t<\/div>\n\n\t\t\n\t\t\t<\/div>\n\n\t<div class=\"connector-container\">\n\t\t<span><\/span>\n\t<\/div>\n\n<\/div>\n\n\t\t\t\t\t\n\t\t\t\t\t<div class=\"quickfinder-item-info-wrapper\"> \n\t\t\t\t\t\t<div class=\"quickfinder-item-info lazy-loading-item\" data-ll-effect=\"fading\" data-ll-item-delay=\"200\">\n\t\n\t\t<div class=\"quickfinder-title title-h4 bold\">\n\t\t\tTrust &amp; Comfort\t\t<\/div>\n\t\n\t\n\t\t<div class=\"quickfinder-description gem-text-output\">\n\t\t\t<p><span style=\"color: #000000;\">With deep emotional understanding, we build a trusting, safe space and reassure you that every detail will be carefully managed, providing peace of mind throughout the entire planning process.<\/span><\/p>\t\t<\/div>\n\t\n\t<\/div>\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\n\t\t\t\t<\/div>\n\n\t\t\t\t\t<\/div>\n\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div><\/div>\r\n\t\t<\/section>\r\n\t\t<div data-header-colors=\"default\" data-dots-colors=\"default\" class=\"elementor-element elementor-element-0f9e74c thegem-e-con-layout-thegem e-flex e-con-boxed e-con e-parent\" data-id=\"0f9e74c\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;thegem_container_layout&quot;:&quot;thegem&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div data-header-colors=\"default\" data-dots-colors=\"default\" class=\"elementor-element elementor-element-9e9eb30 e-con-full thegem-e-con-layout-thegem e-flex e-con e-child\" data-id=\"9e9eb30\" data-element_type=\"container\" data-settings=\"{&quot;thegem_container_layout&quot;:&quot;thegem&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2154684 flex-horizontal-align-default flex-horizontal-align-tablet-default flex-horizontal-align-mobile-default flex-vertical-align-default flex-vertical-align-tablet-default flex-vertical-align-mobile-default elementor-widget elementor-widget-thegem-styledimage\" data-id=\"2154684\" data-element_type=\"widget\" data-settings=\"{&quot;thegem_elementor_preset&quot;:&quot;style-2&quot;,&quot;image&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/lightsandlove.com.my\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/DSC06062-scaled.jpg&quot;,&quot;id&quot;:8809,&quot;size&quot;:&quot;&quot;,&quot;alt&quot;:&quot;&quot;,&quot;source&quot;:&quot;library&quot;},&quot;image_position&quot;:&quot;left&quot;}\" data-widget_type=\"thegem-styledimage.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\n<div class=\"styled-image-wrapper\">\n\t\t\t<div class=\"gem-image gem-wrapbox gem-wrapbox-style-2 gem-wrapbox-position-left lazy-loading \">\n\t\t\t<div class=\"gem-wrapbox-inner  lazy-loading-item\"  data-ll-effect=\"move-up\">\n\t\t\t\t\t\t\t\t\t<img class=\"gem-wrapbox-element img-responsive \"\n\t\t\t\t\t\t src=\"https:\/\/lightsandlove.com.my\/wp-content\/uploads\/2024\/10\/DSC06062-683x1024.jpg\"\n\t\t\t\t\t\t alt=\"DSC06062\">\n\t\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t<\/div>\n\n\n\t\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div data-header-colors=\"default\" data-dots-colors=\"default\" class=\"elementor-element elementor-element-1497270 e-con-full thegem-e-con-layout-thegem e-flex e-con e-child\" data-id=\"1497270\" data-element_type=\"container\" data-settings=\"{&quot;thegem_container_layout&quot;:&quot;thegem&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-134e498 flex-horizontal-align-default flex-horizontal-align-tablet-default flex-horizontal-align-mobile-default flex-vertical-align-default flex-vertical-align-tablet-default flex-vertical-align-mobile-default elementor-widget elementor-widget-thegem-animated-heading\" data-id=\"134e498\" data-element_type=\"widget\" data-widget_type=\"thegem-animated-heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"thegem-heading thegem-animated-heading title-h2 thegem-heading-animate lines-slide-up\" id=\"thegem-heading-134e498\" data-animation-name=\"lines-slide-up\" data-animation-interval=\"80\"><span class=\"thegem-heading-word\">The<\/span> <span class=\"thegem-heading-word\">Founder<\/span> <span class=\"thegem-heading-word\">-<\/span> <span class=\"thegem-heading-word\">Eric<\/span> <span class=\"thegem-heading-word\">Teh<\/span><\/h2><style type=\"text\/css\">#thegem-heading-134e498 {margin: 0;}#thegem-heading-134e498 {margin-left: auto; margin-right: auto;}#thegem-heading-134e498 > * {justify-content: center;}<\/style>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-284a4d1 flex-horizontal-align-default flex-horizontal-align-tablet-default flex-horizontal-align-mobile-default flex-vertical-align-default flex-vertical-align-tablet-default flex-vertical-align-mobile-default elementor-widget elementor-widget-text-editor\" data-id=\"284a4d1\" 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\t\t\t\t<div class=\"elementor-text-editor elementor-clearfix\">\r\n\t\t\t\t\t\t<p style=\"text-align: left;\">With 20 years of experience in the event industry, Eric excels in organizing a diverse range of events, including SME gatherings, property launches, roadshows, product unveilings, concerts, carnivals, training sessions, speaking engagements, gala and anniversary dinners. After spearheading his own destination wedding, he received numerous amount of exciting feedbacks that drives him to charter Lights &amp; Love. Known for his meticulous attention to detail and creative flair, he brings a wealth of knowledge and a network of trusted vendors to ensure every event is a memorable success. His passion for creating seamless experiences has earned them a stellar reputation among clients and guests alike.<\/p>\t\t\t\t\t\t\t<\/div>\r\n\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\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div data-header-colors=\"default\" data-dots-colors=\"default\" class=\"elementor-element elementor-element-040a73e thegem-e-con-layout-thegem e-flex e-con-boxed e-con e-parent\" data-id=\"040a73e\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;thegem_container_layout&quot;:&quot;thegem&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-50ab7f8 flex-horizontal-align-default flex-horizontal-align-tablet-default flex-horizontal-align-mobile-default flex-vertical-align-default flex-vertical-align-tablet-default flex-vertical-align-mobile-default elementor-widget elementor-widget-thegem-animated-heading\" data-id=\"50ab7f8\" data-element_type=\"widget\" data-widget_type=\"thegem-animated-heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"thegem-heading thegem-animated-heading title-h2 thegem-heading-animate lines-slide-up\" id=\"thegem-heading-50ab7f8\" data-animation-name=\"lines-slide-up\" data-animation-interval=\"80\"><span class=\"thegem-heading-word\">TESTIMONIAL<\/span><\/h2><style type=\"text\/css\">#thegem-heading-50ab7f8 {margin: 0;}#thegem-heading-50ab7f8 {margin-left: auto; margin-right: auto;}#thegem-heading-50ab7f8 > * {justify-content: center;}<\/style>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-5ec5ac8 flex-horizontal-align-default flex-horizontal-align-tablet-default flex-horizontal-align-mobile-default flex-vertical-align-default flex-vertical-align-tablet-default flex-vertical-align-mobile-default elementor-widget elementor-widget-thegem-testimonials\" data-id=\"5ec5ac8\" data-element_type=\"widget\" data-settings=\"{&quot;skin_source&quot;:&quot;default&quot;,&quot;thegem_elementor_preset&quot;:&quot;style1&quot;,&quot;content_testimonials_cat&quot;:&quot;all&quot;,&quot;content_elems_name&quot;:&quot;yes&quot;,&quot;content_elems_quote&quot;:&quot;yes&quot;}\" data-widget_type=\"thegem-testimonials.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\n\t\t\t<div class=\"preloader\">\n\t\t\t\t<div class=\"preloader-spin\"><\/div>\n\t\t\t<\/div>\n\t\t\t\n\t\t\t<div class=\"style1 gem-testimonials\n\t\t\t\t\t\t\"\n\t\t\t >\n\t\t\t\n\t\t\t\t\t\t\t<style>.gem-testimonials-navigation{display: block;}<\/style>\n\t\t\t\n\t\t\t\t\n<div id=\"post-8532\" class=\"gem-testimonial-item post-8532 thegem_testimonial type-thegem_testimonial status-publish\">\n\t\t\t<div class=\"gem-testimonial-wrapper  \">\n\n\t\t\t\n\t\t\t<div class=\"gem-testimonial-content\">\n\n\t\t\t\t\t\t\t<div class=\"gem-testimonial-name title-h6\">Jemma Lim<\/div>\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t<div class=\"gem-testimonial-text\">\n\t\t\t\t\t<p>It was clear that every detail had been thoughtfully considered, the atmosphere was warm and inviting, and everything flowed so smoothly that all we had to do was enjoy the celebration. Thank you Eric for creating a seamless and memorable experience for everyone. It\u2019s not often you attend a wedding where everything feels perfect, but this one truly was. \ud83e\udd70<\/p>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t<\/div>\n\n\t<\/div>\n<div id=\"post-8533\" class=\"gem-testimonial-item post-8533 thegem_testimonial type-thegem_testimonial status-publish\">\n\t\t\t<div class=\"gem-testimonial-wrapper  \">\n\n\t\t\t\n\t\t\t<div class=\"gem-testimonial-content\">\n\n\t\t\t\t\t\t\t<div class=\"gem-testimonial-name title-h6\">Charlize Leong<\/div>\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t<div class=\"gem-testimonial-text\">\n\t\t\t\t\t<p>\u6211\u662f\u6709\u53bb\u8fc7\u7ecf\u7531Eric\u6240\u7b56\u5212\u7684\u5a5a\u793c\u73b0\u573a\u4ece\u5bbe\u5ba2\u4f4f\u5bbf\uff08\u54c7\uff0c\u8c6a\u534e\uff09\uff0c\u5a5a\u793c\u573a\u5730\uff08\u5f88\u552f\u7f8e\uff0c\u50cf\u5728\u8eab\u5728\u4e9a\u6d32\u5374\u50cf\u6211\u68a6\u60f3\u4e2d\u7684\u6b27\u6d32garden\u5a5a\u793c\u7684\u611f\u89c9\uff09\uff0c\u573a\u5730\u5e03\u7f6e\uff08\u989c\u8272\u642d\u914d\u975e\u5e38\u6d6a\u6f2b\uff0c\u770b\u7740\u65b0\u4eba\u4ea4\u6362\u6212\u6307\u7684\u73af\u9762\u50cf\u662f\u5076\u50cf\u5267\uff09\uff0c\u98df\u7269\u5b89\u6392\uff08\u4e3b\u529e\u5355\u4f4d\u6709\u8003\u8651\u5230\u6bcf\u4e00\u4e2a\u4eba\u7684\u53e3\u5473\uff0c\u6240\u4ee5\u6bcf\u4e00\u4e2a\u4eba\u4e0d\u4e00\u6837\u83dc\u5355\uff0c\u592a\u7ec6\u5fc3\u4e86\uff09\u548c\u8282\u76ee\u8868\u6f14 \uff08\u4ece\u611f\u52a8\u5230high\u8d77\u6765\uff09\uff0c\u6574\u4e2a\u6c1b\u56f4\u5f88\u611f\u4eba\uff0c\u5f88\u6696\u5fc3\u4e5f\u5f00\u5fc3\u3002<\/p>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t<\/div>\n\n\t<\/div>\n<div id=\"post-8535\" class=\"gem-testimonial-item post-8535 thegem_testimonial type-thegem_testimonial status-publish\">\n\t\t\t<div class=\"gem-testimonial-wrapper  \">\n\n\t\t\t\n\t\t\t<div class=\"gem-testimonial-content\">\n\n\t\t\t\t\t\t\t<div class=\"gem-testimonial-name title-h6\">Nick Ng<\/div>\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t<div class=\"gem-testimonial-text\">\n\t\t\t\t\t<p>I\u2019m impressed by Eric\u2019s organizational skills and attention to detail are unparalleled, making everything run smoothly from start to finish. His ability to manage every aspect with such professionalism and care is truly remarkable.<\/p>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t<\/div>\n\n\t<\/div>\n<div id=\"post-8536\" class=\"gem-testimonial-item post-8536 thegem_testimonial type-thegem_testimonial status-publish\">\n\t\t\t<div class=\"gem-testimonial-wrapper  \">\n\n\t\t\t\n\t\t\t<div class=\"gem-testimonial-content\">\n\n\t\t\t\t\t\t\t<div class=\"gem-testimonial-name title-h6\">Jas Yong<\/div>\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\t<div class=\"gem-testimonial-text\">\n\t\t\t\t\t<p>\u6211\u5f88\u559c\u6b22\u4ed6\u4eec\u7684\u670d\u52a1<br \/>\n\u5f88\u7528\u5fc3\u8ba1\u5212\u6bcf\u4e00\u4e2a\u5a5a\u793c\u7684\u7ec6\u8282<br \/>\n\u8ba9\u6211\u5728\u6211\u7ed3\u5a5a\u8fd9\u4e00\u5929\u4e0d\u9700\u8981\u64cd\u5fc3\u4efb\u4f55\u7ec6\u8282<br \/>\n\u6ca1\u6709\u540e\u6094\u9009\u62e9\u4ed6\u4eec\uff01<\/p>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t<\/div>\n\n\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"testimonials_svg\"><svg width=\"100\" height=\"50\"><path d=\"M 0,-1 Q 45,5 50,50 Q 55,5 100,-1\" \/><\/svg><\/div>\n\t\t\t\t\n\t\t\t<\/div>\n\n\t\t\t \n\n\n\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\t\t<section data-header-colors=\"default\" data-dots-colors=\"default\" class=\"elementor-section elementor-top-section elementor-element elementor-element-00019e0 elementor-section-height-min-height elementor-section-items-stretch elementor-section-content-middle elementor-section-boxed elementor-section-height-default\" data-id=\"00019e0\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\r\n\t\t\t\t\t\t\t<div class=\"elementor-background-overlay\"><\/div>\r\n\t\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-thegem\"><div class=\"elementor-row\">\r\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-aeb4f02\" data-id=\"aeb4f02\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-691ad83 flex-horizontal-align-default flex-horizontal-align-tablet-default flex-horizontal-align-mobile-default flex-vertical-align-default flex-vertical-align-tablet-default flex-vertical-align-mobile-default elementor-widget elementor-widget-thegem-animated-heading\" data-id=\"691ad83\" data-element_type=\"widget\" data-widget_type=\"thegem-animated-heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"thegem-heading thegem-animated-heading title-h2 thegem-heading-animate lines-slide-up\" id=\"thegem-heading-691ad83\" data-animation-name=\"lines-slide-up\" data-animation-interval=\"80\"><span class=\"thegem-heading-word\">CONTACT<\/span> <span class=\"thegem-heading-word\">US<\/span><\/h2><style type=\"text\/css\">#thegem-heading-691ad83 {margin: 0;}#thegem-heading-691ad83 {margin-left: auto; margin-right: auto;}#thegem-heading-691ad83 > * {justify-content: center;}<\/style>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<section data-header-colors=\"default\" data-dots-colors=\"default\" class=\"elementor-section elementor-inner-section elementor-element elementor-element-feaf413 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"feaf413\" data-element_type=\"section\">\r\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-thegem\"><div class=\"elementor-row\">\r\n\t\t\t\t\t<div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-584d9bb\" data-id=\"584d9bb\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-bc4f798 flex-horizontal-align-default flex-horizontal-align-tablet-default flex-horizontal-align-mobile-default flex-vertical-align-default flex-vertical-align-tablet-default flex-vertical-align-mobile-default elementor-widget elementor-widget-thegem-quickfinders\" data-id=\"bc4f798\" data-element_type=\"widget\" data-settings=\"{&quot;thegem_elementor_preset&quot;:&quot;grid-basic-centered&quot;}\" data-widget_type=\"thegem-quickfinders.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\n<div class=\"quickfinder row inline-row quickfinder-style-grid-basic-centered\">\n\t\t\t<div class=\"lazy-loading  quickfinder-item inline-column col-md-12 col-sm-12 col-xs-12\">\n\n\t\t\t\n\t\t\t\t<div class=\"quickfinder-item-inner icon-top icon-wrapping-none centered-box button-bottom lazy-loading-item\" data-ll-effect=\"fading\" data-ll-item-delay=\"200\"> \n\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"quickfinder-icon-container\">\n\n\t<div class=\"connector-container\">\n\t\t<span><\/span>\n\t<\/div>\n\n\t<div class=\"gem-qf-icon-image-wrapper lazy-loading-item\" data-ll-effect=\"clip\">\n\t\t\n\t\t\t<div class=\"gem-icon gem-icon-pack-fontawesome gem-icon-size-small  gem-icon-shape-square\">\n\n\t\t\t\t\n\t\t\t\t<div class=\"icon-hover-bg fade\"><\/div>\n\n\t\t\t\t<div class=\"gem-icon-inner\">\n\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"padding-box-inner\">\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"gem-icon-half-1\">\n\t\t\t\t\t\t\t\t\t<span class=\"back-angle\">\n\t\t\t\t\t\t\t\t\t\t<i aria-hidden=\"true\" class=\"gem-mdi mdi-phone\"><\/i>\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<span class=\"gem-icon-half-2\">\n\t\t\t\t\t\t\t\t\t<span class=\"back-angle\">\n\t\t\t\t\t\t\t\t\t\t<i aria-hidden=\"true\" class=\"gem-mdi mdi-phone\"><\/i>\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\n\t\t\t<\/div>\n\n\t\t\n\t\t\t<\/div>\n\n\t<div class=\"connector-container\">\n\t\t<span><\/span>\n\t<\/div>\n\n<\/div>\n\n\t\t\t\t\t\n\t\t\t\t\t<div class=\"quickfinder-item-info-wrapper\"> \n\t\t\t\t\t\t<div class=\"quickfinder-item-info lazy-loading-item\" data-ll-effect=\"fading\" data-ll-item-delay=\"200\">\n\t\n\t\t<div class=\"quickfinder-title title-h5 light\">\n\t\t\tPhones\t\t<\/div>\n\t\n\t\n\t\t<div class=\"quickfinder-description gem-text-output\">\n\t\t\t<p>+6012 &#8211; 811 3263<\/p>\t\t<\/div>\n\t\n\t<\/div>\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\n\t\t\t\t<\/div>\n\n\t\t\t\t\t<\/div>\n\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-42f8071\" data-id=\"42f8071\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-3b7a87c flex-horizontal-align-default flex-horizontal-align-tablet-default flex-horizontal-align-mobile-default flex-vertical-align-default flex-vertical-align-tablet-default flex-vertical-align-mobile-default elementor-widget elementor-widget-thegem-quickfinders\" data-id=\"3b7a87c\" data-element_type=\"widget\" data-settings=\"{&quot;thegem_elementor_preset&quot;:&quot;grid-basic-centered&quot;}\" data-widget_type=\"thegem-quickfinders.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\n<div class=\"quickfinder row inline-row quickfinder-style-grid-basic-centered\">\n\t\t\t<div class=\"lazy-loading  quickfinder-item inline-column col-md-12 col-sm-12 col-xs-12\">\n\n\t\t\t\n\t\t\t\t<div class=\"quickfinder-item-inner icon-top icon-wrapping-none centered-box button-bottom lazy-loading-item\" data-ll-effect=\"fading\" data-ll-item-delay=\"200\"> \n\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"quickfinder-icon-container\">\n\n\t<div class=\"connector-container\">\n\t\t<span><\/span>\n\t<\/div>\n\n\t<div class=\"gem-qf-icon-image-wrapper lazy-loading-item\" data-ll-effect=\"clip\">\n\t\t\n\t\t\t<div class=\"gem-icon gem-icon-pack-fontawesome gem-icon-size-small  gem-icon-shape-square\">\n\n\t\t\t\t\n\t\t\t\t<div class=\"icon-hover-bg fade\"><\/div>\n\n\t\t\t\t<div class=\"gem-icon-inner\">\n\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"padding-box-inner\">\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"gem-icon-half-1\">\n\t\t\t\t\t\t\t\t\t<span class=\"back-angle\">\n\t\t\t\t\t\t\t\t\t\t<i aria-hidden=\"true\" class=\"gem-mdi mdi-email-outline\"><\/i>\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<span class=\"gem-icon-half-2\">\n\t\t\t\t\t\t\t\t\t<span class=\"back-angle\">\n\t\t\t\t\t\t\t\t\t\t<i aria-hidden=\"true\" class=\"gem-mdi mdi-email-outline\"><\/i>\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\n\t\t\t<\/div>\n\n\t\t\n\t\t\t<\/div>\n\n\t<div class=\"connector-container\">\n\t\t<span><\/span>\n\t<\/div>\n\n<\/div>\n\n\t\t\t\t\t\n\t\t\t\t\t<div class=\"quickfinder-item-info-wrapper\"> \n\t\t\t\t\t\t<div class=\"quickfinder-item-info lazy-loading-item\" data-ll-effect=\"fading\" data-ll-item-delay=\"200\">\n\t\n\t\t<div class=\"quickfinder-title title-h5 light\">\n\t\t\tcontacts\t\t<\/div>\n\t\n\t\n\t\t<div class=\"quickfinder-description gem-text-output\">\n\t\t\t<p>enquiry@lightsandlove.com.my<\/p>\t\t<\/div>\n\t\n\t<\/div>\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\n\t\t\t\t<\/div>\n\n\t\t\t\t\t<\/div>\n\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-140125b\" data-id=\"140125b\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-d58a3b9 flex-horizontal-align-default flex-horizontal-align-tablet-default flex-horizontal-align-mobile-default flex-vertical-align-default flex-vertical-align-tablet-default flex-vertical-align-mobile-default elementor-widget elementor-widget-thegem-quickfinders\" data-id=\"d58a3b9\" data-element_type=\"widget\" data-settings=\"{&quot;thegem_elementor_preset&quot;:&quot;grid-basic-centered&quot;}\" data-widget_type=\"thegem-quickfinders.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\n<div class=\"quickfinder row inline-row quickfinder-style-grid-basic-centered\">\n\t\t\t<div class=\"lazy-loading  quickfinder-item inline-column col-md-12 col-sm-12 col-xs-12\">\n\n\t\t\t\n\t\t\t\t<div class=\"quickfinder-item-inner icon-top icon-wrapping-none centered-box button-bottom lazy-loading-item\" data-ll-effect=\"fading\" data-ll-item-delay=\"200\"> \n\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"quickfinder-icon-container\">\n\n\t<div class=\"connector-container\">\n\t\t<span><\/span>\n\t<\/div>\n\n\t<div class=\"gem-qf-icon-image-wrapper lazy-loading-item\" data-ll-effect=\"clip\">\n\t\t\n\t\t\t<div class=\"gem-icon gem-icon-pack-fontawesome gem-icon-size-small  gem-icon-shape-square\">\n\n\t\t\t\t\n\t\t\t\t<div class=\"icon-hover-bg fade\"><\/div>\n\n\t\t\t\t<div class=\"gem-icon-inner\">\n\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"padding-box-inner\">\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"gem-icon-half-1\">\n\t\t\t\t\t\t\t\t\t<span class=\"back-angle\">\n\t\t\t\t\t\t\t\t\t\t<i aria-hidden=\"true\" class=\"gem-mdi mdi-clock\"><\/i>\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<span class=\"gem-icon-half-2\">\n\t\t\t\t\t\t\t\t\t<span class=\"back-angle\">\n\t\t\t\t\t\t\t\t\t\t<i aria-hidden=\"true\" class=\"gem-mdi mdi-clock\"><\/i>\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\n\t\t\t<\/div>\n\n\t\t\n\t\t\t<\/div>\n\n\t<div class=\"connector-container\">\n\t\t<span><\/span>\n\t<\/div>\n\n<\/div>\n\n\t\t\t\t\t\n\t\t\t\t\t<div class=\"quickfinder-item-info-wrapper\"> \n\t\t\t\t\t\t<div class=\"quickfinder-item-info lazy-loading-item\" data-ll-effect=\"fading\" data-ll-item-delay=\"200\">\n\t\n\t\t<div class=\"quickfinder-title title-h5 light\">\n\t\t\tworking hours\t\t<\/div>\n\t\n\t\n\t\t<div class=\"quickfinder-description gem-text-output\">\n\t\t\t<p>Monday &#8211; Friday: 9:00 \u2013 18:00<br \/>Saturday, Sunday &amp; Public Holidays:<br \/>Closed<\/p>\t\t<\/div>\n\t\n\t<\/div>\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\n\t\t\t\t<\/div>\n\n\t\t\t\t\t<\/div>\n\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div><\/div>\r\n\t\t<\/section>\r\n\t\t\t\t<div class=\"elementor-element elementor-element-4638016 flex-horizontal-align-default flex-horizontal-align-tablet-default flex-horizontal-align-mobile-default flex-vertical-align-default flex-vertical-align-tablet-default flex-vertical-align-mobile-default elementor-widget elementor-widget-thegem-contact-form7\" data-id=\"4638016\" data-element_type=\"widget\" data-settings=\"{&quot;thegem_elementor_preset&quot;:&quot;dark&quot;}\" data-widget_type=\"thegem-contact-form7.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\n<div class=\"wpcf7 no-js\" id=\"wpcf7-f18-o1\" lang=\"en-US\" dir=\"ltr\" data-wpcf7-id=\"18\">\n<div class=\"screen-reader-response\"><p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"><\/p> <ul><\/ul><\/div>\n<form action=\"\/index.php\/wp-json\/wp\/v2\/pages\/8#wpcf7-f18-o1\" method=\"post\" class=\"wpcf7-form init thegem-cf7 gem-contact-form-dark form-4638016 label-top\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<div style=\"display: none;\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"18\" \/>\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"6.0.4\" \/>\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" \/>\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f18-o1\" \/>\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" \/>\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" \/>\n<\/div>\n<label> Full Name\n    <span class=\"wpcf7-form-control-wrap\" data-name=\"your-name\"><input size=\"40\" maxlength=\"400\" class=\"wpcf7-form-control wpcf7-text wpcf7-validates-as-required\" autocomplete=\"name\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-name\" \/><\/span> <\/label>\n\n<label> Email Address\n    <span class=\"wpcf7-form-control-wrap\" data-name=\"your-email\"><input size=\"40\" maxlength=\"400\" class=\"wpcf7-form-control wpcf7-email wpcf7-validates-as-required wpcf7-text wpcf7-validates-as-email\" autocomplete=\"email\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"your-email\" \/><\/span> <\/label>\n\n<label> Subject\n    <span class=\"wpcf7-form-control-wrap\" data-name=\"your-subject\"><input size=\"40\" maxlength=\"400\" class=\"wpcf7-form-control wpcf7-text wpcf7-validates-as-required\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"your-subject\" \/><\/span> <\/label>\n\n<label> Message\n    <span class=\"wpcf7-form-control-wrap\" data-name=\"your-message\"><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" class=\"wpcf7-form-control wpcf7-textarea\" aria-invalid=\"false\" name=\"your-message\"><\/textarea><\/span> <\/label>\n\n<div class=\"gem-button-container gem-button-position-fullwidth\"><input class=\"gem-button gem-button-size-small gem-button-style-flat gem-button-text-weight-normal wpcf7-form-control wpcf7-submit has-spinner gem-button-wpcf-custom\" style=\"border-radius: 3px;\" onmouseleave=\"\" onmouseenter=\"\" id=\"\" tabindex=\"\" type=\"submit\" value=\"Submit\" \/><\/div> <div class=\"wpcf7-response-output\" aria-hidden=\"true\"><\/div>\n<\/form>\n<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div><\/div>\r\n\t\t<\/section>\r\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>blissful.ENCHANTING.MEMORABLE. Feeling stressful and drained planning your big day? Let our expert wedding planner handles every detail, ensuring your special&#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"page-fullwidth.php","meta":{"footnotes":""},"class_list":["post-8","page","type-page","status-publish"],"_links":{"self":[{"href":"https:\/\/lightsandlove.com.my\/index.php\/wp-json\/wp\/v2\/pages\/8","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/lightsandlove.com.my\/index.php\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/lightsandlove.com.my\/index.php\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/lightsandlove.com.my\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/lightsandlove.com.my\/index.php\/wp-json\/wp\/v2\/comments?post=8"}],"version-history":[{"count":300,"href":"https:\/\/lightsandlove.com.my\/index.php\/wp-json\/wp\/v2\/pages\/8\/revisions"}],"predecessor-version":[{"id":8970,"href":"https:\/\/lightsandlove.com.my\/index.php\/wp-json\/wp\/v2\/pages\/8\/revisions\/8970"}],"wp:attachment":[{"href":"https:\/\/lightsandlove.com.my\/index.php\/wp-json\/wp\/v2\/media?parent=8"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}