This commit is contained in:
2026-06-27 21:10:22 +00:00
parent 4fbd7a515e
commit 0f596a3088
394 changed files with 64332 additions and 1732 deletions

View File

@@ -1,23 +1,41 @@
import { BrowserRouter, Routes, Route } from 'react-router-dom'
import { lazy, Suspense } from 'react'
import { Link } from 'react-router-dom'
import Layout from './components/Layout'
import Home from './pages/Home'
import About from './pages/About'
import Services from './pages/Services'
import Project from './pages/Project'
import Contact from './pages/Contact'
const Home = lazy(() => import('./pages/Home'))
const About = lazy(() => import('./pages/About'))
const Services = lazy(() => import('./pages/Services'))
const ServiceDetail = lazy(() => import('./pages/ServiceDetail'))
const Project = lazy(() => import('./pages/Project'))
const Contact = lazy(() => import('./pages/Contact'))
function NotFound() {
return (
<div style={{ padding: '120px 24px', textAlign: 'center' }}>
<h1>404 Page Not Found</h1>
<p>The page you're looking for doesn't exist.</p>
<Link to="/" style={{ color: '#FA2D39' }}> Back to Home</Link>
</div>
)
}
export default function App() {
return (
<BrowserRouter>
<Routes>
<Route element={<Layout />}>
<Route path="/" element={<Home />} />
<Route path="/about" element={<About />} />
<Route path="/service" element={<Services />} />
<Route path="/project" element={<Project />} />
<Route path="/contact" element={<Contact />} />
</Route>
</Routes>
<Suspense fallback={null}>
<Routes>
<Route element={<Layout />}>
<Route path="/" element={<Home />} />
<Route path="/about" element={<About />} />
<Route path="/service" element={<Services />} />
<Route path="/service/:slug" element={<ServiceDetail />} />
<Route path="/project" element={<Project />} />
<Route path="/contact" element={<Contact />} />
<Route path="*" element={<NotFound />} />
</Route>
</Routes>
</Suspense>
</BrowserRouter>
)
}

View File

@@ -2,6 +2,7 @@ import { useEffect } from 'react'
import { Outlet, useLocation } from 'react-router-dom'
import Header from './Header'
import Footer from './Footer'
import WhatsAppButton from './WhatsAppButton'
import useThemeAssets from '../hooks/useThemeAssets'
import useLayoutInit from '../hooks/useLayoutInit'
@@ -12,20 +13,32 @@ export default function Layout() {
useLayoutInit()
useEffect(() => {
function tryRemovePreloader() {
if (window.__removePreloader && window.__cssReady && window.__layoutReady) {
let removed = false
const removePreloader = () => {
if (removed) return
removed = true
if (window.__removePreloader) {
setTimeout(window.__removePreloader, 800)
}
}
const tryRemove = () => {
if (window.__removePreloader && window.__cssReady && window.__layoutReady && document.readyState === 'complete') {
removePreloader()
return true
}
return false
}
if (tryRemovePreloader()) return
const onReady = () => tryRemovePreloader()
if (tryRemove()) return
const onReady = () => tryRemove()
document.addEventListener('css-ready', onReady)
window.addEventListener('layout-ready', onReady)
window.addEventListener('load', onReady)
const fallback = setTimeout(removePreloader, 15000)
return () => {
document.removeEventListener('css-ready', onReady)
window.removeEventListener('layout-ready', onReady)
window.removeEventListener('load', onReady)
clearTimeout(fallback)
}
}, [])
@@ -57,10 +70,22 @@ export default function Layout() {
const style = document.createElement('style')
style.id = 'rakar_opt-dynamic-css'
style.textContent = `
:root{--icon-font:"Font Awesome 6 Free";--fa-style-family:"Font Awesome 6 Free";}
.header-logo .logo img{width:260px;}
.th-menu-wrapper .mobile-logo img{width:180px;}
.th-menu-wrapper .mobile-logo{background-color:#0a004c;}
.breadcumb-wrapper{background-repeat:no-repeat;background-position:center center;background-image:url('/wp-content/uploads/2024/07/breadcumb-bg.jpg');background-size:cover;}
.hero-inner{position:relative;}
.hero-inner::before{content:'';position:absolute;inset:0;background:linear-gradient(90deg,rgba(0,0,0,0.7) 0%,rgba(0,0,0,0.3) 100%);z-index:1;pointer-events:none;}
.hero-inner .container{position:relative;z-index:2;}
.hero-style5 .sub-title2.sub{color:#fff !important;}
.hero-style5 .hero-title,.hero-style5 .hero-text{color:#fff !important;}
.slider-area .slider-arrow{display:inline-flex;align-items:center;justify-content:center;width:50px;height:50px;border-radius:50%;background:rgba(255,255,255,0.2);color:#fff;border:none;cursor:pointer;transition:0.3s;font-size:18px;}
.slider-area .slider-arrow:hover{background:#FA2D39;}
.slider-area .slider-controller{display:flex;align-items:center;justify-content:center;gap:10px;margin-top:40px;}
.slider-area .slider-pagination{display:flex;align-items:center;gap:6px;}
.slider-area .slider-pagination button{width:12px;height:12px;border-radius:50%;border:none;background:#999;opacity:0.4;cursor:pointer;padding:0;transition:0.3s;}
.slider-area .slider-pagination button.active{opacity:1;background:#FA2D39;}
`
document.head.appendChild(style)
return () => style.remove()
@@ -71,6 +96,7 @@ export default function Layout() {
<Header />
<Outlet />
<Footer />
<WhatsAppButton />
</>
)
}

View File

@@ -0,0 +1,52 @@
import { useEffect, useState } from 'react'
const PHONE = '971564148980'
const WHATSAPP_URL = `https://wa.me/${PHONE}`
export default function WhatsAppButton() {
const [visible, setVisible] = useState(false)
useEffect(() => {
setVisible(true)
}, [])
if (!visible) return null
return (
<>
<a
href={WHATSAPP_URL}
target="_blank"
rel="noopener noreferrer"
className="whatsapp-float"
aria-label="Chat on WhatsApp"
>
<svg viewBox="0 0 32 32" width="28" height="28" fill="white">
<path d="M16 0C7.2 0 0 7.2 0 16c0 3.1 0.9 6 2.5 8.5L1.6 30.4l6.2-1.6C10.2 29.9 13 31 16 31c8.8 0 16-7.2 16-16S24.8 0 16 0zm8.1 22.7c-0.4 1.1-1.6 2-2.7 2.3-0.7 0.2-1.6 0.3-5.1-1.1-4.3-1.7-7.1-5.9-7.3-6.2-0.2-0.3-1.7-2.3-1.7-4.4s1.1-3.1 1.5-3.6c0.4-0.4 0.9-0.6 1.2-0.6 0.3 0 0.6 0 0.9 0 0.3 0 0.7-0.1 1.1 0.8 0.4 0.9 1.3 3.1 1.4 3.3 0.1 0.2 0.2 0.5 0 0.8s-0.3 0.5-0.5 0.7c-0.2 0.2-0.4 0.5-0.6 0.7-0.2 0.2-0.4 0.5-0.2 0.9 0.2 0.4 0.9 1.5 2 2.4 1.4 1.1 2.5 1.5 2.9 1.6 0.4 0.2 0.7 0.1 1-0.1 0.3-0.2 1.2-1.4 1.5-1.9 0.3-0.5 0.7-0.4 1.1-0.2 0.4 0.2 2.5 1.2 2.9 1.4 0.4 0.2 0.7 0.3 0.8 0.5 0.1 0.2 0.1 1.1-0.3 2.2z"/>
</svg>
</a>
<style>{`
.whatsapp-float {
position: fixed;
bottom: 24px;
right: 24px;
z-index: 9999;
width: 56px;
height: 56px;
border-radius: 50%;
background: #25D366;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 4px 12px rgba(0,0,0,0.25);
transition: transform 0.2s, box-shadow 0.2s;
cursor: pointer;
}
.whatsapp-float:hover {
transform: scale(1.08);
box-shadow: 0 6px 16px rgba(0,0,0,0.35);
}
`}</style>
</>
)
}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -1,6 +1,4 @@
<div id="smooth-wrapper">
<div id="smooth-content">
<!-- Page title 2 --><div class="breadcumb-banner"><div class="breadcumb-wrapper " id="breadcumbwrap"><div class="container"><div class="breadcumb-content"><h1 class="breadcumb-title">Contact</h1><ul class="breadcumb-menu"><li><a href="../index.html">Home</a></li><li>Contact</li></ul></div></div></div></div><!-- End of Page title --> <div class="rakar-fluid">
<!-- Page title 2 --><div class="breadcumb-banner"><div class="breadcumb-wrapper " id="breadcumbwrap"><div class="container"><div class="breadcumb-content"><h1 class="breadcumb-title">Contact</h1><ul class="breadcumb-menu"><li><a href="/">Home</a></li><li>Contact</li></ul></div></div></div></div><!-- End of Page title --> <div class="rakar-fluid">
<div class="builder-page-wrapper">
<div data-elementor-type="wp-page" data-elementor-id="48" class="elementor elementor-48">
<div class="elementor-element elementor-element-ca60550 e-flex e-con-boxed e-con e-parent" data-id="ca60550" data-element_type="container" data-e-type="container">
@@ -8,7 +6,7 @@
<div class="elementor-element elementor-element-66ae4cc elementor-widget elementor-widget-rakarsectiontitle" data-id="66ae4cc" data-element_type="widget" data-e-type="widget" data-widget_type="rakarsectiontitle.default">
<div class="elementor-widget-container">
<div class="title-area text-center ">
<span class="sub-title "><img decoding="async" src="../wp-content/plugins/rakar-core/assets/img/title_icon.svg" alt="Shape">Get In Touch</span><h2 class="sec-title ">Our Contact Information</h2> </div>
<span class="sub-title "><img decoding="async" src="/wp-content/plugins/rakar-core/assets/img/title_icon.svg" alt="Shape">Get In Touch</span><h2 class="sec-title ">Our Contact Information</h2> </div>
</div>
</div>
@@ -34,23 +32,23 @@
<div class="row">
<div class="form-group col-md-6">
<span class="wpcf7-form-control-wrap" data-name="text-63"><input size="40" maxlength="400" class="wpcf7-form-control wpcf7-text wpcf7-validates-as-required form-control" aria-required="true" aria-invalid="false" placeholder="Your Name" value="" type="text" name="text-63" /></span>
<i class="fas fa-user"></i>
<i class="fal fa-user"></i>
</div>
<div class="form-group col-md-6">
<span class="wpcf7-form-control-wrap" data-name="email-81"><input size="40" maxlength="400" class="wpcf7-form-control wpcf7-email wpcf7-validates-as-required wpcf7-text wpcf7-validates-as-email form-control" aria-required="true" aria-invalid="false" placeholder="Email Address" value="" type="email" name="email-81" /></span>
<i class="fas fa-envelope"></i>
<i class="fal fa-envelope"></i>
</div>
<div class="form-group col-md-6">
<span class="wpcf7-form-control-wrap" data-name="number-97"><input class="wpcf7-form-control wpcf7-number wpcf7-validates-as-required wpcf7-validates-as-number form-control" aria-required="true" aria-invalid="false" placeholder="Phone Number" value="" type="number" name="number-97" /></span>
<i class="fas fa-phone"></i>
<i class="fal fa-phone"></i>
</div>
<div class="form-group col-md-6">
<span class="wpcf7-form-control-wrap" data-name="menu-115"><select class="wpcf7-form-control wpcf7-select wpcf7-validates-as-required form-select nice-select" id="subject" aria-required="true" aria-invalid="false" name="menu-115"><option value="Select Subject">Select Subject</option><option value="General Query">General Query</option><option value="Help Support">Help Support</option><option value="Sales Support">Sales Support</option></select></span>
<i class="fas fa-chevron-down"></i>
<i class="fal fa-chevron-down"></i>
</div>
<div class="form-group col-12">
<span class="wpcf7-form-control-wrap" data-name="textarea-17"><textarea cols="40" rows="10" maxlength="2000" class="wpcf7-form-control wpcf7-textarea wpcf7-validates-as-required form-control" aria-required="true" aria-invalid="false" placeholder="Your Message" name="textarea-17"></textarea></span>
<i class="fas fa-pencil"></i>
<i class="fal fa-pencil"></i>
</div>
<div class="form-btn col-12">
<button class="th-btn">Send Message Now<i class="far fa-arrow-right ms-2"></i></button>
@@ -94,4 +92,4 @@
</div>
</div>
</div>
</div>

View File

@@ -1,107 +0,0 @@
<div className="col-auto d-none d-xl-block"><div className="header-button"><a className="th-btn rounded-12 style3 th_btn" href="../contact/index.html">Get A Quote<i className="fas fa-arrow-right ms-2"></i></a></div></div></div></div></div></div></div> </div>
</div>
</div>
</div>
</header> <div id="smooth-wrapper">
<div id="smooth-content">
<div className="breadcumb-banner"><div className="breadcumb-wrapper " id="breadcumbwrap"><div className="container"><div className="breadcumb-content"><h1 className="breadcumb-title">Contact</h1><ul className="breadcumb-menu"><li><a href="../index.html">Home</a></li><li>Contact</li></ul></div></div></div></div> <div className="rakar-fluid">
<div className="builder-page-wrapper">
<div data-elementor-type="wp-page" data-elementor-id="48" className="elementor elementor-48">
<div className="elementor-element elementor-element-ca60550 e-flex e-con-boxed e-con e-parent" data-id="ca60550" data-element_type="container" data-e-type="container">
<div className="e-con-inner">
<div className="elementor-element elementor-element-66ae4cc elementor-widget elementor-widget-rakarsectiontitle" data-id="66ae4cc" data-element_type="widget" data-e-type="widget" data-widget_type="rakarsectiontitle.default">
<div className="elementor-widget-container">
<div className="title-area text-center ">
<span className="sub-title "><img decoding="async" src="../wp-content/plugins/rakar-core/assets/img/title_icon.svg" alt="Shape" />Get In Touch</span><h2 className="sec-title ">Our Contact Information</h2> </div>
</div>
</div>
<div className="elementor-element elementor-element-64faaca elementor-widget elementor-widget-rakarcontactinfo" data-id="64faaca" data-element_type="widget" data-e-type="widget" data-widget_type="rakarcontactinfo.default">
<div className="elementor-widget-container">
<div className="row gy-4"><div className="col-xl-4 col-md-6"><div className="team-contact"><div className="icon-btn"><i className="fas fa-location-dot"></i></div><div className="media-body"><h5 className="box-title label">Our Address</h5><p className="box-text"><a href="https://maps.app.goo.gl/5bMqkGpNXNo1K9yC7" target="_blank">Al Qusais Industrial Area-3, Dubai, UAE</a></p></div></div></div><div className="col-xl-4 col-md-6"><div className="team-contact"><div className="icon-btn"><i className="fas fa-phone"></i></div><div className="media-body"><h5 className="box-title label">Phone Number</h5><p className="box-text"><a href="tel:+9714320 0869"> +971 4 320 0869 </a>
</p></div></div></div><div className="col-xl-4 col-md-6"><div className="team-contact"><div className="icon-btn"><i className="fas fa-envelope"></i></div><div className="media-body"><h5 className="box-title label">Email Address</h5><p className="box-text"><a href="mailto:admin@profeneng.com">admin@profeneng.com</a>
</p></div></div></div></div> </div>
</div>
</div>
</div>
<div className="elementor-element elementor-element-a29b2eb e-flex e-con-boxed e-con e-parent" data-id="a29b2eb" data-element_type="container" data-e-type="container" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}">
<div className="e-con-inner">
<div className="elementor-element elementor-element-55feed1 e-con-full e-flex e-con e-child" data-id="55feed1" data-element_type="container" data-e-type="container">
<div className="elementor-element elementor-element-62347f2 elementor-widget elementor-widget-rakarcontactform" data-id="62347f2" data-element_type="widget" data-e-type="widget" data-widget_type="rakarcontactform.default">
<div className="elementor-widget-container">
<div className="text-center text-xl-start"><div className="contact-form ajax-contact"><h2 className="sec-title">Get a Quote</h2>
<div className="wpcf7 no-js" id="wpcf7-f523-p48-o1" lang="en-US" dir="ltr" data-wpcf7-id="523">
<div className="screen-reader-response"><p role="status" aria-live="polite" aria-atomic="true"></p> <ul></ul></div>
<form action="../index.html%3Fp=48.html#wpcf7-f523-p48-o1" method="post" className="wpcf7-form init" aria-label="Contact form" novalidate="novalidate" data-status="init">
<fieldset className="hidden-fields-container"><input type="hidden" name="_wpcf7" value="523" /><input type="hidden" name="_wpcf7_version" value="6.1.6" /><input type="hidden" name="_wpcf7_locale" value="en_US" /><input type="hidden" name="_wpcf7_unit_tag" value="wpcf7-f523-p48-o1" /><input type="hidden" name="_wpcf7_container_post" value="48" /><input type="hidden" name="_wpcf7_posted_data_hash" value="" />
</fieldset>
<div className="row">
<div className="form-group col-md-6">
<span className="wpcf7-form-control-wrap" data-name="text-63"><input size="40" maxlength="400" className="wpcf7-form-control wpcf7-text wpcf7-validates-as-required form-control" aria-required="true" aria-invalid="false" placeholder="Your Name" value="" type="text" name="text-63" /></span>
<i className="fal fa-user"></i>
</div>
<div className="form-group col-md-6">
<span className="wpcf7-form-control-wrap" data-name="email-81"><input size="40" maxlength="400" className="wpcf7-form-control wpcf7-email wpcf7-validates-as-required wpcf7-text wpcf7-validates-as-email form-control" aria-required="true" aria-invalid="false" placeholder="Email Address" value="" type="email" name="email-81" /></span>
<i className="fal fa-envelope"></i>
</div>
<div className="form-group col-md-6">
<span className="wpcf7-form-control-wrap" data-name="number-97"><input className="wpcf7-form-control wpcf7-number wpcf7-validates-as-required wpcf7-validates-as-number form-control" aria-required="true" aria-invalid="false" placeholder="Phone Number" value="" type="number" name="number-97" /></span>
<i className="fal fa-phone"></i>
</div>
<div className="form-group col-md-6">
<span className="wpcf7-form-control-wrap" data-name="menu-115"><select className="wpcf7-form-control wpcf7-select wpcf7-validates-as-required form-select nice-select" id="subject" aria-required="true" aria-invalid="false" name="menu-115"><option value="Select Subject">Select Subject</option><option value="General Query">General Query</option><option value="Help Support">Help Support</option><option value="Sales Support">Sales Support</option></select></span>
<i className="fal fa-chevron-down"></i>
</div>
<div className="form-group col-12">
<span className="wpcf7-form-control-wrap" data-name="textarea-17"><textarea cols="40" rows="10" maxlength="2000" className="wpcf7-form-control wpcf7-textarea wpcf7-validates-as-required form-control" aria-required="true" aria-invalid="false" placeholder="Your Message" name="textarea-17"></textarea></span>
<i className="fal fa-pencil"></i>
</div>
<div className="form-btn col-12">
<button className="th-btn">Send Message Now<i className="far fa-arrow-right ms-2"></i></button>
</div>
</div>
<p className="form-messages mb-0 mt-3"></p><div className="wpcf7-response-output" aria-hidden="true"></div>
</form>
</div>
</div></div> </div>
</div>
</div>
<div className="elementor-element elementor-element-3e6da81 e-con-full e-flex e-con e-child" data-id="3e6da81" data-element_type="container" data-e-type="container">
</div>
</div>
</div>
<div className="elementor-element elementor-element-6ac6145 e-flex e-con-boxed e-con e-parent" data-id="6ac6145" data-element_type="container" data-e-type="container" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}">
<div className="e-con-inner">
<div className="elementor-element elementor-element-a99529c elementor-widget elementor-widget-google_maps" data-id="a99529c" data-element_type="widget" data-e-type="widget" data-widget_type="google_maps.default">
<div className="elementor-widget-container">
<div className="elementor-custom-embed">
<iframe loading="lazy"
src="https://maps.google.com/maps?q=Profen%20Engineering%20LLC%20Al%20Qusais%20Industrial%20Area%20-%20Al%20Qusais%20Industrial%20Area%203%20-%20Dubai&#038;t=m&#038;z=15&#038;output=embed&#038;iwloc=near"
title="Profen Engineering LLC Al Qusais Industrial Area - Al Qusais Industrial Area 3 - Dubai"
aria-label="Profen Engineering LLC Al Qusais Industrial Area - Al Qusais Industrial Area 3 - Dubai"
></iframe>
</div>
</div>
</div>
</div>
</div>
<div className="elementor-element elementor-element-55a45c7 e-con-full e-flex e-con e-parent" data-id="55a45c7" data-element_type="container" data-e-type="container" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}">
<div className="elementor-element elementor-element-930d8d6 elementor-widget-divider--view-line elementor-widget elementor-widget-divider" data-id="930d8d6" data-element_type="widget" data-e-type="widget" data-widget_type="divider.default">
<div className="elementor-widget-container">
<div className="elementor-divider">
<span className="elementor-divider-separator">
</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<footer><style id="elementor-post-128">.elementor-128 .elementor-element.elementor-element-0881101{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--overflow:hidden;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-128 .elementor-element.elementor-element-0881101:not(.elementor-motion-effects-element-type-background), .elementor-128 .elementor-element.elementor-element-0881101 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#01003D;}.elementor-128 .elementor-element.elementor-element-fe422c7{--display:flex;}.elementor-128 .elementor-element.elementor-element-3cca8c6{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--justify-content:space-between;--padding-top:100px;--padding-bottom:48px;--padding-left:0px;--padding-right:0px;}.elementor-128 .elementor-element.elementor-element-8d709a6 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 12px 0px 12px;}.elementor-128 .elementor-element.elementor-element-e62fea2 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 12px 0px 12px;}.elementor-128 .elementor-element.elementor-element-02ad728 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:50px 12px 0px 12px;}.elementor-128 .elementor-element.elementor-element-de5c68d > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 12px 0px 12px;}.elementor-128 .elementor-element.elementor-element-f479338{--display:flex;--flex-direction:row;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--justify-content:space-between;--align-items:center;border-style:solid;--border-style:solid;border-width:1px 0px 0px 0px;--border-top-width:1px;--border-right-width:0px;--border-bottom-width:0px;--border-left-width:0px;border-color:#FFFFFF33;--border-color:#FFFFFF33;--padding-top:22px;--padding-bottom:22px;--padding-left:0px;--padding-right:0px;}.elementor-128 .elementor-element.elementor-element-0e1daf5 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 12px 0px 12px;}@media(max-width:1024px){.elementor-128 .elementor-element.elementor-element-3cca8c6{--flex-wrap:wrap;--padding-top:80px;--padding-bottom:30px;--padding-left:24px;--padding-right:24px;}.elementor-128 .elementor-element.elementor-element-8d709a6{width:var( --container-widget-width, 47% );max-width:47%;--container-widget-width:47%;--container-widget-flex-grow:0;}.elementor-128 .elementor-element.elementor-element-e62fea2{width:var( --container-widget-width, 47% );max-width:47%;--container-widget-width:47%;--container-widget-flex-grow:0;}.elementor-128 .elementor-element.elementor-element-02ad728{width:var( --container-widget-width, 47% );max-width:47%;--container-widget-width:47%;--container-widget-flex-grow:0;}.elementor-128 .elementor-element.elementor-element-de5c68d{width:var( --container-widget-width, 47% );max-width:47%;--container-widget-width:47%;--container-widget-flex-grow:0;}.elementor-128 .elementor-element.elementor-element-f479338{--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--justify-content:space-between;--gap:10px 10px;--row-gap:10px;--column-gap:10px;--flex-wrap:wrap;--padding-top:22px;--padding-bottom:22px;--padding-left:24px;--padding-right:24px;}}@media(max-width:767px){.elementor-128 .elementor-element.elementor-element-3cca8c6{--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:80px;--padding-bottom:30px;--padding-left:0px;--padding-right:0px;}.elementor-128 .elementor-element.elementor-element-8d709a6{width:100%;max-width:100%;}.elementor-128 .elementor-element.elementor-element-e62fea2{width:100%;max-width:100%;}.elementor-128 .elementor-element.elementor-element-02ad728{width:100%;max-width:100%;}.elementor-128 .elementor-element.elementor-element-de5c68d{width:100%;max-width:100%;}.elementor-128 .elementor-element.elementor-element-f479338{--padding-top:22px;--padding-bottom:22px;--padding-left:0px;--padding-right:0px;}}</style> <div data-elementor-type="wp-post" data-elementor-id="128" className="elementor elementor-128">
<div className="elementor-element elementor-element-0881101 footer-wrapper footer-layout1 e-con-full e-flex e-con e-parent" data-id="0881101" data-element_type="container" data-e-type="container" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}">
<div className="elementor-element elementor-element-fe422c7 e-con-full e-flex e-con e-child" data-id="fe422c7" data-element_type="container" data-e-type="container">
<div className="elementor-element elementor-element-a0abb74 elementor-widget elementor-widget-rakarcontactinfo" data-id="a0abb74" data-element_type="widget" data-e-type="widget" data-widget_type="rakarcontactinfo.default">
<div className="elementor-widget-container">
<div className="

28
src/data/extraCss.js Normal file
View File

@@ -0,0 +1,28 @@
const extraCss = [
`:root {
--theme-color: rgb(255,0,0);
}.main-menu ul.sub-menu li a:before {
content: "\\f7d9" !important;
}.sub-title2 img {
display: none!important;
}
.th-menu-wrapper.th-body-visible .th-menu-area {
background-color: #000000;
}
.th-mobile-menu ul li a {
color:#ffffff;
}
.sticky-wrapper.sticky {
background-color: #0c0d0e!important;
}
.main-menu a {
font-weight: 600!important;
font-size: 15px!important;
}
/*# sourceURL=rakar-color-schemes-inline-css */`,
`.woocommerce-product-gallery{ opacity: 1 !important; }`,
`.elementor-945 .elementor-element.elementor-element-1697af5{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-945 .elementor-element.elementor-element-a628d9c .header-top{background:#ED1C24;}.elementor-945 .elementor-element.elementor-element-a628d9c .main-menu>ul>li>a, .elementor-945 .elementor-element.elementor-element-a628d9c .main-menu ul.sub-menu li a{font-size:15px;font-weight:600;}`,
`.elementor-128 .elementor-element.elementor-element-0881101{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--overflow:hidden;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-128 .elementor-element.elementor-element-0881101:not(.elementor-motion-effects-element-type-background), .elementor-128 .elementor-element.elementor-element-0881101 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#01003D;}.elementor-128 .elementor-element.elementor-element-fe422c7{--display:flex;}.elementor-128 .elementor-element.elementor-element-3cca8c6{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--justify-content:space-between;--padding-top:100px;--padding-bottom:48px;--padding-left:0px;--padding-right:0px;}.elementor-128 .elementor-element.elementor-element-8d709a6 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 12px 0px 12px;}.elementor-128 .elementor-element.elementor-element-e62fea2 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 12px 0px 12px;}.elementor-128 .elementor-element.elementor-element-02ad728 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:50px 12px 0px 12px;}.elementor-128 .elementor-element.elementor-element-de5c68d > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 12px 0px 12px;}.elementor-128 .elementor-element.elementor-element-f479338{--display:flex;--flex-direction:row;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--justify-content:space-between;--align-items:center;border-style:solid;--border-style:solid;border-width:1px 0px 0px 0px;--border-top-width:1px;--border-right-width:0px;--border-bottom-width:0px;--border-left-width:0px;border-color:#FFFFFF33;--border-color:#FFFFFF33;--padding-top:22px;--padding-bottom:22px;--padding-left:0px;--padding-right:0px;}.elementor-128 .elementor-element.elementor-element-0e1daf5 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 12px 0px 12px;}@media(max-width:1024px){.elementor-128 .elementor-element.elementor-element-3cca8c6{--flex-wrap:wrap;--padding-top:80px;--padding-bottom:30px;--padding-left:24px;--padding-right:24px;}.elementor-128 .elementor-element.elementor-element-8d709a6{width:var( --container-widget-width, 47% );max-width:47%;--container-widget-width:47%;--container-widget-flex-grow:0;}.elementor-128 .elementor-element.elementor-element-e62fea2{width:var( --container-widget-width, 47% );max-width:47%;--container-widget-width:47%;--container-widget-flex-grow:0;}.elementor-128 .elementor-element.elementor-element-02ad728{width:var( --container-widget-width, 47% );max-width:47%;--container-widget-width:47%;--container-widget-flex-grow:0;}.elementor-128 .elementor-element.elementor-element-de5c68d{width:var( --container-widget-width, 47% );max-width:47%;--container-widget-width:47%;--container-widget-flex-grow:0;}.elementor-128 .elementor-element.elementor-element-f479338{--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--justify-content:space-between;--gap:10px 10px;--row-gap:10px;--column-gap:10px;--flex-wrap:wrap;--padding-top:22px;--padding-bottom:22px;--padding-left:24px;--padding-right:24px;}}@media(max-width:767px){.elementor-128 .elementor-element.elementor-element-3cca8c6{--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:80px;--padding-bottom:30px;--padding-left:0px;--padding-right:0px;}.elementor-128 .elementor-element.elementor-element-8d709a6{width:100%;max-width:100%;}.elementor-128 .elementor-element.elementor-element-e62fea2{width:100%;max-width:100%;}.elementor-128 .elementor-element.elementor-element-02ad728{width:100%;max-width:100%;}.elementor-128 .elementor-element.elementor-element-de5c68d{width:100%;max-width:100%;}.elementor-128 .elementor-element.elementor-element-f479338{--padding-top:22px;--padding-bottom:22px;--padding-left:0px;--padding-right:0px;}}`
]
export default extraCss

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -1,26 +1,24 @@
<div id="smooth-wrapper">
<div id="smooth-content">
<div class="rakar-fluid">
<div class="rakar-fluid">
<div class="builder-page-wrapper">
<div data-elementor-type="wp-page" data-elementor-id="23" class="elementor elementor-23">
<div class="elementor-element elementor-element-a5ac2fa e-con-full e-flex e-con e-parent" data-id="a5ac2fa" data-element_type="container" data-e-type="container">
<div class="elementor-element elementor-element-1473cce elementor-widget elementor-widget-rakarbanner1" data-id="1473cce" data-element_type="widget" data-e-type="widget" data-widget_type="rakarbanner1.default">
<div class="elementor-widget-container">
<div class="th-hero-wrapper hero-5 slider-area" id="hero"><div class="swiper th-slider" id="heroSlide5" data-slider-options='{"effect":"fade","autoHeight":true}'><div class="swiper-wrapper"><div class="swiper-slide"><div class="hero-inner" data-bg-src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"><div class="container"><div class="hero-style5"><span class="sub-title2 sub" data-ani="slideinup" data-ani-delay="0.1s"><span class="line"></span><img decoding="async" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" alt="" />Welcome To Profen</span><h1 class="hero-title"><span class="title1" data-ani="slideinup" data-ani-delay="0.2s">Stay Refreshed</span>
<span class="title2" data-ani="slideinup" data-ani-delay="0.4s"><span class="text-theme">with Our <img decoding="async" src="wp-content/uploads/2025/02/Promist-Logo-1.png">
</a></span> Misting Magic</span></h1><p class="hero-text" data-ani="slideinup" data-ani-delay="0.6s">Promist is a specialized brand, dedicated to delivering innovative, high-performance misting and evaporative cooling solutions.</p><div class="btn-group" data-ani="slideinup" data-ani-delay="0.8s"><a href="service/index.html" class="th-btn rounded-12 style2 th_btn">Our All Services<i class="fas fa-arrow-right ms-2"></i></a></div></div></div></div></div><div class="swiper-slide"><div class="hero-inner" data-bg-src="/wp-content/uploads/2026/01/adiabatic-cool.jpg"><div class="container"><div class="hero-style5"><span class="sub-title2 sub" data-ani="slideinup" data-ani-delay="0.1s"><span class="line"></span><img decoding="async" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" alt="" />Welcome To Profen </span><h1 class="hero-title"><span class="title1" data-ani="slideinup" data-ani-delay="0.2s">Efficiency starts</span>
<div class="th-hero-wrapper hero-5 slider-area" id="hero"><div class="swiper th-slider" id="heroSlide5" data-slider-options='{"effect":"fade","autoHeight":true}'><div class="swiper-wrapper"><div class="swiper-slide"><div class="hero-inner" data-bg-src="/wp-content/uploads/2025/02/img-14filt.jpg"><div class="container"><div class="hero-style5"><span class="sub-title2 sub" data-ani="slideinup" data-ani-delay="0.1s"><span class="line"></span><img decoding="async" src="index.html" alt="" />Welcome To Profen</span><h1 class="hero-title"><span class="title1" data-ani="slideinup" data-ani-delay="0.2s">Stay Refreshed</span>
<span class="title2" data-ani="slideinup" data-ani-delay="0.4s"><span class="text-theme">with Our <img decoding="async" src="/wp-content/uploads/2025/02/Promist-Logo-1.png">
</a></span> Misting Magic</span></h1><p class="hero-text" data-ani="slideinup" data-ani-delay="0.6s">Promist is a specialized brand, dedicated to delivering innovative, high-performance misting and evaporative cooling solutions.</p><div class="btn-group" data-ani="slideinup" data-ani-delay="0.8s"><a href="/service" class="th-btn rounded-12 style2 th_btn">Our All Services<i class="fas fa-arrow-right ms-2"></i></a></div></div></div></div></div><div class="swiper-slide"><div class="hero-inner" data-bg-src="/wp-content/uploads/2026/01/adiabatic-cool.jpg"><div class="container"><div class="hero-style5"><span class="sub-title2 sub" data-ani="slideinup" data-ani-delay="0.1s"><span class="line"></span><img decoding="async" src="index.html" alt="" />Welcome To Profen </span><h1 class="hero-title"><span class="title1" data-ani="slideinup" data-ani-delay="0.2s">Efficiency starts</span>
<span class="title2" data-ani="slideinup" data-ani-delay="0.4s"><span class="text-theme">
with Pro-Shield Adiabatic</span> Pre-Cooling</span></h1><p class="hero-text" data-ani="slideinup" data-ani-delay="0.6s">Designed for extreme climatic conditions, PRO-SHIELD enhances system efficiency while significantly reducing energy consumption.</p><div class="btn-group" data-ani="slideinup" data-ani-delay="0.8s"><a href="service/index.html" class="th-btn rounded-12 style2 th_btn">Our All Services<i class="fas fa-arrow-right ms-2"></i></a></div></div></div></div></div><div class="swiper-slide"><div class="hero-inner" data-bg-src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"><div class="container"><div class="hero-style5"><span class="sub-title2 sub" data-ani="slideinup" data-ani-delay="0.1s"><span class="line"></span><img decoding="async" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" alt="" />Welcome To Profen</span><h1 class="hero-title"><span class="title1" data-ani="slideinup" data-ani-delay="0.2s">Chill Out or
with Pro-Shield Adiabatic</span> Pre-Cooling</span></h1><p class="hero-text" data-ani="slideinup" data-ani-delay="0.6s">Designed for extreme climatic conditions, PRO-SHIELD enhances system efficiency while significantly reducing energy consumption.</p><div class="btn-group" data-ani="slideinup" data-ani-delay="0.8s"><a href="/service" class="th-btn rounded-12 style2 th_btn">Our All Services<i class="fas fa-arrow-right ms-2"></i></a></div></div></div></div></div><div class="swiper-slide"><div class="hero-inner" data-bg-src="/wp-content/uploads/2025/02/img-13filter.jpg"><div class="container"><div class="hero-style5"><span class="sub-title2 sub" data-ani="slideinup" data-ani-delay="0.1s"><span class="line"></span><img decoding="async" src="index.html" alt="" />Welcome To Profen</span><h1 class="hero-title"><span class="title1" data-ani="slideinup" data-ani-delay="0.2s">Chill Out or
Heat Up</span>
<span class="title2" data-ani="slideinup" data-ani-delay="0.4s"><span class="text-theme">We've got Your </span> Perfect Solution</span></h1><p class="hero-text" data-ani="slideinup" data-ani-delay="0.6s">Our Heat and Chill pump can be used for heating or
cooling swimming pool. spa or other tank water
cooling System.</p><div class="btn-group" data-ani="slideinup" data-ani-delay="0.8s"><a href="service/index.html" class="th-btn rounded-12 style2 th_btn">Our All Services<i class="fas fa-arrow-right ms-2"></i></a></div></div></div></div></div></div><div class="slider-pagination"></div></div><div class="icon-box"><button data-slider-prev="#heroSlide5" class="slider-arrow default"><i class="far fa-arrow-left"></i></button><button data-slider-next="#heroSlide5" class="slider-arrow default"><i class="far fa-arrow-right"></i></button></div></div> </div>
cooling System.</p><div class="btn-group" data-ani="slideinup" data-ani-delay="0.8s"><a href="/service" class="th-btn rounded-12 style2 th_btn">Our All Services<i class="fas fa-arrow-right ms-2"></i></a></div></div></div></div></div></div><div class="slider-pagination"></div></div><div class="icon-box"><button data-slider-prev="#heroSlide5" class="slider-arrow default"><i class="far fa-arrow-left"></i></button><button data-slider-next="#heroSlide5" class="slider-arrow default"><i class="far fa-arrow-right"></i></button></div></div> </div>
</div>
</div>
<div class="elementor-element elementor-element-7e4b13e e-con-full e-flex e-con e-parent" data-id="7e4b13e" data-element_type="container" data-e-type="container">
<div class="elementor-element elementor-element-84dc261 elementor-widget elementor-widget-rakarclientlogos" data-id="84dc261" data-element_type="widget" data-e-type="widget" data-widget_type="rakarclientlogos.default">
<div class="elementor-widget-container">
<div class="brand-sec3 "><div class="brand-inner"><div class="swiper th-slider" id="brandSlider3" data-slider-options='{"spaceBetween":30,"breakpoints":{"0":{"slidesPerView":1},"576":{"slidesPerView":"2"},"768":{"slidesPerView":"3"},"992":{"slidesPerView":"4"},"1200":{"slidesPerView":"4"},"1300":{"slidesPerView":"5"},"1500":{"slidesPerView":"7"}}}'><div class="swiper-wrapper"><div class="swiper-slide"><div class="brand-card"><img decoding="async" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" alt="" /></div></div><div class="swiper-slide"><div class="brand-card"><img decoding="async" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" alt="" /></div></div><div class="swiper-slide"><div class="brand-card"><img decoding="async" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" alt="" /></div></div><div class="swiper-slide"><div class="brand-card"><img decoding="async" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" alt="" /></div></div></div></div></div></div> </div>
<div class="brand-sec3 "><div class="brand-inner"><div class="swiper th-slider" id="brandSlider3" data-slider-options='{"spaceBetween":30,"breakpoints":{"0":{"slidesPerView":1},"576":{"slidesPerView":"2"},"768":{"slidesPerView":"3"},"992":{"slidesPerView":"4"},"1200":{"slidesPerView":"4"},"1300":{"slidesPerView":"5"},"1500":{"slidesPerView":"7"}}}'><div class="swiper-wrapper"><div class="swiper-slide"><div class="brand-card"><img decoding="async" src="index.html" alt="" /></div></div><div class="swiper-slide"><div class="brand-card"><img decoding="async" src="index.html" alt="" /></div></div><div class="swiper-slide"><div class="brand-card"><img decoding="async" src="index.html" alt="" /></div></div><div class="swiper-slide"><div class="brand-card"><img decoding="async" src="index.html" alt="" /></div></div></div></div></div></div> </div>
</div>
</div>
<div class="elementor-element elementor-element-5ead1f4 e-flex e-con-boxed e-con e-parent" data-id="5ead1f4" data-element_type="container" data-e-type="container" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}">
@@ -30,18 +28,18 @@ cooling System.</p><div class="btn-group" data-ani="slideinup" data-ani-delay="0
<div class="elementor-element elementor-element-9616bd1 elementor-widget elementor-widget-rakarsectiontitle" data-id="9616bd1" data-element_type="widget" data-e-type="widget" data-widget_type="rakarsectiontitle.default">
<div class="elementor-widget-container">
<div class="title-area text-left ">
<span class="sub-title2 "><img decoding="async" src="wp-content/plugins/rakar-core/assets/img/title_icon5.svg" alt="Shape">About Us</span><h2 class="sec-title ">Building Future with Integrity</h2><p>Profen Engineering, your trusted partner in comprehensive Sustainability, MEP &amp;Construction Services. With a commitment to excellence, innovation, and client satisfaction, we stand as a beacon of reliability in the construction industry.</p> </div>
<span class="sub-title2 "><img decoding="async" src="/wp-content/plugins/rakar-core/assets/img/title_icon5.svg" alt="Shape">About Us</span><h2 class="sec-title ">Building Future with Integrity</h2><p>Profen Engineering, your trusted partner in comprehensive Sustainability, MEP &amp;Construction Services. With a commitment to excellence, innovation, and client satisfaction, we stand as a beacon of reliability in the construction industry.</p> </div>
</div>
</div>
<div class="elementor-element elementor-element-af95b28 elementor-widget elementor-widget-rakarfeatures" data-id="af95b28" data-element_type="widget" data-e-type="widget" data-widget_type="rakarfeatures.default">
<div class="elementor-widget-container">
<div class="about-media-wrap"><div class="about-media"><div class="box-icon"><img decoding="async" src="wp-content/uploads/2024/07/about_media_1.svg" alt="about_media_1" /></div><h3 class="box-title">Efficient Use of Resources</h3><p class="box-text">Cost-effective planning to maximize value</p></div><div class="about-media"><div class="box-icon"><img decoding="async" src="wp-content/uploads/2024/07/about_media_2.svg" alt="about_media_2" /></div><h3 class="box-title">Focus on Quality &amp; Safety</h3><p class="box-text">Built into every stage of the plan.</p></div></div> </div>
<div class="about-media-wrap"><div class="about-media"><div class="box-icon"><img decoding="async" src="/wp-content/uploads/2024/07/about_media_1.svg" alt="about_media_1" /></div><h3 class="box-title">Efficient Use of Resources</h3><p class="box-text">Cost-effective planning to maximize value</p></div><div class="about-media"><div class="box-icon"><img decoding="async" src="/wp-content/uploads/2024/07/about_media_2.svg" alt="about_media_2" /></div><h3 class="box-title">Focus on Quality &amp; Safety</h3><p class="box-text">Built into every stage of the plan.</p></div></div> </div>
</div>
<div class="elementor-element elementor-element-29f108d e-con-full e-flex e-con e-child" data-id="29f108d" data-element_type="container" data-e-type="container">
<div class="elementor-element elementor-element-a13bc6b elementor-widget elementor-widget-rakarbutton" data-id="a13bc6b" data-element_type="widget" data-e-type="widget" data-widget_type="rakarbutton.default">
<div class="elementor-widget-container">
<div class="btn-wrapper"><a class="th-btn th_btn style4 rounded-10" href="about/index.html">Discover More<i class="far fa-arrow-right"></i></a></div> </div>
<div class="btn-wrapper"><a class="th-btn th_btn style4 rounded-10" href="/about">Discover More<i class="far fa-arrow-right"></i></a></div> </div>
</div>
<div class="elementor-element elementor-element-ac33de4 elementor-widget elementor-widget-html" data-id="ac33de4" data-element_type="widget" data-e-type="widget" data-widget_type="html.default">
<div class="elementor-widget-container">
@@ -60,7 +58,7 @@ cooling System.</p><div class="btn-group" data-ani="slideinup" data-ani-delay="0
<div class="elementor-element elementor-element-4d50f48 e-con-full e-flex e-con e-child" data-id="4d50f48" data-element_type="container" data-e-type="container">
<div class="elementor-element elementor-element-6ab087a elementor-widget elementor-widget-rakarimage" data-id="6ab087a" data-element_type="widget" data-e-type="widget" data-widget_type="rakarimage.default">
<div class="elementor-widget-container">
<div class="img-box5"><div class="img1"><img decoding="async" src="wp-content/uploads/2025/04/aboutcooling.png" alt="aboutcooling" /></div><div class="customer-box"><div class="media-body"><h4 class="box-title"><span class="counter-number">80</span>+</h4><p class="box-text">SATISFIED CLIENTS </p></div></div><div class="box-badge"><div class="spin-text"><svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="300px" height="300px" viewBox="0 0 300 300" enable-background="new 0 0 300 300" preserveAspectRatio="none" xml:space="preserve">
<div class="img-box5"><div class="img1"><img decoding="async" src="/wp-content/uploads/2025/04/aboutcooling.png" alt="aboutcooling" /></div><div class="customer-box"><div class="media-body"><h4 class="box-title"><span class="counter-number">80</span>+</h4><p class="box-text">SATISFIED CLIENTS </p></div></div><div class="box-badge"><div class="spin-text"><svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="300px" height="300px" viewBox="0 0 300 300" enable-background="new 0 0 300 300" preserveAspectRatio="none" xml:space="preserve">
<defs>
<path id="circlePath5" d="M 150, 150 m -60, 0 a 60,60 0 0,1 120,0 a 60,60 0 0,1 -120,0 " />
</defs>
@@ -71,7 +69,7 @@ cooling System.</p><div class="btn-group" data-ani="slideinup" data-ani-delay="0
<textPath xlink:href="#circlePath5">PROFEN ENGINEERING LLC</textPath>
</text>
</g>
</svg></div><div class="box-icon"><img decoding="async" src="wp-content/uploads/2024/07/about_badge.svg" alt="about_badge" /></div></div></div> </div>
</svg></div><div class="box-icon"><img decoding="async" src="/wp-content/uploads/2024/07/about_badge.svg" alt="about_badge" /></div></div></div> </div>
</div>
</div>
</div>
@@ -83,19 +81,19 @@ cooling System.</p><div class="btn-group" data-ani="slideinup" data-ani-delay="0
<div class="elementor-element elementor-element-5ab397b elementor-widget__width-initial elementor-widget elementor-widget-rakarsectiontitle" data-id="5ab397b" data-element_type="widget" data-e-type="widget" data-widget_type="rakarsectiontitle.default">
<div class="elementor-widget-container">
<div class="title-area text-left ">
<span class="sub-title2 shape-white"><img decoding="async" src="wp-content/plugins/rakar-core/assets/img/title_icon5.svg" alt="Shape">Our Services</span><h2 class="sec-title ">We Provide Residential &amp; Commercial Electronic Service</h2> </div>
<span class="sub-title2 shape-white"><img decoding="async" src="/wp-content/plugins/rakar-core/assets/img/title_icon5.svg" alt="Shape">Our Services</span><h2 class="sec-title ">We Provide Residential &amp; Commercial Electronic Service</h2> </div>
</div>
</div>
<div class="elementor-element elementor-element-521e1f7 elementor-widget elementor-widget-rakarbutton" data-id="521e1f7" data-element_type="widget" data-e-type="widget" data-widget_type="rakarbutton.default">
<div class="elementor-widget-container">
<div class="btn-wrapper"><a class="th-btn th_btn style2 rounded-12" href="https://profen.imdigitals.com/service/">View All Services<i class="far fa-arrow-right"></i></a></div> </div>
<div class="btn-wrapper"><a class="th-btn th_btn style2 rounded-12" href="/service">View All Services<i class="far fa-arrow-right"></i></a></div> </div>
</div>
</div>
<div class="elementor-element elementor-element-148606f elementor-widget elementor-widget-rakarservice" data-id="148606f" data-element_type="widget" data-e-type="widget" data-widget_type="rakarservice.default">
<div class="elementor-widget-container">
<div class="slider-wrap text-center"><div class="swiper th-slider has-shadow" id="serviceSlider3" data-slider-options='{"paginationType":"fraction","breakpoints":{"0":{"slidesPerView":1},"576":{"slidesPerView":"1"},"768":{"slidesPerView":"2"},"992":{"slidesPerView":"3"},"1200":{"slidesPerView":"3"},"1300":{"slidesPerView":"4"}}}'><div class="swiper-wrapper"><div class="swiper-slide"><div class="service-block"><div class="box-img"><img decoding="async" src="wp-content/uploads/2025/02/img-1.jpg" alt="img 1" /></div><a href="service/index.html" class="icon-btn"><i class="far fa-arrow-up-right"></i></a><div class="box-content"><div class="box-icon"><img decoding="async" src="wp-content/uploads/2024/07/service_block_4.svg" alt="service_block_4" /></div><h3 class="box-title"><a href="service/index.html">Adiabatic Pre-Cooling System</a></h3></div></div></div><div class="swiper-slide"><div class="service-block"><div class="box-img"><img decoding="async" src="wp-content/uploads/2025/02/IMG-9.jpg" alt="IMG 9" /></div><a href="service/index.html" class="icon-btn"><i class="far fa-arrow-up-right"></i></a><div class="box-content"><div class="box-icon"><img decoding="async" src="wp-content/uploads/2024/07/why_feature_6.svg" alt="why_feature_6" /></div><h3 class="box-title"><a href="service/index.html">Promist Misting Solutions</a></h3></div></div></div><div class="swiper-slide"><div class="service-block"><div class="box-img"><img decoding="async" src="wp-content/uploads/2025/02/IMG-4.jpg" alt="IMG 4" /></div><a href="service/index.html" class="icon-btn"><i class="far fa-arrow-up-right"></i></a><div class="box-content"><div class="box-icon"><img decoding="async" src="wp-content/uploads/2024/07/title_icon2.svg" alt="title_icon2" /></div><h3 class="box-title"><a href="service/index.html">
Chiller Hot &amp; Cool Solution</a></h3></div></div></div><div class="swiper-slide"><div class="service-block"><div class="box-img"><img decoding="async" src="wp-content/uploads/2026/01/bms.jpg" alt="bms" /></div><a href="service/index.html" class="icon-btn"><i class="far fa-arrow-up-right"></i></a><div class="box-content"><div class="box-icon"><img decoding="async" src="wp-content/uploads/2024/07/why_feature_2.svg" alt="why_feature_2" /></div><h3 class="box-title"><a href="service/index.html">Building Mngmt System</a></h3></div></div></div><div class="swiper-slide"><div class="service-block"><div class="box-img"><img decoding="async" src="wp-content/uploads/2025/02/IMG-6.jpg" alt="IMG 6" /></div><a href="service/index.html" class="icon-btn"><i class="far fa-arrow-up-right"></i></a><div class="box-content"><div class="box-icon"><img decoding="async" src="wp-content/uploads/2024/07/why_feature_1.svg" alt="why_feature_1" /></div><h3 class="box-title"><a href="service/index.html">Interior &amp; Fit-Out Work</a></h3></div></div></div><div class="swiper-slide"><div class="service-block"><div class="box-img"><img decoding="async" src="wp-content/uploads/2025/02/IMG-3.jpg" alt="IMG 3" /></div><a href="service/index.html" class="icon-btn"><i class="far fa-arrow-up-right"></i></a><div class="box-content"><div class="box-icon"><img decoding="async" src="wp-content/uploads/2024/07/why_feature_3.svg" alt="why_feature_3" /></div><h3 class="box-title"><a href="service/index.html">Building Contracting Works</a></h3></div></div></div><div class="swiper-slide"><div class="service-block"><div class="box-img"><img decoding="async" src="wp-content/uploads/2025/02/IMG-2.jpg" alt="IMG 2" /></div><a href="service/index.html" class="icon-btn"><i class="far fa-arrow-up-right"></i></a><div class="box-content"><div class="box-icon"><img decoding="async" src="wp-content/uploads/2024/07/why_feature_5.svg" alt="why_feature_5" /></div><h3 class="box-title"><a href="service/index.html">Metal Construction &amp; Fabrications</a></h3></div></div></div></div></div><div class="slider-controller"><button data-slider-prev="#serviceSlider3" class="slider-arrow default text-white slider-prev"><i class="far fa-arrow-left"></i></button><div class="slider-pagination white-color" data-slider-id="#serviceSlider3"></div><button data-slider-next="#serviceSlider3" class="slider-arrow default text-white slider-next"><i class="far fa-arrow-right"></i></button></div></div> </div>
<div class="slider-wrap text-center"><div class="swiper th-slider has-shadow" id="serviceSlider3" data-slider-options='{"paginationType":"fraction","breakpoints":{"0":{"slidesPerView":1},"576":{"slidesPerView":"1"},"768":{"slidesPerView":"2"},"992":{"slidesPerView":"3"},"1200":{"slidesPerView":"3"},"1300":{"slidesPerView":"4"}}}'><div class="swiper-wrapper"><div class="swiper-slide"><div class="service-block"><div class="box-img"><img decoding="async" src="/wp-content/uploads/2025/02/img-1.jpg" alt="img 1" /></div><a href="/service" class="icon-btn"><i class="far fa-arrow-up-right"></i></a><div class="box-content"><div class="box-icon"><img decoding="async" src="/wp-content/uploads/2024/07/service_block_4.svg" alt="service_block_4" /></div><h3 class="box-title"><a href="/service">Adiabatic Pre-Cooling System</a></h3></div></div></div><div class="swiper-slide"><div class="service-block"><div class="box-img"><img decoding="async" src="/wp-content/uploads/2025/02/IMG-9.jpg" alt="IMG 9" /></div><a href="/service" class="icon-btn"><i class="far fa-arrow-up-right"></i></a><div class="box-content"><div class="box-icon"><img decoding="async" src="/wp-content/uploads/2024/07/why_feature_6.svg" alt="why_feature_6" /></div><h3 class="box-title"><a href="/service">Promist Misting Solutions</a></h3></div></div></div><div class="swiper-slide"><div class="service-block"><div class="box-img"><img decoding="async" src="/wp-content/uploads/2025/02/IMG-4.jpg" alt="IMG 4" /></div><a href="/service" class="icon-btn"><i class="far fa-arrow-up-right"></i></a><div class="box-content"><div class="box-icon"><img decoding="async" src="/wp-content/uploads/2024/07/title_icon2.svg" alt="title_icon2" /></div><h3 class="box-title"><a href="/service">
Chiller Hot &amp; Cool Solution</a></h3></div></div></div><div class="swiper-slide"><div class="service-block"><div class="box-img"><img decoding="async" src="/wp-content/uploads/2026/01/bms.jpg" alt="bms" /></div><a href="/service" class="icon-btn"><i class="far fa-arrow-up-right"></i></a><div class="box-content"><div class="box-icon"><img decoding="async" src="/wp-content/uploads/2024/07/why_feature_2.svg" alt="why_feature_2" /></div><h3 class="box-title"><a href="/service">Building Mngmt System</a></h3></div></div></div><div class="swiper-slide"><div class="service-block"><div class="box-img"><img decoding="async" src="/wp-content/uploads/2025/02/IMG-6.jpg" alt="IMG 6" /></div><a href="/service" class="icon-btn"><i class="far fa-arrow-up-right"></i></a><div class="box-content"><div class="box-icon"><img decoding="async" src="/wp-content/uploads/2024/07/why_feature_1.svg" alt="why_feature_1" /></div><h3 class="box-title"><a href="/service">Interior &amp; Fit-Out Work</a></h3></div></div></div><div class="swiper-slide"><div class="service-block"><div class="box-img"><img decoding="async" src="/wp-content/uploads/2025/02/IMG-3.jpg" alt="IMG 3" /></div><a href="/service" class="icon-btn"><i class="far fa-arrow-up-right"></i></a><div class="box-content"><div class="box-icon"><img decoding="async" src="/wp-content/uploads/2024/07/why_feature_3.svg" alt="why_feature_3" /></div><h3 class="box-title"><a href="/service">Building Contracting Works</a></h3></div></div></div><div class="swiper-slide"><div class="service-block"><div class="box-img"><img decoding="async" src="/wp-content/uploads/2025/02/IMG-2.jpg" alt="IMG 2" /></div><a href="/service" class="icon-btn"><i class="far fa-arrow-up-right"></i></a><div class="box-content"><div class="box-icon"><img decoding="async" src="/wp-content/uploads/2024/07/why_feature_5.svg" alt="why_feature_5" /></div><h3 class="box-title"><a href="/service">Metal Construction &amp; Fabrications</a></h3></div></div></div></div></div><div class="slider-controller"><button data-slider-prev="#serviceSlider3" class="slider-arrow default text-white slider-prev"><i class="far fa-arrow-left"></i></button><div class="slider-pagination white-color" data-slider-id="#serviceSlider3"></div><button data-slider-next="#serviceSlider3" class="slider-arrow default text-white slider-next"><i class="far fa-arrow-right"></i></button></div></div> </div>
</div>
</div>
</div>
@@ -104,7 +102,7 @@ Chiller Hot &amp; Cool Solution</a></h3></div></div></div><div class="swiper-sli
<div class="elementor-element elementor-element-d78b401 elementor-widget elementor-widget-rakarsectiontitle" data-id="d78b401" data-element_type="widget" data-e-type="widget" data-widget_type="rakarsectiontitle.default">
<div class="elementor-widget-container">
<div class="title-area text-center ">
<span class="sub-title2 "><img decoding="async" src="wp-content/plugins/rakar-core/assets/img/title_icon5.svg" alt="Shape">Why Choose Us</span><h2 class="sec-title ">Great Reasons To Hire PROFEN</h2> </div>
<span class="sub-title2 "><img decoding="async" src="/wp-content/plugins/rakar-core/assets/img/title_icon5.svg" alt="Shape">Why Choose Us</span><h2 class="sec-title ">Great Reasons To Hire PROFEN</h2> </div>
</div>
</div>
@@ -112,19 +110,19 @@ Chiller Hot &amp; Cool Solution</a></h3></div></div></div><div class="swiper-sli
<div class="elementor-element elementor-element-9d48ffe e-con-full e-flex e-con e-child" data-id="9d48ffe" data-element_type="container" data-e-type="container">
<div class="elementor-element elementor-element-4d4c447 elementor-widget elementor-widget-rakarchooseus" data-id="4d4c447" data-element_type="widget" data-e-type="widget" data-widget_type="rakarchooseus.default">
<div class="elementor-widget-container">
<div class="why-feature"><div class="box-number">01</div><div class="box-icon"><img decoding="async" src="wp-content/uploads/2024/07/why_feature_1.svg" alt="why_feature_1" /></div><h3 class="box-title">Industry Expertise</h3><p class="box-text">With years of experience, we have successfully supplied high-performance solutions to a diverse range of industries, ensuring efficiency &amp; durability.</p></div><div class="why-feature"><div class="box-number">02</div><div class="box-icon"><img decoding="async" src="wp-content/uploads/2024/07/why_feature_2.svg" alt="why_feature_2" /></div><h3 class="box-title">Reliable Global Sourcing</h3><p class="box-text">With an extensive network of suppliers worldwide, we efficiently source materials &amp; equipment, offering competitive pricing &amp; timely delivery.</p></div><div class="why-feature"><div class="box-number">03</div><div class="box-icon"><img decoding="async" src="wp-content/uploads/2024/07/why_feature_3.svg" alt="why_feature_3" /></div><h3 class="box-title">ISO 9001:2015 Certified</h3><p class="box-text">Our commitment to quality and excellence is backed by ISO certification, ensuring that every product and service meets global industry standards.</p></div> </div>
<div class="why-feature"><div class="box-number">01</div><div class="box-icon"><img decoding="async" src="/wp-content/uploads/2024/07/why_feature_1.svg" alt="why_feature_1" /></div><h3 class="box-title">Industry Expertise</h3><p class="box-text">With years of experience, we have successfully supplied high-performance solutions to a diverse range of industries, ensuring efficiency &amp; durability.</p></div><div class="why-feature"><div class="box-number">02</div><div class="box-icon"><img decoding="async" src="/wp-content/uploads/2024/07/why_feature_2.svg" alt="why_feature_2" /></div><h3 class="box-title">Reliable Global Sourcing</h3><p class="box-text">With an extensive network of suppliers worldwide, we efficiently source materials &amp; equipment, offering competitive pricing &amp; timely delivery.</p></div><div class="why-feature"><div class="box-number">03</div><div class="box-icon"><img decoding="async" src="/wp-content/uploads/2024/07/why_feature_3.svg" alt="why_feature_3" /></div><h3 class="box-title">ISO 9001:2015 Certified</h3><p class="box-text">Our commitment to quality and excellence is backed by ISO certification, ensuring that every product and service meets global industry standards.</p></div> </div>
</div>
</div>
<div class="elementor-element elementor-element-c18e14e e-con-full elementor-hidden-tablet elementor-hidden-mobile e-flex e-con e-child" data-id="c18e14e" data-element_type="container" data-e-type="container">
<div class="elementor-element elementor-element-9180573 elementor-widget elementor-widget-image" data-id="9180573" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
<div class="elementor-widget-container">
<img fetchpriority="high" decoding="async" width="424" height="632" src="wp-content/uploads/2025/02/Workerimg.png" class="attachment-full size-full wp-image-2826" alt="" srcset="wp-content/uploads/2025/02/Workerimg.png 424w, wp-content/uploads/2025/02/Workerimg-201x300.png 201w" sizes="(max-width: 424px) 100vw, 424px" /> </div>
<img fetchpriority="high" decoding="async" width="424" height="632" src="/wp-content/uploads/2025/02/Workerimg.png" class="attachment-full size-full wp-image-2826" alt="" srcset="wp-content/uploads/2025/02/Workerimg.png 424w, wp-content/uploads/2025/02/Workerimg-201x300.png 201w" sizes="(max-width: 424px) 100vw, 424px" /> </div>
</div>
</div>
<div class="elementor-element elementor-element-bfd123f e-con-full e-flex e-con e-child" data-id="bfd123f" data-element_type="container" data-e-type="container">
<div class="elementor-element elementor-element-b4f3587 elementor-widget elementor-widget-rakarchooseus" data-id="b4f3587" data-element_type="widget" data-e-type="widget" data-widget_type="rakarchooseus.default">
<div class="elementor-widget-container">
<div class="why-feature"><div class="box-number">04</div><div class="box-icon"><img decoding="async" src="wp-content/uploads/2024/07/why_feature_4.svg" alt="why_feature_4" /></div><h3 class="box-title">High-Quality Products &amp; Services</h3><p class="box-text">We offer a diverse range of premium products from over 35 internationally recognized manufacturers, ensuring the best solutions for our clients.</p></div><div class="why-feature"><div class="box-number">05</div><div class="box-icon"><img decoding="async" src="wp-content/uploads/2024/07/why_feature_5.svg" alt="why_feature_5" /></div><h3 class="box-title">Customer-Centric Approach</h3><p class="box-text">We prioritize our clients needs, providing personalized support, technical expertise, and exceptional services from the beginning to completion of the project. </p></div><div class="why-feature"><div class="box-number">06</div><div class="box-icon"><img decoding="async" src="wp-content/uploads/2024/07/why_feature_6.svg" alt="why_feature_6" /></div><h3 class="box-title">Reputation &amp; Trust</h3><p class="box-text">More than 80% of our business comes from repeat customers and word-of-mouth referrals, a testament to our reliable services, customer satisfaction, and market leadership.</p></div> </div>
<div class="why-feature"><div class="box-number">04</div><div class="box-icon"><img decoding="async" src="/wp-content/uploads/2024/07/why_feature_4.svg" alt="why_feature_4" /></div><h3 class="box-title">High-Quality Products &amp; Services</h3><p class="box-text">We offer a diverse range of premium products from over 35 internationally recognized manufacturers, ensuring the best solutions for our clients.</p></div><div class="why-feature"><div class="box-number">05</div><div class="box-icon"><img decoding="async" src="/wp-content/uploads/2024/07/why_feature_5.svg" alt="why_feature_5" /></div><h3 class="box-title">Customer-Centric Approach</h3><p class="box-text">We prioritize our clients needs, providing personalized support, technical expertise, and exceptional services from the beginning to completion of the project. </p></div><div class="why-feature"><div class="box-number">06</div><div class="box-icon"><img decoding="async" src="/wp-content/uploads/2024/07/why_feature_6.svg" alt="why_feature_6" /></div><h3 class="box-title">Reputation &amp; Trust</h3><p class="box-text">More than 80% of our business comes from repeat customers and word-of-mouth referrals, a testament to our reliable services, customer satisfaction, and market leadership.</p></div> </div>
</div>
</div>
</div>
@@ -141,7 +139,7 @@ Chiller Hot &amp; Cool Solution</a></h3></div></div></div><div class="swiper-sli
<div class="elementor-widget-container">
<div class="elementor-image-carousel-wrapper swiper" role="region" aria-roledescription="carousel" aria-label="Image Carousel" dir="ltr">
<div class="elementor-image-carousel swiper-wrapper" aria-live="off">
<div class="swiper-slide" role="group" aria-roledescription="slide" aria-label="1 of 8"><figure class="swiper-slide-inner"><img decoding="async" class="swiper-slide-image" src="wp-content/uploads/2026/01/10.png" alt="10" /></figure></div><div class="swiper-slide" role="group" aria-roledescription="slide" aria-label="2 of 8"><figure class="swiper-slide-inner"><img decoding="async" class="swiper-slide-image" src="wp-content/uploads/2026/01/16.png" alt="16" /></figure></div><div class="swiper-slide" role="group" aria-roledescription="slide" aria-label="3 of 8"><figure class="swiper-slide-inner"><img decoding="async" class="swiper-slide-image" src="wp-content/uploads/2026/01/17.png" alt="17" /></figure></div><div class="swiper-slide" role="group" aria-roledescription="slide" aria-label="4 of 8"><figure class="swiper-slide-inner"><img decoding="async" class="swiper-slide-image" src="wp-content/uploads/2026/01/18.png" alt="18" /></figure></div><div class="swiper-slide" role="group" aria-roledescription="slide" aria-label="5 of 8"><figure class="swiper-slide-inner"><img decoding="async" class="swiper-slide-image" src="wp-content/uploads/2026/01/20.png" alt="20" /></figure></div><div class="swiper-slide" role="group" aria-roledescription="slide" aria-label="6 of 8"><figure class="swiper-slide-inner"><img decoding="async" class="swiper-slide-image" src="wp-content/uploads/2026/01/30.png" alt="30" /></figure></div><div class="swiper-slide" role="group" aria-roledescription="slide" aria-label="7 of 8"><figure class="swiper-slide-inner"><img decoding="async" class="swiper-slide-image" src="wp-content/uploads/2026/01/40.png" alt="40" /></figure></div><div class="swiper-slide" role="group" aria-roledescription="slide" aria-label="8 of 8"><figure class="swiper-slide-inner"><img decoding="async" class="swiper-slide-image" src="wp-content/uploads/2026/01/50.png" alt="50" /></figure></div> </div>
<div class="swiper-slide" role="group" aria-roledescription="slide" aria-label="1 of 8"><figure class="swiper-slide-inner"><img decoding="async" class="swiper-slide-image" src="/wp-content/uploads/2026/01/10.png" alt="10" /></figure></div><div class="swiper-slide" role="group" aria-roledescription="slide" aria-label="2 of 8"><figure class="swiper-slide-inner"><img decoding="async" class="swiper-slide-image" src="/wp-content/uploads/2026/01/16.png" alt="16" /></figure></div><div class="swiper-slide" role="group" aria-roledescription="slide" aria-label="3 of 8"><figure class="swiper-slide-inner"><img decoding="async" class="swiper-slide-image" src="/wp-content/uploads/2026/01/17.png" alt="17" /></figure></div><div class="swiper-slide" role="group" aria-roledescription="slide" aria-label="4 of 8"><figure class="swiper-slide-inner"><img decoding="async" class="swiper-slide-image" src="/wp-content/uploads/2026/01/18.png" alt="18" /></figure></div><div class="swiper-slide" role="group" aria-roledescription="slide" aria-label="5 of 8"><figure class="swiper-slide-inner"><img decoding="async" class="swiper-slide-image" src="/wp-content/uploads/2026/01/20.png" alt="20" /></figure></div><div class="swiper-slide" role="group" aria-roledescription="slide" aria-label="6 of 8"><figure class="swiper-slide-inner"><img decoding="async" class="swiper-slide-image" src="/wp-content/uploads/2026/01/30.png" alt="30" /></figure></div><div class="swiper-slide" role="group" aria-roledescription="slide" aria-label="7 of 8"><figure class="swiper-slide-inner"><img decoding="async" class="swiper-slide-image" src="/wp-content/uploads/2026/01/40.png" alt="40" /></figure></div><div class="swiper-slide" role="group" aria-roledescription="slide" aria-label="8 of 8"><figure class="swiper-slide-inner"><img decoding="async" class="swiper-slide-image" src="/wp-content/uploads/2026/01/50.png" alt="50" /></figure></div> </div>
</div>
</div>
@@ -152,7 +150,7 @@ Chiller Hot &amp; Cool Solution</a></h3></div></div></div><div class="swiper-sli
<div class="elementor-element elementor-element-9dcf892 elementor-widget__width-initial elementor-widget elementor-widget-rakarsectiontitle" data-id="9dcf892" data-element_type="widget" data-e-type="widget" data-widget_type="rakarsectiontitle.default">
<div class="elementor-widget-container">
<div class="title-area text-center ">
<span class="sub-title2 "><img decoding="async" src="wp-content/uploads/2024/07/title_icon5_white.svg" alt="title_icon5_white" />Working Process</span><h2 class="sec-title ">Follow Great Process</h2><p>Our process is designed to deliver reliable and high-performance solutions across various industries.</p> </div>
<span class="sub-title2 "><img decoding="async" src="/wp-content/uploads/2024/07/title_icon5_white.svg" alt="title_icon5_white" />Working Process</span><h2 class="sec-title ">Follow Great Process</h2><p>Our process is designed to deliver reliable and high-performance solutions across various industries.</p> </div>
</div>
</div>
@@ -167,7 +165,7 @@ Chiller Hot &amp; Cool Solution</a></h3></div></div></div><div class="swiper-sli
<div class="elementor-element elementor-element-7f42902 elementor-widget__width-initial elementor-widget elementor-widget-rakarsectiontitle" data-id="7f42902" data-element_type="widget" data-e-type="widget" data-widget_type="rakarsectiontitle.default">
<div class="elementor-widget-container">
<div class="title-area text-center ">
<span class="sub-title2 "><img decoding="async" src="wp-content/plugins/rakar-core/assets/img/title_icon5.svg" alt="Shape">Our Projects</span><h2 class="sec-title ">Explore Latest Projects</h2><p>Our team of experts is equipped to assist you with a variety of pipe repair needs. Please share your email address to connect with us.</p> </div>
<span class="sub-title2 "><img decoding="async" src="/wp-content/plugins/rakar-core/assets/img/title_icon5.svg" alt="Shape">Our Projects</span><h2 class="sec-title ">Explore Latest Projects</h2><p>Our team of experts is equipped to assist you with a variety of pipe repair needs. Please share your email address to connect with us.</p> </div>
</div>
</div>
@@ -177,7 +175,7 @@ Chiller Hot &amp; Cool Solution</a></h3></div></div></div><div class="swiper-sli
<div class="elementor-element elementor-element-84548b2 e-con-full e-flex e-con e-parent" data-id="84548b2" data-element_type="container" data-e-type="container">
<div class="elementor-element elementor-element-33d6d1d elementor-widget elementor-widget-rakarproject" data-id="33d6d1d" data-element_type="widget" data-e-type="widget" data-widget_type="rakarproject.default">
<div class="elementor-widget-container">
<div class="slider-wrap text-center"><div class="swiper th-slider project-slider5" id="projectSlider50" data-slider-options='{"paginationType":"fraction","centeredSlides":true,"centeredSlidesBounds":true,"breakpoints":{"0":{"slidesPerView":1},"576":{"slidesPerView":"1"},"768":{"slidesPerView":"1"},"992":{"slidesPerView":"2"},"1200":{"slidesPerView":"2"}}}'><div class="swiper-wrapper"><div class="swiper-slide"><div class="project-element"><div class="box-img"><img decoding="async" src="wp-content/uploads/2024/07/Insights-Swimming-Pool-Heat-Pumps.jpg" alt="Insights Swimming Pool Heat Pumps" /></div><a class="icon-btn" href="project/index.html"><i class="far fa-arrow-up-right"></i></a><div class="box-content"><p class="box-subtitle">Heating Solution</p><h3 class="box-title"><a href="project/index.html">Swimming Pool Heating</a></h3><p class="box-text">Heat Pumps Energy-efficient heating for year-round pool comfort, Electric Heaters Fast and precise temperature control,Solar Pool Heaters Eco-friendly and cost-saving solutions</p></div></div></div><div class="swiper-slide"><div class="project-element"><div class="box-img"><img decoding="async" src="wp-content/uploads/2024/07/commercial-heating.jpg" alt="commercial heating" /></div><a class="icon-btn" href="project/index.html"><i class="far fa-arrow-up-right"></i></a><div class="box-content"><p class="box-subtitle">Heating Solution</p><h3 class="box-title"><a href="project/index.html">Commercial &amp; Industrial Heating</a></h3><p class="box-text">Boilers &amp; Water Heaters High-performance solutions for hotels, hospitals, and factories, Radiant Heating Systems Ideal for warehouses, greenhouses, and industrial spaces, Steam Heating Systems Efficient thermal solutions for manufacturing and processing industries</p></div></div></div><div class="swiper-slide"><div class="project-element"><div class="box-img"><img decoding="async" src="wp-content/uploads/2024/07/outdoor-heating.jpg" alt="outdoor heating" /></div><a class="icon-btn" href="project/index.html"><i class="far fa-arrow-up-right"></i></a><div class="box-content"><p class="box-subtitle">Heating Solution</p><h3 class="box-title"><a href="project/index.html">Residential &amp; Outdoor Heating</a></h3><p class="box-text">Patio Heaters Perfect for restaurants, cafes, and villas, Underfloor Heating Comfortable and energy-efficient indoor heating, Fire Pit &amp; Outdoor Heating Solutions Stylish and effective for cold-weather outdoor spaces</p></div></div></div></div></div><div class="slider-controller"><button data-slider-prev="#projectSlider50" class="slider-arrow default slider-prev"><i class="far fa-arrow-left"></i></button><div class="slider-pagination" data-slider-id="#projectSlider50"></div><button data-slider-next="#projectSlider50" class="slider-arrow default slider-next"><i class="far fa-arrow-right"></i></button></div></div> </div>
<div class="slider-wrap text-center"><div class="swiper th-slider project-slider5" id="projectSlider50" data-slider-options='{"paginationType":"fraction","centeredSlides":true,"centeredSlidesBounds":true,"breakpoints":{"0":{"slidesPerView":1},"576":{"slidesPerView":"1"},"768":{"slidesPerView":"1"},"992":{"slidesPerView":"2"},"1200":{"slidesPerView":"2"}}}'><div class="swiper-wrapper"><div class="swiper-slide"><div class="project-element"><div class="box-img"><img decoding="async" src="/wp-content/uploads/2024/07/Insights-Swimming-Pool-Heat-Pumps.jpg" alt="Insights Swimming Pool Heat Pumps" /></div><a class="icon-btn" href="/project"><i class="far fa-arrow-up-right"></i></a><div class="box-content"><p class="box-subtitle">Heating Solution</p><h3 class="box-title"><a href="/project">Swimming Pool Heating</a></h3><p class="box-text">Heat Pumps Energy-efficient heating for year-round pool comfort, Electric Heaters Fast and precise temperature control,Solar Pool Heaters Eco-friendly and cost-saving solutions</p></div></div></div><div class="swiper-slide"><div class="project-element"><div class="box-img"><img decoding="async" src="/wp-content/uploads/2024/07/commercial-heating.jpg" alt="commercial heating" /></div><a class="icon-btn" href="/project"><i class="far fa-arrow-up-right"></i></a><div class="box-content"><p class="box-subtitle">Heating Solution</p><h3 class="box-title"><a href="/project">Commercial &amp; Industrial Heating</a></h3><p class="box-text">Boilers &amp; Water Heaters High-performance solutions for hotels, hospitals, and factories, Radiant Heating Systems Ideal for warehouses, greenhouses, and industrial spaces, Steam Heating Systems Efficient thermal solutions for manufacturing and processing industries</p></div></div></div><div class="swiper-slide"><div class="project-element"><div class="box-img"><img decoding="async" src="/wp-content/uploads/2024/07/outdoor-heating.jpg" alt="outdoor heating" /></div><a class="icon-btn" href="/project"><i class="far fa-arrow-up-right"></i></a><div class="box-content"><p class="box-subtitle">Heating Solution</p><h3 class="box-title"><a href="/project">Residential &amp; Outdoor Heating</a></h3><p class="box-text">Patio Heaters Perfect for restaurants, cafes, and villas, Underfloor Heating Comfortable and energy-efficient indoor heating, Fire Pit &amp; Outdoor Heating Solutions Stylish and effective for cold-weather outdoor spaces</p></div></div></div></div></div><div class="slider-controller"><button data-slider-prev="#projectSlider50" class="slider-arrow default slider-prev"><i class="far fa-arrow-left"></i></button><div class="slider-pagination" data-slider-id="#projectSlider50"></div><button data-slider-next="#projectSlider50" class="slider-arrow default slider-next"><i class="far fa-arrow-right"></i></button></div></div> </div>
</div>
</div>
</div>
@@ -185,7 +183,7 @@ Chiller Hot &amp; Cool Solution</a></h3></div></div></div><div class="swiper-sli
<div class="elementor-element elementor-element-c197f94 e-con-full e-flex e-con e-parent" data-id="c197f94" data-element_type="container" data-e-type="container">
<div class="elementor-element elementor-element-20f24c9 elementor-widget elementor-widget-rakarproject" data-id="20f24c9" data-element_type="widget" data-e-type="widget" data-widget_type="rakarproject.default">
<div class="elementor-widget-container">
<div class="slider-wrap text-center"><div class="swiper th-slider project-slider5" id="projectSlider51" data-slider-options='{"paginationType":"fraction","centeredSlides":true,"centeredSlidesBounds":true,"breakpoints":{"0":{"slidesPerView":1},"576":{"slidesPerView":"1"},"768":{"slidesPerView":"1"},"992":{"slidesPerView":"2"},"1200":{"slidesPerView":"2"}}}'><div class="swiper-wrapper"><div class="swiper-slide"><div class="project-element"><div class="box-img"><img decoding="async" src="wp-content/uploads/2024/07/outdoorcooling.webp" alt="outdoorcooling" /></div><a class="icon-btn" href="project/index.html"><i class="far fa-arrow-up-right"></i></a><div class="box-content"><p class="box-subtitle">Cooling Solution</p><h3 class="box-title"><a href="project/index.html">Outdoor Cooling Solutions</a></h3><p class="box-text">Misting Systems Reduces outdoor temperatures by 10-15°C, perfect for gardens, patios, and outdoor restaurants, Evaporative Cooling Ideal for open-air spaces and commercial venues, Patio &amp; Terrace Cooling Fans Enhances comfort for outdoor seating areas</p></div></div></div><div class="swiper-slide"><div class="project-element"><div class="box-img"><img decoding="async" src="wp-content/uploads/2024/07/images.jpeg" alt="images" /></div><a class="icon-btn" href="project/index.html"><i class="far fa-arrow-up-right"></i></a><div class="box-content"><p class="box-subtitle">Cooling Solution</p><h3 class="box-title"><a href="project/index.html">Swimming Pool Cooling</a></h3><p class="box-text">Pool Chillers Lowers water temperature during hot summer months, Heat/Cool Pumps Versatile solution for year-round temperature control,Energy-Efficient Pool Cooling Systems</p></div></div></div><div class="swiper-slide"><div class="project-element"><div class="box-img"><img decoding="async" src="wp-content/uploads/2024/07/cooling.jpeg" alt="cooling" /></div><a class="icon-btn" href="project/index.html"><i class="far fa-arrow-up-right"></i></a><div class="box-content"><p class="box-subtitle">Cooling Solution</p><h3 class="box-title"><a href="project/index.html">Industrial &amp; Commercial Cooling</a></h3><p class="box-text">HVAC Systems High-efficiency cooling for factories, warehouses, and offices, Chilled Water Systems Powerful cooling for large-scale industrial operations,Air Handling Units &amp; Cooling Towers Optimized thermal management for heavy-duty industries</p></div></div></div><div class="swiper-slide"><div class="project-element"><div class="box-img"><img decoding="async" src="wp-content/uploads/2024/07/fam-bam-1024x533-1.png" alt="fam bam 1024x533 1" /></div><a class="icon-btn" href="project/index.html"><i class="far fa-arrow-up-right"></i></a><div class="box-content"><p class="box-subtitle">Cooling Solution</p><h3 class="box-title"><a href="project/index.html">Customized Cooling Solutions</a></h3><p class="box-text">Tailored designs for specific climate conditions and operational needs, High-quality, durable components ensuring long-lasting performance, Low maintenance and energy-efficient systems</p></div></div></div></div></div><div class="slider-controller"><button data-slider-prev="#projectSlider51" class="slider-arrow default slider-prev"><i class="far fa-arrow-left"></i></button><div class="slider-pagination" data-slider-id="#projectSlider51"></div><button data-slider-next="#projectSlider51" class="slider-arrow default slider-next"><i class="far fa-arrow-right"></i></button></div></div> </div>
<div class="slider-wrap text-center"><div class="swiper th-slider project-slider5" id="projectSlider51" data-slider-options='{"paginationType":"fraction","centeredSlides":true,"centeredSlidesBounds":true,"breakpoints":{"0":{"slidesPerView":1},"576":{"slidesPerView":"1"},"768":{"slidesPerView":"1"},"992":{"slidesPerView":"2"},"1200":{"slidesPerView":"2"}}}'><div class="swiper-wrapper"><div class="swiper-slide"><div class="project-element"><div class="box-img"><img decoding="async" src="/wp-content/uploads/2024/07/outdoorcooling.webp" alt="outdoorcooling" /></div><a class="icon-btn" href="/project"><i class="far fa-arrow-up-right"></i></a><div class="box-content"><p class="box-subtitle">Cooling Solution</p><h3 class="box-title"><a href="/project">Outdoor Cooling Solutions</a></h3><p class="box-text">Misting Systems Reduces outdoor temperatures by 10-15°C, perfect for gardens, patios, and outdoor restaurants, Evaporative Cooling Ideal for open-air spaces and commercial venues, Patio &amp; Terrace Cooling Fans Enhances comfort for outdoor seating areas</p></div></div></div><div class="swiper-slide"><div class="project-element"><div class="box-img"><img decoding="async" src="/wp-content/uploads/2024/07/images.jpeg" alt="images" /></div><a class="icon-btn" href="/project"><i class="far fa-arrow-up-right"></i></a><div class="box-content"><p class="box-subtitle">Cooling Solution</p><h3 class="box-title"><a href="/project">Swimming Pool Cooling</a></h3><p class="box-text">Pool Chillers Lowers water temperature during hot summer months, Heat/Cool Pumps Versatile solution for year-round temperature control,Energy-Efficient Pool Cooling Systems</p></div></div></div><div class="swiper-slide"><div class="project-element"><div class="box-img"><img decoding="async" src="/wp-content/uploads/2024/07/cooling.jpeg" alt="cooling" /></div><a class="icon-btn" href="/project"><i class="far fa-arrow-up-right"></i></a><div class="box-content"><p class="box-subtitle">Cooling Solution</p><h3 class="box-title"><a href="/project">Industrial &amp; Commercial Cooling</a></h3><p class="box-text">HVAC Systems High-efficiency cooling for factories, warehouses, and offices, Chilled Water Systems Powerful cooling for large-scale industrial operations,Air Handling Units &amp; Cooling Towers Optimized thermal management for heavy-duty industries</p></div></div></div><div class="swiper-slide"><div class="project-element"><div class="box-img"><img decoding="async" src="/wp-content/uploads/2024/07/fam-bam-1024x533-1.png" alt="fam bam 1024x533 1" /></div><a class="icon-btn" href="/project"><i class="far fa-arrow-up-right"></i></a><div class="box-content"><p class="box-subtitle">Cooling Solution</p><h3 class="box-title"><a href="/project">Customized Cooling Solutions</a></h3><p class="box-text">Tailored designs for specific climate conditions and operational needs, High-quality, durable components ensuring long-lasting performance, Low maintenance and energy-efficient systems</p></div></div></div></div></div><div class="slider-controller"><button data-slider-prev="#projectSlider51" class="slider-arrow default slider-prev"><i class="far fa-arrow-left"></i></button><div class="slider-pagination" data-slider-id="#projectSlider51"></div><button data-slider-next="#projectSlider51" class="slider-arrow default slider-next"><i class="far fa-arrow-right"></i></button></div></div> </div>
</div>
</div>
</div>
@@ -193,7 +191,7 @@ Chiller Hot &amp; Cool Solution</a></h3></div></div></div><div class="swiper-sli
<div class="elementor-element elementor-element-c26e3b3 e-con-full e-flex e-con e-parent" data-id="c26e3b3" data-element_type="container" data-e-type="container">
<div class="elementor-element elementor-element-f6690c5 elementor-widget elementor-widget-rakarproject" data-id="f6690c5" data-element_type="widget" data-e-type="widget" data-widget_type="rakarproject.default">
<div class="elementor-widget-container">
<div class="slider-wrap text-center"><div class="swiper th-slider project-slider5" id="projectSlider52" data-slider-options='{"paginationType":"fraction","centeredSlides":true,"centeredSlidesBounds":true,"breakpoints":{"0":{"slidesPerView":1},"576":{"slidesPerView":"1"},"768":{"slidesPerView":"1"},"992":{"slidesPerView":"2"},"1200":{"slidesPerView":"2"}}}'><div class="swiper-wrapper"><div class="swiper-slide"><div class="project-element"><div class="box-img"><img decoding="async" src="wp-content/uploads/2024/07/outdoormist.webp" alt="outdoormist" /></div><a class="icon-btn" href="project/index.html"><i class="far fa-arrow-up-right"></i></a><div class="box-content"><p class="box-subtitle">Misting Solution</p><h3 class="box-title"><a href="project/index.html">Outdoor Cooling Misting Systems</a></h3><p class="box-text">Patio &amp; Garden Misting Perfect for homes, villas, cafés, and restaurants, Resort &amp; Poolside Cooling Enhances guest comfort in hot climates, Event &amp; Festival Misting Creates a cooling and refreshing atmosphere for outdoor gatherings</p></div></div></div><div class="swiper-slide"><div class="project-element"><div class="box-img"><img decoding="async" src="wp-content/uploads/2024/07/mistingindus.jpg" alt="mistingindus" /></div><a class="icon-btn" href="project/index.html"><i class="far fa-arrow-up-right"></i></a><div class="box-content"><p class="box-subtitle">Misting Solution</p><h3 class="box-title"><a href="project/index.html">Industrial &amp; Commercial Misting</a></h3><p class="box-text">Warehouse &amp; Factory Cooling Reduces heat in large workspaces, Greenhouse Humidification Maintains optimal humidity for plant growth, Dust &amp; Odor Control Suppresses airborne particles in construction and waste management sites</p></div></div></div><div class="swiper-slide"><div class="project-element"><div class="box-img"><img decoding="async" src="wp-content/uploads/2024/07/fogg.jpeg" alt="fogg" /></div><a class="icon-btn" href="project/index.html"><i class="far fa-arrow-up-right"></i></a><div class="box-content"><p class="box-subtitle">Misting Solution</p><h3 class="box-title"><a href="project/index.html">Special Effects &amp; Fogging</a></h3><p class="box-text">Theme Parks &amp; Water Attractions Enhances visual effects and ambiance ,Stage &amp; Concert Mist Effects Adds a dramatic cooling mist for performances , Landscape &amp; Architectural Fogging Creates a unique and aesthetic environment</p></div></div></div><div class="swiper-slide"><div class="project-element"><div class="box-img"><img decoding="async" src="wp-content/uploads/2024/07/cust.mist_.webp" alt="cust.mist_" /></div><a class="icon-btn" href="project/index.html"><i class="far fa-arrow-up-right"></i></a><div class="box-content"><p class="box-subtitle">Misting Solution</p><h3 class="box-title"><a href="project/index.html">Custom Misting Solutions</a></h3><p class="box-text">Tailored designs for any application , High-quality, durable nozzles, pumps, and tubing, Energy-efficient and low-maintenance systems</p></div></div></div></div></div><div class="slider-controller"><button data-slider-prev="#projectSlider52" class="slider-arrow default slider-prev"><i class="far fa-arrow-left"></i></button><div class="slider-pagination" data-slider-id="#projectSlider52"></div><button data-slider-next="#projectSlider52" class="slider-arrow default slider-next"><i class="far fa-arrow-right"></i></button></div></div> </div>
<div class="slider-wrap text-center"><div class="swiper th-slider project-slider5" id="projectSlider52" data-slider-options='{"paginationType":"fraction","centeredSlides":true,"centeredSlidesBounds":true,"breakpoints":{"0":{"slidesPerView":1},"576":{"slidesPerView":"1"},"768":{"slidesPerView":"1"},"992":{"slidesPerView":"2"},"1200":{"slidesPerView":"2"}}}'><div class="swiper-wrapper"><div class="swiper-slide"><div class="project-element"><div class="box-img"><img decoding="async" src="/wp-content/uploads/2024/07/outdoormist.webp" alt="outdoormist" /></div><a class="icon-btn" href="/project"><i class="far fa-arrow-up-right"></i></a><div class="box-content"><p class="box-subtitle">Misting Solution</p><h3 class="box-title"><a href="/project">Outdoor Cooling Misting Systems</a></h3><p class="box-text">Patio &amp; Garden Misting Perfect for homes, villas, cafés, and restaurants, Resort &amp; Poolside Cooling Enhances guest comfort in hot climates, Event &amp; Festival Misting Creates a cooling and refreshing atmosphere for outdoor gatherings</p></div></div></div><div class="swiper-slide"><div class="project-element"><div class="box-img"><img decoding="async" src="/wp-content/uploads/2024/07/mistingindus.jpg" alt="mistingindus" /></div><a class="icon-btn" href="/project"><i class="far fa-arrow-up-right"></i></a><div class="box-content"><p class="box-subtitle">Misting Solution</p><h3 class="box-title"><a href="/project">Industrial &amp; Commercial Misting</a></h3><p class="box-text">Warehouse &amp; Factory Cooling Reduces heat in large workspaces, Greenhouse Humidification Maintains optimal humidity for plant growth, Dust &amp; Odor Control Suppresses airborne particles in construction and waste management sites</p></div></div></div><div class="swiper-slide"><div class="project-element"><div class="box-img"><img decoding="async" src="/wp-content/uploads/2024/07/fogg.jpeg" alt="fogg" /></div><a class="icon-btn" href="/project"><i class="far fa-arrow-up-right"></i></a><div class="box-content"><p class="box-subtitle">Misting Solution</p><h3 class="box-title"><a href="/project">Special Effects &amp; Fogging</a></h3><p class="box-text">Theme Parks &amp; Water Attractions Enhances visual effects and ambiance ,Stage &amp; Concert Mist Effects Adds a dramatic cooling mist for performances , Landscape &amp; Architectural Fogging Creates a unique and aesthetic environment</p></div></div></div><div class="swiper-slide"><div class="project-element"><div class="box-img"><img decoding="async" src="/wp-content/uploads/2024/07/cust.mist_.webp" alt="cust.mist_" /></div><a class="icon-btn" href="/project"><i class="far fa-arrow-up-right"></i></a><div class="box-content"><p class="box-subtitle">Misting Solution</p><h3 class="box-title"><a href="/project">Custom Misting Solutions</a></h3><p class="box-text">Tailored designs for any application , High-quality, durable nozzles, pumps, and tubing, Energy-efficient and low-maintenance systems</p></div></div></div></div></div><div class="slider-controller"><button data-slider-prev="#projectSlider52" class="slider-arrow default slider-prev"><i class="far fa-arrow-left"></i></button><div class="slider-pagination" data-slider-id="#projectSlider52"></div><button data-slider-next="#projectSlider52" class="slider-arrow default slider-next"><i class="far fa-arrow-right"></i></button></div></div> </div>
</div>
</div>
</div>
@@ -201,7 +199,7 @@ Chiller Hot &amp; Cool Solution</a></h3></div></div></div><div class="swiper-sli
</div>
<div class="elementor-element elementor-element-208ae46 elementor-widget elementor-widget-rakarshapeimage" data-id="208ae46" data-element_type="widget" data-e-type="widget" data-widget_type="rakarshapeimage.default">
<div class="elementor-widget-container">
<!-- Image --><div class="shape-mockup " data-top="1px" data-right="1px"><img decoding="async" class="" src="wp-content/uploads/2024/08/project_bg_5.png" alt="Shape Image" ></div><!-- End Image --> </div>
<!-- Image --><div class="shape-mockup " data-top="1px" data-right="1px"><img decoding="async" class="" src="/wp-content/uploads/2024/08/project_bg_5.png" alt="Shape Image" ></div><!-- End Image --> </div>
</div>
</div>
</div>
@@ -256,13 +254,13 @@ Chiller Hot &amp; Cool Solution</a></h3></div></div></div><div class="swiper-sli
<div class="elementor-element elementor-element-b17d88d elementor-widget elementor-widget-rakarsectiontitle" data-id="b17d88d" data-element_type="widget" data-e-type="widget" data-widget_type="rakarsectiontitle.default">
<div class="elementor-widget-container">
<div class="title-area text-center ">
<span class="sub-title2 "><img decoding="async" src="wp-content/plugins/rakar-core/assets/img/title_icon5.svg" alt="Shape">Our Best Gallery</span><h2 class="sec-title ">Our Awesome Gallery</h2> </div>
<span class="sub-title2 "><img decoding="async" src="/wp-content/plugins/rakar-core/assets/img/title_icon5.svg" alt="Shape">Our Best Gallery</span><h2 class="sec-title ">Our Awesome Gallery</h2> </div>
</div>
</div>
<div class="elementor-element elementor-element-cab3119 elementor-widget elementor-widget-rakargallery" data-id="cab3119" data-element_type="widget" data-e-type="widget" data-widget_type="rakargallery.default">
<div class="elementor-widget-container">
<div class="row gy-4 filter-active"><div class="col-xl-3 col-md-6 filter-item"><div class="gallery-grid"><div class="box-img"><img decoding="async" src="wp-content/uploads/2025/02/IMG-11.jpg" alt="IMG 11" /></div><a href="wp-content/uploads/2025/02/IMG-11.jpg" class="icon-btn popup-image"><i class="fas fa-plus"></i></a></div></div><div class="col-md-6 filter-item"><div class="gallery-grid"><div class="box-img"><img decoding="async" src="wp-content/uploads/2025/02/IMG-8.jpg" alt="IMG 8" /></div><a href="wp-content/uploads/2025/02/IMG-8.jpg" class="icon-btn popup-image"><i class="fas fa-plus"></i></a></div></div><div class="col-xl-3 col-md-6 filter-item"><div class="gallery-grid"><div class="box-img"><img decoding="async" src="wp-content/uploads/2025/02/IMG-7.jpg" alt="IMG 7" /></div><a href="wp-content/uploads/2025/02/IMG-7.jpg" class="icon-btn popup-image"><i class="fas fa-plus"></i></a></div></div><div class="col-xl-3 col-md-6 filter-item"><div class="gallery-grid"><div class="box-img"><img decoding="async" src="wp-content/uploads/2025/02/IMG-9.jpg" alt="IMG 9" /></div><a href="wp-content/uploads/2025/02/IMG-9.jpg" class="icon-btn popup-image"><i class="fas fa-plus"></i></a></div></div><div class="col-xl-3 col-md-6 filter-item"><div class="gallery-grid"><div class="box-img"><img decoding="async" src="wp-content/uploads/2025/02/ELECTRICAL.jpg" alt="ELECTRICAL" /></div><a href="wp-content/uploads/2025/02/ELECTRICAL.jpg" class="icon-btn popup-image"><i class="fas fa-plus"></i> </a></div></div></div> </div>
<div class="row gy-4 filter-active"><div class="col-xl-3 col-md-6 filter-item"><div class="gallery-grid"><div class="box-img"><img decoding="async" src="/wp-content/uploads/2025/02/IMG-11.jpg" alt="IMG 11" /></div><a href="/wp-content/uploads/2025/02/IMG-11.jpg" class="icon-btn popup-image"><i class="fas fa-plus"></i></a></div></div><div class="col-md-6 filter-item"><div class="gallery-grid"><div class="box-img"><img decoding="async" src="/wp-content/uploads/2025/02/IMG-8.jpg" alt="IMG 8" /></div><a href="/wp-content/uploads/2025/02/IMG-8.jpg" class="icon-btn popup-image"><i class="fas fa-plus"></i></a></div></div><div class="col-xl-3 col-md-6 filter-item"><div class="gallery-grid"><div class="box-img"><img decoding="async" src="/wp-content/uploads/2025/02/IMG-7.jpg" alt="IMG 7" /></div><a href="/wp-content/uploads/2025/02/IMG-7.jpg" class="icon-btn popup-image"><i class="fas fa-plus"></i></a></div></div><div class="col-xl-3 col-md-6 filter-item"><div class="gallery-grid"><div class="box-img"><img decoding="async" src="/wp-content/uploads/2025/02/IMG-9.jpg" alt="IMG 9" /></div><a href="/wp-content/uploads/2025/02/IMG-9.jpg" class="icon-btn popup-image"><i class="fas fa-plus"></i></a></div></div><div class="col-xl-3 col-md-6 filter-item"><div class="gallery-grid"><div class="box-img"><img decoding="async" src="/wp-content/uploads/2025/02/ELECTRICAL.jpg" alt="ELECTRICAL" /></div><a href="/wp-content/uploads/2025/02/ELECTRICAL.jpg" class="icon-btn popup-image"><i class="fas fa-plus"></i> </a></div></div></div> </div>
</div>
</div>
</div>
@@ -272,7 +270,7 @@ Chiller Hot &amp; Cool Solution</a></h3></div></div></div><div class="swiper-sli
<div class="elementor-element elementor-element-16fb7ef elementor-widget__width-initial elementor-widget elementor-widget-rakarsectiontitle" data-id="16fb7ef" data-element_type="widget" data-e-type="widget" data-widget_type="rakarsectiontitle.default">
<div class="elementor-widget-container">
<div class="title-area text-left ">
<span class="sub-title2 shape-white"><img decoding="async" src="wp-content/plugins/rakar-core/assets/img/title_icon5.svg" alt="Shape">Expert Team</span><h2 class="sec-title ">Meet With Our Experts</h2><p>At Profen Engineering LLC, our strength lies in our dedicated team of experts who bring extensive experience, technical expertise, and a passion for excellence to every project. </p> </div>
<span class="sub-title2 shape-white"><img decoding="async" src="/wp-content/plugins/rakar-core/assets/img/title_icon5.svg" alt="Shape">Expert Team</span><h2 class="sec-title ">Meet With Our Experts</h2><p>At Profen Engineering LLC, our strength lies in our dedicated team of experts who bring extensive experience, technical expertise, and a passion for excellence to every project. </p> </div>
</div>
</div>
@@ -283,7 +281,7 @@ Chiller Hot &amp; Cool Solution</a></h3></div></div></div><div class="swiper-sli
</div>
<div class="elementor-element elementor-element-557722b elementor-widget elementor-widget-rakarteam" data-id="557722b" data-element_type="widget" data-e-type="widget" data-widget_type="rakarteam.default">
<div class="elementor-widget-container">
<div class="slider-wrap text-center"><div class="swiper th-slider has-shadow" id="teamSlider5" data-slider-options='{"paginationType":"fraction","breakpoints":{"0":{"slidesPerView":1},"576":{"slidesPerView":"1"},"768":{"slidesPerView":"2"},"992":{"slidesPerView":"2"},"1200":{"slidesPerView":"3"}}}'> <div class="swiper-wrapper"><div class="swiper-slide"><div class="th-team team-element"><div class="box-img"><img decoding="async" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" alt="cropped Profen_favicon" /></div><a href="index.html" class="icon-btn arrow-icon"><i class="far fa-arrow-up-right"></i></a><div class="box-content"><h3 class="box-title"><a href="index.html">John Simon</a></h3><span class="box-desig">Electrician</span><a href="index.html" class="icon-btn whatsapp"><i class="fab fa-whatsapp"></i></a></div></div></div><div class="swiper-slide"><div class="th-team team-element"><div class="box-img"><img decoding="async" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" alt="cropped Profen_favicon" /></div><a href="index.html" class="icon-btn arrow-icon"><i class="far fa-arrow-up-right"></i></a><div class="box-content"><h3 class="box-title"><a href="index.html">Michel Jack</a></h3><span class="box-desig">Electrician</span><a href="index.html" class="icon-btn whatsapp"><i class="fab fa-whatsapp"></i></a></div></div></div><div class="swiper-slide"><div class="th-team team-element"><div class="box-img"><img decoding="async" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" alt="cropped Profen_favicon" /></div><a href="index.html" class="icon-btn arrow-icon"><i class="far fa-arrow-up-right"></i></a><div class="box-content"><h3 class="box-title"><a href="index.html">Mackolin Smith</a></h3><span class="box-desig">Electrician</span><a href="index.html" class="icon-btn whatsapp"><i class="fab fa-whatsapp"></i></a></div></div></div></div></div><div class="slider-controller"><button data-slider-prev="#teamSlider5" class="slider-arrow default slider-prev"><i class="far fa-arrow-left"></i></button><div class="slider-pagination" data-slider-id="#teamSlider5"></div><button data-slider-next="#teamSlider5" class="slider-arrow default slider-next"><i class="far fa-arrow-right"></i></button></div></div> </div>
<div class="slider-wrap text-center"><div class="swiper th-slider has-shadow" id="teamSlider5" data-slider-options='{"paginationType":"fraction","breakpoints":{"0":{"slidesPerView":1},"576":{"slidesPerView":"1"},"768":{"slidesPerView":"2"},"992":{"slidesPerView":"2"},"1200":{"slidesPerView":"3"}}}'> <div class="swiper-wrapper"><div class="swiper-slide"><div class="th-team team-element"><div class="box-img"><img decoding="async" src="https://profen.imdigitals.com/wp-content/uploads/2025/02/cropped-Profen_favicon.png" alt="cropped Profen_favicon" /></div><a href="/" class="icon-btn arrow-icon"><i class="far fa-arrow-up-right"></i></a><div class="box-content"><h3 class="box-title"><a href="/">John Simon</a></h3><span class="box-desig">Electrician</span><a href="/" class="icon-btn whatsapp"><i class="fab fa-whatsapp"></i></a></div></div></div><div class="swiper-slide"><div class="th-team team-element"><div class="box-img"><img decoding="async" src="https://profen.imdigitals.com/wp-content/uploads/2025/02/cropped-Profen_favicon.png" alt="cropped Profen_favicon" /></div><a href="/" class="icon-btn arrow-icon"><i class="far fa-arrow-up-right"></i></a><div class="box-content"><h3 class="box-title"><a href="/">Michel Jack</a></h3><span class="box-desig">Electrician</span><a href="/" class="icon-btn whatsapp"><i class="fab fa-whatsapp"></i></a></div></div></div><div class="swiper-slide"><div class="th-team team-element"><div class="box-img"><img decoding="async" src="https://profen.imdigitals.com/wp-content/uploads/2025/02/cropped-Profen_favicon.png" alt="cropped Profen_favicon" /></div><a href="/" class="icon-btn arrow-icon"><i class="far fa-arrow-up-right"></i></a><div class="box-content"><h3 class="box-title"><a href="/">Mackolin Smith</a></h3><span class="box-desig">Electrician</span><a href="/" class="icon-btn whatsapp"><i class="fab fa-whatsapp"></i></a></div></div></div></div></div><div class="slider-controller"><button data-slider-prev="#teamSlider5" class="slider-arrow default slider-prev"><i class="far fa-arrow-left"></i></button><div class="slider-pagination" data-slider-id="#teamSlider5"></div><button data-slider-next="#teamSlider5" class="slider-arrow default slider-next"><i class="far fa-arrow-right"></i></button></div></div> </div>
</div>
</div>
</div>
@@ -292,33 +290,33 @@ Chiller Hot &amp; Cool Solution</a></h3></div></div></div><div class="swiper-sli
<div class="elementor-element elementor-element-19b9f7c elementor-widget__width-initial elementor-widget elementor-widget-rakarsectiontitle" data-id="19b9f7c" data-element_type="widget" data-e-type="widget" data-widget_type="rakarsectiontitle.default">
<div class="elementor-widget-container">
<div class="title-area text-center ">
<span class="sub-title2 "><img decoding="async" src="/wp-content/uploads/2024/07/title_icon5_white.svg" alt="title_icon5_white" />Testimonial</span><h2 class="sec-title ">What our client say</h2> </div>
<span class="sub-title2 "><img decoding="async" src="https://wordpress.themeholy.com/rakar/wp-content/uploads/2024/07/title_icon5_white.svg" alt="title_icon5_white" />Testimonial</span><h2 class="sec-title ">What our client say</h2> </div>
</div>
</div>
<div class="elementor-element elementor-element-0f7a58f elementor-widget elementor-widget-rakartestimonialslider" data-id="0f7a58f" data-element_type="widget" data-e-type="widget" data-widget_type="rakartestimonialslider.default">
<div class="elementor-widget-container">
<div class="slider-wrap text-center"><div class="swiper th-slider has-shadow" id="testiSlider5" data-slider-options='{"paginationType":"fraction","breakpoints":{"0":{"slidesPerView":1},"576":{"slidesPerView":"1"},"768":{"slidesPerView":"1"},"992":{"slidesPerView":"2"},"1200":{"slidesPerView":"2"}}}'><div class="swiper-wrapper"><div class="swiper-slide"><div class="testi-grid style2"><div class="box-logo"><img decoding="async" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" alt="testi_logo_1" /></div><div class="box-icon">
<div class="slider-wrap text-center"><div class="swiper th-slider has-shadow" id="testiSlider5" data-slider-options='{"paginationType":"fraction","breakpoints":{"0":{"slidesPerView":1},"576":{"slidesPerView":"1"},"768":{"slidesPerView":"1"},"992":{"slidesPerView":"2"},"1200":{"slidesPerView":"2"}}}'><div class="swiper-wrapper"><div class="swiper-slide"><div class="testi-grid style2"><div class="box-logo"><img decoding="async" src="https://wordpress.themeholy.com/rakar/wp-content/uploads/2024/07/testi_logo_1.svg" alt="testi_logo_1" /></div><div class="box-icon">
<svg width="71" height="70" viewBox="0 0 71 70" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect x="70.5" y="70" width="70" height="70" rx="35" transform="rotate(180 70.5 70)" fill="var(--theme-color)" />
<path d="M47.3629 25.975C48.9879 27.7167 49.9629 29.6167 49.9629 32.7833C49.9629 38.325 45.9004 43.2333 40.2129 45.7667L38.7504 43.7083C44.1129 40.8583 45.2504 37.2167 45.5754 34.8417C44.7629 35.3167 43.6254 35.475 42.4879 35.3167C39.5629 35 37.2879 32.7833 37.2879 29.775C37.2879 28.35 37.9379 26.925 38.9129 25.8167C40.0504 24.7083 41.3504 24.2333 42.9754 24.2333C44.7629 24.2333 46.3879 25.025 47.3629 25.975ZM31.1129 25.975C32.7379 27.7167 33.7129 29.6167 33.7129 32.7833C33.7129 38.325 29.6504 43.2333 23.9629 45.7667L22.5004 43.7083C27.8629 40.8583 29.0004 37.2167 29.3254 34.8417C28.5129 35.3167 27.3754 35.475 26.2379 35.3167C23.3129 35 21.0379 32.7833 21.0379 29.775C21.0379 28.35 21.6879 26.925 22.6629 25.8167C23.6379 24.7083 25.1004 24.2333 26.7254 24.2333C28.5129 24.2333 30.1379 25.025 31.1129 25.975Z" fill="white" />
</svg>
</div><div class="box-profile"><div class="box-avater"><img decoding="async" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" alt="testi_3_1" /></div><div class="media-body"><h3 class="box-title">Anas Ibrahim</h3><span class="box-desig">Director</span></div></div><div class="box-review"><i class="fa-solid fa-star"></i><i class="fa-solid fa-star"></i><i class="fa-solid fa-star"></i><i class="fa-solid fa-star"></i><i class="fa-solid fa-star"></i></div><p class="box-text">Profen Team quickly diagnosed and repaired our air handler, ensuring our home was cool again in no time. The technicians were professional, clean, and very knowledgeable. I highly recommend their services</p></div></div><div class="swiper-slide"><div class="testi-grid style2"><div class="box-logo"><img decoding="async" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" alt="testi_logo_2" /></div><div class="box-icon">
</div><div class="box-profile"><div class="box-avater"><img decoding="async" src="https://wordpress.themeholy.com/rakar/wp-content/uploads/2024/07/testi_3_1.jpg" alt="testi_3_1" /></div><div class="media-body"><h3 class="box-title">Anas Ibrahim</h3><span class="box-desig">Director</span></div></div><div class="box-review"><i class="fa-solid fa-star"></i><i class="fa-solid fa-star"></i><i class="fa-solid fa-star"></i><i class="fa-solid fa-star"></i><i class="fa-solid fa-star"></i></div><p class="box-text">Profen Team quickly diagnosed and repaired our air handler, ensuring our home was cool again in no time. The technicians were professional, clean, and very knowledgeable. I highly recommend their services</p></div></div><div class="swiper-slide"><div class="testi-grid style2"><div class="box-logo"><img decoding="async" src="https://wordpress.themeholy.com/rakar/wp-content/uploads/2024/07/testi_logo_2.svg" alt="testi_logo_2" /></div><div class="box-icon">
<svg width="71" height="70" viewBox="0 0 71 70" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect x="70.5" y="70" width="70" height="70" rx="35" transform="rotate(180 70.5 70)" fill="var(--theme-color)" />
<path d="M47.3629 25.975C48.9879 27.7167 49.9629 29.6167 49.9629 32.7833C49.9629 38.325 45.9004 43.2333 40.2129 45.7667L38.7504 43.7083C44.1129 40.8583 45.2504 37.2167 45.5754 34.8417C44.7629 35.3167 43.6254 35.475 42.4879 35.3167C39.5629 35 37.2879 32.7833 37.2879 29.775C37.2879 28.35 37.9379 26.925 38.9129 25.8167C40.0504 24.7083 41.3504 24.2333 42.9754 24.2333C44.7629 24.2333 46.3879 25.025 47.3629 25.975ZM31.1129 25.975C32.7379 27.7167 33.7129 29.6167 33.7129 32.7833C33.7129 38.325 29.6504 43.2333 23.9629 45.7667L22.5004 43.7083C27.8629 40.8583 29.0004 37.2167 29.3254 34.8417C28.5129 35.3167 27.3754 35.475 26.2379 35.3167C23.3129 35 21.0379 32.7833 21.0379 29.775C21.0379 28.35 21.6879 26.925 22.6629 25.8167C23.6379 24.7083 25.1004 24.2333 26.7254 24.2333C28.5129 24.2333 30.1379 25.025 31.1129 25.975Z" fill="white" />
</svg>
</div><div class="box-profile"><div class="box-avater"><img decoding="async" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" alt="testi_3_2" /></div><div class="media-body"><h3 class="box-title">Musa Mohammed</h3><span class="box-desig">Managing Director</span></div></div><div class="box-review"><i class="fa-solid fa-star"></i><i class="fa-solid fa-star"></i><i class="fa-solid fa-star"></i><i class="fa-solid fa-star"></i><i class="fa-solid fa-star"></i></div><p class="box-text">I had a great experience with Profen Engineering. They installed a new Carrier HVAC system in our home, and the difference is night and day. The technicians were punctual, courteous, and took the time to explain everything.</p></div></div><div class="swiper-slide"><div class="testi-grid style2"><div class="box-logo"><img decoding="async" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" alt="testi_logo_1" /></div><div class="box-icon">
</div><div class="box-profile"><div class="box-avater"><img decoding="async" src="https://wordpress.themeholy.com/rakar/wp-content/uploads/2024/07/testi_3_2.jpg" alt="testi_3_2" /></div><div class="media-body"><h3 class="box-title">Musa Mohammed</h3><span class="box-desig">Managing Director</span></div></div><div class="box-review"><i class="fa-solid fa-star"></i><i class="fa-solid fa-star"></i><i class="fa-solid fa-star"></i><i class="fa-solid fa-star"></i><i class="fa-solid fa-star"></i></div><p class="box-text">I had a great experience with Profen Engineering. They installed a new Carrier HVAC system in our home, and the difference is night and day. The technicians were punctual, courteous, and took the time to explain everything.</p></div></div><div class="swiper-slide"><div class="testi-grid style2"><div class="box-logo"><img decoding="async" src="https://wordpress.themeholy.com/rakar/wp-content/uploads/2024/07/testi_logo_1.svg" alt="testi_logo_1" /></div><div class="box-icon">
<svg width="71" height="70" viewBox="0 0 71 70" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect x="70.5" y="70" width="70" height="70" rx="35" transform="rotate(180 70.5 70)" fill="var(--theme-color)" />
<path d="M47.3629 25.975C48.9879 27.7167 49.9629 29.6167 49.9629 32.7833C49.9629 38.325 45.9004 43.2333 40.2129 45.7667L38.7504 43.7083C44.1129 40.8583 45.2504 37.2167 45.5754 34.8417C44.7629 35.3167 43.6254 35.475 42.4879 35.3167C39.5629 35 37.2879 32.7833 37.2879 29.775C37.2879 28.35 37.9379 26.925 38.9129 25.8167C40.0504 24.7083 41.3504 24.2333 42.9754 24.2333C44.7629 24.2333 46.3879 25.025 47.3629 25.975ZM31.1129 25.975C32.7379 27.7167 33.7129 29.6167 33.7129 32.7833C33.7129 38.325 29.6504 43.2333 23.9629 45.7667L22.5004 43.7083C27.8629 40.8583 29.0004 37.2167 29.3254 34.8417C28.5129 35.3167 27.3754 35.475 26.2379 35.3167C23.3129 35 21.0379 32.7833 21.0379 29.775C21.0379 28.35 21.6879 26.925 22.6629 25.8167C23.6379 24.7083 25.1004 24.2333 26.7254 24.2333C28.5129 24.2333 30.1379 25.025 31.1129 25.975Z" fill="white" />
</svg>
</div><div class="box-profile"><div class="box-avater"><img decoding="async" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" alt="testi_3_1" /></div><div class="media-body"><h3 class="box-title">David Thomas</h3><span class="box-desig">Project Manager</span></div></div><div class="box-review"><i class="fa-solid fa-star"></i><i class="fa-solid fa-star"></i><i class="fa-solid fa-star"></i><i class="fa-solid fa-star"></i><i class="fa-solid fa-star"></i></div><p class="box-text">The service from Profen Engineering was exceptional. Dean diagnosed our furnace issue quickly and had it repaired in no time. The whole team was friendly and kept me informed at every step. I highly recommend them</p></div></div><div class="swiper-slide"><div class="testi-grid style2"><div class="box-logo"><img decoding="async" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" alt="testi_logo_2" /></div><div class="box-icon">
</div><div class="box-profile"><div class="box-avater"><img decoding="async" src="https://wordpress.themeholy.com/rakar/wp-content/uploads/2024/07/testi_3_1.jpg" alt="testi_3_1" /></div><div class="media-body"><h3 class="box-title">David Thomas</h3><span class="box-desig">Project Manager</span></div></div><div class="box-review"><i class="fa-solid fa-star"></i><i class="fa-solid fa-star"></i><i class="fa-solid fa-star"></i><i class="fa-solid fa-star"></i><i class="fa-solid fa-star"></i></div><p class="box-text">The service from Profen Engineering was exceptional. Dean diagnosed our furnace issue quickly and had it repaired in no time. The whole team was friendly and kept me informed at every step. I highly recommend them</p></div></div><div class="swiper-slide"><div class="testi-grid style2"><div class="box-logo"><img decoding="async" src="https://wordpress.themeholy.com/rakar/wp-content/uploads/2024/07/testi_logo_2.svg" alt="testi_logo_2" /></div><div class="box-icon">
<svg width="71" height="70" viewBox="0 0 71 70" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect x="70.5" y="70" width="70" height="70" rx="35" transform="rotate(180 70.5 70)" fill="var(--theme-color)" />
<path d="M47.3629 25.975C48.9879 27.7167 49.9629 29.6167 49.9629 32.7833C49.9629 38.325 45.9004 43.2333 40.2129 45.7667L38.7504 43.7083C44.1129 40.8583 45.2504 37.2167 45.5754 34.8417C44.7629 35.3167 43.6254 35.475 42.4879 35.3167C39.5629 35 37.2879 32.7833 37.2879 29.775C37.2879 28.35 37.9379 26.925 38.9129 25.8167C40.0504 24.7083 41.3504 24.2333 42.9754 24.2333C44.7629 24.2333 46.3879 25.025 47.3629 25.975ZM31.1129 25.975C32.7379 27.7167 33.7129 29.6167 33.7129 32.7833C33.7129 38.325 29.6504 43.2333 23.9629 45.7667L22.5004 43.7083C27.8629 40.8583 29.0004 37.2167 29.3254 34.8417C28.5129 35.3167 27.3754 35.475 26.2379 35.3167C23.3129 35 21.0379 32.7833 21.0379 29.775C21.0379 28.35 21.6879 26.925 22.6629 25.8167C23.6379 24.7083 25.1004 24.2333 26.7254 24.2333C28.5129 24.2333 30.1379 25.025 31.1129 25.975Z" fill="white" />
</svg>
</div><div class="box-profile"><div class="box-avater"><img decoding="async" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" alt="testi_3_2" /></div><div class="media-body"><h3 class="box-title">Merlin Chacko</h3><span class="box-desig">Project Coordinator</span></div></div><div class="box-review"><i class="fa-solid fa-star"></i><i class="fa-solid fa-star"></i><i class="fa-solid fa-star"></i><i class="fa-solid fa-star"></i><i class="fa-solid fa-star"></i></div><p class="box-text">Our store&#039;s HVAC system went down on a Sunday, and Profen Engineering responded quickly. Mohammed helped us troubleshoot the issue over the phone, saving us from costly emergency repairs. Excellent service and highly recommended.</p></div></div></div><div class="slider-pagination"></div></div><div class="slider-controller"><button data-slider-prev="#testiSlider5" class="slider-arrow default text-white slider-prev"><i class="far fa-arrow-left"></i></button><div class="slider-pagination white-color" data-slider-id="#testiSlider5"></div><button data-slider-next="#testiSlider5" class="slider-arrow default text-white slider-next"><i class="far fa-arrow-right"></i></button></div></div> </div>
</div><div class="box-profile"><div class="box-avater"><img decoding="async" src="https://wordpress.themeholy.com/rakar/wp-content/uploads/2024/07/testi_3_2.jpg" alt="testi_3_2" /></div><div class="media-body"><h3 class="box-title">Merlin Chacko</h3><span class="box-desig">Project Coordinator</span></div></div><div class="box-review"><i class="fa-solid fa-star"></i><i class="fa-solid fa-star"></i><i class="fa-solid fa-star"></i><i class="fa-solid fa-star"></i><i class="fa-solid fa-star"></i></div><p class="box-text">Our store&#039;s HVAC system went down on a Sunday, and Profen Engineering responded quickly. Mohammed helped us troubleshoot the issue over the phone, saving us from costly emergency repairs. Excellent service and highly recommended.</p></div></div></div><div class="slider-pagination"></div></div><div class="slider-controller"><button data-slider-prev="#testiSlider5" class="slider-arrow default text-white slider-prev"><i class="far fa-arrow-left"></i></button><div class="slider-pagination white-color" data-slider-id="#testiSlider5"></div><button data-slider-next="#testiSlider5" class="slider-arrow default text-white slider-next"><i class="far fa-arrow-right"></i></button></div></div> </div>
</div>
</div>
</div>
@@ -328,18 +326,18 @@ Chiller Hot &amp; Cool Solution</a></h3></div></div></div><div class="swiper-sli
<div class="elementor-element elementor-element-099ae7b elementor-widget__width-initial elementor-widget-tablet__width-inherit elementor-widget elementor-widget-rakarsectiontitle" data-id="099ae7b" data-element_type="widget" data-e-type="widget" data-widget_type="rakarsectiontitle.default">
<div class="elementor-widget-container">
<div class="title-area text-left ">
<span class="sub-title2 "><img decoding="async" src="wp-content/plugins/rakar-core/assets/img/title_icon5.svg" alt="Shape">Blog &amp; Articles</span><h2 class="sec-title ">Every Single Update From Profen</h2> </div>
<span class="sub-title2 "><img decoding="async" src="/wp-content/plugins/rakar-core/assets/img/title_icon5.svg" alt="Shape">Blog &amp; Articles</span><h2 class="sec-title ">Every Single Update From Profen</h2> </div>
</div>
</div>
<div class="elementor-element elementor-element-e1ea760 elementor-widget elementor-widget-rakarbutton" data-id="e1ea760" data-element_type="widget" data-e-type="widget" data-widget_type="rakarbutton.default">
<div class="elementor-widget-container">
<div class="btn-wrapper"><a class="th-btn th_btn style4 rounded-12" href="https://profen.imdigitals.com/blog/">View All Articles<i class="far fa-arrow-right"></i></a></div> </div>
<div class="btn-wrapper"><a class="th-btn th_btn style4 rounded-12" href="#">View All Articles<i class="far fa-arrow-right"></i></a></div> </div>
</div>
</div>
<div class="elementor-element elementor-element-c9ee644 elementor-widget elementor-widget-rakarblog" data-id="c9ee644" data-element_type="widget" data-e-type="widget" data-widget_type="rakarblog.default">
<div class="elementor-widget-container">
<div class="row gy-4"><div class="col-xl-4 col-md-6"><div class="blog-grid"><a href="index.html%3Fp=115.html" class="blog-img"><img decoding="async" width="425" height="585" src="wp-content/uploads/2024/07/outdoorcooling-425x585.webp" class="attachment-rakar_425X585 size-rakar_425X585 wp-post-image" alt="" /></a><a href="/blog-details.html" class="icon-btn"><i class="far fa-arrow-right"></i></a><span class="box-date"></span><div class="blog-content"><div class="blog-meta"><a href="author/pf_admin/index.html"><i class="fas fa-user"></i>By Admin</a><a href="category/solar/index.html"><i class="fas fa-tags"></i>Solar</a></div><h3 class="box-title"><a href="index.html%3Fp=115.html">The Future of Outdoor Cooling: How Misting Systems Are Revolutionizing</a></h3></div></div></div><div class="col-xl-4 col-md-6"><div class="blog-grid"><a href="index.html%3Fp=114.html" class="blog-img"><img decoding="async" width="425" height="585" src="wp-content/uploads/2024/07/Insights-Swimming-Pool-Heat-Pumps-425x585.jpg" class="attachment-rakar_425X585 size-rakar_425X585 wp-post-image" alt="" /></a><a href="/blog-details.html" class="icon-btn"><i class="far fa-arrow-right"></i></a><span class="box-date"></span><div class="blog-content"><div class="blog-meta"><a href="author/pf_admin/index.html"><i class="fas fa-user"></i>By Admin</a><a href="category/repair/index.html"><i class="fas fa-tags"></i>Repair</a></div><h3 class="box-title"><a href="index.html%3Fp=114.html">Swimming Pool Heating &amp; Cooling: Choosing the Right System for</a></h3></div></div></div><div class="col-xl-4 col-md-6"><div class="blog-grid"><a href="index.html%3Fp=113.html" class="blog-img"><img loading="lazy" decoding="async" width="425" height="585" src="wp-content/uploads/2024/07/commercial-heating-425x585.jpg" class="attachment-rakar_425X585 size-rakar_425X585 wp-post-image" alt="" /></a><a href="/blog-details.html" class="icon-btn"><i class="far fa-arrow-right"></i></a><span class="box-date"></span><div class="blog-content"><div class="blog-meta"><a href="author/pf_admin/index.html"><i class="fas fa-user"></i>By Admin</a><a href="category/news-tips/index.html"><i class="fas fa-tags"></i>News &amp; Tips</a></div><h3 class="box-title"><a href="index.html%3Fp=113.html">Energy-Efficient Heating Solutions for Commercial &amp; Industrial Spaces</a></h3></div></div></div></div> </div>
<div class="row gy-4"><div class="col-xl-4 col-md-6"><div class="blog-grid"><a href="index.html%3Fp=115.html" class="blog-img"><img decoding="async" width="425" height="585" src="/wp-content/uploads/2024/07/outdoorcooling-425x585.webp" class="attachment-rakar_425X585 size-rakar_425X585 wp-post-image" alt="" /></a><a href="/blog-details.html" class="icon-btn"><i class="far fa-arrow-right"></i></a><span class="box-date"></span><div class="blog-content"><div class="blog-meta"><a href="author/pf_admin/index.html"><i class="fas fa-user"></i>By Admin</a><a href="category/solar/index.html"><i class="fas fa-tags"></i>Solar</a></div><h3 class="box-title"><a href="index.html%3Fp=115.html">The Future of Outdoor Cooling: How Misting Systems Are Revolutionizing</a></h3></div></div></div><div class="col-xl-4 col-md-6"><div class="blog-grid"><a href="index.html%3Fp=114.html" class="blog-img"><img decoding="async" width="425" height="585" src="/wp-content/uploads/2024/07/Insights-Swimming-Pool-Heat-Pumps-425x585.jpg" class="attachment-rakar_425X585 size-rakar_425X585 wp-post-image" alt="" /></a><a href="/blog-details.html" class="icon-btn"><i class="far fa-arrow-right"></i></a><span class="box-date"></span><div class="blog-content"><div class="blog-meta"><a href="author/pf_admin/index.html"><i class="fas fa-user"></i>By Admin</a><a href="category/repair/index.html"><i class="fas fa-tags"></i>Repair</a></div><h3 class="box-title"><a href="index.html%3Fp=114.html">Swimming Pool Heating &amp; Cooling: Choosing the Right System for</a></h3></div></div></div><div class="col-xl-4 col-md-6"><div class="blog-grid"><a href="index.html%3Fp=113.html" class="blog-img"><img loading="lazy" decoding="async" width="425" height="585" src="/wp-content/uploads/2024/07/commercial-heating-425x585.jpg" class="attachment-rakar_425X585 size-rakar_425X585 wp-post-image" alt="" /></a><a href="/blog-details.html" class="icon-btn"><i class="far fa-arrow-right"></i></a><span class="box-date"></span><div class="blog-content"><div class="blog-meta"><a href="author/pf_admin/index.html"><i class="fas fa-user"></i>By Admin</a><a href="category/news-tips/index.html"><i class="fas fa-tags"></i>News &amp; Tips</a></div><h3 class="box-title"><a href="index.html%3Fp=113.html">Energy-Efficient Heating Solutions for Commercial &amp; Industrial Spaces</a></h3></div></div></div></div> </div>
</div>
</div>
</div>

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -1,152 +0,0 @@
footer-contact-area style-black"><div className="container"><div className="footer-contact-wrap"><div className="footer-contact"><div className="box-icon"><i className="fas fa-location-dot"></i></div><div className="media-body"><p className="box-text"><a href="https://maps.app.goo.gl/5bMqkGpNXNo1K9yC7" target="_blank">Al Qusais Industrial Area-3, Dubai, UAE</a>
</p></div></div><div className="divider"></div><div className="footer-contact"><div className="box-icon"><i className="fas fa-phone-volume"></i></div><div className="media-body"><h3 className="box-title label">Call Us:</h3><p className="box-text"><a href="tel:+97143200869">+971 4 320 0869</a></p></div></div><div className="divider"></div><div className="footer-contact"><div className="box-icon"><i className="fas fa-envelope"></i></div><div className="media-body"><h3 className="box-title label">Email Us:</h3><p className="box-text"><a href="mailto:admin@profeneng.com">admin@profeneng.com</a></p></div></div></div></div></div> </div>
</div>
</div>
<div className="elementor-element elementor-element-953ab14 e-flex e-con-boxed e-con e-child" data-id="953ab14" data-element_type="container" data-e-type="container">
<div className="e-con-inner">
<div className="elementor-element elementor-element-c5d6f05 elementor-widget-tablet__width-initial elementor-widget-mobile__width-inherit elementor-widget elementor-widget-rakarfooterwidgets" data-id="c5d6f05" data-element_type="widget" data-e-type="widget" data-widget_type="rakarfooterwidgets.default">
<div className="elementor-widget-container">
<div className="widget footer-widget"><div className="th-widget-about"><div className="about-logo"><a href="index.html"><img src="wp-content/uploads/2024/07/logo_pe-new-wh-70.png" alt="logo_pe new wh 70" /></a></div><p className="about-text desc">Profen Engineering, your trusted partner in comprehensive Sustainability, MEP &amp; Construction Services.</p><div className="th-social"><a rel="nofollow" href="https://www.facebook.com"><i aria-hidden="true" className="fab fa-facebook-f"></i></a> <a rel="nofollow" href="https://www.twitter.com"><i aria-hidden="true" className="fab fa-twitter"></i></a> <a rel="nofollow" href="https://www.instagram.com"><i aria-hidden="true" className="fab fa-instagram"></i></a> <a rel="nofollow" href="https://www.linkedin.com"><i aria-hidden="true" className="fab fa-linkedin-in"></i></a> </div></div></div> </div>
</div>
<div className="elementor-element elementor-element-8e3fc7b elementor-widget-tablet__width-initial elementor-widget-mobile__width-inherit elementor-widget elementor-widget-rakarmenuselect" data-id="8e3fc7b" data-element_type="widget" data-e-type="widget" data-widget_type="rakarmenuselect.default">
<div className="elementor-widget-container">
<div className="widget widget_nav_menu footer-widget"><h3 className="widget_title"><img src="index.html" alt="" />Our Services</h3><div className="menu-all-pages-container"><ul id="menu-our-services" className="menu style2"><li id="menu-item-155" className="menu-item menu-item-type-custom menu-item-object-custom menu-item-155"><a href="service/index.html">Electro-Mechanical Works</a></li>
<li id="menu-item-156" className="menu-item menu-item-type-custom menu-item-object-custom menu-item-156"><a href="service/index.html">Landscaping &#038; Fencing Works</a></li>
<li id="menu-item-157" className="menu-item menu-item-type-custom menu-item-object-custom menu-item-157"><a href="service/index.html">Building Contracting Works</a></li>
<li id="menu-item-158" className="menu-item menu-item-type-custom menu-item-object-custom menu-item-158"><a href="service/index.html">Interior &#038; Fit-Out Works</a></li>
</ul></div></div> </div>
</div>
<div className="elementor-element elementor-element-c7fa0b1 elementor-widget-tablet__width-initial elementor-widget-mobile__width-inherit elementor-widget elementor-widget-rakarmenuselect" data-id="c7fa0b1" data-element_type="widget" data-e-type="widget" data-widget_type="rakarmenuselect.default">
<div className="elementor-widget-container">
<div className="widget widget_nav_menu footer-widget"><div className="menu-all-pages-container"><ul id="menu-services" className="menu style2"><li id="menu-item-2461" className="menu-item menu-item-type-custom menu-item-object-custom menu-item-2461"><a href="service/index.html">Metal Construction &#038; Fabrications</a></li>
<li id="menu-item-2462" className="menu-item menu-item-type-custom menu-item-object-custom menu-item-2462"><a href="service/index.html">Chiller Hot &#038; Cool Solutions</a></li>
<li id="menu-item-2463" className="menu-item menu-item-type-custom menu-item-object-custom menu-item-2463"><a href="service/index.html">Misting Solutions</a></li>
<li id="menu-item-2464" className="menu-item menu-item-type-custom menu-item-object-custom menu-item-2464"><a href="service/index.html">Adiabatic Pre-Cooling System</a></li>
</ul></div></div> </div>
</div>
<div className="elementor-element elementor-element-a684744 elementor-widget-tablet__width-initial elementor-widget-mobile__width-inherit elementor-widget elementor-widget-rakarmenuselect" data-id="a684744" data-element_type="widget" data-e-type="widget" data-widget_type="rakarmenuselect.default">
<div className="elementor-widget-container">
<div className="widget widget_nav_menu footer-widget"><h3 className="widget_title"><img src="index.html" alt="" />Useful Links</h3><div className="menu-all-pages-container"><ul id="menu-footermenu" className="menu style2"><li id="menu-item-3247" className="menu-item menu-item-type-post_type menu-item-object-page menu-item-3247"><a href="about/index.html">About Profen Engineering</a></li>
<li id="menu-item-3248" className="menu-item menu-item-type-post_type menu-item-object-page menu-item-3248"><a href="service/index.html">Our Services</a></li>
<li id="menu-item-3249" className="menu-item menu-item-type-post_type menu-item-object-page menu-item-3249"><a href="project/index.html">Our Projects</a></li>
<li id="menu-item-3250" className="menu-item menu-item-type-post_type menu-item-object-page menu-item-3250"><a href="contact/index.html">Reach Us</a></li>
</ul></div></div> </div>
</div>
<div className="elementor-element elementor-element-32890cd elementor-widget elementor-widget-shortcode" data-id="32890cd" data-element_type="widget" data-e-type="widget" data-widget_type="shortcode.default">
<div className="elementor-widget-container">
<div className="elementor-shortcode">
<div
className="elfsight-widget-whatsapp-chat elfsight-widget"
data-elfsight-whatsapp-chat-options="%7B%22facebookSubgoup%22%3Anull%2C%22whatsappSubgoup%22%3Anull%2C%22telegramSubgoup%22%3Anull%2C%22viberSubgoup%22%3Anull%2C%22rumbletalkSubgoup%22%3Anull%2C%22divider-1%22%3Anull%2C%22userAccessToken%22%3Anull%2C%22page%22%3Anull%2C%22phone%22%3A%22971564148980%22%2C%22link%22%3Anull%2C%22userAccessTokenBubbleSubgroup%22%3Anull%2C%22bubbleIcon%22%3A%22whatsapp-chat%22%2C%22bubbleText%22%3Anull%2C%22picture%22%3A%22custom%22%2C%22pictureLibrary%22%3A%7B%22photo%22%3A%22https%3A%5C%2F%5C%2Fpbs.twimg.com%5C%2Fprofile_images%5C%2F951055655594545153%5C%2FF6eybr-i.jpg%22%7D%2C%22pictureCustom%22%3A%22https%3A%5C%2F%5C%2Fprofeneng.com%5C%2Fwp-content%5C%2Fuploads%5C%2F2026%5C%2F01%5C%2Fchatbot.png%22%2C%22name%22%3A%22Customer%20Service%22%2C%22nameCaptionType%22%3A%22custom%22%2C%22nameCaptionReplyTime%22%3A%22Typically%20replies%20within%20a%20day%22%2C%22nameCaptionCustom%22%3A%22Online%22%2C%22welcomeMessage%22%3A%22Hi%20%5Cud83d%5Cudc4b%3Cbr%3E%3Cbr%3EHow%20can%20I%20help%20you%3F%22%2C%22buttonText%22%3A%22Talk%20to%20Us%22%2C%22buttonIconVisible%22%3Atrue%2C%22position%22%3A%22floating%22%2C%22align%22%3A%22right%22%2C%22whereToDisplayChat%22%3A%22allPages%22%2C%22excludedPages%22%3A%5B%5D%2C%22specificPages%22%3A%5B%5D%2C%22devicesToDisplay%22%3A%5B%22mobile%22%2C%22desktop%22%5D%2C%22showChatTo%22%3A%22allVisitors%22%2C%22displayDays%22%3A%5B0%2C1%2C2%2C3%2C4%2C5%2C6%5D%2C%22timeSchedule%22%3Afalse%2C%22displayStartTime%22%3A%2200%3A00%22%2C%22displayEndTime%22%3A%2200%3A00%22%2C%22timeZone%22%3A0%2C%22timeOnPage%22%3A0%2C%22timeOnSite%22%3A0%2C%22scrollPosition%22%3A0%2C%22exiIntent%22%3Afalse%2C%22notifications%22%3A%5B%22bubbleBadge%22%2C%22tabTitle%22%5D%2C%22headerBackgroundColor%22%3A%22rgb%289%2C%2094%2C%2084%29%22%2C%22buttonColor%22%3A%22rgb%2879%2C%20206%2C%2093%29%22%2C%22bubbleBackgroundColor%22%3A%22rgb%28255%2C%20255%2C%20255%29%22%2C%22bubbleIconColor%22%3A%22rgb%2879%2C%20206%2C%2093%29%22%2C%22windowBackgroundColor%22%3A%22rgb%28230%2C%20221%2C%20212%29%22%2C%22windowBackgroundPattern%22%3A%22https%3A%5C%2F%5C%2Felfsight.com%5C%2Fassets%5C%2Fchats%5C%2Fpatterns%5C%2Fwhatsapp.png%22%2C%22buttonBorderRadius%22%3A20%2C%22widgetId%22%3A%221%22%7D"
data-elfsight-whatsapp-chat-version="1.2.0"
data-elfsight-widget-id="elfsight-whatsapp-chat-1">
</div>
</div>
</div>
</div>
</div>
</div>
<div className="elementor-element elementor-element-d43fabc e-flex e-con-boxed e-con e-child" data-id="d43fabc" data-element_type="container" data-e-type="container">
<div className="e-con-inner">
<div className="elementor-element elementor-element-ed6bb39 elementor-widget elementor-widget-html" data-id="ed6bb39" data-element_type="widget" data-e-type="widget" data-widget_type="html.default">
<div className="elementor-widget-container">
<p className="copyright-text">Copyright <i className="fal fa-copyright"></i> 2026 <a href="index.html">Profen Engineering LLC</a>. All Rights Reserved.</p> </div>
</div>
</div>
</div>
</div>
</div>
</footer></div></div> <div className="scroll-top">
<svg className="progress-circle svg-content" width="100%" height="100%" viewBox="-1 -1 102 102">
<path d="M50,1 a49,49 0 0,1 0,98 a49,49 0 0,1 0,-98" style={/*transition: stroke-dashoffset 10ms linear 0s; stroke-dasharray: 307.919, 307.919; stroke-dashoffset: 307.919;*/}>
</path>
</svg>
</div>
<script type="speculationrules">
{"prefetch":[{"source":"document","where":{"and":[{"href_matches":"/*"},{"not":{"href_matches":["/wp-*.php","/wp-admin/*","/wp-content/uploads/*","/wp-content/*","/wp-content/plugins/*","/wp-content/themes/rakar/*","/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]}
</script>
<script>
const lazyloadRunObserver = () => {
const lazyloadBackgrounds = document.querySelectorAll( `.e-con.e-parent:not(.e-lazyloaded)` );
const lazyloadBackgroundObserver = new IntersectionObserver( ( entries ) => {
entries.forEach( ( entry ) => {
if ( entry.isIntersecting ) {
let lazyloadBackground = entry.target;
if( lazyloadBackground ) {
lazyloadBackground.classList.add( 'e-lazyloaded' );
}
lazyloadBackgroundObserver.unobserve( entry.target );
}
});
}, { rootMargin: '200px 0px 200px 0px' } );
lazyloadBackgrounds.forEach( ( lazyloadBackground ) => {
lazyloadBackgroundObserver.observe( lazyloadBackground );
} );
};
const events = [
'DOMContentLoaded',
'elementor/lazyload/observe',
];
events.forEach( ( event ) => {
document.addEventListener( event, lazyloadRunObserver );
} );
</script>
<script>
(function () {
var c = document.body.className;
c = c.replace(/woocommerce-no-js/, 'woocommerce-js');
document.body.className = c;
})();
</script>
<link rel='stylesheet' id='wc-blocks-style-css' href='wp-content/plugins/woocommerce/assets/client/blocks/wc-blocks.css%3Fver=wc-10.8.1.css' media='all' />
<script id="wp-hooks-js" src="wp-includes/js/dist/hooks.min.js%3Fver=7496969728ca0f95732d"></script>
<script id="wp-i18n-js" src="wp-includes/js/dist/i18n.min.js%3Fver=781d11515ad3d91786ec"></script>
<script id="wp-i18n-js-after">
wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } );
</script>
<script id="swv-js" src="wp-content/plugins/contact-form-7/includes/swv/js/index.js%3Fver=6.1.6"></script>
<script id="contact-form-7-js-before">
var wpcf7 = {
"api": {
"root": "https:\/\/profeneng.com\/wp-json\/",
"namespace": "contact-form-7\/v1"
},
"cached": 1
};
</script>
<script id="contact-form-7-js" src="wp-content/plugins/contact-form-7/includes/js/index.js%3Fver=6.1.6"></script>
<script id="rakar-ajax-js-extra">
var rakarajax = {"action_url":"/wp-admin/admin-ajax.php","nonce":"d8b0f4ce50"};
</script>
<script id="rakar-ajax-js" src="wp-content/plugins/rakar-core/assets/js/rakar.ajax.js%3Fver=1.0"></script>
<script id="sourcebuster-js-js" src="wp-content/plugins/woocommerce/assets/js/sourcebuster/sourcebuster.min.js%3Fver=10.8.1"></script>
<script id="wc-order-attribution-js-extra">
var wc_order_attribution = {"params":{"lifetime":1.0000000000000000818030539140313095458623138256371021270751953125e-5,"session":30,"base64":false,"ajaxurl":"/wp-admin/admin-ajax.php","prefix":"wc_order_attribution_","allowTracking":true},"fields":{"source_type":"current.typ","referrer":"current_add.rf","utm_campaign":"current.cmp","utm_source":"current.src","utm_medium":"current.mdm","utm_content":"current.cnt","utm_id":"current.id","utm_term":"current.trm","utm_source_platform":"current.plt","utm_creative_format":"current.fmt","utm_marketing_tactic":"current.tct","session_entry":"current_add.ep","session_start_time":"current_add.fd","session_pages":"session.pgs","session_count":"udata.vst","user_agent":"udata.uag"}};
</script>
<script id="wc-order-attribution-js" src="wp-content/plugins/woocommerce/assets/js/frontend/order-attribution.min.js%3Fver=10.8.1"></script>
<script id="elementor-webpack-runtime-js" src="wp-content/plugins/elementor/assets/js/webpack.runtime.min.js%3Fver=4.1.2"></script>
<script id="elementor-frontend-modules-js" src="wp-content/plugins/elementor/assets/js/frontend-modules.min.js%3Fver=4.1.2"></script>
<script id="jquery-ui-core-js" src="wp-includes/js/jquery/ui/core.min.js%3Fver=1.13.3"></script>
<script id="elementor-frontend-js-before">
var elementorFrontendConfig = {"environmentMode":{"edit":false,"wpPreview":false,"isScriptDebug":false},"i18n":{"shareOnFacebook":"Share on Facebook","shareOnTwitter":"Share on Twitter","pinIt":"Pin it","download":"Download","downloadImage":"Download image","fullscreen":"Fullscreen","zoom":"Zoom","share":"Share","playVideo":"Play Video","previous":"Previous","next":"Next","close":"Close","a11yCarouselPrevSlideMessage":"Previous slide","a11yCarouselNextSlideMessage":"Next slide","a11yCarouselFirstSlideMessage":"This is the first slide","a11yCarouselLastSlideMessage":"This is the last slide","a11yCarouselPaginationBulletMessage":"Go to slide"},"is_rtl":false,"breakpoints":{"xs":0,"sm":480,"md":768,"lg":1025,"xl":1440,"xxl":1600},"responsive":{"breakpoints":{"mobile":{"label":"Mobile Portrait","value":767,"default_value":767,"direction":"max","is_enabled":true},"mobile_extra":{"label":"Mobile Landscape","value":880,"default_value":880,"direction":"max","is_enabled":false},"tablet":{"label":"Tablet Portrait","value":1024,"default_value":1024,"direction":"max","is_enabled":true},"tablet_extra":{"label":"Tablet Landscape","value":1200,"default_value":1200,"direction":"max","is_enabled":false},"laptop":{"label":"Laptop","value":1366,"default_value":1366,"direction":"max","is_enabled":false},"widescreen":{"label":"Widescreen","value":2400,"default_value":2400,"direction":"min","is_enabled":false}},"hasCustomBreakpoints":false},"version":"4.1.2","is_static":false,"experimentalFeatures":{"e_font_icon_svg":true,"additional_custom_breakpoints":true,"container":true,"nested-elements":true,"global_classes_should_enforce_capabilities":true,"e_variables":true,"e_opt_in_v4_page":true,"e_components":true,"e_interactions":true,"e_widget_creation":true,"import-export-customization":true},"urls":{"assets":"https:\/\/profeneng.com\/wp-content\/plugins\/elementor\/assets\/","ajaxurl":"https:\/\/profeneng.com\/wp-admin\/admin-ajax.php","uploadUrl":"https:\/\/profeneng.com\/wp-content\/uploads"},"nonces":{"floatingButtonsClickTracking":"f6dc2d1eaa","atomicFormsSendForm":"54ed5551d2"},"swiperClass":"swiper","settings":{"page":[],"editorPreferences":[]},"kit":{"active_breakpoints":["viewport_mobile","viewport_tablet"],"lightbox_enable_counter":"yes","lightbox_enable_fullscreen":"yes","lightbox_enable_zoom":"yes","lightbox_enable_share":"yes","lightbox_title_src":"title","lightbox_description_src":"description"},"post":{"id":23,"title":"Home%20-%20Profen%20Engineering%20%E2%80%93%20Building%20the%20Future%20with%20Integrity","excerpt":"","featuredImage":false}};
</script>
<script id="elementor-frontend-js" src="wp-content/plugins/elementor/assets/js/frontend.min.js%3Fver=4.1.2"></script>
<script id="swiper-js" src="wp-content/plugins/elementor/assets/lib/swiper/v8/swiper.min.js%3Fver=8.4.5"></script>
<script id="bootstrap-js" src="wp-content/themes/rakar/assets/js/bootstrap.min.js%3Fver=5.0.0"></script>
<script id="swiper-js-js" src="wp-content/themes/rakar/assets/js/swiper-bundle.min.js%3Fver=1.0.0"></script>
<script id="magnific-popup-js" src="wp-content/themes/rakar/assets/js/jquery.magnific-popup.min.js%3Fver=1.0.0"></script>
<script id="counterup-js" src="wp-content/themes/rakar/assets/js/jquery.counterup.min.js%3Fver=4.0.0"></script>
<script id="jquery-ui-mouse-js" src="wp-includes/js/jquery/ui/mouse.min.js%3Fver=1.13.3"></script>
<script id="jquery-ui-slider-js" src="wp-includes/js/jquery/ui/slider.min.js%3Fver=1.13.3"></script>
<script id="imagesloaded-js" src="wp-includes/js/imagesloaded.min.js%3Fver=5.0.0"></script>
<script id="isototpe-pkgd-js" src="wp-content/themes/rakar/assets/js/isotope.pkgd.min.js%3Fver=1.0.0"></script>
<script id="rakar-main-script-js" src="wp-content/themes/rakar/assets/js/main.js%3Fver=1.0.0"></script>
<script id="elfsight-whatsapp-chat-js" src="wp-content/plugins/elfsight-whatsapp-chat-cc/assets/elfsight-whatsapp-chat.js%3Fver=1.2.0"></script>
<script id="rakar-core-js" src="wp-content/plugins/rakar-core/assets/js/rakar-core.js%3Fver=1.0"></script>
<script id="wp-emoji-settings" type="application/json">
{"baseUrl":"https://s.w.org/images/core/emoji/17.0.2/72x72/","ext":".png","svgUrl":"https://s.w.org/images/core/emoji/17.0.2/svg/","svgExt":".svg","source":{"concatemoji":"/wp-includes/js/wp-emoji-release.min.js?ver=7.0"}}
</script>
<script type="module">
/*! This file is auto-generated */
const a=JSON.parse(document.getElementById("wp-emoji-settings").textContent),o=(window._wpemojiSettings=a,"wpEmojiSettingsSupports"),s=["flag","emoji"];function i(e){try{var t={supportTests:e,timestamp:(new Date).valueOf()};sessionStorage.setItem(o,JSON.stringify(t))}catch(e){}}function c(e,t,n){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);t=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data);e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(n,0,0);const a=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data);return t.every((e,t)=>e===a[t])}function p(e,t){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);var n=e.getImageData(16,16,1,1);for(let e=0;e<n.data.length;e++)if(0!==n.data[e])return!1;return!0}function u(e,t,n,a){switch(t){case"flag":return n(e,"\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f","\ud83c\udff3\ufe0f\u200b\u26a7\ufe0f")?!1:!n(e,"\ud83c\udde8\ud83c\uddf6","\ud83c\udde8\u200b\ud83c\uddf6")&&!n(e,"\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f","\ud83c\udff4\u200b\udb40\udc67\u200b\udb40\udc62\u200b\udb40\udc65\u200b\udb40\udc6e\u200b\udb40\udc67\u200b\udb40\udc7f");case"emoji":return!a(e,"\ud83e\u1fac8")}return!1}function f(e,t,n,a){let r;const o=(r="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?new OffscreenCanvas(300,150):document.createElement("canvas")).getContext("2d",{willReadFrequently:!0}),s=(o.textBaseline="top",o.font="600 32px Arial",{});return e.forEach(e=>{s[e]=t(o,e,n,a)}),s}function r(e){var t=document.createElement("script");t.src=e,t.defer=!0,document.head.appendChild(t)}a.supports={everything:!0,everythingExceptFlag:!0},new Promise(t=>{let n=function(){try{var e=JSON.parse(sessionStorage.getItem(o));if("object"==typeof e&&"number"==typeof e.timestamp&&(new Date).valueOf()<e.timestamp+604800&&"object"==typeof e.supportTests)return e.supportTests}catch(e){}return null}();if(!n){if("undefined"!=typeof Worker&&"undefined"!=typeof OffscreenCanvas&&"undefined"!=typeof URL&&URL.createObjectURL&&"undefined"!=typeof Blob)try{var e="postMessage("+f.toString()+"("+[JSON.stringify(s),u.toString(),c.toString(),p.toString()].join(",")+"));",a=new Blob([e],{type:"text/javascript"});const r=new Worker(URL.createObjectURL(a),{name:"wpTestEmojiSupports"});return void(r.onmessage=e=>{i(n=e.data),r.terminate(),t(n)})}catch(e){}i(n=f(s,u,c,p))}t(n)}).then(e=>{for(const n in e)a.supports[n]=e[n],a.supports.everything=a.supports.everything&&a.supports[n],"flag"!==n&&(a.supports.everythingExceptFlag=a.supports.everythingExceptFlag&&a.supports[n]);var t;a.supports.everythingExceptFlag=a.supports.everythingExceptFlag&&!a.supports.flag,a.supports.everything||((t=a.source||{}).concatemoji?r(t.concatemoji):t.wpemoji&&t.twemoji&&(r(t.twemoji),r(t.wpemoji)))});
</script>

View File

@@ -1,28 +1,26 @@
<header><style id="elementor-post-945">.elementor-945 .elementor-element.elementor-element-1697af5{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-945 .elementor-element.elementor-element-a628d9c .header-top{background:#ED1C24;}.elementor-945 .elementor-element.elementor-element-a628d9c .main-menu>ul>li>a, .elementor-945 .elementor-element.elementor-element-a628d9c .main-menu ul.sub-menu li a{font-size:15px;font-weight:600;}</style> <div data-elementor-type="wp-post" data-elementor-id="945" class="elementor elementor-945">
<div class="elementor-element elementor-element-1697af5 e-con-full e-flex e-con e-parent" data-id="1697af5" data-element_type="container" data-e-type="container">
<div class="elementor-element elementor-element-a628d9c elementor-widget elementor-widget-rakarheader" data-id="a628d9c" data-element_type="widget" data-e-type="widget" data-widget_type="rakarheader.default">
<div class="elementor-widget-container">
<div class="th-menu-wrapper">
<div class="th-menu-area text-center">
<button class="th-menu-toggle"><i class="fas fa-times"></i></button>
<div class="mobile-logo"><a href="index.html"><img src="wp-content/uploads/2026/01/logo_pe-Rd-Wh-001.svg" alt="logo"></a></div> <div class="th-mobile-menu">
<ul id="menu-primary-menu" class=""><li id="menu-item-69" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-23 current_page_item menu-item-69"><a href="index.html" aria-current="page">HOME</a></li>
<li id="menu-item-60" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-60"><a href="about/index.html">ABOUT US</a></li>
<li id="menu-item-73" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-73"><a href="service/index.html">SERVICES</a></li>
<li id="menu-item-75" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-75"><a href="project/index.html">PROJECT</a></li>
<li id="menu-item-64" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-64"><a href="contact/index.html">CONTACT</a></li>
</ul> </div>
</div>
</div>
<div class="popup-search-box d-none d-lg-block"><button class="searchClose"><i class="fas fa-times"></i></button><form method="get" action="index.html"><input value="" name="s" required type="search" placeholder="What are you looking for?"><button type="submit"><i class="fas fa-search"></i></button></form></div><div class="th-header header-layout5 "><div class="header-top"><div class="container"><div class="row justify-content-center justify-content-lg-between align-items-center gy-2"><div class="col-auto d-none d-lg-block"><div class="header-links"><ul><li><i class="fas fa-location-dot text-white"></i> <a href="https://maps.app.goo.gl/5bMqkGpNXNo1K9yC7" target="_blank">Al Qusais Industrial Area-3, Dubai, UAE</a></li><li><i class="fas fa-clock text-white"></i> Monday to Saturday: 8 am - 5 pm</li></ul></div></div><div class="col-auto"><div class="header-links"><ul><li><i class="fas fa-headset" style="color:#fff"></i> <a href="tel:+97143200869">TALK TO US</a></li></ul></div></div></div></div></div><div class="sticky-wrapper"><!-- Main Menu Area --><div class="container"><div class="menu-area"><div class="row align-items-start justify-content-between"><div class="col-auto d-none d-lg-block"><div class="header-logo"><a href="index.html"><img src="wp-content/uploads/2024/07/logo_pe-Rd-Wh-70.png" alt="logo_pe Rd Wh 70" /></a></div></div><div class="col"><div class="menu-wrap"><div class="header-logo d-block d-lg-none"><a href="index.html"><img src="wp-content/uploads/2024/07/logo_pe-new-bk-70.png" alt="logo_pe new bk 70" /></a></div><nav class="main-menu d-none d-lg-inline-block "><ul id="menu-primary-menu-1" class="rakar-menu"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-23 current_page_item menu-item-69"><a href="index.html" aria-current="page">HOME</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-60"><a href="about/index.html">ABOUT US</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-73"><a href="service/index.html">SERVICES</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-75"><a href="project/index.html">PROJECT</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-64"><a href="contact/index.html">CONTACT</a></li>
</ul></nav><button type="button" class="simple-icon searchBoxToggler d-none d-lg-inline-block"><i class="far fa-search"></i></button><button type="button" class="th-menu-toggle d-block d-lg-none"><i class="far fa-bars"></i></button></div></div><div class="col-auto d-none d-xl-block"><div class="header-button"><a class="th-btn rounded-12 style3 th_btn" href="contact/index.html">Get A Quote<i class="fas fa-arrow-right ms-2"></i></a></div></div></div></div></div></div></div> </div>
</div>
</div>
</div>
</header>
<header><style id="elementor-post-945">.elementor-945 .elementor-element.elementor-element-1697af5{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-945 .elementor-element.elementor-element-a628d9c .header-top{background:#ED1C24;}.elementor-945 .elementor-element.elementor-element-a628d9c .main-menu>ul>li>a, .elementor-945 .elementor-element.elementor-element-a628d9c .main-menu ul.sub-menu li a{font-size:15px;font-weight:600;}</style> <div class="elementor elementor-945" data-elementor-id="945" data-elementor-type="wp-post">
<div class="elementor-element elementor-element-1697af5 e-con-full e-flex e-con e-parent" data-e-type="container" data-element_type="container" data-id="1697af5">
<div class="elementor-element elementor-element-a628d9c elementor-widget elementor-widget-rakarheader" data-e-type="widget" data-element_type="widget" data-id="a628d9c" data-widget_type="rakarheader.default">
<div class="elementor-widget-container">
<div class="th-menu-wrapper">
<div class="th-menu-area text-center">
<button class="th-menu-toggle"><i class="fas fa-times"></i></button>
<div class="mobile-logo"><a href="/"><img alt="logo" src="/wp-content/uploads/2026/01/logo_pe-Rd-Wh-001.svg"/></a></div> <div class="th-mobile-menu">
<ul class="" id="menu-primary-menu"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-23 current_page_item menu-item-69" id="menu-item-69"><a aria-current="page" href="/">HOME</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-60" id="menu-item-60"><a href="/about">ABOUT US</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-73" id="menu-item-73"><a href="/service">SERVICES</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-75" id="menu-item-75"><a href="/project">PROJECT</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-64" id="menu-item-64"><a href="/contact">CONTACT</a></li>
</ul> </div>
</div>
</div>
<div class="popup-search-box d-none d-lg-block"><button class="searchClose"><i class="fas fa-times"></i></button><form action="index.html" method="get"><input name="s" placeholder="What are you looking for?" required="" type="search" value=""/><button type="submit"><i class="fas fa-search"></i></button></form></div><div class="th-header header-layout5"><div class="header-top"><div class="container"><div class="row justify-content-center justify-content-lg-between align-items-center gy-2"><div class="col-auto d-none d-lg-block"><div class="header-links"><ul><li><i class="fas fa-location-dot text-white"></i> <a href="https://maps.app.goo.gl/5bMqkGpNXNo1K9yC7" target="_blank">Al Qusais Industrial Area-3, Dubai, UAE</a></li><li><i class="fas fa-clock text-white"></i> Monday to Saturday: 8 am - 5 pm</li></ul></div></div><div class="col-auto"><div class="header-links"><ul><li><i class="fas fa-headset" style="color:#fff"></i> <a href="tel:+97143200869">TALK TO US</a></li></ul></div></div></div></div></div><div class="sticky-wrapper"><!-- Main Menu Area --><div class="container"><div class="menu-area"><div class="row align-items-start justify-content-between"><div class="col-auto d-none d-lg-block"><div class="header-logo"><a href="/"><img alt="logo_pe Rd Wh 70" src="/wp-content/uploads/2024/07/logo_pe-Rd-Wh-70.png"/></a></div></div><div class="col"><div class="menu-wrap"><div class="header-logo d-block d-lg-none"><a href="/"><img alt="logo_pe new bk 70" src="/wp-content/uploads/2024/07/logo_pe-new-bk-70.png"/></a></div><nav class="main-menu d-none d-lg-inline-block"><ul class="rakar-menu" id="menu-primary-menu-1"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-23 current_page_item menu-item-69"><a aria-current="page" href="/">HOME</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-60"><a href="/about">ABOUT US</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-73"><a href="/service">SERVICES</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-75"><a href="/project">PROJECT</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-64"><a href="/contact">CONTACT</a></li>
</ul></nav><button class="simple-icon searchBoxToggler d-none d-lg-inline-block" type="button"><i class="far fa-search"></i></button><button class="th-menu-toggle d-block d-lg-none" type="button"><i class="far fa-bars"></i></button></div></div><div class="col-auto d-none d-xl-block"><div class="header-button"><a class="th-btn rounded-12 style3 th_btn" href="/contact">Get A Quote<i class="fas fa-arrow-right ms-2"></i></a></div></div></div></div></div></div></div> </div>
</div>
</div>
</div>
</header>

View File

@@ -1,34 +0,0 @@
<div id="preloader" className="preloader"><div className="preloader-inner">
<div className="loader">
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
</div>
</div></div><header><style id="elementor-post-945">.elementor-945 .elementor-element.elementor-element-1697af5{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-945 .elementor-element.elementor-element-a628d9c .header-top{background:#ED1C24;}.elementor-945 .elementor-element.elementor-element-a628d9c .main-menu>ul>li>a, .elementor-945 .elementor-element.elementor-element-a628d9c .main-menu ul.sub-menu li a{font-size:15px;font-weight:600;}</style> <div data-elementor-type="wp-post" data-elementor-id="945" className="elementor elementor-945">
<div className="elementor-element elementor-element-1697af5 e-con-full e-flex e-con e-parent" data-id="1697af5" data-element_type="container" data-e-type="container">
<div className="elementor-element elementor-element-a628d9c elementor-widget elementor-widget-rakarheader" data-id="a628d9c" data-element_type="widget" data-e-type="widget" data-widget_type="rakarheader.default">
<div className="elementor-widget-container">
<div className="th-menu-wrapper">
<div className="th-menu-area text-center">
<button className="th-menu-toggle"><i className="fal fa-times"></i></button>
<div className="mobile-logo"><a href="index.html"><img src="wp-content/uploads/2026/01/logo_pe-Rd-Wh-001.svg" alt="logo" /></a></div> <div className="th-mobile-menu">
<ul id="menu-primary-menu" className=""><li id="menu-item-69" className="menu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-23 current_page_item menu-item-69"><a href="index.html" aria-current="page">HOME</a></li>
<li id="menu-item-60" className="menu-item menu-item-type-post_type menu-item-object-page menu-item-60"><a href="about/index.html">ABOUT US</a></li>
<li id="menu-item-73" className="menu-item menu-item-type-post_type menu-item-object-page menu-item-73"><a href="service/index.html">SERVICES</a></li>
<li id="menu-item-75" className="menu-item menu-item-type-post_type menu-item-object-page menu-item-75"><a href="project/index.html">PROJECT</a></li>
<li id="menu-item-64" className="menu-item menu-item-type-post_type menu-item-object-page menu-item-64"><a href="contact/index.html">CONTACT</a></li>
</ul> </div>
</div>
</div>
<div className="popup-search-box d-none d-lg-block"><button className="searchClose"><i className="fal fa-times"></i></button><form method="get" action="index.html"><input value="" name="s" required type="search" placeholder="What are you looking for?" /><button type="submit"><i className="fal fa-search"></i></button></form></div><div className="th-header header-layout5 "><div className="header-top"><div className="container"><div className="row justify-content-center justify-content-lg-between align-items-center gy-2"><div className="col-auto d-none d-lg-block"><div className="header-links"><ul><li><i className="fas fa-location-dot text-white"></i> <a href="https://maps.app.goo.gl/5bMqkGpNXNo1K9yC7" target="_blank">Al Qusais Industrial Area-3, Dubai, UAE</a></li><li><i className="fas fa-clock text-white"></i> Monday to Saturday: 8 am - 5 pm</li></ul></div></div><div className="col-auto"><div className="header-links"><ul><li><i className="fas fa-headset" style={/*color:#fff*/}></i> <a href="tel:+97143200869">TALK TO US</a></li></ul></div></div></div></div></div><div className="sticky-wrapper"><div className="container"><div className="menu-area"><div className="row align-items-start justify-content-between"><div className="col-auto d-none d-lg-block"><div className="header-logo"><a href="index.html"><img src="wp-content/uploads/2024/07/logo_pe-Rd-Wh-70.png" alt="logo_pe Rd Wh 70" /></a></div></div><div className="col"><div className="menu-wrap"><div className="header-logo d-block d-lg-none"><a href="index.html"><img src="wp-content/uploads/2024/07/logo_pe-new-bk-70.png" alt="logo_pe new bk 70" /></a></div><nav className="main-menu d-none d-lg-inline-block "><ul id="menu-primary-menu-1" className="rakar-menu"><li className="menu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-23 current_page_item menu-item-69"><a href="index.html" aria-current="page">HOME</a></li>
<li className="menu-item menu-item-type-post_type menu-item-object-page menu-item-60"><a href="about/index.html">ABOUT US</a></li>
<li className="menu-item menu-item-type-post_type menu-item-object-page menu-item-73"><a href="service/index.html">SERVICES</a></li>
<li className="menu-item menu-item-type-post_type menu-item-object-page menu-item-75"><a href="project/index.html">PROJECT</a></li>
<li className="menu-item menu-item-type-post_type menu-item-object-page menu-item-64"><a href="contact/index.html">CONTACT</a></li>
</ul></nav><button type="button" className="simple-icon searchBoxToggler d-none d-lg-inline-block"><i className="far fa-search"></i></button><button type="button" className="th-menu-toggle d-block d-lg-none"><i className="far fa-bars"></i></button></div></div>

View File

@@ -1,17 +1,15 @@
<div id="smooth-wrapper">
<div id="smooth-content">
<!-- Page title 2 --><div class="breadcumb-banner"><div class="breadcumb-wrapper " id="breadcumbwrap"><div class="container"><div class="breadcumb-content"><h1 class="breadcumb-title">Project</h1><ul class="breadcumb-menu"><li><a href="../index.html">Home</a></li><li>Project</li></ul></div></div></div></div><!-- End of Page title --> <div class="rakar-fluid">
<!-- Page title 2 --><div class="breadcumb-banner"><div class="breadcumb-wrapper " id="breadcumbwrap"><div class="container"><div class="breadcumb-content"><h1 class="breadcumb-title">Project</h1><ul class="breadcumb-menu"><li><a href="/">Home</a></li><li>Project</li></ul></div></div></div></div><!-- End of Page title --> <div class="rakar-fluid">
<div class="builder-page-wrapper">
<div data-elementor-type="wp-page" data-elementor-id="36" class="elementor elementor-36">
<div class="elementor-element elementor-element-116e028 e-flex e-con-boxed e-con e-parent" data-id="116e028" data-element_type="container" data-e-type="container">
<div class="e-con-inner">
<div class="elementor-element elementor-element-860beb9 elementor-widget elementor-widget-rakarprojectfilter" data-id="860beb9" data-element_type="widget" data-e-type="widget" data-widget_type="rakarprojectfilter.default">
<div class="elementor-widget-container">
<div class="filter-menu indicator-active filter-menu-active"><button data-filter="*" class="tab-btn active" type="button">All </button><button data-filter=".cat1" class="tab-btn " type="button">Misting</button><button data-filter=".cat3" class="tab-btn " type="button">Pro-Sheild Adiabatic Cooling </button><button data-filter=".cat2" class="tab-btn " type="button">Electrical Renovation</button><button data-filter=".cat4" class="tab-btn " type="button">Swimming pool</button><button data-filter=".cat5" class="tab-btn " type="button">MEP </button></div><div class="row gy-4 filter-active"><div class="col-xxl-3 col-lg-4 col-md-6 filter-item cat1"><div class="project-grid"><div class="box-img"><img decoding="async" src="../wp-content/uploads/2025/02/PIC-3.jpg" alt="PIC 3" /></div><div class="box-content"><h3 class="box-title"><a href="../contact/index.html">Outdoor Misting</a></h3><p class="box-text">Our outdoor misting project includes the design, installation, and maintenance of a state-of-the-art misting system tailored to your specific outdoor space. </p><a href="../contact/index.html" class="th-btn2 style2 btn-sm th_btn">Learn More<i class="far fa-arrow-right"></i></a></div></div></div><div class="col-xxl-3 col-lg-4 col-md-6 filter-item cat3"><div class="project-grid"><div class="box-img"><img decoding="async" src="../wp-content/uploads/2025/02/PIC-2.jpg" alt="PIC 2" /></div><div class="box-content"><h3 class="box-title"><a href="../contact/index.html">Adiabatic Cooling </a></h3><p class="box-text">An advanced energy-efficient cooling solution designed to enhance the performance of HVAC, refrigeration, and industrial cooling systems.</p><a href="../contact/index.html" class="th-btn2 style2 btn-sm th_btn">Learn More<i class="far fa-arrow-right"></i></a></div></div></div><div class="col-xxl-3 col-lg-4 col-md-6 filter-item cat2"><div class="project-grid"><div class="box-img"><img decoding="async" src="../wp-content/uploads/2024/07/project_2_2.jpg" alt="project_2_2" /></div><div class="box-content"><h3 class="box-title"><a href="../contact/index.html">Electrical renovation</a></h3><p class="box-text">Our electrical renovation project is designed to upgrade old, inefficient, or unsafe electrical systems to meet modern standards and energy efficiency</p><a href="../contact/index.html" class="th-btn2 style2 btn-sm th_btn">Learn More<i class="far fa-arrow-right"></i></a></div></div></div><div class="col-xxl-3 col-lg-4 col-md-6 filter-item cat5 "><div class="project-grid"><div class="box-img"><img decoding="async" src="../wp-content/uploads/2024/07/project_2_4.jpg" alt="project_2_4" /></div><div class="box-content"><h3 class="box-title"><a href="../contact/index.html">MEP Works</a></h3><p class="box-text">we provide plumbing solutions for residential, commercial &amp; industrial projects, ensuring efficient water distribution, drainage &amp; sanitation systems.</p><a href="../contact/index.html" class="th-btn2 style2 btn-sm th_btn">Learn More<i class="far fa-arrow-right"></i></a></div></div></div><div class="col-xxl-3 col-lg-4 col-md-6 filter-item cat1"><div class="project-grid"><div class="box-img"><img decoding="async" src="../wp-content/uploads/2025/02/PIC-4.jpg" alt="PIC 4" /></div><div class="box-content"><h3 class="box-title"><a href="../contact/index.html">Landscaping Project </a></h3><p class="box-text">Our landscaping projects focus on aesthetics, functionality, and sustainability, ensuring a harmonious blend of nature and architecture. </p><a href="../contact/index.html" class="th-btn2 style2 btn-sm th_btn">Learn More<i class="far fa-arrow-right"></i></a></div></div></div><div class="col-xxl-3 col-lg-4 col-md-6 filter-item cat4"><div class="project-grid"><div class="box-img"><img decoding="async" src="../wp-content/uploads/2025/02/PIC-7.jpg" alt="PIC 7" /></div><div class="box-content"><h3 class="box-title"><a href="../contact/index.html">Pool Hot &amp; Cool Project </a></h3><p class="box-text">Our Swimming Pool Hot &amp; Cool Project includes customized temperature control systems that enhance comfort, improve efficiency &amp; reduce energy costs. </p><a href="../contact/index.html" class="th-btn2 style2 btn-sm th_btn">Learn More<i class="far fa-arrow-right"></i></a></div></div></div></div> </div>
<div class="filter-menu indicator-active filter-menu-active"><button data-filter="*" class="tab-btn active" type="button">All </button><button data-filter=".cat1" class="tab-btn " type="button">Misting</button><button data-filter=".cat3" class="tab-btn " type="button">Pro-Sheild Adiabatic Cooling </button><button data-filter=".cat2" class="tab-btn " type="button">Electrical Renovation</button><button data-filter=".cat4" class="tab-btn " type="button">Swimming pool</button><button data-filter=".cat5" class="tab-btn " type="button">MEP </button></div><div class="row gy-4 filter-active"><div class="col-xxl-3 col-lg-4 col-md-6 filter-item cat1"><div class="project-grid"><div class="box-img"><img decoding="async" src="/wp-content/uploads/2025/02/PIC-3.jpg" alt="PIC 3" /></div><div class="box-content"><h3 class="box-title"><a href="../contact/index.html">Outdoor Misting</a></h3><p class="box-text">Our outdoor misting project includes the design, installation, and maintenance of a state-of-the-art misting system tailored to your specific outdoor space. </p><a href="../contact/index.html" class="th-btn2 style2 btn-sm th_btn">Learn More<i class="far fa-arrow-right"></i></a></div></div></div><div class="col-xxl-3 col-lg-4 col-md-6 filter-item cat3"><div class="project-grid"><div class="box-img"><img decoding="async" src="/wp-content/uploads/2025/02/PIC-2.jpg" alt="PIC 2" /></div><div class="box-content"><h3 class="box-title"><a href="../contact/index.html">Adiabatic Cooling </a></h3><p class="box-text">An advanced energy-efficient cooling solution designed to enhance the performance of HVAC, refrigeration, and industrial cooling systems.</p><a href="../contact/index.html" class="th-btn2 style2 btn-sm th_btn">Learn More<i class="far fa-arrow-right"></i></a></div></div></div><div class="col-xxl-3 col-lg-4 col-md-6 filter-item cat2"><div class="project-grid"><div class="box-img"><img decoding="async" src="/wp-content/uploads/2024/07/project_2_2.jpg" alt="project_2_2" /></div><div class="box-content"><h3 class="box-title"><a href="../contact/index.html">Electrical renovation</a></h3><p class="box-text">Our electrical renovation project is designed to upgrade old, inefficient, or unsafe electrical systems to meet modern standards and energy efficiency</p><a href="../contact/index.html" class="th-btn2 style2 btn-sm th_btn">Learn More<i class="far fa-arrow-right"></i></a></div></div></div><div class="col-xxl-3 col-lg-4 col-md-6 filter-item cat5 "><div class="project-grid"><div class="box-img"><img decoding="async" src="/wp-content/uploads/2024/07/project_2_4.jpg" alt="project_2_4" /></div><div class="box-content"><h3 class="box-title"><a href="../contact/index.html">MEP Works</a></h3><p class="box-text">we provide plumbing solutions for residential, commercial &amp; industrial projects, ensuring efficient water distribution, drainage &amp; sanitation systems.</p><a href="../contact/index.html" class="th-btn2 style2 btn-sm th_btn">Learn More<i class="far fa-arrow-right"></i></a></div></div></div><div class="col-xxl-3 col-lg-4 col-md-6 filter-item cat1"><div class="project-grid"><div class="box-img"><img decoding="async" src="/wp-content/uploads/2025/02/PIC-4.jpg" alt="PIC 4" /></div><div class="box-content"><h3 class="box-title"><a href="../contact/index.html">Landscaping Project </a></h3><p class="box-text">Our landscaping projects focus on aesthetics, functionality, and sustainability, ensuring a harmonious blend of nature and architecture. </p><a href="../contact/index.html" class="th-btn2 style2 btn-sm th_btn">Learn More<i class="far fa-arrow-right"></i></a></div></div></div><div class="col-xxl-3 col-lg-4 col-md-6 filter-item cat4"><div class="project-grid"><div class="box-img"><img decoding="async" src="/wp-content/uploads/2025/02/PIC-7.jpg" alt="PIC 7" /></div><div class="box-content"><h3 class="box-title"><a href="../contact/index.html">Pool Hot &amp; Cool Project </a></h3><p class="box-text">Our Swimming Pool Hot &amp; Cool Project includes customized temperature control systems that enhance comfort, improve efficiency &amp; reduce energy costs. </p><a href="../contact/index.html" class="th-btn2 style2 btn-sm th_btn">Learn More<i class="far fa-arrow-right"></i></a></div></div></div></div> </div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>

View File

@@ -1,27 +0,0 @@
<div className="col-auto d-none d-xl-block"><div className="header-button"><a className="th-btn rounded-12 style3 th_btn" href="../contact/index.html">Get A Quote<i className="fas fa-arrow-right ms-2"></i></a></div></div></div></div></div></div></div> </div>
</div>
</div>
</div>
</header> <div id="smooth-wrapper">
<div id="smooth-content">
<div className="breadcumb-banner"><div className="breadcumb-wrapper " id="breadcumbwrap"><div className="container"><div className="breadcumb-content"><h1 className="breadcumb-title">Project</h1><ul className="breadcumb-menu"><li><a href="../index.html">Home</a></li><li>Project</li></ul></div></div></div></div> <div className="rakar-fluid">
<div className="builder-page-wrapper">
<div data-elementor-type="wp-page" data-elementor-id="36" className="elementor elementor-36">
<div className="elementor-element elementor-element-116e028 e-flex e-con-boxed e-con e-parent" data-id="116e028" data-element_type="container" data-e-type="container">
<div className="e-con-inner">
<div className="elementor-element elementor-element-860beb9 elementor-widget elementor-widget-rakarprojectfilter" data-id="860beb9" data-element_type="widget" data-e-type="widget" data-widget_type="rakarprojectfilter.default">
<div className="elementor-widget-container">
<div className="filter-menu indicator-active filter-menu-active"><button data-filter="*" className="tab-btn active" type="button">All </button><button data-filter=".cat1" className="tab-btn " type="button">Misting</button><button data-filter=".cat3" className="tab-btn " type="button">Pro-Sheild Adiabatic Cooling </button><button data-filter=".cat2" className="tab-btn " type="button">Electrical Renovation</button><button data-filter=".cat4" className="tab-btn " type="button">Swimming pool</button><button data-filter=".cat5" className="tab-btn " type="button">MEP </button></div><div className="row gy-4 filter-active"><div className="col-xxl-3 col-lg-4 col-md-6 filter-item cat1"><div className="project-grid"><div className="box-img"><img decoding="async" src="../wp-content/uploads/2025/02/PIC-3.jpg" alt="PIC 3" /></div><div className="box-content"><h3 className="box-title"><a href="../contact/index.html">Outdoor Misting</a></h3><p className="box-text">Our outdoor misting project includes the design, installation, and maintenance of a state-of-the-art misting system tailored to your specific outdoor space. </p><a href="../contact/index.html" className="th-btn2 style2 btn-sm th_btn">Learn More<i className="far fa-arrow-right"></i></a></div></div></div><div className="col-xxl-3 col-lg-4 col-md-6 filter-item cat3"><div className="project-grid"><div className="box-img"><img decoding="async" src="../wp-content/uploads/2025/02/PIC-2.jpg" alt="PIC 2" /></div><div className="box-content"><h3 className="box-title"><a href="../contact/index.html">Adiabatic Cooling </a></h3><p className="box-text">An advanced energy-efficient cooling solution designed to enhance the performance of HVAC, refrigeration, and industrial cooling systems.</p><a href="../contact/index.html" className="th-btn2 style2 btn-sm th_btn">Learn More<i className="far fa-arrow-right"></i></a></div></div></div><div className="col-xxl-3 col-lg-4 col-md-6 filter-item cat2"><div className="project-grid"><div className="box-img"><img decoding="async" src="../wp-content/uploads/2024/07/project_2_2.jpg" alt="project_2_2" /></div><div className="box-content"><h3 className="box-title"><a href="../contact/index.html">Electrical renovation</a></h3><p className="box-text">Our electrical renovation project is designed to upgrade old, inefficient, or unsafe electrical systems to meet modern standards and energy efficiency</p><a href="../contact/index.html" className="th-btn2 style2 btn-sm th_btn">Learn More<i className="far fa-arrow-right"></i></a></div></div></div><div className="col-xxl-3 col-lg-4 col-md-6 filter-item cat5 "><div className="project-grid"><div className="box-img"><img decoding="async" src="../wp-content/uploads/2024/07/project_2_4.jpg" alt="project_2_4" /></div><div className="box-content"><h3 className="box-title"><a href="../contact/index.html">MEP Works</a></h3><p className="box-text">we provide plumbing solutions for residential, commercial &amp; industrial projects, ensuring efficient water distribution, drainage &amp; sanitation systems.</p><a href="../contact/index.html" className="th-btn2 style2 btn-sm th_btn">Learn More<i className="far fa-arrow-right"></i></a></div></div></div><div className="col-xxl-3 col-lg-4 col-md-6 filter-item cat1"><div className="project-grid"><div className="box-img"><img decoding="async" src="../wp-content/uploads/2025/02/PIC-4.jpg" alt="PIC 4" /></div><div className="box-content"><h3 className="box-title"><a href="../contact/index.html">Landscaping Project </a></h3><p className="box-text">Our landscaping projects focus on aesthetics, functionality, and sustainability, ensuring a harmonious blend of nature and architecture. </p><a href="../contact/index.html" className="th-btn2 style2 btn-sm th_btn">Learn More<i className="far fa-arrow-right"></i></a></div></div></div><div className="col-xxl-3 col-lg-4 col-md-6 filter-item cat4"><div className="project-grid"><div className="box-img"><img decoding="async" src="../wp-content/uploads/2025/02/PIC-7.jpg" alt="PIC 7" /></div><div className="box-content"><h3 className="box-title"><a href="../contact/index.html">Pool Hot &amp; Cool Project </a></h3><p className="box-text">Our Swimming Pool Hot &amp; Cool Project includes customized temperature control systems that enhance comfort, improve efficiency &amp; reduce energy costs. </p><a href="../contact/index.html" className="th-btn2 style2 btn-sm th_btn">Learn More<i className="far fa-arrow-right"></i></a></div></div></div></div> </div>
</div>
</div>
</div>
</div>
</div>
</div>
<footer><style id="elementor-post-128">.elementor-128 .elementor-element.elementor-element-0881101{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--overflow:hidden;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-128 .elementor-element.elementor-element-0881101:not(.elementor-motion-effects-element-type-background), .elementor-128 .elementor-element.elementor-element-0881101 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#01003D;}.elementor-128 .elementor-element.elementor-element-fe422c7{--display:flex;}.elementor-128 .elementor-element.elementor-element-3cca8c6{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--justify-content:space-between;--padding-top:100px;--padding-bottom:48px;--padding-left:0px;--padding-right:0px;}.elementor-128 .elementor-element.elementor-element-8d709a6 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 12px 0px 12px;}.elementor-128 .elementor-element.elementor-element-e62fea2 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 12px 0px 12px;}.elementor-128 .elementor-element.elementor-element-02ad728 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:50px 12px 0px 12px;}.elementor-128 .elementor-element.elementor-element-de5c68d > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 12px 0px 12px;}.elementor-128 .elementor-element.elementor-element-f479338{--display:flex;--flex-direction:row;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--justify-content:space-between;--align-items:center;border-style:solid;--border-style:solid;border-width:1px 0px 0px 0px;--border-top-width:1px;--border-right-width:0px;--border-bottom-width:0px;--border-left-width:0px;border-color:#FFFFFF33;--border-color:#FFFFFF33;--padding-top:22px;--padding-bottom:22px;--padding-left:0px;--padding-right:0px;}.elementor-128 .elementor-element.elementor-element-0e1daf5 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 12px 0px 12px;}@media(max-width:1024px){.elementor-128 .elementor-element.elementor-element-3cca8c6{--flex-wrap:wrap;--padding-top:80px;--padding-bottom:30px;--padding-left:24px;--padding-right:24px;}.elementor-128 .elementor-element.elementor-element-8d709a6{width:var( --container-widget-width, 47% );max-width:47%;--container-widget-width:47%;--container-widget-flex-grow:0;}.elementor-128 .elementor-element.elementor-element-e62fea2{width:var( --container-widget-width, 47% );max-width:47%;--container-widget-width:47%;--container-widget-flex-grow:0;}.elementor-128 .elementor-element.elementor-element-02ad728{width:var( --container-widget-width, 47% );max-width:47%;--container-widget-width:47%;--container-widget-flex-grow:0;}.elementor-128 .elementor-element.elementor-element-de5c68d{width:var( --container-widget-width, 47% );max-width:47%;--container-widget-width:47%;--container-widget-flex-grow:0;}.elementor-128 .elementor-element.elementor-element-f479338{--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--justify-content:space-between;--gap:10px 10px;--row-gap:10px;--column-gap:10px;--flex-wrap:wrap;--padding-top:22px;--padding-bottom:22px;--padding-left:24px;--padding-right:24px;}}@media(max-width:767px){.elementor-128 .elementor-element.elementor-element-3cca8c6{--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:80px;--padding-bottom:30px;--padding-left:0px;--padding-right:0px;}.elementor-128 .elementor-element.elementor-element-8d709a6{width:100%;max-width:100%;}.elementor-128 .elementor-element.elementor-element-e62fea2{width:100%;max-width:100%;}.elementor-128 .elementor-element.elementor-element-02ad728{width:100%;max-width:100%;}.elementor-128 .elementor-element.elementor-element-de5c68d{width:100%;max-width:100%;}.elementor-128 .elementor-element.elementor-element-f479338{--padding-top:22px;--padding-bottom:22px;--padding-left:0px;--padding-right:0px;}}</style> <div data-elementor-type="wp-post" data-elementor-id="128" className="elementor elementor-128">
<div className="elementor-element elementor-element-0881101 footer-wrapper footer-layout1 e-con-full e-flex e-con e-parent" data-id="0881101" data-element_type="container" data-e-type="container" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}">
<div className="elementor-element elementor-element-fe422c7 e-con-full e-flex e-con e-child" data-id="fe422c7" data-element_type="container" data-e-type="container">
<div className="elementor-element elementor-element-a0abb74 elementor-widget elementor-widget-rakarcontactinfo" data-id="a0abb74" data-element_type="widget" data-e-type="widget" data-widget_type="rakarcontactinfo.default">
<div className="elementor-widget-container">
<div className="

View File

@@ -1,6 +1,4 @@
<div id="smooth-wrapper">
<div id="smooth-content">
<!-- Page title 2 --><div class="breadcumb-banner"><div class="breadcumb-wrapper " id="breadcumbwrap"><div class="container"><div class="breadcumb-content"><h1 class="breadcumb-title">Our Services</h1><ul class="breadcumb-menu"><li><a href="../index.html">Home</a></li><li>Our Services</li></ul></div></div></div></div><!-- End of Page title --> <div class="rakar-fluid">
<!-- Page title 2 --><div class="breadcumb-banner"><div class="breadcumb-wrapper " id="breadcumbwrap"><div class="container"><div class="breadcumb-content"><h1 class="breadcumb-title">Our Services</h1><ul class="breadcumb-menu"><li><a href="/">Home</a></li><li>Our Services</li></ul></div></div></div></div><!-- End of Page title --> <div class="rakar-fluid">
<div class="builder-page-wrapper">
<div data-elementor-type="wp-page" data-elementor-id="32" class="elementor elementor-32">
<div class="elementor-element elementor-element-e471ccf e-flex e-con-boxed e-con e-parent" data-id="e471ccf" data-element_type="container" data-e-type="container">
@@ -8,13 +6,13 @@
<div class="elementor-element elementor-element-58994a2 elementor-widget__width-initial elementor-widget elementor-widget-rakarsectiontitle" data-id="58994a2" data-element_type="widget" data-e-type="widget" data-widget_type="rakarsectiontitle.default">
<div class="elementor-widget-container">
<div class="title-area text-center ">
<span class="sub-title "><img decoding="async" src="../wp-content/plugins/rakar-core/assets/img/title_icon.svg" alt="Shape">Our Services</span><h2 class="sec-title ">What Services We Offer</h2><p>Welcome to Rakar renovation, we provide a robust synopsis for high level overviews. Organically grow the holistic world view of disruptive innovation via workplace diversity and empowerment.</p> </div>
<span class="sub-title "><img decoding="async" src="/wp-content/plugins/rakar-core/assets/img/title_icon.svg" alt="Shape">Our Services</span><h2 class="sec-title ">What Services We Offer</h2><p>Welcome to Rakar renovation, we provide a robust synopsis for high level overviews. Organically grow the holistic world view of disruptive innovation via workplace diversity and empowerment.</p> </div>
</div>
</div>
<div class="elementor-element elementor-element-97218ac elementor-widget elementor-widget-rakarservice" data-id="97218ac" data-element_type="widget" data-e-type="widget" data-widget_type="rakarservice.default">
<div class="elementor-widget-container">
<div class="row gy-4"><div class="col-xxl-3 col-lg-4 col-md-6"><div class="service-card"><div class="box-number">08</div><div class="box-icon"><img decoding="async" src="../wp-content/uploads/2024/07/price_1_3.svg" alt="price_1_3" /></div><p class="box-subtitle">Service And Repairs</p><h3 class="box-title"><a href="../index.html%3Fp=3199.html">Adiabatic Pre-Cooling System</a></h3><p class="box-text">Designed to optimize your cooling efficiency while reducing energy consumption. </p><a href="../index.html%3Fp=3199.html" class="th-btn btn-sm th_btn">Read More<i class="far fa-arrow-right ms-2"></i></a></div></div><div class="col-xxl-3 col-lg-4 col-md-6"><div class="service-card"><div class="box-number">07</div><div class="box-icon"><img decoding="async" src="../wp-content/uploads/2024/07/price_1_1.svg" alt="price_1_1" /></div><p class="box-subtitle">Service And Repairs</p><h3 class="box-title"><a href="../index.html%3Fp=3192.html">Misting Solutions</a></h3><p class="box-text">We specialize in providing high-performance misting solutions designed to keep you cool.</p><a href="../index.html%3Fp=3192.html" class="th-btn btn-sm th_btn">Read More<i class="far fa-arrow-right ms-2"></i></a></div></div><div class="col-xxl-3 col-lg-4 col-md-6"><div class="service-card"><div class="box-number">01</div><div class="box-icon"><img decoding="async" src="../wp-content/uploads/2024/07/service_card_2.svg" alt="service_card_2" /></div><p class="box-subtitle">Service And Repairs</p><h3 class="box-title"><a href="../index.html%3Fp=35.html">Electro-Mechanical Works</a></h3><p class="box-text">We, at Profen, specialize in comprehensive electro-mechanical solutions,..</p><a href="../index.html%3Fp=35.html" class="th-btn btn-sm th_btn">Read More<i class="far fa-arrow-right ms-2"></i></a></div></div><div class="col-xxl-3 col-lg-4 col-md-6"><div class="service-card"><div class="box-number">02</div><div class="box-icon"><img decoding="async" src="../wp-content/uploads/2024/08/service_grid_1.svg" alt="service_grid_1" /></div><p class="box-subtitle">Service And Repairs</p><h3 class="box-title"><a href="../index.html%3Fp=3159.html">Landscaping &amp; Fencing</a></h3><p class="box-text">Our expert team ensures exceptional design, durable materials,..</p><a href="../index.html%3Fp=3159.html" class="th-btn btn-sm th_btn">Read More<i class="far fa-arrow-right ms-2"></i></a></div></div><div class="col-xxl-3 col-lg-4 col-md-6"><div class="service-card"><div class="box-number">03</div><div class="box-icon"><img decoding="async" src="../wp-content/uploads/2024/07/service_card_4.svg" alt="service_card_4" /></div><p class="box-subtitle">Service And Repairs</p><h3 class="box-title"><a href="../index.html%3Fp=3160.html">Metal Construction &amp; Fabrications</a></h3><p class="box-text">We ensure superior craftsmanship, strength, and reliability in every...</p><a href="../index.html%3Fp=3160.html" class="th-btn btn-sm th_btn">Read More<i class="far fa-arrow-right ms-2"></i></a></div></div><div class="col-xxl-3 col-lg-4 col-md-6"><div class="service-card"><div class="box-number">04</div><div class="box-icon"><img decoding="async" src="../wp-content/uploads/2024/07/service_card_7.svg" alt="service_card_7" /></div><p class="box-subtitle">Service And Repairs</p><h3 class="box-title"><a href="../index.html%3Fp=3172.html">Building Contracting Works</a></h3><p class="box-text">We provide comprehensive building contracting services, delivering..</p><a href="../index.html%3Fp=3172.html" class="th-btn btn-sm th_btn">Read More<i class="far fa-arrow-right ms-2"></i></a></div></div><div class="col-xxl-3 col-lg-4 col-md-6"><div class="service-card"><div class="box-number">05</div><div class="box-icon"><img decoding="async" src="../wp-content/uploads/2024/07/service_card_3.svg" alt="service_card_3" /></div><p class="box-subtitle">Service And Repairs</p><h3 class="box-title"><a href="../index.html%3Fp=3179.html">Interior &amp; Fit-Out Works</a></h3><p class="box-text">You are looking to revamp a home, office, or commercial space,..</p><a href="../index.html%3Fp=3179.html" class="th-btn btn-sm th_btn">Read More<i class="far fa-arrow-right ms-2"></i></a></div></div><div class="col-xxl-3 col-lg-4 col-md-6"><div class="service-card"><div class="box-number">06</div><div class="box-icon"><img decoding="async" src="../wp-content/uploads/2024/07/service_card_8.svg" alt="service_card_8" /></div><p class="box-subtitle">Service And Repairs</p><h3 class="box-title"><a href="../index.html%3Fp=3186.html">Chiller Hot &amp; Cool Solutions</a></h3><p class="box-text">We specialize in providing advanced chiller systems for both heating and cooling </p><a href="../index.html%3Fp=3186.html" class="th-btn btn-sm th_btn">Read More<i class="far fa-arrow-right ms-2"></i></a></div></div></div> </div>
<div class="row gy-4"><div class="col-xxl-3 col-lg-4 col-md-6"><div class="service-card"><div class="box-number">08</div><div class="box-icon"><img decoding="async" src="/wp-content/uploads/2024/07/price_1_3.svg" alt="price_1_3" /></div><p class="box-subtitle">Service And Repairs</p><h3 class="box-title"><a href="/service?p=3199">Adiabatic Pre-Cooling System</a></h3><p class="box-text">Designed to optimize your cooling efficiency while reducing energy consumption. </p><a href="/service?p=3199" class="th-btn btn-sm th_btn">Read More<i class="far fa-arrow-right ms-2"></i></a></div></div><div class="col-xxl-3 col-lg-4 col-md-6"><div class="service-card"><div class="box-number">07</div><div class="box-icon"><img decoding="async" src="/wp-content/uploads/2024/07/price_1_1.svg" alt="price_1_1" /></div><p class="box-subtitle">Service And Repairs</p><h3 class="box-title"><a href="/service?p=3192">Misting Solutions</a></h3><p class="box-text">We specialize in providing high-performance misting solutions designed to keep you cool.</p><a href="/service?p=3192" class="th-btn btn-sm th_btn">Read More<i class="far fa-arrow-right ms-2"></i></a></div></div><div class="col-xxl-3 col-lg-4 col-md-6"><div class="service-card"><div class="box-number">01</div><div class="box-icon"><img decoding="async" src="/wp-content/uploads/2024/07/service_card_2.svg" alt="service_card_2" /></div><p class="box-subtitle">Service And Repairs</p><h3 class="box-title"><a href="/service?p=35">Electro-Mechanical Works</a></h3><p class="box-text">We, at Profen, specialize in comprehensive electro-mechanical solutions,..</p><a href="/service?p=35" class="th-btn btn-sm th_btn">Read More<i class="far fa-arrow-right ms-2"></i></a></div></div><div class="col-xxl-3 col-lg-4 col-md-6"><div class="service-card"><div class="box-number">02</div><div class="box-icon"><img decoding="async" src="/wp-content/uploads/2024/08/service_grid_1.svg" alt="service_grid_1" /></div><p class="box-subtitle">Service And Repairs</p><h3 class="box-title"><a href="/service?p=3159">Landscaping &amp; Fencing</a></h3><p class="box-text">Our expert team ensures exceptional design, durable materials,..</p><a href="/service?p=3159" class="th-btn btn-sm th_btn">Read More<i class="far fa-arrow-right ms-2"></i></a></div></div><div class="col-xxl-3 col-lg-4 col-md-6"><div class="service-card"><div class="box-number">03</div><div class="box-icon"><img decoding="async" src="/wp-content/uploads/2024/07/service_card_4.svg" alt="service_card_4" /></div><p class="box-subtitle">Service And Repairs</p><h3 class="box-title"><a href="/service?p=3160">Metal Construction &amp; Fabrications</a></h3><p class="box-text">We ensure superior craftsmanship, strength, and reliability in every...</p><a href="/service?p=3160" class="th-btn btn-sm th_btn">Read More<i class="far fa-arrow-right ms-2"></i></a></div></div><div class="col-xxl-3 col-lg-4 col-md-6"><div class="service-card"><div class="box-number">04</div><div class="box-icon"><img decoding="async" src="/wp-content/uploads/2024/07/service_card_7.svg" alt="service_card_7" /></div><p class="box-subtitle">Service And Repairs</p><h3 class="box-title"><a href="/service?p=3172">Building Contracting Works</a></h3><p class="box-text">We provide comprehensive building contracting services, delivering..</p><a href="/service?p=3172" class="th-btn btn-sm th_btn">Read More<i class="far fa-arrow-right ms-2"></i></a></div></div><div class="col-xxl-3 col-lg-4 col-md-6"><div class="service-card"><div class="box-number">05</div><div class="box-icon"><img decoding="async" src="/wp-content/uploads/2024/07/service_card_3.svg" alt="service_card_3" /></div><p class="box-subtitle">Service And Repairs</p><h3 class="box-title"><a href="/service?p=3179">Interior &amp; Fit-Out Works</a></h3><p class="box-text">You are looking to revamp a home, office, or commercial space,..</p><a href="/service?p=3179" class="th-btn btn-sm th_btn">Read More<i class="far fa-arrow-right ms-2"></i></a></div></div><div class="col-xxl-3 col-lg-4 col-md-6"><div class="service-card"><div class="box-number">06</div><div class="box-icon"><img decoding="async" src="/wp-content/uploads/2024/07/service_card_8.svg" alt="service_card_8" /></div><p class="box-subtitle">Service And Repairs</p><h3 class="box-title"><a href="/service?p=3186">Chiller Hot &amp; Cool Solutions</a></h3><p class="box-text">We specialize in providing advanced chiller systems for both heating and cooling </p><a href="/service?p=3186" class="th-btn btn-sm th_btn">Read More<i class="far fa-arrow-right ms-2"></i></a></div></div></div> </div>
</div>
<div class="elementor-element elementor-element-72617d9 elementor-widget-divider--view-line elementor-widget elementor-widget-divider" data-id="72617d9" data-element_type="widget" data-e-type="widget" data-widget_type="divider.default">
<div class="elementor-widget-container">
@@ -32,14 +30,14 @@
<div class="elementor-element elementor-element-5b6532e e-con-full e-flex e-con e-child" data-id="5b6532e" data-element_type="container" data-e-type="container">
<div class="elementor-element elementor-element-2195fdf elementor-widget elementor-widget-image" data-id="2195fdf" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
<div class="elementor-widget-container">
<img decoding="async" src="../wp-content/uploads/elementor/thumbs/img-12-r11tjeyk6bpfdhrkqtg3fniuzzc4mct5jx7en5pwcw.jpg" title="img-12" alt="img-12" loading="lazy" /> </div>
<img decoding="async" src="/wp-content/uploads/elementor/thumbs/img-12-r11tjeyk6bpfdhrkqtg3fniuzzc4mct5jx7en5pwcw.jpg" title="img-12" alt="img-12" loading="lazy" /> </div>
</div>
</div>
<div class="elementor-element elementor-element-47042bf e-con-full e-flex e-con e-child" data-id="47042bf" data-element_type="container" data-e-type="container">
<div class="elementor-element elementor-element-a3d9660 elementor-widget elementor-widget-rakarsectiontitle" data-id="a3d9660" data-element_type="widget" data-e-type="widget" data-widget_type="rakarsectiontitle.default">
<div class="elementor-widget-container">
<div class="title-area text-left ">
<span class="sub-title2 "><img decoding="async" src="../wp-content/plugins/rakar-core/assets/img/title_icon5.svg" alt="Shape">Contact Us</span><h2 class="sec-title ">Get A Quote</h2> </div>
<span class="sub-title2 "><img decoding="async" src="/wp-content/plugins/rakar-core/assets/img/title_icon5.svg" alt="Shape">Contact Us</span><h2 class="sec-title ">Get A Quote</h2> </div>
</div>
</div>
@@ -90,17 +88,17 @@
<div class="elementor-element elementor-element-b4c414d elementor-widget__width-initial elementor-widget elementor-widget-rakarsectiontitle" data-id="b4c414d" data-element_type="widget" data-e-type="widget" data-widget_type="rakarsectiontitle.default">
<div class="elementor-widget-container">
<div class="title-area text-center ">
<span class="sub-title "><img decoding="async" src="../wp-content/plugins/rakar-core/assets/img/title_icon.svg" alt="Shape">Best Gallery</span><h2 class="sec-title ">Our Awesome Gallery</h2> </div>
<span class="sub-title "><img decoding="async" src="/wp-content/plugins/rakar-core/assets/img/title_icon.svg" alt="Shape">Best Gallery</span><h2 class="sec-title ">Our Awesome Gallery</h2> </div>
</div>
</div>
<div class="elementor-element elementor-element-2e21688 elementor-widget elementor-widget-rakargallery" data-id="2e21688" data-element_type="widget" data-e-type="widget" data-widget_type="rakargallery.default">
<div class="elementor-widget-container">
<div class="row gy-30 filter-active overlay-direction"><div class="cat2 col-xl-3 col-md-6 filter-item th-gallery-loop"><div class="gallery-card"><a class="box-img popup-image" href="/wp-content/uploads/2024/07/gallery_1_1.jpg"><img decoding="async" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" alt="gallery_1_1" /><div class="box-content"><span class="box-btn"><i class="fas fa-plus"></i> </span></div></a></div></div><div class="cat2 col-xl-3 col-md-6 filter-item th-gallery-loop"><div class="gallery-card"><a class="box-img popup-image" href="/wp-content/uploads/2024/07/gallery_1_2.jpg"><img decoding="async" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" alt="gallery_1_2" /><div class="box-content"><span class="box-btn"><i class="fas fa-plus"></i></span></div></a></div></div><div class="cat2 col-xl-6 col-md-6 filter-item th-gallery-loop"><div class="gallery-card"><a class="box-img popup-image" href="/wp-content/uploads/2024/07/gallery_1_3.jpg"><img decoding="async" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" alt="gallery_1_3" /><div class="box-content"><span class="box-btn"><i class="fas fa-plus"></i></span></div></a></div></div><div class="cat2 col-xl-6 col-md-6 filter-item th-gallery-loop"><div class="gallery-card"><a class="box-img popup-image" href="/wp-content/uploads/2024/07/gallery_1_4.jpg"><img decoding="async" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" alt="gallery_1_4" /><div class="box-content"><span class="box-btn"><i class="fas fa-plus"></i></span></div></a></div></div><div class="cat2 col-xl-3 col-md-6 filter-item th-gallery-loop"><div class="gallery-card"><a class="box-img popup-image" href="/wp-content/uploads/2024/07/gallery_1_5.jpg"><img decoding="async" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" alt="gallery_1_5" /><div class="box-content"><span class="box-btn"><i class="fas fa-plus"></i></span></div></a></div></div><div class="cat2 col-xl-3 col-md-6 filter-item th-gallery-loop"><div class="gallery-card"><a class="box-img popup-image" href="/wp-content/uploads/2024/07/gallery_1_6.jpg"><img decoding="async" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" alt="gallery_1_6" /><div class="box-content"><span class="box-btn"><i class="fas fa-plus"></i></span></div></a></div></div><div class="cat2 col-xl-3 col-md-6 filter-item th-gallery-loop"><div class="gallery-card"><a class="box-img popup-image" href="/wp-content/uploads/2024/07/gallery_1_7.jpg"><img decoding="async" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" alt="gallery_1_7" /><div class="box-content"><span class="box-btn"><i class="fas fa-plus"></i></span></div></a></div></div><div class="cat2 col-xl-6 col-md-6 filter-item th-gallery-loop"><div class="gallery-card"><a class="box-img popup-image" href="/wp-content/uploads/2024/07/gallery_1_8.jpg"><img decoding="async" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" alt="gallery_1_8" /><div class="box-content"><span class="box-btn"><i class="fas fa-plus"></i></span></div></a></div></div><div class="cat2 col-xl-3 col-md-6 filter-item th-gallery-loop"><div class="gallery-card"><a class="box-img popup-image" href="/wp-content/uploads/2024/07/gallery_1_9.jpg"><img decoding="async" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" alt="gallery_1_9" /><div class="box-content"><span class="box-btn"><i class="fas fa-plus"></i></span></div></a></div></div></div> </div>
<div class="row gy-30 filter-active overlay-direction"><div class="cat2 col-xl-3 col-md-6 filter-item th-gallery-loop"><div class="gallery-card"><a class="box-img popup-image" href="https://wordpress.themeholy.com/rakar/wp-content/uploads/2024/07/gallery_1_1.jpg"><img decoding="async" src="https://wordpress.themeholy.com/rakar/wp-content/uploads/2024/07/gallery_1_1.jpg" alt="gallery_1_1" /><div class="box-content"><span class="box-btn"><i class="fas fa-plus"></i> </span></div></a></div></div><div class="cat2 col-xl-3 col-md-6 filter-item th-gallery-loop"><div class="gallery-card"><a class="box-img popup-image" href="https://wordpress.themeholy.com/rakar/wp-content/uploads/2024/07/gallery_1_2.jpg"><img decoding="async" src="https://wordpress.themeholy.com/rakar/wp-content/uploads/2024/07/gallery_1_2.jpg" alt="gallery_1_2" /><div class="box-content"><span class="box-btn"><i class="fas fa-plus"></i></span></div></a></div></div><div class="cat2 col-xl-6 col-md-6 filter-item th-gallery-loop"><div class="gallery-card"><a class="box-img popup-image" href="https://wordpress.themeholy.com/rakar/wp-content/uploads/2024/07/gallery_1_3.jpg"><img decoding="async" src="https://wordpress.themeholy.com/rakar/wp-content/uploads/2024/07/gallery_1_3.jpg" alt="gallery_1_3" /><div class="box-content"><span class="box-btn"><i class="fas fa-plus"></i></span></div></a></div></div><div class="cat2 col-xl-6 col-md-6 filter-item th-gallery-loop"><div class="gallery-card"><a class="box-img popup-image" href="https://wordpress.themeholy.com/rakar/wp-content/uploads/2024/07/gallery_1_4.jpg"><img decoding="async" src="https://wordpress.themeholy.com/rakar/wp-content/uploads/2024/07/gallery_1_4.jpg" alt="gallery_1_4" /><div class="box-content"><span class="box-btn"><i class="fas fa-plus"></i></span></div></a></div></div><div class="cat2 col-xl-3 col-md-6 filter-item th-gallery-loop"><div class="gallery-card"><a class="box-img popup-image" href="https://wordpress.themeholy.com/rakar/wp-content/uploads/2024/07/gallery_1_5.jpg"><img decoding="async" src="https://wordpress.themeholy.com/rakar/wp-content/uploads/2024/07/gallery_1_5.jpg" alt="gallery_1_5" /><div class="box-content"><span class="box-btn"><i class="fas fa-plus"></i></span></div></a></div></div><div class="cat2 col-xl-3 col-md-6 filter-item th-gallery-loop"><div class="gallery-card"><a class="box-img popup-image" href="https://wordpress.themeholy.com/rakar/wp-content/uploads/2024/07/gallery_1_6.jpg"><img decoding="async" src="https://wordpress.themeholy.com/rakar/wp-content/uploads/2024/07/gallery_1_6.jpg" alt="gallery_1_6" /><div class="box-content"><span class="box-btn"><i class="fas fa-plus"></i></span></div></a></div></div><div class="cat2 col-xl-3 col-md-6 filter-item th-gallery-loop"><div class="gallery-card"><a class="box-img popup-image" href="https://wordpress.themeholy.com/rakar/wp-content/uploads/2024/07/gallery_1_7.jpg"><img decoding="async" src="https://wordpress.themeholy.com/rakar/wp-content/uploads/2024/07/gallery_1_7.jpg" alt="gallery_1_7" /><div class="box-content"><span class="box-btn"><i class="fas fa-plus"></i></span></div></a></div></div><div class="cat2 col-xl-6 col-md-6 filter-item th-gallery-loop"><div class="gallery-card"><a class="box-img popup-image" href="https://wordpress.themeholy.com/rakar/wp-content/uploads/2024/07/gallery_1_8.jpg"><img decoding="async" src="https://wordpress.themeholy.com/rakar/wp-content/uploads/2024/07/gallery_1_8.jpg" alt="gallery_1_8" /><div class="box-content"><span class="box-btn"><i class="fas fa-plus"></i></span></div></a></div></div><div class="cat2 col-xl-3 col-md-6 filter-item th-gallery-loop"><div class="gallery-card"><a class="box-img popup-image" href="https://wordpress.themeholy.com/rakar/wp-content/uploads/2024/07/gallery_1_9.jpg"><img decoding="async" src="https://wordpress.themeholy.com/rakar/wp-content/uploads/2024/07/gallery_1_9.jpg" alt="gallery_1_9" /><div class="box-content"><span class="box-btn"><i class="fas fa-plus"></i></span></div></a></div></div></div> </div>
</div>
<div class="elementor-element elementor-element-be52d56 elementor-widget elementor-widget-rakarbutton" data-id="be52d56" data-element_type="widget" data-e-type="widget" data-widget_type="rakarbutton.default">
<div class="elementor-widget-container">
<div class="btn-wrapper"><a class="th-btn th_btn " href="https://wordpress.themeholy.com/rakar/gallery/">View All Gallery<i class="far fa-arrow-right"></i></a></div> </div>
<div class="btn-wrapper"><a class="th-btn th_btn " href="/project">View All Gallery<i class="far fa-arrow-right"></i></a></div> </div>
</div>
</div>
</div>
@@ -109,45 +107,45 @@
<div class="elementor-element elementor-element-68b4dae elementor-widget__width-initial elementor-widget elementor-widget-rakarsectiontitle" data-id="68b4dae" data-element_type="widget" data-e-type="widget" data-widget_type="rakarsectiontitle.default">
<div class="elementor-widget-container">
<div class="title-area text-center ">
<span class="sub-title shape-white"><img decoding="async" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" alt="title_icon_white" />Pricing Plan</span><h2 class="sec-title ">Our Best Pricing Plan</h2><p>The popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock.</p> </div>
<span class="sub-title shape-white"><img decoding="async" src="https://wordpress.themeholy.com/rakar/wp-content/uploads/2024/07/title_icon_white.svg" alt="title_icon_white" />Pricing Plan</span><h2 class="sec-title ">Our Best Pricing Plan</h2><p>The popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock.</p> </div>
</div>
</div>
<div class="elementor-element elementor-element-96922c6 elementor-widget elementor-widget-rakarprice" data-id="96922c6" data-element_type="widget" data-e-type="widget" data-widget_type="rakarprice.default">
<div class="elementor-widget-container">
<div class="row gy-4"><div class="hover-item col-xl-3 col-md-6"><div class="price-card"><div class="box-shape"><img decoding="async" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" alt="lines_3" /></div><h3 class="box-title">Basic Plan</h3><p class="box-price">$99.00<span class="duration">/Monthly</span></p><div class="box-list"><ul>
<div class="row gy-4"><div class="hover-item col-xl-3 col-md-6"><div class="price-card"><div class="box-shape"><img decoding="async" src="https://wordpress.themeholy.com/rakar/wp-content/uploads/2024/07/lines_3.png" alt="lines_3" /></div><h3 class="box-title">Basic Plan</h3><p class="box-price">$99.00<span class="duration">/Monthly</span></p><div class="box-list"><ul>
<li>Monthly Inspection</li>
<li>General Repair</li>
<li class="unavailable">Maintenance</li>
<li class="unavailable">Fixing of Faulty Wiring</li>
<li class="unavailable">Ac Condition Repair</li>
</ul></div><div class="box-footer"><a href="https://wordpress.themeholy.com/rakar/contact/" class="th-btn">Get Started<i class="far fa-arrow-right ms-2"></i></a></div></div></div><div class="hover-item item-active col-xl-3 col-md-6"><div class="price-card"><div class="box-shape"><img decoding="async" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" alt="lines_3" /></div><span class="tag">Popular Plan</span><h3 class="box-title">Standard</h3><p class="box-price">$129.00<span class="duration">/Monthly</span></p><div class="box-list"><ul>
</ul></div><div class="box-footer"><a href="/contact" class="th-btn">Get Started<i class="far fa-arrow-right ms-2"></i></a></div></div></div><div class="hover-item item-active col-xl-3 col-md-6"><div class="price-card"><div class="box-shape"><img decoding="async" src="https://wordpress.themeholy.com/rakar/wp-content/uploads/2024/07/lines_3.png" alt="lines_3" /></div><span class="tag">Popular Plan</span><h3 class="box-title">Standard</h3><p class="box-price">$129.00<span class="duration">/Monthly</span></p><div class="box-list"><ul>
<li>Monthly Inspection</li>
<li>General Repair</li>
<li>Maintenance</li>
<li class="unavailable">Fixing of Faulty Wiring</li>
<li class="unavailable">Ac Condition Repair</li>
</ul></div><div class="box-footer"><a href="https://wordpress.themeholy.com/rakar/contact/" class="th-btn">Get Started<i class="far fa-arrow-right ms-2"></i></a></div></div></div><div class="hover-item col-xl-3 col-md-6"><div class="price-card"><div class="box-shape"><img decoding="async" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" alt="lines_3" /></div><h3 class="box-title">Premium</h3><p class="box-price">$199.00<span class="duration">/Monthly</span></p><div class="box-list"><ul>
</ul></div><div class="box-footer"><a href="/contact" class="th-btn">Get Started<i class="far fa-arrow-right ms-2"></i></a></div></div></div><div class="hover-item col-xl-3 col-md-6"><div class="price-card"><div class="box-shape"><img decoding="async" src="https://wordpress.themeholy.com/rakar/wp-content/uploads/2024/07/lines_3.png" alt="lines_3" /></div><h3 class="box-title">Premium</h3><p class="box-price">$199.00<span class="duration">/Monthly</span></p><div class="box-list"><ul>
<li>Monthly Inspection</li>
<li>General Repair</li>
<li>Maintenance</li>
<li>Fixing of Faulty Wiring</li>
<li class="unavailable">Ac Condition Repair</li>
</ul></div><div class="box-footer"><a href="https://wordpress.themeholy.com/rakar/contact/" class="th-btn">Get Started<i class="far fa-arrow-right ms-2"></i></a></div></div></div><div class="hover-item col-xl-3 col-md-6"><div class="price-card"><div class="box-shape"><img decoding="async" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" alt="lines_3" /></div><h3 class="box-title">Dedicated Plan</h3><p class="box-price">$299.00<span class="duration">/Monthly</span></p><div class="box-list"><ul>
</ul></div><div class="box-footer"><a href="/contact" class="th-btn">Get Started<i class="far fa-arrow-right ms-2"></i></a></div></div></div><div class="hover-item col-xl-3 col-md-6"><div class="price-card"><div class="box-shape"><img decoding="async" src="https://wordpress.themeholy.com/rakar/wp-content/uploads/2024/07/lines_3.png" alt="lines_3" /></div><h3 class="box-title">Dedicated Plan</h3><p class="box-price">$299.00<span class="duration">/Monthly</span></p><div class="box-list"><ul>
<li>Monthly Inspection</li>
<li>General Repair</li>
<li>Maintenance</li>
<li>Fixing of Faulty Wiring</li>
<li>Ac Condition Repair</li>
</ul></div><div class="box-footer"><a href="https://wordpress.themeholy.com/rakar/contact/" class="th-btn">Get Started<i class="far fa-arrow-right ms-2"></i></a></div></div></div></div> </div>
</ul></div><div class="box-footer"><a href="/contact" class="th-btn">Get Started<i class="far fa-arrow-right ms-2"></i></a></div></div></div></div> </div>
</div>
<div class="elementor-element elementor-element-dc2c8e4 elementor-widget elementor-widget-rakarshapeimage" data-id="dc2c8e4" data-element_type="widget" data-e-type="widget" data-widget_type="rakarshapeimage.default">
<div class="elementor-widget-container">
<!-- Image --><div class="shape-mockup spin " data-top="15%" data-right="6%"><img decoding="async" class="" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" alt="Shape Image" ></div><!-- End Image --> </div>
<!-- Image --><div class="shape-mockup spin " data-top="15%" data-right="6%"><img decoding="async" class="" src="https://wordpress.themeholy.com/rakar/wp-content/uploads/2024/07/dots_1.svg" alt="Shape Image" ></div><!-- End Image --> </div>
</div>
<div class="elementor-element elementor-element-a3db61d elementor-widget elementor-widget-rakarshapeimage" data-id="a3db61d" data-element_type="widget" data-e-type="widget" data-widget_type="rakarshapeimage.default">
<div class="elementor-widget-container">
<!-- Image --><div class="shape-mockup spin " data-bottom="6%" data-left="4%"><img decoding="async" class="" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" alt="Shape Image" ></div><!-- End Image --> </div>
<!-- Image --><div class="shape-mockup spin " data-bottom="6%" data-left="4%"><img decoding="async" class="" src="https://wordpress.themeholy.com/rakar/wp-content/uploads/2024/07/dots_1.svg" alt="Shape Image" ></div><!-- End Image --> </div>
</div>
</div>
</div>
@@ -157,7 +155,7 @@
<div class="elementor-element elementor-element-9d81d77 elementor-widget__width-initial elementor-widget elementor-widget-rakarsectiontitle" data-id="9d81d77" data-element_type="widget" data-e-type="widget" data-widget_type="rakarsectiontitle.default">
<div class="elementor-widget-container">
<div class="title-area text-left ">
<span class="sub-title "><img decoding="async" src="../wp-content/plugins/rakar-core/assets/img/title_icon.svg" alt="Shape">Testimonial</span><h2 class="sec-title ">What Our Client Say</h2> </div>
<span class="sub-title "><img decoding="async" src="/wp-content/plugins/rakar-core/assets/img/title_icon.svg" alt="Shape">Testimonial</span><h2 class="sec-title ">What Our Client Say</h2> </div>
</div>
</div>
@@ -168,7 +166,7 @@
</div>
<div class="elementor-element elementor-element-037663e elementor-widget elementor-widget-rakartestimonialslider" data-id="037663e" data-element_type="widget" data-e-type="widget" data-widget_type="rakartestimonialslider.default">
<div class="elementor-widget-container">
<div class="slider-area"><div class="swiper th-slider has-shadow" id="testiSlider1" data-slider-options='{"breakpoints":{"0":{"slidesPerView":1},"576":{"slidesPerView":"1"},"768":{"slidesPerView":"1"},"992":{"slidesPerView":"2"},"1200":{"slidesPerView":"2"}}}'><div class="swiper-wrapper"><div class="swiper-slide"><div class="testi-card "><div class="box-img"><img decoding="async" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" alt="testi_b_1" /></div><div class="box-content"><div class="box-review"><i class="fa-solid fa-star"></i><i class="fa-solid fa-star"></i><i class="fa-solid fa-star"></i><i class="fa-solid fa-star"></i><i class="fa-solid fa-star"></i></div><p class="box-text">Rakar has most quality services by subtle craftmens, Diam id semper tellus. Est aliquam sit est ac. Felis diam nunc nibh blandit risus ndrerit sed consectetur quis leo on the  praesent scelerisque.</p><div class="box-profile"><div class="box-avater"><img decoding="async" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" alt="testi_1_1" /></div><div class="media-body"><h3 class="box-title">Sumaiya Zara</h3><span class="box-desig">CEO Of Company</span></div></div></div></div></div><div class="swiper-slide"><div class="testi-card "><div class="box-img"><img decoding="async" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" alt="testi_b_2" /></div><div class="box-content"><div class="box-review"><i class="fa-solid fa-star"></i><i class="fa-solid fa-star"></i><i class="fa-solid fa-star"></i><i class="fa-solid fa-star"></i><i class="fa-solid fa-star"></i></div><p class="box-text">The most quality services by subtle craftmens, Diam id semper tellus. Est aliquam sit est ac. Felis diam nunc nibh blandit risus ndrerit sed consectetur quis leo on the  praesent in Rakar.</p><div class="box-profile"><div class="box-avater"><img decoding="async" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" alt="testi_1_2" /></div><div class="media-body"><h3 class="box-title">Alex Simon</h3><span class="box-desig">Managing Director</span></div></div></div></div></div><div class="swiper-slide"><div class="testi-card "><div class="box-img"><img decoding="async" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" alt="testi_b_1" /></div><div class="box-content"><div class="box-review"><i class="fa-solid fa-star"></i><i class="fa-solid fa-star"></i><i class="fa-solid fa-star"></i><i class="fa-solid fa-star"></i><i class="fa-solid fa-star"></i></div><p class="box-text">Rakar has most quality services by subtle craftmens, Diam id semper tellus. Est aliquam sit est ac. Felis diam nunc nibh blandit risus ndrerit sed consectetur quis leo on the  praesent scelerisque.</p><div class="box-profile"><div class="box-avater"><img decoding="async" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" alt="testi_1_1" /></div><div class="media-body"><h3 class="box-title">Agelina Margret</h3><span class="box-desig">CEO Of Company</span></div></div></div></div></div><div class="swiper-slide"><div class="testi-card "><div class="box-img"><img decoding="async" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" alt="testi_b_2" /></div><div class="box-content"><div class="box-review"><i class="fa-solid fa-star"></i><i class="fa-solid fa-star"></i><i class="fa-solid fa-star"></i><i class="fa-solid fa-star"></i><i class="fa-solid fa-star"></i></div><p class="box-text">The most quality services by subtle craftmens, Diam id semper tellus. Est aliquam sit est ac. Felis diam nunc nibh blandit risus ndrerit sed consectetur quis leo on the  praesent in Rakar.</p><div class="box-profile"><div class="box-avater"><img decoding="async" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" alt="testi_1_2" /></div><div class="media-body"><h3 class="box-title">Robert Danials</h3><span class="box-desig">Managing Director</span></div></div></div></div></div></div><div class="slider-pagination"></div></div></div> </div>
<div class="slider-area"><div class="swiper th-slider has-shadow" id="testiSlider1" data-slider-options='{"breakpoints":{"0":{"slidesPerView":1},"576":{"slidesPerView":"1"},"768":{"slidesPerView":"1"},"992":{"slidesPerView":"2"},"1200":{"slidesPerView":"2"}}}'><div class="swiper-wrapper"><div class="swiper-slide"><div class="testi-card "><div class="box-img"><img decoding="async" src="https://wordpress.themeholy.com/rakar/wp-content/uploads/2024/07/testi_b_1.jpg" alt="testi_b_1" /></div><div class="box-content"><div class="box-review"><i class="fa-solid fa-star"></i><i class="fa-solid fa-star"></i><i class="fa-solid fa-star"></i><i class="fa-solid fa-star"></i><i class="fa-solid fa-star"></i></div><p class="box-text">Rakar has most quality services by subtle craftmens, Diam id semper tellus. Est aliquam sit est ac. Felis diam nunc nibh blandit risus ndrerit sed consectetur quis leo on the  praesent scelerisque.</p><div class="box-profile"><div class="box-avater"><img decoding="async" src="https://wordpress.themeholy.com/rakar/wp-content/uploads/2024/07/testi_1_1.jpg" alt="testi_1_1" /></div><div class="media-body"><h3 class="box-title">Sumaiya Zara</h3><span class="box-desig">CEO Of Company</span></div></div></div></div></div><div class="swiper-slide"><div class="testi-card "><div class="box-img"><img decoding="async" src="https://wordpress.themeholy.com/rakar/wp-content/uploads/2024/07/testi_b_2.jpg" alt="testi_b_2" /></div><div class="box-content"><div class="box-review"><i class="fa-solid fa-star"></i><i class="fa-solid fa-star"></i><i class="fa-solid fa-star"></i><i class="fa-solid fa-star"></i><i class="fa-solid fa-star"></i></div><p class="box-text">The most quality services by subtle craftmens, Diam id semper tellus. Est aliquam sit est ac. Felis diam nunc nibh blandit risus ndrerit sed consectetur quis leo on the  praesent in Rakar.</p><div class="box-profile"><div class="box-avater"><img decoding="async" src="https://wordpress.themeholy.com/rakar/wp-content/uploads/2024/07/testi_1_2.jpg" alt="testi_1_2" /></div><div class="media-body"><h3 class="box-title">Alex Simon</h3><span class="box-desig">Managing Director</span></div></div></div></div></div><div class="swiper-slide"><div class="testi-card "><div class="box-img"><img decoding="async" src="https://wordpress.themeholy.com/rakar/wp-content/uploads/2024/07/testi_b_1.jpg" alt="testi_b_1" /></div><div class="box-content"><div class="box-review"><i class="fa-solid fa-star"></i><i class="fa-solid fa-star"></i><i class="fa-solid fa-star"></i><i class="fa-solid fa-star"></i><i class="fa-solid fa-star"></i></div><p class="box-text">Rakar has most quality services by subtle craftmens, Diam id semper tellus. Est aliquam sit est ac. Felis diam nunc nibh blandit risus ndrerit sed consectetur quis leo on the  praesent scelerisque.</p><div class="box-profile"><div class="box-avater"><img decoding="async" src="https://wordpress.themeholy.com/rakar/wp-content/uploads/2024/07/testi_1_1.jpg" alt="testi_1_1" /></div><div class="media-body"><h3 class="box-title">Agelina Margret</h3><span class="box-desig">CEO Of Company</span></div></div></div></div></div><div class="swiper-slide"><div class="testi-card "><div class="box-img"><img decoding="async" src="https://wordpress.themeholy.com/rakar/wp-content/uploads/2024/07/testi_b_2.jpg" alt="testi_b_2" /></div><div class="box-content"><div class="box-review"><i class="fa-solid fa-star"></i><i class="fa-solid fa-star"></i><i class="fa-solid fa-star"></i><i class="fa-solid fa-star"></i><i class="fa-solid fa-star"></i></div><p class="box-text">The most quality services by subtle craftmens, Diam id semper tellus. Est aliquam sit est ac. Felis diam nunc nibh blandit risus ndrerit sed consectetur quis leo on the  praesent in Rakar.</p><div class="box-profile"><div class="box-avater"><img decoding="async" src="https://wordpress.themeholy.com/rakar/wp-content/uploads/2024/07/testi_1_2.jpg" alt="testi_1_2" /></div><div class="media-body"><h3 class="box-title">Robert Danials</h3><span class="box-desig">Managing Director</span></div></div></div></div></div></div><div class="slider-pagination"></div></div></div> </div>
</div>
</div>
</div>
@@ -185,4 +183,4 @@
</div>
</div>
</div>
</div>

File diff suppressed because one or more lines are too long

13
src/data/serviceCss.js Normal file
View File

@@ -0,0 +1,13 @@
const serviceCss = {
35: `.elementor-35 .elementor-element.elementor-element-9a85ca6{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:120px;--padding-bottom:120px;--padding-left:0px;--padding-right:0px;}.elementor-35 .elementor-element.elementor-element-cf1beee{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:12px;--padding-right:12px;}.elementor-35 .elementor-element.elementor-element-2837963 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 048px 0px;}.elementor-35 .elementor-element.elementor-element-2837963 img{border-radius:12px 12px 12px 12px;}.elementor-35 .elementor-element.elementor-element-b3af1a5 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 20px 0px;}.elementor-35 .elementor-element.elementor-element-b3af1a5 .elementor-heading-title{line-height:1.3em;}.elementor-35 .elementor-element.elementor-element-6cfa376 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 30px 0px;}.elementor-35 .elementor-element.elementor-element-839957a{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:12px;--padding-right:12px;}@media(min-width:768px){.elementor-35 .elementor-element.elementor-element-cf1beee{--width:66.67%;}.elementor-35 .elementor-element.elementor-element-839957a{--width:33.33%;}}@media(max-width:1024px) and (min-width:768px){.elementor-35 .elementor-element.elementor-element-cf1beee{--width:100%;}.elementor-35 .elementor-element.elementor-element-839957a{--width:100%;}}@media(max-width:1024px){.elementor-35 .elementor-element.elementor-element-9a85ca6{--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--gap:60px 60px;--row-gap:60px;--column-gap:60px;--padding-top:80px;--padding-bottom:50px;--padding-left:0px;--padding-right:0px;}.elementor-35 .elementor-element.elementor-element-cf1beee{--padding-top:0px;--padding-bottom:0px;--padding-left:36px;--padding-right:36px;}.elementor-35 .elementor-element.elementor-element-839957a{--padding-top:0px;--padding-bottom:0px;--padding-left:36px;--padding-right:36px;}}@media(max-width:767px){.elementor-35 .elementor-element.elementor-element-cf1beee{--padding-top:0px;--padding-bottom:0px;--padding-left:12px;--padding-right:12px;}.elementor-35 .elementor-element.elementor-element-839957a{--padding-top:0px;--padding-bottom:0px;--padding-left:12px;--padding-right:12px;}}`,
3159: `.elementor-3159 .elementor-element.elementor-element-9a85ca6{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:120px;--padding-bottom:120px;--padding-left:0px;--padding-right:0px;}.elementor-3159 .elementor-element.elementor-element-cf1beee{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:12px;--padding-right:12px;}.elementor-3159 .elementor-element.elementor-element-2837963 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 048px 0px;}.elementor-3159 .elementor-element.elementor-element-2837963 img{border-radius:12px 12px 12px 12px;}.elementor-3159 .elementor-element.elementor-element-b3af1a5 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 20px 0px;}.elementor-3159 .elementor-element.elementor-element-b3af1a5 .elementor-heading-title{line-height:1.3em;}.elementor-3159 .elementor-element.elementor-element-6cfa376 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 30px 0px;}.elementor-3159 .elementor-element.elementor-element-839957a{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:12px;--padding-right:12px;}@media(min-width:768px){.elementor-3159 .elementor-element.elementor-element-cf1beee{--width:66.67%;}.elementor-3159 .elementor-element.elementor-element-839957a{--width:33.33%;}}@media(max-width:1024px) and (min-width:768px){.elementor-3159 .elementor-element.elementor-element-cf1beee{--width:100%;}.elementor-3159 .elementor-element.elementor-element-839957a{--width:100%;}}@media(max-width:1024px){.elementor-3159 .elementor-element.elementor-element-9a85ca6{--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--gap:60px 60px;--row-gap:60px;--column-gap:60px;--padding-top:80px;--padding-bottom:50px;--padding-left:0px;--padding-right:0px;}.elementor-3159 .elementor-element.elementor-element-cf1beee{--padding-top:0px;--padding-bottom:0px;--padding-left:36px;--padding-right:36px;}.elementor-3159 .elementor-element.elementor-element-839957a{--padding-top:0px;--padding-bottom:0px;--padding-left:36px;--padding-right:36px;}}@media(max-width:767px){.elementor-3159 .elementor-element.elementor-element-cf1beee{--padding-top:0px;--padding-bottom:0px;--padding-left:12px;--padding-right:12px;}.elementor-3159 .elementor-element.elementor-element-839957a{--padding-top:0px;--padding-bottom:0px;--padding-left:12px;--padding-right:12px;}}`,
3160: `.elementor-3160 .elementor-element.elementor-element-9a85ca6{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:120px;--padding-bottom:120px;--padding-left:0px;--padding-right:0px;}.elementor-3160 .elementor-element.elementor-element-cf1beee{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:12px;--padding-right:12px;}.elementor-3160 .elementor-element.elementor-element-2837963 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 048px 0px;}.elementor-3160 .elementor-element.elementor-element-2837963 img{border-radius:12px 12px 12px 12px;}.elementor-3160 .elementor-element.elementor-element-b3af1a5 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 20px 0px;}.elementor-3160 .elementor-element.elementor-element-b3af1a5 .elementor-heading-title{line-height:1.3em;}.elementor-3160 .elementor-element.elementor-element-6cfa376 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 30px 0px;}.elementor-3160 .elementor-element.elementor-element-839957a{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:12px;--padding-right:12px;}@media(min-width:768px){.elementor-3160 .elementor-element.elementor-element-cf1beee{--width:66.67%;}.elementor-3160 .elementor-element.elementor-element-839957a{--width:33.33%;}}@media(max-width:1024px) and (min-width:768px){.elementor-3160 .elementor-element.elementor-element-cf1beee{--width:100%;}.elementor-3160 .elementor-element.elementor-element-839957a{--width:100%;}}@media(max-width:1024px){.elementor-3160 .elementor-element.elementor-element-9a85ca6{--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--gap:60px 60px;--row-gap:60px;--column-gap:60px;--padding-top:80px;--padding-bottom:50px;--padding-left:0px;--padding-right:0px;}.elementor-3160 .elementor-element.elementor-element-cf1beee{--padding-top:0px;--padding-bottom:0px;--padding-left:36px;--padding-right:36px;}.elementor-3160 .elementor-element.elementor-element-839957a{--padding-top:0px;--padding-bottom:0px;--padding-left:36px;--padding-right:36px;}}@media(max-width:767px){.elementor-3160 .elementor-element.elementor-element-cf1beee{--padding-top:0px;--padding-bottom:0px;--padding-left:12px;--padding-right:12px;}.elementor-3160 .elementor-element.elementor-element-839957a{--padding-top:0px;--padding-bottom:0px;--padding-left:12px;--padding-right:12px;}}`,
3172: `.elementor-3172 .elementor-element.elementor-element-9a85ca6{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:120px;--padding-bottom:120px;--padding-left:0px;--padding-right:0px;}.elementor-3172 .elementor-element.elementor-element-cf1beee{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:12px;--padding-right:12px;}.elementor-3172 .elementor-element.elementor-element-2837963 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 048px 0px;}.elementor-3172 .elementor-element.elementor-element-2837963 img{border-radius:12px 12px 12px 12px;}.elementor-3172 .elementor-element.elementor-element-b3af1a5 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 20px 0px;}.elementor-3172 .elementor-element.elementor-element-b3af1a5 .elementor-heading-title{line-height:1.3em;}.elementor-3172 .elementor-element.elementor-element-6cfa376 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 30px 0px;}.elementor-3172 .elementor-element.elementor-element-839957a{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:12px;--padding-right:12px;}@media(min-width:768px){.elementor-3172 .elementor-element.elementor-element-cf1beee{--width:66.67%;}.elementor-3172 .elementor-element.elementor-element-839957a{--width:33.33%;}}@media(max-width:1024px) and (min-width:768px){.elementor-3172 .elementor-element.elementor-element-cf1beee{--width:100%;}.elementor-3172 .elementor-element.elementor-element-839957a{--width:100%;}}@media(max-width:1024px){.elementor-3172 .elementor-element.elementor-element-9a85ca6{--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--gap:60px 60px;--row-gap:60px;--column-gap:60px;--padding-top:80px;--padding-bottom:50px;--padding-left:0px;--padding-right:0px;}.elementor-3172 .elementor-element.elementor-element-cf1beee{--padding-top:0px;--padding-bottom:0px;--padding-left:36px;--padding-right:36px;}.elementor-3172 .elementor-element.elementor-element-839957a{--padding-top:0px;--padding-bottom:0px;--padding-left:36px;--padding-right:36px;}}@media(max-width:767px){.elementor-3172 .elementor-element.elementor-element-cf1beee{--padding-top:0px;--padding-bottom:0px;--padding-left:12px;--padding-right:12px;}.elementor-3172 .elementor-element.elementor-element-839957a{--padding-top:0px;--padding-bottom:0px;--padding-left:12px;--padding-right:12px;}}`,
3179: `.elementor-3179 .elementor-element.elementor-element-9a85ca6{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:120px;--padding-bottom:120px;--padding-left:0px;--padding-right:0px;}.elementor-3179 .elementor-element.elementor-element-cf1beee{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:12px;--padding-right:12px;}.elementor-3179 .elementor-element.elementor-element-2837963 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 048px 0px;}.elementor-3179 .elementor-element.elementor-element-2837963 img{border-radius:12px 12px 12px 12px;}.elementor-3179 .elementor-element.elementor-element-b3af1a5 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 20px 0px;}.elementor-3179 .elementor-element.elementor-element-b3af1a5 .elementor-heading-title{line-height:1.3em;}.elementor-3179 .elementor-element.elementor-element-6cfa376 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 30px 0px;}.elementor-3179 .elementor-element.elementor-element-839957a{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:12px;--padding-right:12px;}@media(min-width:768px){.elementor-3179 .elementor-element.elementor-element-cf1beee{--width:66.67%;}.elementor-3179 .elementor-element.elementor-element-839957a{--width:33.33%;}}@media(max-width:1024px) and (min-width:768px){.elementor-3179 .elementor-element.elementor-element-cf1beee{--width:100%;}.elementor-3179 .elementor-element.elementor-element-839957a{--width:100%;}}@media(max-width:1024px){.elementor-3179 .elementor-element.elementor-element-9a85ca6{--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--gap:60px 60px;--row-gap:60px;--column-gap:60px;--padding-top:80px;--padding-bottom:50px;--padding-left:0px;--padding-right:0px;}.elementor-3179 .elementor-element.elementor-element-cf1beee{--padding-top:0px;--padding-bottom:0px;--padding-left:36px;--padding-right:36px;}.elementor-3179 .elementor-element.elementor-element-839957a{--padding-top:0px;--padding-bottom:0px;--padding-left:36px;--padding-right:36px;}}@media(max-width:767px){.elementor-3179 .elementor-element.elementor-element-cf1beee{--padding-top:0px;--padding-bottom:0px;--padding-left:12px;--padding-right:12px;}.elementor-3179 .elementor-element.elementor-element-839957a{--padding-top:0px;--padding-bottom:0px;--padding-left:12px;--padding-right:12px;}}`,
3186: `.elementor-3186 .elementor-element.elementor-element-9a85ca6{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:120px;--padding-bottom:120px;--padding-left:0px;--padding-right:0px;}.elementor-3186 .elementor-element.elementor-element-cf1beee{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:12px;--padding-right:12px;}.elementor-3186 .elementor-element.elementor-element-2837963 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 048px 0px;}.elementor-3186 .elementor-element.elementor-element-2837963 img{border-radius:12px 12px 12px 12px;}.elementor-3186 .elementor-element.elementor-element-b3af1a5 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 20px 0px;}.elementor-3186 .elementor-element.elementor-element-b3af1a5 .elementor-heading-title{line-height:1.3em;}.elementor-3186 .elementor-element.elementor-element-6cfa376 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 30px 0px;}.elementor-3186 .elementor-element.elementor-element-839957a{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:12px;--padding-right:12px;}@media(min-width:768px){.elementor-3186 .elementor-element.elementor-element-cf1beee{--width:66.67%;}.elementor-3186 .elementor-element.elementor-element-839957a{--width:33.33%;}}@media(max-width:1024px) and (min-width:768px){.elementor-3186 .elementor-element.elementor-element-cf1beee{--width:100%;}.elementor-3186 .elementor-element.elementor-element-839957a{--width:100%;}}@media(max-width:1024px){.elementor-3186 .elementor-element.elementor-element-9a85ca6{--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--gap:60px 60px;--row-gap:60px;--column-gap:60px;--padding-top:80px;--padding-bottom:50px;--padding-left:0px;--padding-right:0px;}.elementor-3186 .elementor-element.elementor-element-cf1beee{--padding-top:0px;--padding-bottom:0px;--padding-left:36px;--padding-right:36px;}.elementor-3186 .elementor-element.elementor-element-839957a{--padding-top:0px;--padding-bottom:0px;--padding-left:36px;--padding-right:36px;}}@media(max-width:767px){.elementor-3186 .elementor-element.elementor-element-cf1beee{--padding-top:0px;--padding-bottom:0px;--padding-left:12px;--padding-right:12px;}.elementor-3186 .elementor-element.elementor-element-839957a{--padding-top:0px;--padding-bottom:0px;--padding-left:12px;--padding-right:12px;}}`,
3192: `.elementor-3192 .elementor-element.elementor-element-9a85ca6{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:120px;--padding-bottom:120px;--padding-left:0px;--padding-right:0px;}.elementor-3192 .elementor-element.elementor-element-cf1beee{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:12px;--padding-right:12px;}.elementor-3192 .elementor-element.elementor-element-2837963 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 048px 0px;}.elementor-3192 .elementor-element.elementor-element-2837963 img{border-radius:12px 12px 12px 12px;}.elementor-3192 .elementor-element.elementor-element-b3af1a5 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 20px 0px;}.elementor-3192 .elementor-element.elementor-element-b3af1a5 .elementor-heading-title{line-height:1.3em;}.elementor-3192 .elementor-element.elementor-element-6cfa376 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 30px 0px;}.elementor-3192 .elementor-element.elementor-element-839957a{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:12px;--padding-right:12px;}@media(min-width:768px){.elementor-3192 .elementor-element.elementor-element-cf1beee{--width:66.67%;}.elementor-3192 .elementor-element.elementor-element-839957a{--width:33.33%;}}@media(max-width:1024px) and (min-width:768px){.elementor-3192 .elementor-element.elementor-element-cf1beee{--width:100%;}.elementor-3192 .elementor-element.elementor-element-839957a{--width:100%;}}@media(max-width:1024px){.elementor-3192 .elementor-element.elementor-element-9a85ca6{--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--gap:60px 60px;--row-gap:60px;--column-gap:60px;--padding-top:80px;--padding-bottom:50px;--padding-left:0px;--padding-right:0px;}.elementor-3192 .elementor-element.elementor-element-cf1beee{--padding-top:0px;--padding-bottom:0px;--padding-left:36px;--padding-right:36px;}.elementor-3192 .elementor-element.elementor-element-839957a{--padding-top:0px;--padding-bottom:0px;--padding-left:36px;--padding-right:36px;}}@media(max-width:767px){.elementor-3192 .elementor-element.elementor-element-cf1beee{--padding-top:0px;--padding-bottom:0px;--padding-left:12px;--padding-right:12px;}.elementor-3192 .elementor-element.elementor-element-839957a{--padding-top:0px;--padding-bottom:0px;--padding-left:12px;--padding-right:12px;}}`,
3199: `.elementor-3199 .elementor-element.elementor-element-9a85ca6{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:120px;--padding-bottom:120px;--padding-left:0px;--padding-right:0px;}.elementor-3199 .elementor-element.elementor-element-cf1beee{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:12px;--padding-right:12px;}.elementor-3199 .elementor-element.elementor-element-2837963 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 048px 0px;}.elementor-3199 .elementor-element.elementor-element-2837963 img{border-radius:12px 12px 12px 12px;}.elementor-3199 .elementor-element.elementor-element-b3af1a5 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 20px 0px;}.elementor-3199 .elementor-element.elementor-element-b3af1a5 .elementor-heading-title{line-height:1.3em;}.elementor-3199 .elementor-element.elementor-element-6cfa376 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 30px 0px;}.elementor-3199 .elementor-element.elementor-element-839957a{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:12px;--padding-right:12px;}@media(min-width:768px){.elementor-3199 .elementor-element.elementor-element-cf1beee{--width:66.67%;}.elementor-3199 .elementor-element.elementor-element-839957a{--width:33.33%;}}@media(max-width:1024px) and (min-width:768px){.elementor-3199 .elementor-element.elementor-element-cf1beee{--width:100%;}.elementor-3199 .elementor-element.elementor-element-839957a{--width:100%;}}@media(max-width:1024px){.elementor-3199 .elementor-element.elementor-element-9a85ca6{--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--gap:60px 60px;--row-gap:60px;--column-gap:60px;--padding-top:80px;--padding-bottom:50px;--padding-left:0px;--padding-right:0px;}.elementor-3199 .elementor-element.elementor-element-cf1beee{--padding-top:0px;--padding-bottom:0px;--padding-left:36px;--padding-right:36px;}.elementor-3199 .elementor-element.elementor-element-839957a{--padding-top:0px;--padding-bottom:0px;--padding-left:36px;--padding-right:36px;}}@media(max-width:767px){.elementor-3199 .elementor-element.elementor-element-cf1beee{--padding-top:0px;--padding-bottom:0px;--padding-left:12px;--padding-right:12px;}.elementor-3199 .elementor-element.elementor-element-839957a{--padding-top:0px;--padding-bottom:0px;--padding-left:12px;--padding-right:12px;}}`,
3206: `.elementor-3206 .elementor-element.elementor-element-9a85ca6{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:120px;--padding-bottom:120px;--padding-left:0px;--padding-right:0px;}.elementor-3206 .elementor-element.elementor-element-cf1beee{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:12px;--padding-right:12px;}.elementor-3206 .elementor-element.elementor-element-2837963 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 048px 0px;}.elementor-3206 .elementor-element.elementor-element-2837963 img{border-radius:12px 12px 12px 12px;}.elementor-3206 .elementor-element.elementor-element-b3af1a5 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 20px 0px;}.elementor-3206 .elementor-element.elementor-element-b3af1a5 .elementor-heading-title{line-height:1.3em;}.elementor-3206 .elementor-element.elementor-element-6cfa376 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 30px 0px;}.elementor-3206 .elementor-element.elementor-element-839957a{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:12px;--padding-right:12px;}@media(min-width:768px){.elementor-3206 .elementor-element.elementor-element-cf1beee{--width:66.67%;}.elementor-3206 .elementor-element.elementor-element-839957a{--width:33.33%;}}@media(max-width:1024px) and (min-width:768px){.elementor-3206 .elementor-element.elementor-element-cf1beee{--width:100%;}.elementor-3206 .elementor-element.elementor-element-839957a{--width:100%;}}@media(max-width:1024px){.elementor-3206 .elementor-element.elementor-element-9a85ca6{--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--gap:60px 60px;--row-gap:60px;--column-gap:60px;--padding-top:80px;--padding-bottom:50px;--padding-left:0px;--padding-right:0px;}.elementor-3206 .elementor-element.elementor-element-cf1beee{--padding-top:0px;--padding-bottom:0px;--padding-left:36px;--padding-right:36px;}.elementor-3206 .elementor-element.elementor-element-839957a{--padding-top:0px;--padding-bottom:0px;--padding-left:36px;--padding-right:36px;}}@media(max-width:767px){.elementor-3206 .elementor-element.elementor-element-cf1beee{--padding-top:0px;--padding-bottom:0px;--padding-left:12px;--padding-right:12px;}.elementor-3206 .elementor-element.elementor-element-839957a{--padding-top:0px;--padding-bottom:0px;--padding-left:12px;--padding-right:12px;}}`,
}
export default serviceCss

373
src/data/servicePages.js Normal file
View File

@@ -0,0 +1,373 @@
const pages = {
"adiabatic-pre-cooling-system": { title: "Adiabatic Pre-Cooling System - Profen Engineering", html: `<!-- Page title 2 --><div class="breadcumb-banner"><div class="breadcumb-wrapper " id="breadcumbwrap"><div class="container"><div class="breadcumb-content"><h1 class="breadcumb-title">Adiabatic Pre-Cooling System</h1><ul class="breadcumb-menu"><li><a href="/">Home</a></li><li>Adiabatic Pre-Cooling System</li></ul></div></div></div></div><!-- End of Page title --> <div class="rakar-fluid">
<div class="builder-page-wrapper">
<div data-elementor-type="wp-page" data-elementor-id="3199" class="elementor elementor-3199">
<div class="elementor-element elementor-element-9a85ca6 e-flex e-con-boxed e-con e-parent" data-id="9a85ca6" data-element_type="container" data-e-type="container">
<div class="e-con-inner">
<div class="elementor-element elementor-element-cf1beee e-con-full e-flex e-con e-child" data-id="cf1beee" data-element_type="container" data-e-type="container">
<div class="elementor-element elementor-element-2837963 elementor-widget elementor-widget-image" data-id="2837963" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
<div class="elementor-widget-container">
<img fetchpriority="high" decoding="async" width="872" height="536" src="/wp-content/uploads/2026/01/adiabatic-cooling.jpg" class="attachment-full size-full wp-image-3201" alt="" srcset="/wp-content/uploads/2026/01/adiabatic-cooling.jpg 872w, ../wp-content/uploads/2026/01/adiabatic-cooling-300x184.jpg 300w, ../wp-content/uploads/2026/01/adiabatic-cooling-768x472.jpg 768w" sizes="(max-width: 872px) 100vw, 872px" /> </div>
</div>
<div class="elementor-element elementor-element-b3af1a5 elementor-widget elementor-widget-heading" data-id="b3af1a5" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h3 class="elementor-heading-title elementor-size-default">Adiabatic Pre-Cooling System</h3> </div>
</div>
<div class="elementor-element elementor-element-6cfa376 elementor-widget elementor-widget-text-editor" data-id="6cfa376" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<p data-start="63" data-end="473">At Profen Engineering LLC, we deliver Adiabatic Pre-Cooling Systems that significantly improve the efficiency of HVAC, chiller, and industrial cooling systems. By using the natural process of evaporative cooling, our solutions reduce incoming air temperature before it reaches condensers or chillers, resulting in lower energy consumption, improved performance, and extended equipment life.</p><h4 data-start="475" data-end="517"><strong data-start="478" data-end="517">How Adiabatic Pre-Cooling Works</strong></h4><ul><li data-start="520" data-end="575">Hot ambient air passes through water-wetted media</li><li data-start="578" data-end="641">Water evaporation absorbs heat and lowers air temperature</li><li data-start="644" data-end="711">Pre-cooled air enters the condenser/chiller, reducing system load</li></ul><h5><strong data-start="716" data-end="734">Key Benefits</strong></h5><ul><li data-start="737" data-end="770">Energy savings up to 3040%</li><li data-start="773" data-end="834">Improved cooling efficiency, especially in hot climates</li><li data-start="837" data-end="890">Reduced power consumption and operational costs</li><li data-start="893" data-end="946">Extended lifespan of HVAC and chiller equipment</li><li data-start="949" data-end="1026">Eco-friendly solution with low water usage and reduced carbon footprint</li></ul><h2 data-start="1028" data-end="1053"><strong data-start="1031" data-end="1053">System Features</strong></h2><ul><li data-start="1056" data-end="1098">High-efficiency evaporative cooling pads</li><li data-start="1101" data-end="1160">Smart control systems with temperature &amp; humidity sensors</li><li data-start="1163" data-end="1214">Corrosion-resistant and weatherproof construction</li><li data-start="1217" data-end="1274">Easy integration with existing HVAC and chiller systems</li><li data-start="1277" data-end="1317">Low maintenance and reliable operation</li></ul><h5 data-start="1319" data-end="1341"><strong data-start="1322" data-end="1341">Applications</strong></h5><ul><li data-start="1344" data-end="1367">HVAC &amp; chiller plants</li><li data-start="1370" data-end="1399">Data centers &amp; server rooms</li><li data-start="1402" data-end="1448">Industrial facilities &amp; manufacturing plants</li><li data-start="1451" data-end="1486">Supermarkets &amp; cold storage units</li><li data-start="1489" data-end="1517">Power plants &amp; substations</li></ul> </div>
</div>
</div>
<div class="elementor-element elementor-element-839957a e-con-full e-flex e-con e-child" data-id="839957a" data-element_type="container" data-e-type="container">
<div class="elementor-element elementor-element-205732a elementor-widget elementor-widget-sidebar" data-id="205732a" data-element_type="widget" data-e-type="widget" data-widget_type="sidebar.default">
<div class="elementor-widget-container">
<div id="nav_menu-2" class="widget widget_nav_menu"><div class="menu-service-side-panel-container"><ul id="menu-service-side-panel" class="menu"><li id="menu-item-3220" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3220"><a href="/service?p=35">Electro Mechanical Works</a></li>
<li id="menu-item-3212" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3212"><a href="/service?p=3206">Building Management System</a></li>
<li id="menu-item-3213" class="menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-3199 current_page_item menu-item-3213"><a href="/service?p=3199" aria-current="page">Adiabatic Pre-Cooling System</a></li>
<li id="menu-item-3214" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3214"><a href="/service?p=3192">Misting Solutions</a></li>
<li id="menu-item-3215" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3215"><a href="/service?p=3186">Chiller Hot &#038; Cool Solutions</a></li>
<li id="menu-item-3216" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3216"><a href="/service?p=3179">Interior &#038; Fit-Out Works</a></li>
<li id="menu-item-3217" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3217"><a href="/service?p=3172">Building Contracting Works</a></li>
<li id="menu-item-3218" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3218"><a href="/service?p=3160">Metal Construction &#038; Fabrications</a></li>
<li id="menu-item-3219" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3219"><a href="/service?p=3159">Landscaping &#038; Fencing Works</a></li>
</ul></div></div> </div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
` },
"building-contracting-works": { title: "Building Contracting Works - Profen Engineering", html: `<!-- Page title 2 --><div class="breadcumb-banner"><div class="breadcumb-wrapper " id="breadcumbwrap"><div class="container"><div class="breadcumb-content"><h1 class="breadcumb-title">Building Contracting Works</h1><ul class="breadcumb-menu"><li><a href="/">Home</a></li><li>Building Contracting Works</li></ul></div></div></div></div><!-- End of Page title --> <div class="rakar-fluid">
<div class="builder-page-wrapper">
<div data-elementor-type="wp-page" data-elementor-id="3172" class="elementor elementor-3172">
<div class="elementor-element elementor-element-9a85ca6 e-flex e-con-boxed e-con e-parent" data-id="9a85ca6" data-element_type="container" data-e-type="container">
<div class="e-con-inner">
<div class="elementor-element elementor-element-cf1beee e-con-full e-flex e-con e-child" data-id="cf1beee" data-element_type="container" data-e-type="container">
<div class="elementor-element elementor-element-2837963 elementor-widget elementor-widget-image" data-id="2837963" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
<div class="elementor-widget-container">
<img fetchpriority="high" decoding="async" width="872" height="536" src="/wp-content/uploads/2026/01/construction.jpg" class="attachment-full size-full wp-image-3175" alt="" srcset="/wp-content/uploads/2026/01/construction.jpg 872w, ../wp-content/uploads/2026/01/construction-300x184.jpg 300w, ../wp-content/uploads/2026/01/construction-768x472.jpg 768w" sizes="(max-width: 872px) 100vw, 872px" /> </div>
</div>
<div class="elementor-element elementor-element-b3af1a5 elementor-widget elementor-widget-heading" data-id="b3af1a5" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h3 class="elementor-heading-title elementor-size-default">Building Contracting Works</h3> </div>
</div>
<div class="elementor-element elementor-element-6cfa376 elementor-widget elementor-widget-text-editor" data-id="6cfa376" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<p data-start="61" data-end="443">At Profen Engineering LLC, we provide complete building contracting services delivering high-quality construction, renovation, and turnkey solutions for residential, commercial, and industrial projects. With a strong commitment to quality, safety, and timely delivery, we manage every stage of construction with professional precision and engineering excellence.</p><h5 data-start="491" data-end="524"><strong data-start="495" data-end="524">New Building Construction</strong></h5><ul><li data-start="527" data-end="569">Residential villas &amp; apartment buildings</li><li data-start="572" data-end="619">Commercial buildings, offices &amp; retail spaces</li><li data-start="622" data-end="680">Industrial facilities, warehouses &amp; labor accommodations</li></ul><h5 data-start="682" data-end="716"><strong data-start="686" data-end="716">Renovation &amp; Refurbishment</strong></h5><ul><li data-start="719" data-end="783">Complete building renovations and structural modifications</li><li data-start="786" data-end="831">Office, villa, and retail fit-out works</li><li data-start="834" data-end="879">Electrical, plumbing, and HVAC upgrades</li></ul><h5 data-start="881" data-end="914"><strong data-start="885" data-end="914">Turnkey Project Solutions</strong></h5><ul><li data-start="917" data-end="976">End-to-end project management from design to handover</li><li data-start="979" data-end="1032">Coordination of civil, MEP, and finishing works</li><li data-start="1035" data-end="1085">Single-point responsibility for smooth execution</li></ul><h5 data-start="1087" data-end="1119"><strong data-start="1091" data-end="1119">Civil &amp; Structural Works</strong></h5><ul><li>Concrete works, block works &amp; plastering</li><li>Foundation, slab &amp; structural strengthening works</li><li>External &amp; internal finishing works</li></ul><h5 data-start="1260" data-end="1300"><strong data-start="1264" data-end="1300">Authority Approvals &amp; Compliance</strong></h5><ul><li data-start="1303" data-end="1373">Compliance with Dubai Municipality and local authority standards</li><li data-start="1376" data-end="1440">Safety management and quality assurance throughout the project</li></ul><h5 data-start="1442" data-end="1472"><strong data-start="1445" data-end="1472">Project Applications</strong></h5><ul><li data-start="1475" data-end="1509">Residential &amp; villa developments</li><li data-start="1512" data-end="1546">Commercial &amp; mixed-use buildings</li><li data-start="1549" data-end="1589">Industrial and infrastructure projects</li><li data-start="1592" data-end="1624">Renovation and extension works</li></ul> </div>
</div>
</div>
<div class="elementor-element elementor-element-839957a e-con-full e-flex e-con e-child" data-id="839957a" data-element_type="container" data-e-type="container">
<div class="elementor-element elementor-element-205732a elementor-widget elementor-widget-sidebar" data-id="205732a" data-element_type="widget" data-e-type="widget" data-widget_type="sidebar.default">
<div class="elementor-widget-container">
<div id="nav_menu-2" class="widget widget_nav_menu"><div class="menu-service-side-panel-container"><ul id="menu-service-side-panel" class="menu"><li id="menu-item-3220" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3220"><a href="/service?p=35">Electro Mechanical Works</a></li>
<li id="menu-item-3212" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3212"><a href="/service?p=3206">Building Management System</a></li>
<li id="menu-item-3213" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3213"><a href="/service?p=3199">Adiabatic Pre-Cooling System</a></li>
<li id="menu-item-3214" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3214"><a href="/service?p=3192">Misting Solutions</a></li>
<li id="menu-item-3215" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3215"><a href="/service?p=3186">Chiller Hot &#038; Cool Solutions</a></li>
<li id="menu-item-3216" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3216"><a href="/service?p=3179">Interior &#038; Fit-Out Works</a></li>
<li id="menu-item-3217" class="menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-3172 current_page_item menu-item-3217"><a href="/service?p=3172" aria-current="page">Building Contracting Works</a></li>
<li id="menu-item-3218" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3218"><a href="/service?p=3160">Metal Construction &#038; Fabrications</a></li>
<li id="menu-item-3219" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3219"><a href="/service?p=3159">Landscaping &#038; Fencing Works</a></li>
</ul></div></div> </div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
` },
"building-management-system": { title: "Building Management System - Profen Engineering", html: `<!-- Page title 2 --><div class="breadcumb-banner"><div class="breadcumb-wrapper " id="breadcumbwrap"><div class="container"><div class="breadcumb-content"><h1 class="breadcumb-title">Building Management System</h1><ul class="breadcumb-menu"><li><a href="/">Home</a></li><li>Building Management System</li></ul></div></div></div></div><!-- End of Page title --> <div class="rakar-fluid">
<div class="builder-page-wrapper">
<div data-elementor-type="wp-page" data-elementor-id="3206" class="elementor elementor-3206">
<div class="elementor-element elementor-element-9a85ca6 e-flex e-con-boxed e-con e-parent" data-id="9a85ca6" data-element_type="container" data-e-type="container">
<div class="e-con-inner">
<div class="elementor-element elementor-element-cf1beee e-con-full e-flex e-con e-child" data-id="cf1beee" data-element_type="container" data-e-type="container">
<div class="elementor-element elementor-element-2837963 elementor-widget elementor-widget-image" data-id="2837963" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
<div class="elementor-widget-container">
<img fetchpriority="high" decoding="async" width="872" height="536" src="/wp-content/uploads/2026/01/bms01.jpg" class="attachment-full size-full wp-image-3208" alt="" srcset="/wp-content/uploads/2026/01/bms01.jpg 872w, ../wp-content/uploads/2026/01/bms01-300x184.jpg 300w, ../wp-content/uploads/2026/01/bms01-768x472.jpg 768w" sizes="(max-width: 872px) 100vw, 872px" /> </div>
</div>
<div class="elementor-element elementor-element-b3af1a5 elementor-widget elementor-widget-heading" data-id="b3af1a5" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h3 class="elementor-heading-title elementor-size-default">Building Management System</h3> </div>
</div>
<div class="elementor-element elementor-element-6cfa376 elementor-widget elementor-widget-text-editor" data-id="6cfa376" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<p data-start="67" data-end="410">At Profen Engineering LLC, we provide advanced Building Management System (BMS) solutions that enable centralized monitoring, control, and optimization of building services. Our BMS solutions enhance operational efficiency, energy savings, safety, and occupant comfort for commercial, residential, and industrial buildings.</p><h4 data-start="412" data-end="459"><strong data-start="415" data-end="459">What is a Building Management System?</strong></h4><p data-start="460" data-end="689">A Building Management System (BMS) is an intelligent control system that integrates and automates a buildings HVAC, lighting, electrical, plumbing, fire safety, and security systems through a single centralized platform.</p><h5 data-start="726" data-end="756"><strong data-start="730" data-end="756">HVAC &amp; Climate Control</strong></h5><ul><li data-start="759" data-end="833">Centralized control of chillers, AHUs, FCUs, and ventilation systems</li><li data-start="836" data-end="887">Temperature, humidity, and air quality monitoring</li><li data-start="890" data-end="937">Optimized energy usage and comfort management</li></ul><h5 data-start="939" data-end="971"><strong data-start="943" data-end="971">Lighting Control Systems</strong></h5><ul><li>Automated lighting schedules and zoning</li><li>Motion sensors and daylight harvesting</li><li>Reduced energy consumption and operational cost</li></ul><h5 data-start="1112" data-end="1149"><strong data-start="1116" data-end="1149">Electrical &amp; Power Monitoring</strong></h5><ul><li data-start="1152" data-end="1200">Real-time power monitoring and load management</li><li data-start="1203" data-end="1246">Energy metering and consumption analytics</li><li data-start="1249" data-end="1299">Alerts for faults, overloads, and power failures</li></ul><h5><strong data-start="1305" data-end="1336">Plumbing &amp; Water Management</strong></h5><ul><li data-start="1339" data-end="1395">Monitoring of water tanks, pumps, and pressure systems</li><li data-start="1398" data-end="1443">Leak detection and water usage optimization</li></ul><h5 data-start="1445" data-end="1483"><strong data-start="1449" data-end="1483">Fire &amp; Life Safety Integration</strong></h5><ul><li data-start="1486" data-end="1523">Integration with fire alarm systems</li><li data-start="1526" data-end="1570">Emergency response coordination and alerts</li></ul><h5 data-start="1572" data-end="1605"><strong data-start="1576" data-end="1605">Security &amp; Access Control</strong></h5><ul><li data-start="1608" data-end="1656">CCTV integration and access control monitoring</li><li data-start="1659" data-end="1692">Centralized security management</li></ul><h5 data-start="1694" data-end="1737"><strong data-start="1697" data-end="1737">Key Benefits of Our BMS Solutions</strong></h5><ul><li data-start="1740" data-end="1778">Energy Efficiency &amp; Cost Savings</li><li data-start="1781" data-end="1819">Centralized Monitoring &amp; Control</li><li data-start="1822" data-end="1873">Improved Comfort &amp; Indoor Environment Quality</li><li data-start="1876" data-end="1933">Reduced Maintenance Costs through predictive alerts</li><li data-start="1936" data-end="1968">Enhanced Safety &amp; Security</li><li data-start="1971" data-end="2006">Scalable &amp; Future-Ready Systems</li></ul><h5 data-start="2008" data-end="2030"><strong data-start="2011" data-end="2030">Applications</strong></h5><ul><li data-start="2033" data-end="2062">Commercial office buildings</li><li data-start="2065" data-end="2096">Hotels &amp; hospitality projects</li><li data-start="2099" data-end="2134">Hospitals &amp; healthcare facilities</li><li data-start="2137" data-end="2172">Shopping malls &amp; retail complexes</li><li data-start="2175" data-end="2204">Residential towers &amp; villas</li><li data-start="2207" data-end="2246">Industrial and mixed-use developments</li></ul> </div>
</div>
</div>
<div class="elementor-element elementor-element-839957a e-con-full e-flex e-con e-child" data-id="839957a" data-element_type="container" data-e-type="container">
<div class="elementor-element elementor-element-205732a elementor-widget elementor-widget-sidebar" data-id="205732a" data-element_type="widget" data-e-type="widget" data-widget_type="sidebar.default">
<div class="elementor-widget-container">
<div id="nav_menu-2" class="widget widget_nav_menu"><div class="menu-service-side-panel-container"><ul id="menu-service-side-panel" class="menu"><li id="menu-item-3220" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3220"><a href="/service?p=35">Electro Mechanical Works</a></li>
<li id="menu-item-3212" class="menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-3206 current_page_item menu-item-3212"><a href="/service?p=3206" aria-current="page">Building Management System</a></li>
<li id="menu-item-3213" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3213"><a href="/service?p=3199">Adiabatic Pre-Cooling System</a></li>
<li id="menu-item-3214" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3214"><a href="/service?p=3192">Misting Solutions</a></li>
<li id="menu-item-3215" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3215"><a href="/service?p=3186">Chiller Hot &#038; Cool Solutions</a></li>
<li id="menu-item-3216" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3216"><a href="/service?p=3179">Interior &#038; Fit-Out Works</a></li>
<li id="menu-item-3217" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3217"><a href="/service?p=3172">Building Contracting Works</a></li>
<li id="menu-item-3218" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3218"><a href="/service?p=3160">Metal Construction &#038; Fabrications</a></li>
<li id="menu-item-3219" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3219"><a href="/service?p=3159">Landscaping &#038; Fencing Works</a></li>
</ul></div></div> </div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
` },
"chiller-hot-cool-solutions": { title: "Chiller Hot & Cool Solutions - Profen Engineering", html: `<!-- Page title 2 --><div class="breadcumb-banner"><div class="breadcumb-wrapper " id="breadcumbwrap"><div class="container"><div class="breadcumb-content"><h1 class="breadcumb-title">Chiller Hot &#038; Cool Solutions</h1><ul class="breadcumb-menu"><li><a href="/">Home</a></li><li>Chiller Hot &#038; Cool Solutions</li></ul></div></div></div></div><!-- End of Page title --> <div class="rakar-fluid">
<div class="builder-page-wrapper">
<div data-elementor-type="wp-page" data-elementor-id="3186" class="elementor elementor-3186">
<div class="elementor-element elementor-element-9a85ca6 e-flex e-con-boxed e-con e-parent" data-id="9a85ca6" data-element_type="container" data-e-type="container">
<div class="e-con-inner">
<div class="elementor-element elementor-element-cf1beee e-con-full e-flex e-con e-child" data-id="cf1beee" data-element_type="container" data-e-type="container">
<div class="elementor-element elementor-element-2837963 elementor-widget elementor-widget-image" data-id="2837963" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
<div class="elementor-widget-container">
<img fetchpriority="high" decoding="async" width="872" height="536" src="/wp-content/uploads/2026/01/poolsolutions.jpg" class="attachment-full size-full wp-image-3188" alt="" srcset="/wp-content/uploads/2026/01/poolsolutions.jpg 872w, ../wp-content/uploads/2026/01/poolsolutions-300x184.jpg 300w, ../wp-content/uploads/2026/01/poolsolutions-768x472.jpg 768w" sizes="(max-width: 872px) 100vw, 872px" /> </div>
</div>
<div class="elementor-element elementor-element-b3af1a5 elementor-widget elementor-widget-heading" data-id="b3af1a5" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h3 class="elementor-heading-title elementor-size-default">Chiller Hot &amp; Cool Solutions</h3> </div>
</div>
<div class="elementor-element elementor-element-6cfa376 elementor-widget elementor-widget-text-editor" data-id="6cfa376" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<p data-start="63" data-end="421">At Profen Engineering LLC, we provide advanced chiller-based heating and cooling solutions designed to deliver efficient temperature control, energy savings, and reliable performance for commercial, residential, and industrial applications. Our systems are engineered to ensure year-round comfort, even in the most demanding environments.</p><h5 data-start="468" data-end="501"><strong data-start="472" data-end="501">Chiller Cooling Solutions</strong></h5><ul><li data-start="504" data-end="544">Air-Cooled &amp; Water-Cooled Chillers</li><li data-start="547" data-end="586">Centralized Chilled Water Systems</li><li data-start="589" data-end="627">Industrial &amp; Commercial Chillers</li><li data-start="630" data-end="676">Process cooling for factories and plants</li></ul><h5 data-start="678" data-end="703"><strong data-start="682" data-end="703">Heating Solutions</strong></h5><ul><li data-start="706" data-end="757">Heat Pump Systems for space and water heating</li><li data-start="760" data-end="794">Hot Water Chillers &amp; Boilers</li><li data-start="797" data-end="832">Swimming Pool Heating Systems</li><li data-start="835" data-end="879">Radiant &amp; underfloor heating solutions</li></ul><h5 data-start="881" data-end="920"><strong data-start="885" data-end="920">Design, Installation &amp; Upgrades</strong></h5><ul><li data-start="923" data-end="972">Custom system design based on load calculations</li><li data-start="975" data-end="1012">Installation of new chiller systems</li><li data-start="1015" data-end="1065">Upgrading and retrofitting existing HVAC systems</li></ul><h5><strong data-start="1071" data-end="1108">Maintenance &amp; After-Sales Support</strong></h5><ul><li data-start="1111" data-end="1150">Preventive and corrective maintenance</li><li data-start="1153" data-end="1197">Performance optimization and energy audits</li><li data-start="1200" data-end="1245">Breakdown repair and system troubleshooting</li></ul><h5 data-start="1247" data-end="1269"><strong data-start="1250" data-end="1269">Applications</strong></h5><ul><li data-start="1272" data-end="1310">Commercial buildings &amp; office towers</li><li data-start="1313" data-end="1351">Hotels, malls &amp; hospitality projects</li><li data-start="1354" data-end="1390">Industrial facilities &amp; warehouses</li><li data-start="1393" data-end="1425">Residential compounds &amp; villas</li><li data-start="1428" data-end="1470">Swimming pools &amp; recreational facilities</li></ul><h5 data-start="1472" data-end="1522"><strong data-start="1475" data-end="1522">Energy-Efficient &amp; Sustainable Solutions</strong></h5><ul><li data-start="1525" data-end="1579">High-efficiency chillers with low energy consumption</li><li data-start="1582" data-end="1609">Eco-friendly refrigerants</li><li data-start="1612" data-end="1649">Smart controls &amp; automation systems</li><li data-start="1652" data-end="1699">Reduced operational cost and carbon footprint</li></ul> </div>
</div>
</div>
<div class="elementor-element elementor-element-839957a e-con-full e-flex e-con e-child" data-id="839957a" data-element_type="container" data-e-type="container">
<div class="elementor-element elementor-element-205732a elementor-widget elementor-widget-sidebar" data-id="205732a" data-element_type="widget" data-e-type="widget" data-widget_type="sidebar.default">
<div class="elementor-widget-container">
<div id="nav_menu-2" class="widget widget_nav_menu"><div class="menu-service-side-panel-container"><ul id="menu-service-side-panel" class="menu"><li id="menu-item-3220" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3220"><a href="/service?p=35">Electro Mechanical Works</a></li>
<li id="menu-item-3212" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3212"><a href="/service?p=3206">Building Management System</a></li>
<li id="menu-item-3213" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3213"><a href="/service?p=3199">Adiabatic Pre-Cooling System</a></li>
<li id="menu-item-3214" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3214"><a href="/service?p=3192">Misting Solutions</a></li>
<li id="menu-item-3215" class="menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-3186 current_page_item menu-item-3215"><a href="/service?p=3186" aria-current="page">Chiller Hot &#038; Cool Solutions</a></li>
<li id="menu-item-3216" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3216"><a href="/service?p=3179">Interior &#038; Fit-Out Works</a></li>
<li id="menu-item-3217" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3217"><a href="/service?p=3172">Building Contracting Works</a></li>
<li id="menu-item-3218" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3218"><a href="/service?p=3160">Metal Construction &#038; Fabrications</a></li>
<li id="menu-item-3219" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3219"><a href="/service?p=3159">Landscaping &#038; Fencing Works</a></li>
</ul></div></div> </div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
` },
"electro-mechanical-works": { title: "Electro Mechanical Works - Profen Engineering", html: `<!-- Page title 2 --><div class="breadcumb-banner"><div class="breadcumb-wrapper " id="breadcumbwrap"><div class="container"><div class="breadcumb-content"><h1 class="breadcumb-title">Electro Mechanical Works</h1><ul class="breadcumb-menu"><li><a href="/">Home</a></li><li>Electro Mechanical Works</li></ul></div></div></div></div><!-- End of Page title --> <div class="rakar-fluid">
<div class="builder-page-wrapper">
<div data-elementor-type="wp-page" data-elementor-id="35" class="elementor elementor-35">
<div class="elementor-element elementor-element-9a85ca6 e-flex e-con-boxed e-con e-parent" data-id="9a85ca6" data-element_type="container" data-e-type="container">
<div class="e-con-inner">
<div class="elementor-element elementor-element-cf1beee e-con-full e-flex e-con e-child" data-id="cf1beee" data-element_type="container" data-e-type="container">
<div class="elementor-element elementor-element-2837963 elementor-widget elementor-widget-image" data-id="2837963" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
<div class="elementor-widget-container">
<img fetchpriority="high" decoding="async" width="872" height="536" src="/wp-content/uploads/2026/01/electrical.jpg" class="attachment-full size-full wp-image-3155" alt="" srcset="/wp-content/uploads/2026/01/electrical.jpg 872w, ../wp-content/uploads/2026/01/electrical-300x184.jpg 300w, ../wp-content/uploads/2026/01/electrical-768x472.jpg 768w" sizes="(max-width: 872px) 100vw, 872px" /> </div>
</div>
<div class="elementor-element elementor-element-b3af1a5 elementor-widget elementor-widget-heading" data-id="b3af1a5" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h3 class="elementor-heading-title elementor-size-default">Electro Mechanical Works</h3> </div>
</div>
<div class="elementor-element elementor-element-6cfa376 elementor-widget elementor-widget-text-editor" data-id="6cfa376" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<p data-start="61" data-end="439">At Profen Engineering LLC, we specialize in comprehensive electro-mechanical solutions, delivering high-quality, energy-efficient, and innovative services for residential, commercial, and industrial projects. Our expertise in mechanical, electrical, and plumbing (MEP) systems ensures seamless integration, maximum efficiency, and long-lasting performance.</p><h5 data-start="486" data-end="552"><strong data-start="492" data-end="550">HVAC Systems (Heating, Ventilation &amp; Air Conditioning)</strong></h5><ul data-start="553" data-end="774"><li data-start="553" data-end="638"><p data-start="555" data-end="638">Design, installation, and maintenance of commercial &amp; industrial HVAC systems</p></li><li data-start="639" data-end="715"><p data-start="641" data-end="715">Chilled water systems, VRF/VRV systems, and air handling units (AHU)</p></li><li data-start="716" data-end="774"><p data-start="718" data-end="774">Ducting, ventilation, and air filtration solutions</p></li></ul><h5 data-start="776" data-end="806"><strong data-start="782" data-end="804">Electrical Systems</strong></h5><ul data-start="807" data-end="983"><li data-start="807" data-end="866"><p data-start="809" data-end="866">Power distribution &amp; electrical panel installations</p></li><li data-start="867" data-end="931"><p data-start="869" data-end="931">Lighting systems &amp; energy-efficient electrical solutions</p></li><li data-start="932" data-end="983"><p data-start="934" data-end="983">Backup power solutions, UPS, and generators</p></li></ul><h5 data-start="985" data-end="1024"><strong data-start="991" data-end="1022">Plumbing &amp; Drainage Systems</strong></h5><ul data-start="1025" data-end="1174"><li data-start="1025" data-end="1068"><p data-start="1027" data-end="1068">Water supply and drainage solutions</p></li><li data-start="1069" data-end="1125"><p data-start="1071" data-end="1125">Pump stations, water treatment, and piping works</p></li><li data-start="1126" data-end="1174"><p data-start="1128" data-end="1174">Sewage and wastewater management systems</p></li></ul><h5 data-start="1176" data-end="1218"><strong data-start="1182" data-end="1216">Fire Fighting &amp; Safety Systems</strong></h5><ul data-start="1219" data-end="1377"><li data-start="1219" data-end="1274"><p data-start="1221" data-end="1274">Fire alarm, suppression, and protection systems</p></li><li data-start="1275" data-end="1326"><p data-start="1277" data-end="1326">Sprinkler system installation &amp; maintenance</p></li><li data-start="1327" data-end="1377"><p data-start="1329" data-end="1377">Smoke extraction and ventilation solutions</p></li></ul><h5 data-start="1379" data-end="1424"><strong data-start="1385" data-end="1422">Maintenance &amp; Facility Management</strong></h5><ul data-start="1425" data-end="1602"><li data-start="1425" data-end="1499"><p data-start="1427" data-end="1499">Preventive &amp; corrective maintenance for electro-mechanical systems</p></li><li data-start="1500" data-end="1548"><p data-start="1502" data-end="1548">Emergency support &amp; troubleshooting</p></li><li data-start="1549" data-end="1602"><p data-start="1551" data-end="1602">Upgrades &amp; retrofitting for energy efficiency</p></li></ul> </div>
</div>
</div>
<div class="elementor-element elementor-element-839957a e-con-full e-flex e-con e-child" data-id="839957a" data-element_type="container" data-e-type="container">
<div class="elementor-element elementor-element-205732a elementor-widget elementor-widget-sidebar" data-id="205732a" data-element_type="widget" data-e-type="widget" data-widget_type="sidebar.default">
<div class="elementor-widget-container">
<div id="nav_menu-2" class="widget widget_nav_menu"><div class="menu-service-side-panel-container"><ul id="menu-service-side-panel" class="menu"><li id="menu-item-3220" class="menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-35 current_page_item menu-item-3220"><a href="/service?p=35" aria-current="page">Electro Mechanical Works</a></li>
<li id="menu-item-3212" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3212"><a href="/service?p=3206">Building Management System</a></li>
<li id="menu-item-3213" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3213"><a href="/service?p=3199">Adiabatic Pre-Cooling System</a></li>
<li id="menu-item-3214" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3214"><a href="/service?p=3192">Misting Solutions</a></li>
<li id="menu-item-3215" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3215"><a href="/service?p=3186">Chiller Hot &#038; Cool Solutions</a></li>
<li id="menu-item-3216" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3216"><a href="/service?p=3179">Interior &#038; Fit-Out Works</a></li>
<li id="menu-item-3217" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3217"><a href="/service?p=3172">Building Contracting Works</a></li>
<li id="menu-item-3218" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3218"><a href="/service?p=3160">Metal Construction &#038; Fabrications</a></li>
<li id="menu-item-3219" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3219"><a href="/service?p=3159">Landscaping &#038; Fencing Works</a></li>
</ul></div></div> </div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
` },
"interior-fit-out-works": { title: "Interior & Fit-Out Works - Profen Engineering", html: `<!-- Page title 2 --><div class="breadcumb-banner"><div class="breadcumb-wrapper " id="breadcumbwrap"><div class="container"><div class="breadcumb-content"><h1 class="breadcumb-title">Interior &#038; Fit-Out Works</h1><ul class="breadcumb-menu"><li><a href="/">Home</a></li><li>Interior &#038; Fit-Out Works</li></ul></div></div></div></div><!-- End of Page title --> <div class="rakar-fluid">
<div class="builder-page-wrapper">
<div data-elementor-type="wp-page" data-elementor-id="3179" class="elementor elementor-3179">
<div class="elementor-element elementor-element-9a85ca6 e-flex e-con-boxed e-con e-parent" data-id="9a85ca6" data-element_type="container" data-e-type="container">
<div class="e-con-inner">
<div class="elementor-element elementor-element-cf1beee e-con-full e-flex e-con e-child" data-id="cf1beee" data-element_type="container" data-e-type="container">
<div class="elementor-element elementor-element-2837963 elementor-widget elementor-widget-image" data-id="2837963" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
<div class="elementor-widget-container">
<img fetchpriority="high" decoding="async" width="872" height="536" src="/wp-content/uploads/2026/01/interior.jpg" class="attachment-full size-full wp-image-3182" alt="" srcset="/wp-content/uploads/2026/01/interior.jpg 872w, ../wp-content/uploads/2026/01/interior-300x184.jpg 300w, ../wp-content/uploads/2026/01/interior-768x472.jpg 768w" sizes="(max-width: 872px) 100vw, 872px" /> </div>
</div>
<div class="elementor-element elementor-element-b3af1a5 elementor-widget elementor-widget-heading" data-id="b3af1a5" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h3 class="elementor-heading-title elementor-size-default">Interior &amp; Fit-Out Works</h3> </div>
</div>
<div class="elementor-element elementor-element-6cfa376 elementor-widget elementor-widget-text-editor" data-id="6cfa376" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<p data-start="59" data-end="385">At Profen Engineering LLC, we deliver complete interior and fit-out solutions that combine functionality, aesthetics, and quality craftsmanship. From concept to completion, we transform spaces into modern, efficient, and visually appealing environments for residential, commercial, and industrial projects.</p><h5 data-start="430" data-end="461"><strong data-start="434" data-end="461">Design &amp; Space Planning</strong></h5><ul><li data-start="464" data-end="522">Customized interior layouts based on client requirements</li><li data-start="525" data-end="582">Efficient space utilization with modern design concepts</li><li data-start="585" data-end="632">Material selection and finish recommendations</li></ul><h5><strong data-start="638" data-end="670">Commercial &amp; Office Fit-Outs</strong></h5><ul><li data-start="673" data-end="730">Corporate offices, co-working spaces &amp; business centers</li><li data-start="733" data-end="772">Retail shops, showrooms &amp; restaurants</li><li data-start="775" data-end="820">False ceilings, partitions &amp; flooring works</li></ul><h5 data-start="822" data-end="856"><strong data-start="826" data-end="856">Residential Interior Works</strong></h5><ul><li data-start="859" data-end="901">Villas &amp; apartments interior renovations</li><li data-start="904" data-end="950">Bedrooms, living areas, kitchens &amp; bathrooms</li><li data-start="953" data-end="1002">Wardrobes, storage solutions &amp; custom furniture</li></ul><h5 data-start="1004" data-end="1034"><strong data-start="1008" data-end="1034">Joinery &amp; Custom Works</strong></h5><ul><li data-start="1037" data-end="1073">Wooden doors, cabinets &amp; wardrobes</li><li data-start="1076" data-end="1133">Reception counters, wall paneling &amp; decorative elements</li><li data-start="1136" data-end="1170">Gypsum, glass &amp; metal partitions</li></ul><h5 data-start="1172" data-end="1201"><strong data-start="1176" data-end="1201">MEP &amp; Finishing Works</strong></h5><ul><li data-start="1204" data-end="1246">Electrical, plumbing &amp; HVAC coordination</li><li data-start="1249" data-end="1281">Lighting design &amp; installation</li><li data-start="1284" data-end="1327">Painting, wallpaper &amp; decorative finishes</li></ul><h5><strong data-start="1332" data-end="1351">Applications</strong></h5><ul><li data-start="1354" data-end="1387">Residential villas &amp; apartments</li><li data-start="1390" data-end="1426">Commercial offices &amp; retail spaces</li><li data-start="1429" data-end="1473">Hotels, restaurants &amp; hospitality projects</li><li data-start="1476" data-end="1515">Industrial offices &amp; staff facilities</li></ul> </div>
</div>
</div>
<div class="elementor-element elementor-element-839957a e-con-full e-flex e-con e-child" data-id="839957a" data-element_type="container" data-e-type="container">
<div class="elementor-element elementor-element-205732a elementor-widget elementor-widget-sidebar" data-id="205732a" data-element_type="widget" data-e-type="widget" data-widget_type="sidebar.default">
<div class="elementor-widget-container">
<div id="nav_menu-2" class="widget widget_nav_menu"><div class="menu-service-side-panel-container"><ul id="menu-service-side-panel" class="menu"><li id="menu-item-3220" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3220"><a href="/service?p=35">Electro Mechanical Works</a></li>
<li id="menu-item-3212" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3212"><a href="/service?p=3206">Building Management System</a></li>
<li id="menu-item-3213" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3213"><a href="/service?p=3199">Adiabatic Pre-Cooling System</a></li>
<li id="menu-item-3214" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3214"><a href="/service?p=3192">Misting Solutions</a></li>
<li id="menu-item-3215" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3215"><a href="/service?p=3186">Chiller Hot &#038; Cool Solutions</a></li>
<li id="menu-item-3216" class="menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-3179 current_page_item menu-item-3216"><a href="/service?p=3179" aria-current="page">Interior &#038; Fit-Out Works</a></li>
<li id="menu-item-3217" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3217"><a href="/service?p=3172">Building Contracting Works</a></li>
<li id="menu-item-3218" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3218"><a href="/service?p=3160">Metal Construction &#038; Fabrications</a></li>
<li id="menu-item-3219" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3219"><a href="/service?p=3159">Landscaping &#038; Fencing Works</a></li>
</ul></div></div> </div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
` },
"landscaping-fencing-works": { title: "Landscaping & Fencing Works - Profen Engineering", html: `<!-- Page title 2 --><div class="breadcumb-banner"><div class="breadcumb-wrapper " id="breadcumbwrap"><div class="container"><div class="breadcumb-content"><h1 class="breadcumb-title">Landscaping &#038; Fencing Works</h1><ul class="breadcumb-menu"><li><a href="/">Home</a></li><li>Landscaping &#038; Fencing Works</li></ul></div></div></div></div><!-- End of Page title --> <div class="rakar-fluid">
<div class="builder-page-wrapper">
<div data-elementor-type="wp-page" data-elementor-id="3159" class="elementor elementor-3159">
<div class="elementor-element elementor-element-9a85ca6 e-flex e-con-boxed e-con e-parent" data-id="9a85ca6" data-element_type="container" data-e-type="container">
<div class="e-con-inner">
<div class="elementor-element elementor-element-cf1beee e-con-full e-flex e-con e-child" data-id="cf1beee" data-element_type="container" data-e-type="container">
<div class="elementor-element elementor-element-2837963 elementor-widget elementor-widget-image" data-id="2837963" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
<div class="elementor-widget-container">
<img fetchpriority="high" decoding="async" width="872" height="536" src="/wp-content/uploads/2026/01/landscape.jpg" class="attachment-full size-full wp-image-3162" alt="" srcset="/wp-content/uploads/2026/01/landscape.jpg 872w, ../wp-content/uploads/2026/01/landscape-300x184.jpg 300w, ../wp-content/uploads/2026/01/landscape-768x472.jpg 768w" sizes="(max-width: 872px) 100vw, 872px" /> </div>
</div>
<div class="elementor-element elementor-element-b3af1a5 elementor-widget elementor-widget-heading" data-id="b3af1a5" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h3 class="elementor-heading-title elementor-size-default">Landscaping &amp; Fencing Works</h3> </div>
</div>
<div class="elementor-element elementor-element-6cfa376 elementor-widget elementor-widget-text-editor" data-id="6cfa376" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<p data-start="62" data-end="398">At Profen Engineering LLC, we provide complete landscaping and fencing solutions that enhance the beauty, functionality, and security of residential, commercial, and industrial properties. Our services are designed to create well-planned outdoor environments while ensuring privacy, safety, and long-term durability.</p><h4 data-start="400" data-end="427"><strong data-start="403" data-end="427">Landscaping Works</strong></h4><h5 data-start="429" data-end="453"><strong data-start="433" data-end="453">Soft Landscaping</strong></h5><ul><li data-start="456" data-end="536">Planting of trees, shrubs, flowers, and lawns suitable for the UAE climate</li><li data-start="539" data-end="589">Natural grass &amp; artificial turf installation</li><li data-start="592" data-end="628">Vertical gardens &amp; green walls</li><li data-start="631" data-end="670">Soil preparation and turf development</li></ul><h5 data-start="672" data-end="696"><strong data-start="676" data-end="696">Hard Landscaping</strong></h5><ul><li data-start="699" data-end="742">Paving works, pathways, and driveways</li><li data-start="745" data-end="787">Pergolas, gazebos, decks, and patios</li><li data-start="790" data-end="846">Water features, fountains, and decorative elements</li><li data-start="849" data-end="900">Kerbstones, interlock, and decorative stone works</li></ul><h5 data-start="902" data-end="939"><strong data-start="906" data-end="939">Irrigation &amp; Drainage Systems</strong></h5><ul><li data-start="942" data-end="976">Automatic irrigation systems</li><li data-start="979" data-end="1040">Drip and sprinkler irrigation for efficient water usage</li><li data-start="1043" data-end="1098">Proper drainage solutions to protect landscaped areas</li></ul><h5 data-start="1100" data-end="1123"><strong data-start="1103" data-end="1123">Fencing Works</strong></h5><ul><li data-start="1127" data-end="1185">Villa &amp; Residential Fencing for privacy and security</li><li data-start="1188" data-end="1235">Commercial &amp; Industrial Fencing solutions</li><li data-start="1238" data-end="1285">Metal, wooden, PVC, and chain-link fences</li><li data-start="1288" data-end="1343">Boundary walls, gates, and access control fencing</li><li data-start="1346" data-end="1405">Custom-designed fencing to match architectural styles</li></ul><h5 data-start="1407" data-end="1429"><strong>Applications</strong></h5><ul><li data-start="1432" data-end="1464">Villas &amp; residential compounds</li><li data-start="1467" data-end="1506">Commercial buildings &amp; business parks</li><li data-start="1509" data-end="1547">Hotels, resorts &amp; recreational areas</li><li data-start="1550" data-end="1586">Industrial facilities &amp; warehouses</li><li data-start="1589" data-end="1629">Public spaces &amp; community developments</li></ul> </div>
</div>
</div>
<div class="elementor-element elementor-element-839957a e-con-full e-flex e-con e-child" data-id="839957a" data-element_type="container" data-e-type="container">
<div class="elementor-element elementor-element-205732a elementor-widget elementor-widget-sidebar" data-id="205732a" data-element_type="widget" data-e-type="widget" data-widget_type="sidebar.default">
<div class="elementor-widget-container">
<div id="nav_menu-2" class="widget widget_nav_menu"><div class="menu-service-side-panel-container"><ul id="menu-service-side-panel" class="menu"><li id="menu-item-3220" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3220"><a href="/service?p=35">Electro Mechanical Works</a></li>
<li id="menu-item-3212" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3212"><a href="/service?p=3206">Building Management System</a></li>
<li id="menu-item-3213" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3213"><a href="/service?p=3199">Adiabatic Pre-Cooling System</a></li>
<li id="menu-item-3214" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3214"><a href="/service?p=3192">Misting Solutions</a></li>
<li id="menu-item-3215" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3215"><a href="/service?p=3186">Chiller Hot &#038; Cool Solutions</a></li>
<li id="menu-item-3216" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3216"><a href="/service?p=3179">Interior &#038; Fit-Out Works</a></li>
<li id="menu-item-3217" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3217"><a href="/service?p=3172">Building Contracting Works</a></li>
<li id="menu-item-3218" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3218"><a href="/service?p=3160">Metal Construction &#038; Fabrications</a></li>
<li id="menu-item-3219" class="menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-3159 current_page_item menu-item-3219"><a href="/service?p=3159" aria-current="page">Landscaping &#038; Fencing Works</a></li>
</ul></div></div> </div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
` },
"metal-construction-fabrications": { title: "Metal Construction & Fabrications - Profen Engineering", html: `<!-- Page title 2 --><div class="breadcumb-banner"><div class="breadcumb-wrapper " id="breadcumbwrap"><div class="container"><div class="breadcumb-content"><h1 class="breadcumb-title">Metal Construction &#038; Fabrications</h1><ul class="breadcumb-menu"><li><a href="/">Home</a></li><li>Metal Construction &#038; Fabrications</li></ul></div></div></div></div><!-- End of Page title --> <div class="rakar-fluid">
<div class="builder-page-wrapper">
<div data-elementor-type="wp-page" data-elementor-id="3160" class="elementor elementor-3160">
<div class="elementor-element elementor-element-9a85ca6 e-flex e-con-boxed e-con e-parent" data-id="9a85ca6" data-element_type="container" data-e-type="container">
<div class="e-con-inner">
<div class="elementor-element elementor-element-cf1beee e-con-full e-flex e-con e-child" data-id="cf1beee" data-element_type="container" data-e-type="container">
<div class="elementor-element elementor-element-2837963 elementor-widget elementor-widget-image" data-id="2837963" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
<div class="elementor-widget-container">
<img fetchpriority="high" decoding="async" width="872" height="536" src="/wp-content/uploads/2026/01/fabrications.jpg" class="attachment-full size-full wp-image-3168" alt="" srcset="/wp-content/uploads/2026/01/fabrications.jpg 872w, ../wp-content/uploads/2026/01/fabrications-300x184.jpg 300w, ../wp-content/uploads/2026/01/fabrications-768x472.jpg 768w" sizes="(max-width: 872px) 100vw, 872px" /> </div>
</div>
<div class="elementor-element elementor-element-b3af1a5 elementor-widget elementor-widget-heading" data-id="b3af1a5" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h3 class="elementor-heading-title elementor-size-default">Metal Construction &amp; Fabrications</h3> </div>
</div>
<div class="elementor-element elementor-element-6cfa376 elementor-widget elementor-widget-text-editor" data-id="6cfa376" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<p data-start="73" data-end="428">At Profen Engineering LLC, we deliver high-quality metal construction and fabrication solutions tailored to meet the needs of residential, commercial, and industrial projects. With a strong focus on precision engineering, durability, and safety, we provide custom metal works that combine strength, functionality, and aesthetic appeal.</p><h5 data-start="488" data-end="518"><strong data-start="492" data-end="518">Structural Steel Works</strong></h5><ul><li data-start="521" data-end="580">Steel structures for buildings, warehouses, and sheds</li><li data-start="583" data-end="619">Mezzanine floors and platforms</li><li data-start="622" data-end="662">Staircases, handrails, and ladders</li><li data-start="665" data-end="715">Canopies, car parking shades, and steel frames</li></ul><h5 data-start="717" data-end="749"><strong data-start="721" data-end="749">Custom Metal Fabrication</strong></h5><ul><li data-start="752" data-end="796">MS, SS, and aluminum fabrication works</li><li data-start="799" data-end="839">Doors, gates, grills, and railings</li><li data-start="842" data-end="895">Balconies, pergolas, and decorative metal works</li><li data-start="898" data-end="964">Customized metal components as per drawings and specifications</li></ul><h5 data-start="966" data-end="996"><strong data-start="970" data-end="996">Industrial Metal Works</strong></h5><ul><li data-start="999" data-end="1033">Equipment supports and skids</li><li data-start="1036" data-end="1068">Pipe racks and cable trays</li><li data-start="1071" data-end="1118">Protective enclosures and safety barriers</li><li data-start="1121" data-end="1175">Heavy-duty fabrication for industrial applications</li></ul><h5 data-start="1177" data-end="1204"><strong data-start="1181" data-end="1204">Welding &amp; Finishing</strong></h5><ul><li data-start="1207" data-end="1255">Certified welding services (MIG, TIG, ARC)</li><li data-start="1258" data-end="1334">Surface treatments including galvanizing, powder coating, and painting</li><li data-start="1337" data-end="1400">Corrosion-resistant finishes for long-lasting performance</li></ul><h5><strong data-start="1405" data-end="1424">Applications</strong></h5><ul><li data-start="1427" data-end="1459">Residential villas &amp; buildings</li><li data-start="1462" data-end="1500">Commercial complexes &amp; retail spaces</li><li data-start="1503" data-end="1535">Industrial plants &amp; warehouses</li><li data-start="1538" data-end="1575">Infrastructure and utility projects</li></ul> </div>
</div>
</div>
<div class="elementor-element elementor-element-839957a e-con-full e-flex e-con e-child" data-id="839957a" data-element_type="container" data-e-type="container">
<div class="elementor-element elementor-element-205732a elementor-widget elementor-widget-sidebar" data-id="205732a" data-element_type="widget" data-e-type="widget" data-widget_type="sidebar.default">
<div class="elementor-widget-container">
<div id="nav_menu-2" class="widget widget_nav_menu"><div class="menu-service-side-panel-container"><ul id="menu-service-side-panel" class="menu"><li id="menu-item-3220" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3220"><a href="/service?p=35">Electro Mechanical Works</a></li>
<li id="menu-item-3212" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3212"><a href="/service?p=3206">Building Management System</a></li>
<li id="menu-item-3213" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3213"><a href="/service?p=3199">Adiabatic Pre-Cooling System</a></li>
<li id="menu-item-3214" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3214"><a href="/service?p=3192">Misting Solutions</a></li>
<li id="menu-item-3215" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3215"><a href="/service?p=3186">Chiller Hot &#038; Cool Solutions</a></li>
<li id="menu-item-3216" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3216"><a href="/service?p=3179">Interior &#038; Fit-Out Works</a></li>
<li id="menu-item-3217" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3217"><a href="/service?p=3172">Building Contracting Works</a></li>
<li id="menu-item-3218" class="menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-3160 current_page_item menu-item-3218"><a href="/service?p=3160" aria-current="page">Metal Construction &#038; Fabrications</a></li>
<li id="menu-item-3219" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3219"><a href="/service?p=3159">Landscaping &#038; Fencing Works</a></li>
</ul></div></div> </div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
` },
"misting-solutions": { title: "Misting Solutions - Profen Engineering", html: `<!-- Page title 2 --><div class="breadcumb-banner"><div class="breadcumb-wrapper " id="breadcumbwrap"><div class="container"><div class="breadcumb-content"><h1 class="breadcumb-title">Misting Solutions</h1><ul class="breadcumb-menu"><li><a href="/">Home</a></li><li>Misting Solutions</li></ul></div></div></div></div><!-- End of Page title --> <div class="rakar-fluid">
<div class="builder-page-wrapper">
<div data-elementor-type="wp-page" data-elementor-id="3192" class="elementor elementor-3192">
<div class="elementor-element elementor-element-9a85ca6 e-flex e-con-boxed e-con e-parent" data-id="9a85ca6" data-element_type="container" data-e-type="container">
<div class="e-con-inner">
<div class="elementor-element elementor-element-cf1beee e-con-full e-flex e-con e-child" data-id="cf1beee" data-element_type="container" data-e-type="container">
<div class="elementor-element elementor-element-2837963 elementor-widget elementor-widget-image" data-id="2837963" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
<div class="elementor-widget-container">
<img fetchpriority="high" decoding="async" width="872" height="536" src="/wp-content/uploads/2026/01/misting.jpg" class="attachment-full size-full wp-image-3195" alt="" srcset="/wp-content/uploads/2026/01/misting.jpg 872w, ../wp-content/uploads/2026/01/misting-300x184.jpg 300w, ../wp-content/uploads/2026/01/misting-768x472.jpg 768w" sizes="(max-width: 872px) 100vw, 872px" /> </div>
</div>
<div class="elementor-element elementor-element-b3af1a5 elementor-widget elementor-widget-heading" data-id="b3af1a5" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h3 class="elementor-heading-title elementor-size-default">Misting Solutions</h3> </div>
</div>
<div class="elementor-element elementor-element-6cfa376 elementor-widget elementor-widget-text-editor" data-id="6cfa376" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<p data-start="52" data-end="422"><strong>Promist </strong>is our specialized brand, dedicated to delivering innovative, high-performance misting and evaporative cooling solutions. Designed to perform reliably in hot and demanding climates, Promist combines advanced engineering, energy efficiency, and superior quality to create comfortable, refreshing environments for residential, commercial, and industrial applications.</p><h4 data-start="472" data-end="496"><strong data-start="475" data-end="496">About Promist</strong></h4><p data-start="498" data-end="828">Promist focuses on precision misting technology that produces ultra-fine water particles, ensuring effective cooling without wetting surfaces. Backed by the technical expertise and engineering standards of Profen Engineering LLC, Promist systems are built for durability, efficiency, and long-term performance.</p><h5 data-start="456" data-end="487"><strong data-start="460" data-end="487">Outdoor Misting Systems</strong></h5><ul><li data-start="490" data-end="559">Cooling for patios, terraces, gardens, pergolas, and pool areas</li><li data-start="562" data-end="632">Ideal for cafés, restaurants, resorts, and outdoor seating areas</li><li data-start="635" data-end="679">Temperature reduction of up to 1015°C</li></ul><h5 data-start="681" data-end="718"><strong data-start="685" data-end="718">High-Pressure Misting Systems</strong></h5><ul><li data-start="721" data-end="785">Ultra-fine mist for efficient cooling without wet surfaces</li><li data-start="788" data-end="841">Energy-efficient systems with low water consumption</li><li data-start="844" data-end="885">Durable, corrosion-resistant components</li></ul><h5><strong data-start="891" data-end="926">Commercial &amp; Industrial Misting</strong></h5><ul><li data-start="929" data-end="983">Cooling for warehouses, factories, and workshops</li><li data-start="986" data-end="1046">Dust suppression for construction and industrial sites</li><li data-start="1049" data-end="1098">Humidity control for sensitive environments</li></ul><h5 data-start="1100" data-end="1141"><strong data-start="1104" data-end="1141">Agricultural &amp; Greenhouse Misting</strong></h5><ul><li data-start="1144" data-end="1208">Temperature and humidity control for greenhouses and farms</li><li data-start="1211" data-end="1256">Improved plant growth and livestock comfort</li></ul><h5 data-start="1258" data-end="1301"><strong data-start="1262" data-end="1301">Smart &amp; Automated Misting Solutions</strong></h5><ul><li data-start="1304" data-end="1347">Timer-based and sensor-controlled systems</li><li data-start="1350" data-end="1402">Remote operation and climate-responsive automation</li></ul><h5 data-start="1404" data-end="1426"><strong data-start="1407" data-end="1426">Applications</strong></h5><ul><li data-start="1429" data-end="1473">Residential villas &amp; outdoor living spaces</li><li data-start="1476" data-end="1519">Restaurants, cafés &amp; hospitality projects</li><li data-start="1522" data-end="1558">Industrial facilities &amp; warehouses</li><li data-start="1561" data-end="1595">Agricultural &amp; landscaping areas</li><li data-start="1598" data-end="1628">Public spaces &amp; event venues</li></ul> </div>
</div>
</div>
<div class="elementor-element elementor-element-839957a e-con-full e-flex e-con e-child" data-id="839957a" data-element_type="container" data-e-type="container">
<div class="elementor-element elementor-element-205732a elementor-widget elementor-widget-sidebar" data-id="205732a" data-element_type="widget" data-e-type="widget" data-widget_type="sidebar.default">
<div class="elementor-widget-container">
<div id="nav_menu-2" class="widget widget_nav_menu"><div class="menu-service-side-panel-container"><ul id="menu-service-side-panel" class="menu"><li id="menu-item-3220" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3220"><a href="/service?p=35">Electro Mechanical Works</a></li>
<li id="menu-item-3212" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3212"><a href="/service?p=3206">Building Management System</a></li>
<li id="menu-item-3213" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3213"><a href="/service?p=3199">Adiabatic Pre-Cooling System</a></li>
<li id="menu-item-3214" class="menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-3192 current_page_item menu-item-3214"><a href="/service?p=3192" aria-current="page">Misting Solutions</a></li>
<li id="menu-item-3215" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3215"><a href="/service?p=3186">Chiller Hot &#038; Cool Solutions</a></li>
<li id="menu-item-3216" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3216"><a href="/service?p=3179">Interior &#038; Fit-Out Works</a></li>
<li id="menu-item-3217" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3217"><a href="/service?p=3172">Building Contracting Works</a></li>
<li id="menu-item-3218" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3218"><a href="/service?p=3160">Metal Construction &#038; Fabrications</a></li>
<li id="menu-item-3219" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3219"><a href="/service?p=3159">Landscaping &#038; Fencing Works</a></li>
</ul></div></div> </div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
` },
}
export default pages

File diff suppressed because one or more lines are too long

View File

@@ -5,34 +5,76 @@ import { injectPageCss } from './elementorCss'
export default function useLayoutInit() {
const { pathname } = useLocation()
// Inject page-specific CSS on route change
useEffect(() => {
injectPageCss(pathname)
}, [pathname])
// Re-initialize theme JS on route change
useEffect(() => {
const timer = setTimeout(() => {
if (typeof window.rakar_content_load_scripts === 'function') {
document.querySelectorAll('.th-slider').forEach(el => {
if (el.swiper) {
try { el.swiper.destroy(true, true) } catch (e) {}
}
})
window.rakar_content_load_scripts()
}
window.__layoutReady = true
window.dispatchEvent(new Event('layout-ready'))
}, 300)
return () => clearTimeout(timer)
}, [pathname])
let destroyed = false
let rafId = null
useEffect(() => {
const els = document.querySelectorAll('[data-bg-src]')
els.forEach(node => {
const src = node.getAttribute('data-bg-src')
if (src) {
node.style.backgroundImage = `url(${src})`
node.classList.add('background-image')
function tryInit() {
if (destroyed) return
// Apply data-bg-src to elements
document.querySelectorAll('[data-bg-src]').forEach(el => {
const src = el.getAttribute('data-bg-src')
if (src && !el.classList.contains('background-image')) {
el.style.backgroundImage = `url(${src})`
el.classList.add('background-image')
}
})
// Check if jQuery and theme init function are ready
if (typeof window.jQuery === 'function' && typeof window.rakar_content_load_scripts === 'function') {
try {
// Destroy ALL existing swiper instances to prevent duplicates
document.querySelectorAll('.swiper').forEach(el => {
if (el.swiper) {
try { el.swiper.destroy(true, true) } catch (e) {}
}
})
// Run theme initialization
window.rakar_content_load_scripts()
window.__layoutReady = true
window.dispatchEvent(new Event('layout-ready'))
return true
} catch (e) {
console.warn('Theme init error:', e)
}
}
})
return false
}
// Immediate attempt
if (tryInit()) return
// Poll with requestAnimationFrame for efficiency
function poll() {
if (!destroyed && !tryInit()) {
rafId = requestAnimationFrame(poll)
}
}
rafId = requestAnimationFrame(poll)
// Fallback timeout (8 seconds)
const fallback = setTimeout(() => {
if (!destroyed) {
window.__layoutReady = true
window.dispatchEvent(new Event('layout-ready'))
destroyed = true
if (rafId) cancelAnimationFrame(rafId)
}
}, 8000)
return () => {
destroyed = true
if (rafId) cancelAnimationFrame(rafId)
clearTimeout(fallback)
}
}, [pathname])
}

View File

@@ -1,6 +1,21 @@
import { useNavigate } from 'react-router-dom'
import { useEffect } from 'react'
const postIdToSlug = {
35: 'electro-mechanical-works',
3159: 'landscaping-fencing-works',
3160: 'metal-construction-fabrications',
3172: 'building-contracting-works',
3179: 'interior-fit-out-works',
3186: 'chiller-hot-cool-solutions',
3192: 'misting-solutions',
3199: 'adiabatic-pre-cooling-system',
3206: 'building-management-system',
}
// Known SPA routes
const spaRoutes = ['/', '/about', '/service', '/project', '/contact']
export function useNavFix(ref) {
const navigate = useNavigate()
@@ -13,26 +28,56 @@ export function useNavFix(ref) {
if (!link) return
let href = link.getAttribute('href')
if (!href) return
if (!href || href === '#' || href.startsWith('#')) return
// External links (http/https) — open in new tab if different host
if (href.startsWith('http')) {
if (!href.includes(window.location.hostname)) {
e.preventDefault()
window.open(href, '_blank')
try {
const url = new URL(href)
if (url.hostname !== window.location.hostname) {
e.preventDefault()
window.open(href, '_blank', 'noopener,noreferrer')
}
} catch (_) {}
return
}
// Prevent default for ALL same-site links to use SPA routing
e.preventDefault()
// Normalize: remove leading /, handle relative paths
let route = href.replace(/^\//, '')
// Handle ?p= service links → SPA route
const serviceMatch = route.match(/service\?p=(\d+)/)
if (serviceMatch) {
const slug = postIdToSlug[serviceMatch[1]]
if (slug) {
navigate('/service/' + slug)
} else {
navigate('/service')
}
return
}
if (href.startsWith('#')) return
// Handle ../ x/index.html relative paths like ../contact/index.html
route = route.replace(/\.\.\//g, '')
if (href.endsWith('.html') || href.startsWith('wp-')) {
e.preventDefault()
let route = href
.replace(/\/?index\.html$/, '')
.replace(/\.html$/, '')
.replace(/^\//, '')
navigate('/' + route)
// Strip .html and index.html
route = route.replace(/\/?index\.html$/, '').replace(/\.html$/, '')
// Strip wp- prefix (for wp-content links that aren't really pages)
if (route.startsWith('wp-')) return
// If route matches known SPA routes or starts with /service/, navigate
const normalizedRoute = '/' + route
if (spaRoutes.includes(normalizedRoute) || normalizedRoute.startsWith('/service/')) {
navigate(normalizedRoute)
return
}
// Fallback: just navigate to the cleaned route
navigate(normalizedRoute || '/')
}
el.addEventListener('click', handler)

View File

@@ -1,41 +1,5 @@
import { useEffect } from 'react'
const cssLinks = [
'https://fonts.googleapis.com/css2?family=Exo:ital,wght@0,100..900;1,100..900&family=Inter:wght@100..900&display=swap',
'/wp-content/themes/rakar/assets/css/fontawesome.min.css',
'/wp-content/themes/rakar/assets/css/bootstrap.min.css',
'/wp-content/themes/rakar/assets/css/magnific-popup.min.css',
'/wp-content/themes/rakar/assets/css/swiper-bundle.min.css',
'/wp-content/themes/rakar/assets/css/th-wl.css',
'/wp-content/themes/rakar/style.css',
'/wp-content/themes/rakar/assets/css/style.css',
'/wp-content/themes/rakar/assets/css/color.schemes.css',
'/wp-content/plugins/elementor/assets/css/frontend.min.css',
'/wp-content/plugins/elementor/assets/css/widget-heading.min.css',
'/wp-content/plugins/elementor/assets/css/widget-image.min.css',
'/wp-content/plugins/elementor/assets/lib/swiper/v8/css/swiper.min.css',
'/wp-content/plugins/elementor/assets/css/conditionals/e-swiper.min.css',
'/wp-content/plugins/elementor/assets/css/widget-image-carousel.min.css',
]
const headScripts = [
'/wp-includes/js/jquery/jquery.min.js',
'/wp-includes/js/jquery/jquery-migrate.min.js',
]
const bodyScripts = [
'/wp-includes/js/jquery/ui/core.min.js',
'/wp-includes/js/jquery/ui/mouse.min.js',
'/wp-includes/js/jquery/ui/slider.min.js',
'/wp-includes/js/imagesloaded.min.js',
'/wp-content/themes/rakar/assets/js/bootstrap.min.js',
'/wp-content/themes/rakar/assets/js/swiper-bundle.min.js',
'/wp-content/themes/rakar/assets/js/jquery.magnific-popup.min.js',
'/wp-content/themes/rakar/assets/js/jquery.counterup.min.js',
'/wp-content/themes/rakar/assets/js/isotope.pkgd.min.js',
'/wp-content/themes/rakar/assets/js/main.js',
]
const metaTags = [
{ name: 'description', content: 'Welcome To Profen' },
{ name: 'robots', content: 'max-image-preview:large' },
@@ -57,41 +21,11 @@ const linkTags = [
{ rel: 'apple-touch-icon', href: '/wp-content/uploads/2024/07/favicon-lp-300x300.png' },
]
let cssLoadCount = 0
let totalCSS = 0
function checkAllCSSLoaded() {
cssLoadCount++
if (cssLoadCount >= totalCSS) {
window.__cssReady = true
document.dispatchEvent(new Event('css-ready'))
}
}
function injectCSS(href) {
if (document.querySelector(`link[href="${href}"]`)) {
checkAllCSSLoaded()
return
}
const link = document.createElement('link')
link.rel = 'stylesheet'
link.href = href
link.onload = checkAllCSSLoaded
link.onerror = checkAllCSSLoaded
document.head.appendChild(link)
}
function injectScript(src) {
if (document.querySelector(`script[src="${src}"]`)) return
const script = document.createElement('script')
script.src = src
script.async = false
script.defer = false
document.body.appendChild(script)
}
export default function useThemeAssets() {
useEffect(() => {
window.__cssReady = true
document.dispatchEvent(new Event('css-ready'))
metaTags.forEach(({ name, property, content }) => {
const attr = name ? 'name' : 'property'
const val = name || property
@@ -101,6 +35,7 @@ export default function useThemeAssets() {
meta.content = content
document.head.appendChild(meta)
})
linkTags.forEach(({ rel, href, sizes }) => {
if (document.querySelector(`link[rel="${rel}"][href="${href}"]`)) return
const link = document.createElement('link')
@@ -109,9 +44,5 @@ export default function useThemeAssets() {
if (sizes) link.sizes = sizes
document.head.appendChild(link)
})
totalCSS = cssLinks.length
cssLinks.forEach(injectCSS)
headScripts.forEach(injectScript)
bodyScripts.forEach(injectScript)
}, [])
}

View File

@@ -0,0 +1,42 @@
import { useParams, Link } from 'react-router-dom'
import { useRef, useEffect } from 'react'
import servicePages from '../data/servicePages'
import { useNavFix } from '../hooks/useNavFix'
const serviceSlugs = Object.keys(servicePages)
export default function ServiceDetail() {
const { slug } = useParams()
const ref = useRef(null)
useNavFix(ref)
// Debug: log what we're looking up
console.log('ServiceDetail: slug=%s, available=%d keys, found=%s', slug, serviceSlugs.length, slug ? (slug in servicePages) : false)
const page = slug ? servicePages[slug] : null
useEffect(() => {
window.scrollTo(0, 0)
if (page) {
document.title = page.title + ' Profen Engineering'
}
}, [slug, page])
if (!page) {
return (
<div style={{ padding: '120px 24px', textAlign: 'center' }}>
<h1>Service Not Found</h1>
<p>The service you're looking for doesn't exist.</p>
<Link to="/service" style={{ color: '#FA2D39' }}> Back to Services</Link>
</div>
)
}
return (
<div ref={ref}>
<div dangerouslySetInnerHTML={{ __html: page.html }} />
</div>
)
}
export { serviceSlugs }