{"id":11620,"date":"2024-11-22T00:30:56","date_gmt":"2024-11-21T21:30:56","guid":{"rendered":"https:\/\/inmanet.com.sa\/home\/"},"modified":"2025-11-12T09:56:57","modified_gmt":"2025-11-12T06:56:57","slug":"home","status":"publish","type":"page","link":"https:\/\/inmanet.com.sa\/en\/","title":{"rendered":"home"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"11620\" class=\"elementor elementor-11620 elementor-7491\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"has_eae_slider elementor-element elementor-element-1be9b56 e-con-full e-flex e-con e-parent\" data-id=\"1be9b56\" data-element_type=\"container\" id=\"header\" data-settings=\"{&quot;background_background&quot;:&quot;gradient&quot;}\">\n\t\t<div class=\"has_eae_slider elementor-element elementor-element-faf1b8d e-con-full e-flex elementor-invisible e-con e-child\" data-id=\"faf1b8d\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;position&quot;:&quot;absolute&quot;,&quot;animation&quot;:&quot;fadeIn&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-ad20e2e elementor-widget elementor-widget-html\" data-id=\"ad20e2e\" data-element_type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<style>\r\n#wrap-texture {\r\n    position: absolute;\r\n    width: 100%;\r\n    height: 100vh;\r\n    margin: 0;\r\n    overflow: hidden;\r\n}\r\n\r\n#canvas {\r\n    position: absolute;\r\n    top: 0;\r\n    right: 0;\r\n    bottom: 0;\r\n    left: 0;\r\n    margin: auto;\r\n}\r\n\r\n.plane {\r\n    \/* define the size of your plane *\/\r\n    width: 100%;\r\n    height: 100vh;\r\n    position: absolute;\r\n    top: 0;\r\n    left: 0;\r\n}\r\n\r\n.plane img {\r\n    display: none;\r\n    width: 100%;\r\n    height: 100vh;\r\n    position: absolute;\r\n    top: 0;\r\n    bottom: 0;\r\n    left: 0;\r\n    \r\n}\r\n\r\n\r\n#canvas canvas {\r\n    width: 100%;\r\n    height: 100vh;\r\n    position: absolute;\r\n    top: 0;\r\n    left: 0;\r\n}\r\n<\/style>\r\n    \r\n    \r\n    \r\n    <div id=\"wrap-texture\">\r\n        <div id=\"canvas\"><\/div>\r\n        <div class=\"plane\">\r\n            <img decoding=\"async\" data-sampler=\"dispImage\" id=\"texture\" src=\"https:\/\/inmanet.com.sa\/wp-content\/uploads\/2024\/11\/hero-02-c.webp\" crossorigin=\"anonymous\"\/>\r\n        <\/div>\r\n      <\/div>\r\n    \r\n    \r\n    <script src=\"https:\/\/www.curtainsjs.com\/build\/curtains.min.js\"><\/script>\r\n    \r\n    \r\n    <script>\r\n  const shader = {\r\n    vertex: `    \r\n    #ifdef GL_ES\r\n    precision mediump float;\r\n    #endif\r\n    \r\n    \/\/ those are the mandatory attributes that the lib sets\r\n    attribute vec3 aVertexPosition;\r\n    attribute vec2 aTextureCoord;\r\n\r\n    \/\/ those are mandatory uniforms that the lib sets and that contain our model view and projection matrix\r\n    uniform mat4 uMVMatrix;\r\n    uniform mat4 uPMatrix;\r\n\r\n    uniform mat4 dispImageMatrix;\r\n\r\n    \/\/ if you want to pass your vertex and texture coords to the fragment shader\r\n    varying vec3 vVertexPosition;\r\n    varying vec2 vTextureCoord;\r\n\r\n    void main() {\r\n        vec3 vertexPosition = aVertexPosition;\r\n        gl_Position = uPMatrix * uMVMatrix * vec4(vertexPosition, 1.0);\r\n\r\n        \/\/ set the varyings\r\n        vTextureCoord = (dispImageMatrix * vec4(aTextureCoord, 0., 1.)).xy;\r\n        vVertexPosition = vertexPosition;\r\n    }`,\r\n    fragment: `\r\n    #ifdef GL_ES\r\n    precision mediump float;\r\n    #endif\r\n    \r\n    #define PI2 6.28318530718\r\n    #define PI 3.14159265359\r\n    #define S(a,b,n) smoothstep(a,b,n)\r\n    \r\n    \/\/ get our varyings\r\n    varying vec3 vVertexPosition;\r\n    varying vec2 vTextureCoord;\r\n\r\n    \/\/ the uniform we declared inside our javascript\r\n    uniform float uTime;\r\n    uniform vec2 uReso;\r\n    uniform vec2 uMouse;\r\n\r\n    \/\/ our texture sampler (default name, to use a different name please refer to the documentation)\r\n    uniform sampler2D dispImage;\r\n    uniform sampler2D blurImage;\r\n  \r\n    \/\/ Noise\r\n    float N12(vec2 p){\r\n      p = fract(p * vec2(123.34, 345.45));\r\n      p += dot(p, p + 34.345);\r\n\r\n      return fract(p.x * p.y);\r\n    }\r\n\r\n    vec3 Layer(vec2 uv0, float t){\r\n\r\n      vec2 asp = vec2(2., 1.);\r\n\r\n      vec2 uv1 = uv0 * 3. * asp;\r\n\r\n      uv1.y += t * .25;\r\n\r\n      vec2 gv = fract(uv1) - .5;\r\n      vec2 id = floor(uv1);\r\n\r\n      float n = N12(id);\r\n\r\n      t+= n * PI2;\r\n\r\n      float w = uv0.y * 10.;\r\n      float x = (n - .5) * .8;\r\n      x += (.4 - abs(x)) * sin(3. * w) * pow(sin(w), 6.) * .45;\r\n      float y = -sin(t + sin(t + sin(t) * .5)) * (.5 - .06);\r\n      y -= (gv.x - x) * (gv.x - x); \/\/ sesgar;\r\n\r\n      vec2 dropPos = (gv - vec2(x, y)) \/ asp; \r\n      float drop = S(.03, .02, length(dropPos));\r\n\r\n      vec2 trailPos = (gv - vec2(x, t * .25)) \/ asp; \r\n      trailPos.y = (fract(trailPos.y * 8.) - .5) \/ 8.;\r\n      float trail = S(.02, .015, length(trailPos));\r\n\r\n      float fogTrail = S(-.05, .05, dropPos.y);\r\n\r\n      fogTrail *= S(.5, y, gv.y);\r\n      trail *= fogTrail;\r\n      fogTrail *= S(.03, .015, abs(dropPos.x));\r\n\r\n      vec2 off = drop * dropPos + trail * trailPos;\r\n\r\n      return vec3(off, fogTrail);\r\n    }\r\n  \r\n    void main() {      \r\n          float dist = 5.;\r\n          float blurSize = 1.;\r\n          float t = mod(uTime * .03, 7200.);\r\n\r\n          vec4 c = vec4(0);\r\n          vec2 uv = vTextureCoord;    \r\n\r\n          vec3 drops = Layer(uv, t);\r\n          drops += Layer(uv * 1.25 + 7.54, t);\r\n          drops += Layer(uv * 1.35 + 1.54, t);\r\n          drops += Layer(uv * 1.57 - 7.54, t);\r\n\r\n          float blur = blurSize * 7. * (1. - drops.z);\r\n\r\n          vec4 col = vec4(0.);\r\n          int numSamples = 32;\r\n          float a = N12(uv) * PI2;\r\n      \r\n          blur *= .0005;\r\n          uv += drops.xy * dist;\r\n            \r\n          for(int n = 0; n < 32; n++){\r\n            vec2 off = vec2(sin(a), cos(a)) * blur;\r\n            float d = fract(sin((float(n) + 1.) * 546.) * 5424.);\r\n            d = sqrt(d);         \r\n            off *= d;\r\n            col += texture2D(dispImage, uv + off);\r\n            a++;\r\n          }\r\n      \r\n          col \/= float(numSamples);\r\n \r\n          gl_FragColor = col;\r\n    }\r\n    `\r\n  };\r\n\r\n  \/\/ get our canvas wrapper\r\n  const canvasContainer = document.getElementById(\"canvas\");\r\n  const mouse = {\r\n    x: 0,\r\n    y: 0\r\n  };\r\n  \/\/ set up our WebGL context and append the canvas to our wrapper\r\n  const webGLCurtain = new Curtains({container: \"canvas\",\r\n      watchScroll: false\r\n  });\r\n  \r\n  \/\/webGLCurtain.glContext.getExtension('OES_standard_derivatives');\r\n  \r\n  \/\/ get our plane element\r\n  const planeElement = document.getElementsByClassName(\"plane\")[0];\r\n  \r\n  \/\/ set our initial parameters (basic uniforms)\r\n  const params = {\r\n    vertexShader: shader.vertex, \/\/ our vertex shader ID\r\n    fragmentShader: shader.fragment, \/\/ our framgent shader ID\r\n    widthSegments: 40,\r\n    heightSegments: 40, \/\/ we now have 40*40*6 = 9600 vertices !\r\n    uniforms: {\r\n      time: {\r\n        name: \"uTime\", \/\/ uniform name that will be passed to our shaders\r\n        type: \"1f\", \/\/ this means our uniform is a float\r\n        value: 0\r\n      },\r\n      mousepos: {\r\n        name: \"uMouse\",\r\n        type: \"2f\",\r\n        value: [mouse.x, mouse.y]\r\n      },\r\n      resolution: {\r\n        name: \"uReso\",\r\n        type: \"2f\",\r\n        value: [innerWidth, innerHeight]\r\n      }\r\n    }\r\n  };\r\n\r\n  \/\/ create our plane mesh\r\n  const plane = webGLCurtain.addPlane(planeElement, params);\r\n\r\n  \/\/ use the onRender method of our plane fired at each requestAnimationFrame call\r\n  plane.onRender(() => {\r\n    plane.uniforms.time.value++; \/\/ update our time uniform value\r\n\r\n    plane.uniforms.resolution.value = [innerWidth, innerHeight];\r\n  });\r\n\r\n            window.addEventListener(\"scroll\", () => {\r\n  webGLCurtain.updateScroll();\r\n});\r\n    \r\n    <\/script>\r\n    \t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"has_eae_slider elementor-element elementor-element-10645d3 e-con-full e-flex e-con e-child\" data-id=\"10645d3\" data-element_type=\"container\" data-settings=\"{&quot;position&quot;:&quot;absolute&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-00dce87 elementor-widget elementor-widget-html\" data-id=\"00dce87\" data-element_type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t    <style>\r\n\r\n\r\n        .window-container {\r\n            position: relative;\r\n            width: 100vw;\r\n            height: 100vh;\r\n            overflow: hidden;\r\n        }\r\n\r\n        .window-container::before {\r\n            content: '';\r\n            position: absolute;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            bottom: 0;\r\n            \/*background: *\/\r\n            \/*    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.03) 1px, transparent 1px),*\/\r\n            \/*    radial-gradient(circle at 60% 70%, rgba(255, 255, 255, 0.02) 1px, transparent 1px),*\/\r\n            \/*    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.025) 1px, transparent 1px),*\/\r\n            \/*    radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.02) 1px, transparent 1px),*\/\r\n            \/*    linear-gradient(45deg, *\/\r\n            \/*        rgba(255, 255, 255, 0.01) 0%,*\/\r\n            \/*        rgba(255, 255, 255, 0.03) 50%,*\/\r\n            \/*        rgba(255, 255, 255, 0.01) 100%);*\/\r\n            \/*backdrop-filter: blur(0.5px) saturate(1.1);*\/\r\n            \/*pointer-events: none;*\/\r\n        }\r\n\r\n        .window-container::after {\r\n            content: '';\r\n            position: absolute;\r\n            top: 0;\r\n            left: 0;\r\n            right: 0;\r\n            bottom: 0;\r\n            \/*background: *\/\r\n            \/*    repeating-linear-gradient(*\/\r\n            \/*        90deg,*\/\r\n            \/*        transparent 0px,*\/\r\n            \/*        rgba(255, 255, 255, 0.005) 1px,*\/\r\n            \/*        transparent 2px*\/\r\n            \/*    ),*\/\r\n            \/*    repeating-linear-gradient(*\/\r\n            \/*        0deg,*\/\r\n            \/*        transparent 0px,*\/\r\n            \/*        rgba(255, 255, 255, 0.005) 1px,*\/\r\n            \/*        transparent 2px*\/\r\n            \/*    );*\/\r\n            pointer-events: none;\r\n        }\r\n\r\n        .raindrop {\r\n            position: absolute;\r\n            border-radius: 50% 50% 50% 50% \/ 60% 60% 40% 40%;\r\n            background: linear-gradient(135deg, \r\n                rgba(255, 255, 255, 0.4) 0%,\r\n                rgba(255, 255, 255, 0.15) 30%,\r\n                rgba(255, 255, 255, 0.08) 100%);\r\n            backdrop-filter: blur(2px) saturate(1.2);\r\n            box-shadow: \r\n                inset 0 1px 3px rgba(255, 255, 255, 0.5),\r\n                inset 0 -1px 2px rgba(0, 0, 0, 0.1),\r\n                0 2px 4px rgba(0, 0, 0, 0.15),\r\n                0 0 10px rgba(255, 255, 255, 0.1);\r\n            animation-timing-function: ease-in;\r\n            animation-fill-mode: forwards;\r\n            border: 1px solid rgba(255, 255, 255, 0.2);\r\n        }\r\n\r\n        .raindrop::before {\r\n            content: '';\r\n            position: absolute;\r\n            top: 8%;\r\n            left: 15%;\r\n            width: 35%;\r\n            height: 35%;\r\n            background: radial-gradient(ellipse at 30% 30%, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.3) 40%, transparent 70%);\r\n            border-radius: 50%;\r\n            filter: blur(0.5px);\r\n        }\r\n\r\n        .raindrop::after {\r\n            content: '';\r\n            position: absolute;\r\n            bottom: 15%;\r\n            right: 20%;\r\n            width: 25%;\r\n            height: 25%;\r\n            background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 60%);\r\n            border-radius: 50%;\r\n            filter: blur(0.3px);\r\n        }\r\n\r\n        @keyframes slide-down {\r\n            from {\r\n                transform: translateY(0) scaleY(1);\r\n                opacity: 0.8;\r\n            }\r\n            to {\r\n                transform: translateY(100vh) scaleY(1.2);\r\n                opacity: 0;\r\n            }\r\n        }\r\n\r\n        @keyframes fade-in {\r\n            from {\r\n                opacity: 0;\r\n                transform: scale(0.5);\r\n            }\r\n            to {\r\n                opacity: 0.8;\r\n                transform: scale(1);\r\n            }\r\n        }\r\n\r\n        .trail {\r\n            position: absolute;\r\n            width: 3px;\r\n            background: linear-gradient(to bottom, \r\n                rgba(255, 255, 255, 0.4) 0%,\r\n                rgba(255, 255, 255, 0.2) 30%,\r\n                rgba(255, 255, 255, 0.1) 70%,\r\n                transparent 100%);\r\n            border-radius: 2px;\r\n            animation: trail-fade 1.5s ease-out forwards;\r\n            box-shadow: 0 0 3px rgba(255, 255, 255, 0.2);\r\n        }\r\n\r\n        @keyframes trail-fade {\r\n            from {\r\n                opacity: 0.7;\r\n                height: 0;\r\n            }\r\n            50% {\r\n                opacity: 0.5;\r\n                height: 80px;\r\n            }\r\n            to {\r\n                opacity: 0;\r\n                height: 120px;\r\n            }\r\n        }\r\n\r\n        .info {\r\n            position: absolute;\r\n            bottom: 20px;\r\n            right: 20px;\r\n            color: rgba(255, 255, 255, 0.6);\r\n            font-size: 14px;\r\n            backdrop-filter: blur(10px);\r\n            background: rgba(0, 0, 0, 0.2);\r\n            padding: 10px 15px;\r\n            border-radius: 8px;\r\n            border: 1px solid rgba(255, 255, 255, 0.1);\r\n        }\r\n    <\/style>\r\n\r\n\r\n    <div class=\"window-container\" id=\"windowContainer\">\r\n\r\n    <\/div>\r\n\r\n    <script>\r\n        class RainDrop {\r\n            constructor(container) {\r\n                this.container = container;\r\n                this.element = this.createElement();\r\n                this.x = Math.random() * window.innerWidth;\r\n                this.y = -20;\r\n                this.size = Math.random() * 8 + 4; \/\/ 4-12px\r\n                this.speed = Math.random() * 3 + 2; \/\/ 2-5 seconds\r\n                this.opacity = Math.random() * 0.4 + 0.4; \/\/ 0.4-0.8\r\n                \r\n                this.init();\r\n            }\r\n\r\n            createElement() {\r\n                const drop = document.createElement('div');\r\n                drop.className = 'raindrop';\r\n                return drop;\r\n            }\r\n\r\n            init() {\r\n                this.element.style.left = this.x + 'px';\r\n                this.element.style.top = this.y + 'px';\r\n                this.element.style.width = this.size + 'px';\r\n                this.element.style.height = this.size * 1.5 + 'px';\r\n                this.element.style.opacity = this.opacity;\r\n                \r\n                \/\/ Random slight variations in shape\r\n                const borderRadius = `${50 + Math.random() * 10}% ${50 + Math.random() * 10}% ${40 + Math.random() * 20}% ${40 + Math.random() * 20}% \/ ${60 + Math.random() * 20}% ${60 + Math.random() * 20}% ${30 + Math.random() * 20}% ${30 + Math.random() * 20}%`;\r\n                this.element.style.borderRadius = borderRadius;\r\n\r\n                this.element.style.animation = `\r\n                    fade-in 0.3s ease-out,\r\n                    slide-down ${this.speed}s ${this.speed * 0.05}s ease-in forwards\r\n                `;\r\n\r\n                this.container.appendChild(this.element);\r\n\r\n                \/\/ Create trail less frequently to reduce DOM elements\r\n                if (Math.random() < 0.25) {\r\n                    this.createTrail();\r\n                }\r\n\r\n                \/\/ Clean up faster to free memory\r\n                setTimeout(() => {\r\n                    if (this.element.parentNode) {\r\n                        this.element.parentNode.removeChild(this.element);\r\n                    }\r\n                }, (this.speed + 0.2) * 1000);\r\n            }\r\n\r\n            createTrail() {\r\n                setTimeout(() => {\r\n                    const trail = document.createElement('div');\r\n                    trail.className = 'trail';\r\n                    trail.style.left = (this.x + this.size \/ 2) + 'px';\r\n                    trail.style.top = (this.y + this.size) + 'px';\r\n                    this.container.appendChild(trail);\r\n\r\n                    setTimeout(() => {\r\n                        if (trail.parentNode) {\r\n                            trail.parentNode.removeChild(trail);\r\n                        }\r\n                    }, 1200);\r\n                }, this.speed * 100);\r\n            }\r\n        }\r\n\r\n        class RainEffect {\r\n            constructor() {\r\n                this.container = document.getElementById('windowContainer');\r\n                this.raindrops = [];\r\n                this.isActive = true;\r\n                \r\n                this.start();\r\n                this.handleResize();\r\n            }\r\n\r\n            start() {\r\n                this.createRain();\r\n            }\r\n\r\n            createRain() {\r\n                if (!this.isActive) return;\r\n\r\n                \/\/ Moderate amount of drops - balanced for performance\r\n                const dropCount = Math.random() * 3 + 2; \/\/ 2-5 drops at once\r\n                \r\n                for (let i = 0; i < dropCount; i++) {\r\n                    setTimeout(() => {\r\n                        if (this.isActive) {\r\n                            new RainDrop(this.container);\r\n                        }\r\n                    }, i * 80);\r\n                }\r\n\r\n                \/\/ Reasonable intervals for smooth effect without overload\r\n                const nextInterval = Math.random() * 500 + 400; \/\/ 400-900ms\r\n                setTimeout(() => this.createRain(), nextInterval);\r\n            }\r\n\r\n            handleResize() {\r\n                window.addEventListener('resize', () => {\r\n                    \/\/ Clear existing drops on resize to prevent memory leaks\r\n                    this.clearAllDrops();\r\n                });\r\n            }\r\n\r\n            clearAllDrops() {\r\n                const drops = this.container.querySelectorAll('.raindrop, .trail');\r\n                drops.forEach(drop => {\r\n                    if (drop.parentNode) {\r\n                        drop.parentNode.removeChild(drop);\r\n                    }\r\n                });\r\n            }\r\n\r\n            stop() {\r\n                this.isActive = false;\r\n                \/\/ Clean up remaining elements when stopping\r\n                setTimeout(() => {\r\n                    this.clearAllDrops();\r\n                }, 1000);\r\n            }\r\n        }\r\n\r\n        \/\/ Start the rain effect when page loads\r\n        document.addEventListener('DOMContentLoaded', () => {\r\n            new RainEffect();\r\n        });\r\n\r\n        \/\/ Add click interaction to create instant drops\r\n        document.addEventListener('click', (e) => {\r\n            const container = document.getElementById('windowContainer');\r\n            const drop = new RainDrop(container);\r\n            drop.x = e.clientX - 5;\r\n            drop.y = e.clientY - 10;\r\n            drop.init();\r\n        });\r\n    <\/script>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"has_eae_slider elementor-element elementor-element-19fcb51 e-con-full e-flex e-con e-child\" data-id=\"19fcb51\" data-element_type=\"container\" data-settings=\"{&quot;position&quot;:&quot;absolute&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"has_eae_slider elementor-element elementor-element-d964a09 e-con-full e-flex e-con e-child\" data-id=\"d964a09\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"has_eae_slider elementor-element elementor-element-01fa9d7 e-con-full e-flex e-con e-child\" data-id=\"01fa9d7\" data-element_type=\"container\">\n\t\t<div class=\"has_eae_slider elementor-element elementor-element-9e09f41 e-con-full e-flex e-con e-child\" data-id=\"9e09f41\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-91707c7 elementor-widget__width-initial repeat-animation elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"91707c7\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;zoomIn&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h1 class=\"elementor-heading-title elementor-size-default\">We create sustainable agriculture for future generations using the best modern technologies.<\/h1>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"has_eae_slider elementor-element elementor-element-607ce26 e-con-full e-flex e-con e-child\" data-id=\"607ce26\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"has_eae_slider elementor-element elementor-element-7deafa3 e-con-full e-flex e-con e-child\" data-id=\"7deafa3\" data-element_type=\"container\" data-settings=\"{&quot;motion_fx_motion_fx_scrolling&quot;:&quot;yes&quot;,&quot;motion_fx_translateY_effect&quot;:&quot;yes&quot;,&quot;motion_fx_translateY_speed&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:6,&quot;sizes&quot;:[]},&quot;background_background&quot;:&quot;classic&quot;,&quot;motion_fx_translateY_affectedRange&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:{&quot;start&quot;:0,&quot;end&quot;:100}},&quot;motion_fx_devices&quot;:[&quot;desktop&quot;,&quot;tablet&quot;,&quot;mobile&quot;]}\">\n\t\t<div class=\"has_eae_slider elementor-element elementor-element-c0643b7 e-con-full e-flex e-con e-child\" data-id=\"c0643b7\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-4e9098b elementor-absolute repeat-animation elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"4e9098b\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;slideInLeft&quot;,&quot;_animation_delay&quot;:2000,&quot;_position&quot;:&quot;absolute&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Smart Agriculture\n<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-46937df elementor-widget__width-initial elementor-absolute premium-svg-animated-yes elementor-widget elementor-widget-premium-svg-drawer\" data-id=\"46937df\" data-element_type=\"widget\" data-settings=\"{&quot;scroll_action&quot;:&quot;automatic&quot;,&quot;frames&quot;:2,&quot;_position&quot;:&quot;absolute&quot;,&quot;animate_start_point&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:0,&quot;sizes&quot;:[]},&quot;animate_trigger&quot;:&quot;center&quot;,&quot;anim_rev&quot;:&quot;yes&quot;}\" data-widget_type=\"premium-svg-drawer.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\r\n\t\t\t<div class=\"premium-svg-draw elementor-invisible\">\r\n\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\t<svg version=\"1.1\" id=\"Layer_vv\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 1536.9 524.3\" style=\"enable-background:new 0 0 1536.9 524.3;\" xml:space=\"preserve\">\n<style type=\"text\/css\">\n\t.st0{fill:none;stroke:#231F20;stroke-miterlimit:10;}\n<\/style>\n<circle class=\"st0\" cx=\"99.7\" cy=\"424.6\" r=\"99.2\"\/>\n<line class=\"st0\" x1=\"177.9\" y1=\"362.2\" x2=\"533.1\" y2=\"0.4\"\/>\n<line class=\"st0\" x1=\"532.7\" y1=\"0.5\" x2=\"1536.9\" y2=\"0.5\"\/>\n<\/svg>\n\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t<\/div>\r\n\r\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-99df7bf elementor-absolute elementor-widget elementor-widget-html\" data-id=\"99df7bf\" data-element_type=\"widget\" data-settings=\"{&quot;_position&quot;:&quot;absolute&quot;}\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\r\n<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 100 100\" preserveAspectRatio=\"xMidYMid\" width=\"100\" height=\"100\" style=\"shape-rendering: auto; display: block; background: transparent;\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\"><g><circle stroke-width=\"7\" stroke=\"#00a751\" fill=\"none\" r=\"0\" cy=\"50\" cx=\"50\">\r\n  <animate begin=\"0s\" calcMode=\"spline\" keySplines=\"0 0.2 0.8 1\" keyTimes=\"0;1\" values=\"0;45\" dur=\"3.0303030303030303s\" repeatCount=\"indefinite\" attributeName=\"r\"><\/animate>\r\n  <animate begin=\"0s\" calcMode=\"spline\" keySplines=\"0.2 0 0.8 1\" keyTimes=\"0;1\" values=\"1;0\" dur=\"3.0303030303030303s\" repeatCount=\"indefinite\" attributeName=\"opacity\"><\/animate>\r\n<\/circle><circle stroke-width=\"7\" stroke=\"#f9f9f9\" fill=\"none\" r=\"0\" cy=\"50\" cx=\"50\">\r\n  <animate begin=\"-1.5151515151515151s\" calcMode=\"spline\" keySplines=\"0 0.2 0.8 1\" keyTimes=\"0;1\" values=\"0;45\" dur=\"3.0303030303030303s\" repeatCount=\"indefinite\" attributeName=\"r\"><\/animate>\r\n  <animate begin=\"-1.5151515151515151s\" calcMode=\"spline\" keySplines=\"0.2 0 0.8 1\" keyTimes=\"0;1\" values=\"1;0\" dur=\"3.0303030303030303s\" repeatCount=\"indefinite\" attributeName=\"opacity\"><\/animate>\r\n<\/circle><g><\/g><\/g><\/svg>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"has_eae_slider elementor-element elementor-element-c58e0db e-con-full e-flex e-con e-child\" data-id=\"c58e0db\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-c6cf28b animated-fast elementor-absolute repeat-animation elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"c6cf28b\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;slideInUp&quot;,&quot;_animation_delay&quot;:2000,&quot;_position&quot;:&quot;absolute&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Advanced Systems<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-33173ad elementor-widget__width-initial elementor-absolute premium-svg-animated-yes elementor-widget elementor-widget-premium-svg-drawer\" data-id=\"33173ad\" data-element_type=\"widget\" data-settings=\"{&quot;scroll_action&quot;:&quot;automatic&quot;,&quot;animate_trigger&quot;:&quot;custom&quot;,&quot;animate_offset&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:70,&quot;sizes&quot;:[]},&quot;frames&quot;:2,&quot;svg_fill&quot;:&quot;yes&quot;,&quot;_position&quot;:&quot;absolute&quot;,&quot;animate_start_point&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:0,&quot;sizes&quot;:[]},&quot;anim_rev&quot;:&quot;yes&quot;}\" data-widget_type=\"premium-svg-drawer.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\r\n\t\t\t<div class=\"premium-svg-draw elementor-invisible\">\r\n\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\t<svg version=\"1.1\" id=\"Layer_xx\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 1536.9 524.3\" style=\"enable-background:new 0 0 1536.9 524.3;\" xml:space=\"preserve\">\n<style type=\"text\/css\">\n\t.st0{fill:none;stroke:#231F20;stroke-miterlimit:10;}\n<\/style>\n<path class=\"st0\" d=\"M1338.5,424.6c0-54.8,44.4-99.2,99.2-99.2s99.2,44.4,99.2,99.2s-44.4,99.2-99.2,99.2S1338.5,479.4,1338.5,424.6\n\tz M1359.4,362.2L1004.3,0.4 M1004.7,0.5L0.5,0.5\"\/>\n<\/svg>\n\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t<\/div>\r\n\r\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-bfb6136 elementor-absolute elementor-widget elementor-widget-html\" data-id=\"bfb6136\" data-element_type=\"widget\" data-settings=\"{&quot;_position&quot;:&quot;absolute&quot;}\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\r\n<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 100 100\" preserveAspectRatio=\"xMidYMid\" width=\"100\" height=\"100\" style=\"shape-rendering: auto; display: block; background: transparent;\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\"><g><g transform=\"translate(50 50)\">\r\n<g>\r\n<animateTransform repeatCount=\"indefinite\" dur=\"0.819672131147541s\" keyTimes=\"0;1\" values=\"0;45\" type=\"rotate\" attributeName=\"transform\"><\/animateTransform><path fill=\"#00a751\" d=\"M39.62007067131506 -5.5 L49.62007067131506 -5.5 L49.62007067131506 5.5 L39.62007067131506 5.5 A40 40 0 0 1 31.904707939303137 24.12653334625112 L31.904707939303137 24.12653334625112 L38.97577575116861 31.197601158116594 L31.197601158116594 38.97577575116861 L24.12653334625112 31.904707939303137 A40 40 0 0 1 5.500000000000002 39.62007067131506 L5.500000000000002 39.62007067131506 L5.500000000000003 49.62007067131506 L-5.499999999999996 49.62007067131506 L-5.4999999999999964 39.62007067131506 A40 40 0 0 1 -24.12653334625112 31.904707939303144 L-24.12653334625112 31.904707939303144 L-31.197601158116594 38.97577575116862 L-38.97577575116861 31.197601158116598 L-31.904707939303137 24.126533346251122 A40 40 0 0 1 -39.62007067131506 5.5000000000000036 L-39.62007067131506 5.5000000000000036 L-49.62007067131506 5.500000000000004 L-49.62007067131506 -5.499999999999993 L-39.62007067131506 -5.499999999999994 A40 40 0 0 1 -31.904707939303144 -24.126533346251115 L-31.904707939303144 -24.126533346251115 L-38.97577575116862 -31.19760115811659 L-31.197601158116584 -38.97577575116863 L-24.126533346251108 -31.904707939303147 A40 40 0 0 1 -5.500000000000024 -39.62007067131506 L-5.500000000000024 -39.62007067131506 L-5.500000000000026 -49.62007067131506 L5.500000000000007 -49.62007067131506 L5.500000000000009 -39.62007067131506 A40 40 0 0 1 24.126533346251094 -31.904707939303158 L24.126533346251094 -31.904707939303158 L31.19760115811657 -38.975775751168634 L38.97577575116862 -31.19760115811659 L31.904707939303147 -24.126533346251115 A40 40 0 0 1 39.62007067131506 -5.500000000000026 M0 -30A30 30 0 1 0 0 30 A30 30 0 1 0 0 -30\"><\/path><\/g><\/g><g><\/g><\/g><!-- [ldio] generated by https:\/\/loading.io --><\/svg>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"has_eae_slider elementor-element elementor-element-608726e e-con-full e-flex e-con e-child\" data-id=\"608726e\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-7ad9ae0 elementor-widget__width-initial elementor-absolute premium-svg-animated-yes elementor-widget elementor-widget-premium-svg-drawer\" data-id=\"7ad9ae0\" data-element_type=\"widget\" data-settings=\"{&quot;scroll_action&quot;:&quot;automatic&quot;,&quot;frames&quot;:2,&quot;animate_trigger&quot;:&quot;custom&quot;,&quot;animate_offset&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:80,&quot;sizes&quot;:[]},&quot;_position&quot;:&quot;absolute&quot;,&quot;animate_start_point&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:0,&quot;sizes&quot;:[]},&quot;anim_rev&quot;:&quot;yes&quot;}\" data-widget_type=\"premium-svg-drawer.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\r\n\t\t\t<div class=\"premium-svg-draw elementor-invisible\">\r\n\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\t<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 1536.9 524.3\" style=\"enable-background:new 0 0 1536.9 524.3;\" xml:space=\"preserve\">\n<style type=\"text\/css\">\n\t.st0{fill:none;stroke:#231F20;stroke-miterlimit:10;}\n<\/style>\n<path class=\"st0\" d=\"M198.9,99.6c0,54.8-44.4,99.2-99.2,99.2S0.5,154.4,0.5,99.6c0-54.8,44.4-99.2,99.2-99.2S198.9,44.8,198.9,99.6z\n\t M177.9,161.9l355.1,361.8 M532.7,523.6h1004.2\"\/>\n<\/svg>\n\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t<\/div>\r\n\r\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-1c56524 animated-fast elementor-absolute repeat-animation elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"1c56524\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;slideInDown&quot;,&quot;_animation_delay&quot;:2000,&quot;_position&quot;:&quot;absolute&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Innovative Solutions\n\n\n\n\n\n\n<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-bac78f6 elementor-absolute elementor-widget elementor-widget-html\" data-id=\"bac78f6\" data-element_type=\"widget\" data-settings=\"{&quot;_position&quot;:&quot;absolute&quot;}\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 100 100\" preserveAspectRatio=\"xMidYMid\" width=\"100\" height=\"100\" style=\"shape-rendering: auto; display: block; background: rgba(210, 211, 212, 0);\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\"><g><circle stroke-linecap=\"round\" fill=\"none\" stroke-dasharray=\"70.68583470577035 70.68583470577035\" stroke=\"#00a751\" stroke-width=\"10\" r=\"45\" cy=\"50\" cx=\"50\">\r\n  <animateTransform values=\"0 50 50;360 50 50\" keyTimes=\"0;1\" dur=\"3s\" repeatCount=\"indefinite\" type=\"rotate\" attributeName=\"transform\"><\/animateTransform>#00a751\r\n<\/circle><g><\/g><\/g><\/svg>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"has_eae_slider elementor-element elementor-element-9abd9b4 e-con-full e-flex e-con e-child\" data-id=\"9abd9b4\" data-element_type=\"container\" data-settings=\"{&quot;position&quot;:&quot;absolute&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-bf694f6 animated-slow elementor-invisible elementor-widget elementor-widget-image\" data-id=\"bf694f6\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;slideInUp&quot;,&quot;_animation_delay&quot;:2000}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img fetchpriority=\"high\" decoding=\"async\" width=\"322\" height=\"1024\" src=\"https:\/\/inmanet.com.sa\/wp-content\/uploads\/2024\/11\/leaves-1-322x1024.webp\" class=\"attachment-large size-large wp-image-11735\" alt=\"\" srcset=\"https:\/\/inmanet.com.sa\/wp-content\/uploads\/2024\/11\/leaves-1-322x1024.webp 322w, https:\/\/inmanet.com.sa\/wp-content\/uploads\/2024\/11\/leaves-1-94x300.webp 94w, https:\/\/inmanet.com.sa\/wp-content\/uploads\/2024\/11\/leaves-1-scaled.webp 804w\" sizes=\"(max-width: 322px) 100vw, 322px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"has_eae_slider elementor-element elementor-element-285aaeb e-con-full e-flex e-con e-parent\" data-id=\"285aaeb\" data-element_type=\"container\" id=\"first-home\">\n\t\t<div class=\"has_eae_slider elementor-element elementor-element-2b2b34a e-con-full e-flex e-con e-child\" data-id=\"2b2b34a\" data-element_type=\"container\">\n\t\t<div class=\"has_eae_slider elementor-element elementor-element-ad22c46 e-con-full e-flex e-con e-child\" data-id=\"ad22c46\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"has_eae_slider elementor-element elementor-element-a9eedf4 e-con-full e-flex elementor-invisible e-con e-child\" data-id=\"a9eedf4\" data-element_type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;slideInUp&quot;}\">\n\t\t<div class=\"has_eae_slider elementor-element elementor-element-67e8b51 e-con-full e-flex e-con e-child\" data-id=\"67e8b51\" data-element_type=\"container\">\n\t\t<div class=\"has_eae_slider elementor-element elementor-element-a0462be e-con-full e-flex e-con e-child\" data-id=\"a0462be\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-8575f7e premium-svg-animated-yes elementor-widget elementor-widget-premium-svg-drawer\" data-id=\"8575f7e\" data-element_type=\"widget\" data-settings=\"{&quot;scroll_action&quot;:&quot;automatic&quot;,&quot;animate_start_point&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:0,&quot;sizes&quot;:[]},&quot;frames&quot;:5,&quot;animate_trigger&quot;:&quot;center&quot;,&quot;anim_rev&quot;:&quot;yes&quot;}\" data-widget_type=\"premium-svg-drawer.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\r\n\t\t\t<div class=\"premium-svg-draw elementor-invisible\">\r\n\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\t\n<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Generator: Adobe Illustrator 27.3.1, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->\n<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 1382.8 1150.7\" style=\"enable-background:new 0 0 1382.8 1150.7;\" xml:space=\"preserve\">\n<style type=\"text\/css\">\n\t.st0{fill:none;stroke:#231F20;stroke-width:4;stroke-miterlimit:10;}\n<\/style>\n<path class=\"st0\" d=\"M318.4,1c-3.3,0-6.6,0.9-9.9,2.1c-11.8,4.1-23.5,8.6-35.5,11.8c-18.6,4.8-37.6,8.5-56.3,13\n\tc-14.8,3.6-29.5,7.7-44.2,11.6c-1.7,0.5-3.3,1.5-5.3,2.4c1.6,2.8,2.6,5.2,4,7.2c11.7,16.7,24.2,32.7,39.8,46.1\n\tc3.2,2.8,6.4,5.6,9.2,8.8c5.3,6.2,4.6,11.2-2.7,14.8c-9.9,4.9-16.8,12-19.4,22.9c-1.1,5-4.5,7.5-9.4,8.1c-8.4,1-16.8,2-25.2,2.7\n\tc-13.1,1.1-24.9,4-29.1,18.8c-0.1,0.2-0.2,0.4-0.3,0.6c-1.8,4-4.7,6.8-8.5,9.2c-5.8,3.6-11.5,7.2-16.8,11.4\n\tc-3.6,2.9-7.2,4.5-11.2,4.5c-1.8,0-3.7-0.3-5.8-1c-18.2-5.9-37.5-6.5-56.1-10.6c-0.7-0.2-1.4-0.3-2.1-0.3c-2.3,0-4,1.1-5,3.8\n\tc-2,5.6-4.1,11.1-5.9,16.7c-1.6,5-2.5,10.3-4.2,15.3c-1.4,4.1-2.6,8-2.4,12.3c0.4,6.3-1.2,12.3-4.1,17.7c-2.3,4.3-5.1,8.3-7.7,12.4\n\tc-2.1,3.3-4.1,6.6-1.9,11.5c1.1-0.5,1.3-1.8,2-2.4c1.6-1.4,3-2.1,4.3-2.1c1.1,0,2.3,0.6,3.5,1.9c2.9,3,6.1,3.7,9.6,3.7\n\tc1.5,0,3-0.1,4.6-0.3c2.3-0.2,4.5-0.7,6.8-0.7c0.3,0,0.5,0,0.8,0c2.4,0.1,5.2,1.5,4.5,4.2c-1,3.9,1.2,5.5,3.7,7.2\n\tc6.3,4.5,6.4,12.9,11.5,18.3c0.3,0.4,0.1,1.2,0.2,1.8c0.6,2.2,1.2,4.4,1.8,6.6c0.4,1.6,1.2,3.2,1.2,4.9c0.2,8.1,4.7,13.9,10.6,18.6\n\tc3.4,2.7,5.8,5.7,5.6,10.1c-0.2,5.2,2.1,8.8,5.8,12.1c5,4.5,8.5,9.7,9.8,16.6c0.6,3.1,3.1,5.8,4.9,8.7c2.6,4.3,5.4,8.5,7.9,12.9\n\tc3.7,6.6,7.1,13.4,10.7,20.1c0.8,1.5,1.7,3,2,4.6c1,4.6,2.9,8,7.8,9.9c4.1,1.6,4.8,5.7,2.3,9.5c-0.7,1-1.5,1.9-2.4,3\n\tc0.6,1.5,1.2,2.9,1.7,4.3c0.9,2.9,2.2,5.2,5.8,5.2c0.1,0,0.2,0,0.3,0c0.1,0,0.1,0,0.2,0c2.5,0,3.8,1.9,4.9,4.1\n\tc0.9,1.8,2.4,3.4,3.6,5c1.3,1.9,3.4,3.6,3.8,5.7c1.2,6.3,3.2,12.2,6.3,17.8c1.6,2.9,3.2,5.9,5,8.7c1,1.6,2.5,2.9,3.5,4.5\n\tc5.1,7.9,3.5,15.3-4.3,20.7c-0.5,0.3-0.8,0.9-1.5,1.7c3.3,3.2,5.4,6.8,5.3,11.6c0,1.4,1.6,2.9,2.4,4.3c3.3,5.4,6.7,10.8,10,16.2\n\tc1.2,2,2.3,4,3.6,6c1.7,2.5,3.7,4,6.5,4c0.7,0,1.4-0.1,2.1-0.3c0.7-0.2,1.4-0.2,2-0.2c2.7,0,4.8,1.5,6.6,4.1\n\tc1.3,1.9,3.6,3.7,5.8,4.5c9.9,3.3,17.1,10,23.5,17.8c3.1,3.8,6.4,7.4,9.3,11.2c1.4,1.8,2.6,3.9,3.1,6.1c0.9,3.6,2.5,6.7,5,9.4\n\tc4.3,4.7,6.9,10.1,7.1,16.6c0.1,4,1.4,7.4,4,10.5c2.2,2.5,3.4,5.4,2.9,8.8c-0.7,4.3,1.3,7.3,4.4,9.9c1.2,1.1,2.5,2.2,3.4,3.6\n\tc2.3,3.2,4.6,6.5,6.8,9.8c1.1,1.7,3.4,3.9,3,5.3c-1.4,5-0.5,10.1-1.5,14.9c-0.7,3.5-1.3,6.4-0.2,9.7c1.3,3.7,0.7,6.9-2.3,9.9\n\tc-1.3,1.3-2,3.7-2,5.6c0.1,3.5,0.2,6.7-2.8,9.3c-0.7,0.6-0.8,1.9-1.2,2.8c-1,2.4-2.1,4.7-3.5,7.8c1.7,2.3,4,5.4,6.3,8.4\n\tc2.4,3.1,4.2,6.6,3.2,10.6c-1.1,4.1,0.3,7.3,2.7,10.6c3.2,4.4,2.6,6.3-1.7,9.4c-1,0.7-1.8,1.5-3,2.5c1.9,2.3,3.9,4,4.9,6.2\n\tc0.9,2.1,0.7,4.8,1,7.2c0,0.4,0.3,0.8,0.6,1.1c2.8,3.2,5.6,6.4,5.7,11c0,0.6,0.9,1.6,1.6,1.8c6.8,2.5,8.4,9.4,10.7,14.7\n\tc4.9,10.8,11,20.5,19.8,28.4c2.4,2.2,5.6,4.6,8.7,4.9c7.1,0.8,13.3,2.9,18.5,7.8c1.4,1.3,3.3,2.1,4.3,3.6c2.1,3.4,5.1,5.6,8.5,7.4\n\tc4.4,2.3,7.6,5.7,10.6,9.7c3.3,4.5,5.7,10.3,12.4,11.8c3.2,0.7,5.3,4,5.2,7.3c-0.1,4.9,2.1,7.9,5.9,10.4c2.1,1.4,3.1,3.7,2.1,6.1\n\tc-1.4,3.4,0.5,5.5,2.3,8c1.6,2.1,3.1,4.7,3.6,7.2c0.6,3.4,1.8,5.8,4.6,7.9c3.4,2.5,5.6,5.6,3.9,10.4c-1.1,3.2,0.1,6.1,2.2,8.8\n\tc4,5.1,3.9,5.2,0,10c3.1,7.6,1.3,9.3,9.9,13.9c2.7,1.4,3.7,4.1,3.8,7c0.1,4.4,1,8.3,4.5,11.4c1.1,1,1.9,3,2,4.5\n\tc0.2,6.1,4.2,10.6,7.1,15.2c5,7.7,10.7,15.1,19.6,19.2c1.9,0.8,3.4,2.6,4.9,4c5.1,5.1,10,10.4,15.2,15.4c4.2,4,6.7,8.5,6.6,14.5\n\tc-0.1,5.8,0.5,11.5,0.9,17.8c2.2-2.1,3.4-3.2,4.3-3.2c1,0,1.7,1,2.8,3.1c0.5,0.9,0.9,1.9,1.6,2.7c3.2,4,3.2,4-0.8,7.2\n\tc-0.8,0.6-1.5,1.4-2.9,2.7c1.8,1.7,3.2,3.5,5,4.6c1.6,1,3.6,1.1,5.4,1.7c6.7,2.2,9.2,5.5,8.1,12.3c-0.8,4.8,0.4,8.7,3,12.5\n\tc1.7,2.6,2.9,5.4,4.5,8.4c6.1-4,11-8.7,14.9-14.7c1.9-2.9,4.3-5.8,7.1-7.9c4.9-3.8,5.8-6.3,3.3-11.9c-0.4-1-1-1.9-1.5-2.8\n\tc-2-3.4-2.8-6.6,0.2-9.9c0.7-0.8,1.3-2.5,1-3.5c-1.6-6.2,0.6-10.8,5.9-14c-5.6-6.1-4.9-10.2,2.3-13.8c0.6-0.3,1.1-0.5,1.7-0.8\n\tc5.2-2.1,10.3-3.5,15.2-3.5c5.6,0,11,1.8,16.1,6.7c0.6,0.6,1.4,0.9,2.1,1.4c4.2,2.7,8.7,4.3,13.5,4.3c0.9,0,1.9-0.1,2.8-0.2\n\tc6.1-0.8,12.1-2,18.1-3.2c3-0.6,6-1.3,8.9-1.3c1.8,0,3.6,0.3,5.4,0.9c2.8,1,5.7,1.4,8.5,1.4c2.4,0,4.8-0.2,7.2-0.5\n\tc5.7-0.6,11.5-1.5,17.2-1.5c1,0,2,0,3,0.1c7.7,0.5,15.8,1.5,23,4.2c10,3.8,20,6.8,30.6,7.8c8.7,0.9,17.3,1.4,26,1.4\n\tc8.5,0,16.9-0.5,25.4-1.5c2-0.2,3.9-0.4,5.7-0.4c11.2,0,20,4.6,26.5,15.3c2.7,4.5,5.5,6.5,8.9,6.5c2.6,0,5.5-1.1,8.9-3.2\n\tc3.6-2.2,7.5-3.9,11.4-5.3c3-1.1,5.2-2.8,6.6-5.6c1.3-2.9,2.3-5.9,3.7-8.8c2.3-4.7,4.4-9.7,7.5-13.9c8.8-12.4,17.8-24.8,27.2-36.8\n\tc10.5-13.3,24-22.7,40.2-27.6c6.9-2.1,13.7-4.3,20-7.9c8.3-4.7,17-8.7,26.6-10.2c25.1-4,50.1-8.5,75.3-11\n\tc13.9-1.4,27.8-2.7,41.7-4.6c15.1-2,30.3-3.7,45.1-7.1c25.4-5.9,49.9-14.8,73.4-26.4c22.2-10.9,44.4-22,67.7-30.5\n\tc24.2-8.9,48.3-18.2,72.5-27.5c8.6-3.3,14.3-8.8,15.6-18.9c1.5-12.2,3.7-24.4,7.1-36.1c8.2-28.9,17-57.7,26.2-86.3\n\tc2.6-8.1,2-14.7-3.4-21.3c-7.9-9.7-15.4-19.7-23.2-29.5c-1.4-1.8-3.2-3.2-5.2-5.2c-2,2.6-4.4,3.2-7,3.2c-0.8,0-1.6-0.1-2.5-0.1\n\tc-8.9-0.7-17.8-1.2-26.6-2c-45-3.6-90-7.3-135-10.8c-4.4-0.3-7.3-1.8-10-5.3c-18.2-22.9-36.4-45.8-56.6-67c-1.6-1.7-3-3.6-4.6-5.3\n\tc-3-3.3-4.3-7.2-4.1-11.7c0.2-3.5,0-7,0-11.9c-1.9,3-3,4.8-4.2,6.7c-2.4-0.8-4.5-2-6.7-2c-0.9,0-1.8,0.2-2.7,0.6\n\tc-0.5,0.3-1.4,0.4-2.2,0.4c-1,0-2-0.2-2.3-0.7c-0.9-1.3-1.2-3.8-0.5-5.2c1.2-2.6,3.2-4.9,4.9-7.3c1.7-2.4,4-4.6,3.4-9.1\n\tc-1.9,2.2-2.9,3.9-4.5,4.9c-0.8,0.5-2.2,1-3.3,1c-0.5,0-0.9-0.1-1.1-0.3c-1.9-1.4-3.8-1.9-5.7-1.9c-1.3,0-2.6,0.2-4,0.5\n\tc-1.1,0.2-2.1,0.3-3.1,0.3c-3.9,0-7.3-1.6-10.4-4.2c-6.2-5.3-11.5-11.2-14.3-19.1c-1.6-4.4-3.8-8.7-8.1-11.1c-4-2.2-5.6-5.5-6-9.8\n\tc-0.2-2.3-0.8-4.6-0.9-6.9c-0.2-6.4-2.2-10.9-9.2-13.4c-5.3-1.9-10-6.2-9.6-12.8c0.2-3.3-0.8-5.6-2.4-8.2c-2.1-3.6-4.3-7.3-5.5-11.3\n\tc-1-3.2-2-5.7-4.7-7.8c-4.4-3.5-4.8-8-1.6-13c1.2,0.8,2.5,1.4,3.5,2.3c1.1,0.9,1.9,2,2.9,3.1c2.4-3.2,1.8-3.3,3.9-11\n\tc1.7-6.4-1.1-11.9-1.4-17.9c-2.2-0.1-3.9-0.1-5.6-0.4c-4.9-0.8-8.3-5.2-7.6-10c0.2-1.3,1.1-2.8,2.2-3.5c0.1-0.1,0.2-0.1,0.3-0.1\n\tc0.7,0,2,0.8,2.9,1.3c1,0.6,1.8,1.5,3.3,2.7c0-1.6,0.3-2.5,0-3.1c-2.9-4.6-6.6-9.2-11.9-9.8c-7.7-1-12.6-5.4-17.6-10.4\n\tc-2.9-2.8-4.8-5.8-4.7-10c0-1.6-0.6-3.1-1-5.1c-2.2,0.7-3.7,1.4-5.3,1.6c-0.6,0.1-1.4,0.2-2.1,0.2c-0.8,0-1.6-0.1-2.1-0.5\n\tc-2.7-1.9-6.4-3.9-7.1-6.6c-1.2-4.7-4.3-6.3-7.8-8.2c-2.4-1.3-2.3-3.2-0.1-5.2c1.1-1,2.4-1.9,3.6-2.8c-0.1-0.5-0.1-0.9-0.2-1.4\n\tc-2.8-0.5-5.6-1.4-8.4-1.6c-3.6-0.2-7.1,0.3-9.7-3.3c-0.7-1-3.2-0.7-4.7-1.3c-1.2-0.5-2.9-1.6-3.1-2.5c-0.4-2.8-0.7-6,0.2-8.6\n\tc1-2.8,0.1-4.4-1.5-6.2c-2.3-2.6-4.4-5.3-4-9c0.3-3.2-1.3-5-3.8-6.6c-2.4-1.6-5.8-3.6-6.2-5.9c-1-6.2-4.5-10.5-7.9-15.3\n\tc-1.4-2-1.7-4.7-2.4-7.2c-0.5-1.6-0.8-3.2-1.3-5.2c-3.1-0.1-6-0.4-8.8-0.4c0,0-0.1,0-0.1,0c-11.9,0-23.7,0-35.6,0.3\n\tc-0.2,0-0.3,0-0.5,0c-3.6,0-6.1-1.1-7.4-4.7c-1.5-4.2-3.2-8.3-4.9-12.4c-2.3-5.2-4.6-10.4-7.1-15.5c-2-4-5.3-5.4-9.8-5.6\n\tc-27.5-1-55-2.6-82.4-5.8c-5.8-0.7-11.5-1.1-17.3-1.1c-5.6,0-11.2,0.4-16.9,1.4c-2.2,0.4-4.4,0.6-6.7,0.6c-2.4,0-4.9-0.2-7.2-0.5\n\tc-11.5-1.6-23-3.7-34.5-5.5c-2.7-0.4-4.5-1.7-6.3-3.7c-3.4-3.7-6.9-7.4-10.9-10.5c-19.2-15-38.5-30-55.5-47.6\n\tc-27.1-28.1-56.8-53.5-85.4-80c-2.7-2.5-6.3-4.3-9.6-6.1c-11-5.8-22.5-11-33.2-17.4c-17.1-10.3-33.1-22.2-48.3-35.2\n\tc-5.6-4.8-11.7-8.5-18.8-10.2c-21-5-42-9.9-63.1-14.6C320.9,1.1,319.7,1,318.4,1L318.4,1z\"\/>\n<\/svg>\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t<\/div>\r\n\r\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"has_eae_slider elementor-element elementor-element-ef0484a e-con-full e-flex e-con e-child\" data-id=\"ef0484a\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-60afaac elementor-widget__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"60afaac\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>We contribute to shaping and implementing the roadmap for sustainable food and water security in the Kingdom.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-7d3c256 elementor-widget elementor-widget-text-editor\" data-id=\"7d3c256\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>Inma collaborates with a wide range of professional and scientific sectors to meet the needs of tomorrow. Our extensive experience enables us to innovate solutions that enhance the quality and productivity of crops. With our pioneering expertise in localizing technology and our rich repository of local data, we can turn ideas into achievements. Driven by our steadfast commitment to protecting the Kingdom&#8217;s natural resources, we strive to minimize any potential impacts of our products. Inma&#8217;s operations and agricultural methods embody the sustainability of natural and environmental resources.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-d9b61f8 elementor-align-right repeat-animation elementor-invisible elementor-widget elementor-widget-button\" data-id=\"d9b61f8\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;slideInLeft&quot;}\" data-widget_type=\"button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-button-wrapper\">\n\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm elementor-animation-float\" href=\"https:\/\/inmanet.com.sa\/en\/about\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Learn More<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"has_eae_slider elementor-element elementor-element-3ff6a64 e-con-full e-flex e-con e-child\" data-id=\"3ff6a64\" data-element_type=\"container\">\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"has_eae_slider elementor-element elementor-element-1a377d6 e-con-full e-flex e-con e-parent\" data-id=\"1a377d6\" data-element_type=\"container\" id=\"two-home\" data-settings=\"{&quot;background_background&quot;:&quot;slideshow&quot;,&quot;background_slideshow_gallery&quot;:[{&quot;id&quot;:12826,&quot;url&quot;:&quot;https:\\\/\\\/inmanet.com.sa\\\/wp-content\\\/uploads\\\/2025\\\/03\\\/inma-home-bg-02.webp&quot;},{&quot;id&quot;:12828,&quot;url&quot;:&quot;https:\\\/\\\/inmanet.com.sa\\\/wp-content\\\/uploads\\\/2025\\\/03\\\/inma-home-bg-03.webp&quot;},{&quot;id&quot;:12830,&quot;url&quot;:&quot;https:\\\/\\\/inmanet.com.sa\\\/wp-content\\\/uploads\\\/2025\\\/03\\\/inma-home-bg-01.webp&quot;}],&quot;background_slideshow_slide_duration&quot;:3000,&quot;background_slideshow_transition_duration&quot;:1000,&quot;background_slideshow_ken_burns&quot;:&quot;yes&quot;,&quot;background_slideshow_loop&quot;:&quot;yes&quot;,&quot;background_slideshow_slide_transition&quot;:&quot;fade&quot;,&quot;background_slideshow_ken_burns_zoom_direction&quot;:&quot;in&quot;}\">\n\t\t<div class=\"has_eae_slider elementor-element elementor-element-b25c1d6 e-con-full e-flex e-con e-child\" data-id=\"b25c1d6\" data-element_type=\"container\" data-settings=\"{&quot;position&quot;:&quot;absolute&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-aaab597 elementor-invisible elementor-widget elementor-widget-image\" data-id=\"aaab597\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;slideInDown&quot;,&quot;_animation_delay&quot;:500}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"241\" height=\"1024\" src=\"https:\/\/inmanet.com.sa\/wp-content\/uploads\/2025\/03\/leaves03-1-241x1024-en.webp\" class=\"attachment-large size-large wp-image-13651\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"has_eae_slider elementor-element elementor-element-ee07a83 e-con-full e-flex e-con e-child\" data-id=\"ee07a83\" data-element_type=\"container\">\n\t\t<div class=\"has_eae_slider elementor-element elementor-element-746d8dc e-con-full e-flex e-con e-child\" data-id=\"746d8dc\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"has_eae_slider elementor-element elementor-element-b631ec7 e-con-full e-flex e-con e-child\" data-id=\"b631ec7\" data-element_type=\"container\">\n\t\t<div class=\"has_eae_slider elementor-element elementor-element-7029805 e-con-full e-flex e-con e-child\" data-id=\"7029805\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5d5f0ff repeat-animation elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"5d5f0ff\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;slideInUp&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"elementor-heading-title elementor-size-default\">At Inma, we cultivate agriculture by utilizing the best modern applications and technologies to produce sustainable solutions, achieving our strategic vision.<\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"has_eae_slider elementor-element elementor-element-2917d2c e-con-full e-flex e-con e-parent\" data-id=\"2917d2c\" data-element_type=\"container\" id=\"home-five\">\n\t\t<div class=\"has_eae_slider elementor-element elementor-element-d81b8d4 e-con-full e-flex e-con e-child\" data-id=\"d81b8d4\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5a093f5 repeat-animation elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"5a093f5\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;slideInRight&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/inmanet.com.sa\/news\/\">News<\/a><\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"has_eae_slider elementor-element elementor-element-848dc40 e-con-full animated-slow e-flex elementor-invisible e-con e-child\" data-id=\"848dc40\" data-element_type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;zoomIn&quot;}\">\n\t\t<div class=\"has_eae_slider elementor-element elementor-element-c71255d e-con-full e-flex e-con e-child\" data-id=\"c71255d\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-637d2f4 elementor-pagination-position-inside elementor-pagination-type-bullets elementor-widget elementor-widget-loop-carousel\" data-id=\"637d2f4\" data-element_type=\"widget\" data-settings=\"{&quot;template_id&quot;:11975,&quot;image_spacing_custom&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:60,&quot;sizes&quot;:[]},&quot;autoplay_speed&quot;:3000,&quot;slides_to_show_tablet&quot;:&quot;1&quot;,&quot;_skin&quot;:&quot;post&quot;,&quot;slides_to_show&quot;:&quot;3&quot;,&quot;slides_to_show_mobile&quot;:&quot;1&quot;,&quot;slides_to_scroll&quot;:&quot;1&quot;,&quot;edit_handle_selector&quot;:&quot;.elementor-widget-container&quot;,&quot;autoplay&quot;:&quot;yes&quot;,&quot;pause_on_hover&quot;:&quot;yes&quot;,&quot;pause_on_interaction&quot;:&quot;yes&quot;,&quot;infinite&quot;:&quot;yes&quot;,&quot;speed&quot;:500,&quot;offset_sides&quot;:&quot;none&quot;,&quot;pagination&quot;:&quot;bullets&quot;,&quot;image_spacing_custom_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;image_spacing_custom_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"loop-carousel.post\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"swiper elementor-loop-container elementor-grid\" dir=\"ltr\">\n\t\t\t\t<div class=\"swiper-wrapper\" aria-live=\"off\">\n\t\t<style id=\"loop-11975\">.elementor-widget-container .premium-global-badge-{{ID}} .premium-badge-container{background-color:var( --e-global-color-primary );}.elementor-widget-container .premium-global-cursor-{{ID}}{color:var( --e-global-color-primary );fill:var( --e-global-color-primary );}.elementor-widget-container.premium-cursor-ftext .premium-global-cursor-{{ID}} .premium-cursor-follow-text{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-size:var( --e-global-typography-primary-font-size );font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-container .premium-global-badge-{{ID}} .premium-badge-text{color:var( --e-global-color-secondary );}.elementor-widget-container .premium-global-badge-{{ID}} .premium-badge-icon{color:var( --e-global-color-secondary );fill:var( --e-global-color-secondary );}.elementor-11975 .elementor-element.elementor-element-f58f5c1{--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;--align-items:stretch;}.elementor-11975 .elementor-element.elementor-element-dde06f9{--display:flex;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--overflow:hidden;--border-radius:40px 40px 40px 40px;--padding-top:0px;--padding-bottom:40px;--padding-left:0px;--padding-right:0px;}.elementor-11975 .elementor-element.elementor-element-dde06f9:not(.elementor-motion-effects-element-type-background), .elementor-11975 .elementor-element.elementor-element-dde06f9 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-22939ae );}.elementor-widget-image .premium-global-badge-{{ID}} .premium-badge-container{background-color:var( --e-global-color-primary );}.elementor-widget-image .premium-global-cursor-{{ID}}{color:var( --e-global-color-primary );fill:var( --e-global-color-primary );}.elementor-widget-image.premium-cursor-ftext .premium-global-cursor-{{ID}} .premium-cursor-follow-text{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-size:var( --e-global-typography-primary-font-size );font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-image .premium-global-badge-{{ID}} .premium-badge-text{color:var( --e-global-color-secondary );}.elementor-widget-image .premium-global-badge-{{ID}} .premium-badge-icon{color:var( --e-global-color-secondary );fill:var( --e-global-color-secondary );}.elementor-widget-image .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-size:var( --e-global-typography-text-font-size );font-weight:var( --e-global-typography-text-font-weight );}.elementor-11975 .elementor-element.elementor-element-8c367f5 img{width:100%;max-width:100%;height:200px;object-fit:cover;object-position:center center;}.elementor-widget-wts-modal-popup .premium-global-badge-{{ID}} .premium-badge-container{background-color:var( --e-global-color-primary );}.elementor-widget-wts-modal-popup .premium-global-cursor-{{ID}}{color:var( --e-global-color-primary );fill:var( --e-global-color-primary );}.elementor-widget-wts-modal-popup.premium-cursor-ftext .premium-global-cursor-{{ID}} .premium-cursor-follow-text{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-size:var( --e-global-typography-primary-font-size );font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-wts-modal-popup .premium-global-badge-{{ID}} .premium-badge-text{color:var( --e-global-color-secondary );}.elementor-widget-wts-modal-popup .premium-global-badge-{{ID}} .premium-badge-icon{color:var( --e-global-color-secondary );fill:var( --e-global-color-secondary );}.eae-wrap-{{ID}} .mfp-title{color:var( --e-global-color-primary );font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-size:var( --e-global-typography-primary-font-size );font-weight:var( --e-global-typography-primary-font-weight );}.eae-wrap-{{ID}} .eae-modal-content{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-size:var( --e-global-typography-text-font-size );font-weight:var( --e-global-typography-text-font-weight );}.elementor-widget-wts-modal-popup .eae-popup-link{font-family:var( --e-global-typography-accent-font-family ), Sans-serif;font-size:var( --e-global-typography-accent-font-size );font-weight:var( --e-global-typography-accent-font-weight );background-color:var( --e-global-color-accent );}body .eae-popup.mfp-bg.eae-wrap-0a0045c{background-color:rgba(0,0,0,0.75);}.elementor-11975 .elementor-element.elementor-element-0a0045c .icon-position-before i , .elementor-11975 .elementor-element.elementor-element-0a0045c .icon-position-before svg{margin-right:6px;}.elementor-11975 .elementor-element.elementor-element-0a0045c .icon-position-after i , .elementor-11975 .elementor-element.elementor-element-0a0045c .icon-position-after svg{margin-left:6px;}.eae-wrap-0a0045c .mfp-title{color:var( --e-global-color-text );font-family:\"Helvetica Neue LT Arabic\", Sans-serif;font-size:18px;font-weight:normal;}.elementor-11975 .elementor-element.elementor-element-0a0045c .eae-popup-link{font-size:18px;font-weight:500;line-height:22px;color:var( --e-global-color-text );background-color:#FFFFFF00;padding:5px 20px 0px 20px;}.elementor-11975 .elementor-element.elementor-element-0a0045c .eae-popup-link svg{fill:var( --e-global-color-text );}.elementor-11975 .elementor-element.elementor-element-0a0045c .eae-popup-link:hover{color:var( --e-global-color-secondary );background-color:#FFFFFF00;}.eae-wrap-0a0045c .eae-close{font-size:28px;height:28px;width:28px;}.eae-wrap-0a0045c svg.eae-close{width:28px;height:28px;}.eae-wrap-0a0045c.eae-popup .eae-close{color:var( --e-global-color-accent );}.eae-wrap-0a0045c.eae-popup svg{background-color:var( --e-global-color-accent );}body:not(.rtl) .elementor-11975 .elementor-element.elementor-element-ba21b0d{right:0px;}body.rtl .elementor-11975 .elementor-element.elementor-element-ba21b0d{left:0px;}.elementor-11975 .elementor-element.elementor-element-ba21b0d{bottom:0px;}body .eae-popup.mfp-bg.eae-wrap-ba21b0d{background-color:rgba(0,0,0,0.75);}.elementor-11975 .elementor-element.elementor-element-ba21b0d .icon-position-before i , .elementor-11975 .elementor-element.elementor-element-ba21b0d .icon-position-before svg{margin-right:6px;}.elementor-11975 .elementor-element.elementor-element-ba21b0d .icon-position-after i , .elementor-11975 .elementor-element.elementor-element-ba21b0d .icon-position-after svg{margin-left:6px;}.eae-wrap-ba21b0d .mfp-title{color:var( --e-global-color-secondary );background-color:var( --e-global-color-secondary );font-size:14px;font-weight:normal;}.elementor-11975 .elementor-element.elementor-element-ba21b0d .eae-popup-link{font-family:\"Tajawal\", Sans-serif;font-size:14px;font-weight:400;color:#FFFFFF;background-color:var( --e-global-color-accent );border-radius:20px 0px 0px 0px;padding:15px 15px 15px 15px;}.elementor-11975 .elementor-element.elementor-element-ba21b0d .eae-popup-link svg{fill:#FFFFFF;}.elementor-11975 .elementor-element.elementor-element-ba21b0d .eae-popup-link:hover{color:#FFFFFF;background-color:var( --e-global-color-secondary );}.eae-wrap-ba21b0d .eae-close{font-size:24px;height:24px;width:24px;}.eae-wrap-ba21b0d svg.eae-close{width:24px;height:24px;}.eae-wrap-ba21b0d.eae-popup .eae-close{color:var( --e-global-color-accent );}.eae-wrap-ba21b0d.eae-popup svg{background-color:var( --e-global-color-accent );}@media(max-width:1200px){.elementor-widget-container.premium-cursor-ftext .premium-global-cursor-{{ID}} .premium-cursor-follow-text{font-size:var( --e-global-typography-primary-font-size );}.elementor-widget-image.premium-cursor-ftext .premium-global-cursor-{{ID}} .premium-cursor-follow-text{font-size:var( --e-global-typography-primary-font-size );}.elementor-widget-image .widget-image-caption{font-size:var( --e-global-typography-text-font-size );}.elementor-widget-wts-modal-popup.premium-cursor-ftext .premium-global-cursor-{{ID}} .premium-cursor-follow-text{font-size:var( --e-global-typography-primary-font-size );}.eae-wrap-{{ID}} .mfp-title{font-size:var( --e-global-typography-primary-font-size );}.eae-wrap-{{ID}} .eae-modal-content{font-size:var( --e-global-typography-text-font-size );}.elementor-widget-wts-modal-popup .eae-popup-link{font-size:var( --e-global-typography-accent-font-size );}.eae-wrap-0a0045c.eae-popup .mfp-inline-holder .mfp-content{width:80%;}}@media(max-width:800px){.elementor-widget-container.premium-cursor-ftext .premium-global-cursor-{{ID}} .premium-cursor-follow-text{font-size:var( --e-global-typography-primary-font-size );}.elementor-11975 .elementor-element.elementor-element-dde06f9{--gap:10px 10px;--row-gap:10px;--column-gap:10px;--border-radius:30px 30px 30px 30px;}.elementor-widget-image.premium-cursor-ftext .premium-global-cursor-{{ID}} .premium-cursor-follow-text{font-size:var( --e-global-typography-primary-font-size );}.elementor-widget-image .widget-image-caption{font-size:var( --e-global-typography-text-font-size );}.elementor-widget-wts-modal-popup.premium-cursor-ftext .premium-global-cursor-{{ID}} .premium-cursor-follow-text{font-size:var( --e-global-typography-primary-font-size );}.eae-wrap-{{ID}} .mfp-title{font-size:var( --e-global-typography-primary-font-size );}.eae-wrap-{{ID}} .eae-modal-content{font-size:var( --e-global-typography-text-font-size );}.elementor-widget-wts-modal-popup .eae-popup-link{font-size:var( --e-global-typography-accent-font-size );}.elementor-11975 .elementor-element.elementor-element-0a0045c > .elementor-widget-container{padding:0px 10px 0px 10px;}.eae-wrap-0a0045c.eae-popup .mfp-inline-holder .mfp-content{width:100%;}.eae-wrap-ba21b0d.eae-popup .mfp-inline-holder .mfp-content{width:100%;}}\/* Start custom CSS for container, class: .elementor-element-dde06f9 *\/.elementor-11975 .elementor-element.elementor-element-dde06f9 {\n    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;\n}\/* End custom CSS *\/<\/style>\t\t<div data-elementor-type=\"loop-item\" data-elementor-id=\"11975\" class=\"elementor elementor-11975 elementor-9896 swiper-slide e-loop-item e-loop-item-12504 post-12504 news type-news status-publish hentry\" data-elementor-post-type=\"elementor_library\" role=\"group\" aria-roledescription=\"slide\" data-custom-edit-handle=\"1\">\n\t\t\t<div class=\"has_eae_slider elementor-element elementor-element-f58f5c1 e-con-full e-flex e-con e-parent\" data-id=\"f58f5c1\" data-element_type=\"container\">\n\t\t<div class=\"has_eae_slider elementor-element elementor-element-dde06f9 e-con-full e-flex e-con e-child\" data-id=\"dde06f9\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-8c367f5 elementor-widget elementor-widget-image\" data-id=\"8c367f5\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/inmanet.com.sa\/wp-content\/uploads\/2024\/12\/strat-trans.webp\" title=\"\" alt=\"\" loading=\"lazy\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0a0045c eae-pop-btn-align-left eae-pop-btn-type-text elementor-widget elementor-widget-wts-modal-popup\" data-id=\"0a0045c\" data-element_type=\"widget\" data-widget_type=\"wts-modal-popup.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"eae-popup-wrapper eae-popup-eae-pupup-item-933951958\" data-id=\"eae-pupup-item-933951958\" data-preview-modal=\"\" data-close-button-type=\"icon\" data-close-btn=\"fas fa-times\" data-close-in-out=\"false\" data-effect=\"zoom-in\">\n\t\t\t<a class=\"eae-popup-link icon-position-before\"\n\t\t\tdata-id=\"eae-pupup-item-933951958\" data-ctrl-id=\"0a0045c\" href=\"#eae-pupup-item-933951958\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"eae-popup-btn-icon\">\n\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"eae-popup-btn-text\">\n\t\t\t\t\t\t\tStrategic Transformation\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t<\/div>\n\n\t\t<div id=\"eae-pupup-item-933951958\" class=\"eae-popup-eae-pupup-item-933951958 mfp-hide eae-popup-container\">\n\t\t\t<div class=\"eae-popup-content\">\n\t\t\t\t\t\t\t\t\t<div class=\"eae-modal-content\">\n\t\t\t\t\t\t\t\t<div data-elementor-type=\"section\" data-elementor-id=\"11974\" class=\"elementor elementor-11974 elementor-9904\" data-elementor-post-type=\"elementor_library\">\n\t\t\t<div class=\"has_eae_slider elementor-element elementor-element-f6761f5 e-flex e-con-boxed e-con e-parent\" data-id=\"f6761f5\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-13e063c elementor-widget elementor-widget-image\" data-id=\"13e063c\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/inmanet.com.sa\/wp-content\/uploads\/2024\/12\/strat-trans.webp\" title=\"\" alt=\"\" loading=\"lazy\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-7954f10 elementor-widget elementor-widget-text-editor\" data-id=\"7954f10\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-7954f10 elementor-widget elementor-widget-text-editor\" data-id=\"7954f10\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n<div class=\"elementor-widget-container\">\n<p>After 40 years since its establishment, the company transitioned from a limited liability company to a closed joint-stock company.<\/p>\n<\/div>\n<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-ba21b0d eae-pop-btn-align-left elementor-absolute eae-pop-btn-type-text elementor-widget elementor-widget-wts-modal-popup\" data-id=\"ba21b0d\" data-element_type=\"widget\" data-settings=\"{&quot;_position&quot;:&quot;absolute&quot;}\" data-widget_type=\"wts-modal-popup.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"eae-popup-wrapper eae-popup-eae-pupup-item-1032911339\" data-id=\"eae-pupup-item-1032911339\" data-preview-modal=\"\" data-close-button-type=\"icon\" data-close-btn=\"fas fa-times\" data-close-in-out=\"false\" data-effect=\"zoom-in\">\n\t\t\t<a class=\"eae-popup-link icon-position-before\"\n\t\t\tdata-id=\"eae-pupup-item-1032911339\" data-ctrl-id=\"ba21b0d\" href=\"#eae-pupup-item-1032911339\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"eae-popup-btn-icon\">\n\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"eae-popup-btn-text\">\n\t\t\t\t\t\t\tRead More\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t<\/div>\n\n\t\t<div id=\"eae-pupup-item-1032911339\" class=\"eae-popup-eae-pupup-item-1032911339 mfp-hide eae-popup-container\">\n\t\t\t<div class=\"eae-popup-content\">\n\t\t\t\t\t\t\t\t\t<div class=\"eae-modal-content\">\n\t\t\t\t\t\t\t\t<div data-elementor-type=\"section\" data-elementor-id=\"11974\" class=\"elementor elementor-11974 elementor-9904\" data-elementor-post-type=\"elementor_library\">\n\t\t\t<div class=\"has_eae_slider elementor-element elementor-element-f6761f5 e-flex e-con-boxed e-con e-parent\" data-id=\"f6761f5\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-13e063c elementor-widget elementor-widget-image\" data-id=\"13e063c\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/inmanet.com.sa\/wp-content\/uploads\/2024\/12\/strat-trans.webp\" title=\"\" alt=\"\" loading=\"lazy\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-7954f10 elementor-widget elementor-widget-text-editor\" data-id=\"7954f10\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-7954f10 elementor-widget elementor-widget-text-editor\" data-id=\"7954f10\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n<div class=\"elementor-widget-container\">\n<p>After 40 years since its establishment, the company transitioned from a limited liability company to a closed joint-stock company.<\/p>\n<\/div>\n<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div data-elementor-type=\"loop-item\" data-elementor-id=\"11975\" class=\"elementor elementor-11975 elementor-9896 swiper-slide e-loop-item e-loop-item-12506 post-12506 news type-news status-publish hentry\" data-elementor-post-type=\"elementor_library\" role=\"group\" aria-roledescription=\"slide\" data-custom-edit-handle=\"1\">\n\t\t\t<div class=\"has_eae_slider elementor-element elementor-element-f58f5c1 e-con-full e-flex e-con e-parent\" data-id=\"f58f5c1\" data-element_type=\"container\">\n\t\t<div class=\"has_eae_slider elementor-element elementor-element-dde06f9 e-con-full e-flex e-con e-child\" data-id=\"dde06f9\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-8c367f5 elementor-widget elementor-widget-image\" data-id=\"8c367f5\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/inmanet.com.sa\/wp-content\/uploads\/2024\/12\/target.webp\" title=\"\" alt=\"\" loading=\"lazy\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0a0045c eae-pop-btn-align-left eae-pop-btn-type-text elementor-widget elementor-widget-wts-modal-popup\" data-id=\"0a0045c\" data-element_type=\"widget\" data-widget_type=\"wts-modal-popup.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"eae-popup-wrapper eae-popup-eae-pupup-item-2010603469\" data-id=\"eae-pupup-item-2010603469\" data-preview-modal=\"\" data-close-button-type=\"icon\" data-close-btn=\"fas fa-times\" data-close-in-out=\"false\" data-effect=\"zoom-in\">\n\t\t\t<a class=\"eae-popup-link icon-position-before\"\n\t\t\tdata-id=\"eae-pupup-item-2010603469\" data-ctrl-id=\"0a0045c\" href=\"#eae-pupup-item-2010603469\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"eae-popup-btn-icon\">\n\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"eae-popup-btn-text\">\n\t\t\t\t\t\t\tLaunch of the Company\u2019s Strategy\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t<\/div>\n\n\t\t<div id=\"eae-pupup-item-2010603469\" class=\"eae-popup-eae-pupup-item-2010603469 mfp-hide eae-popup-container\">\n\t\t\t<div class=\"eae-popup-content\">\n\t\t\t\t\t\t\t\t\t<div class=\"eae-modal-content\">\n\t\t\t\t\t\t\t\t<div data-elementor-type=\"section\" data-elementor-id=\"11974\" class=\"elementor elementor-11974 elementor-9904\" data-elementor-post-type=\"elementor_library\">\n\t\t\t<div class=\"has_eae_slider elementor-element elementor-element-f6761f5 e-flex e-con-boxed e-con e-parent\" data-id=\"f6761f5\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-13e063c elementor-widget elementor-widget-image\" data-id=\"13e063c\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/inmanet.com.sa\/wp-content\/uploads\/2024\/12\/target.webp\" title=\"\" alt=\"\" loading=\"lazy\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-7954f10 elementor-widget elementor-widget-text-editor\" data-id=\"7954f10\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>As a pivotal milestone in the company\u2019s journey following its legal transformation, the company launched a strategic plan aimed at achieving its long-term goals. This strategy provides clear direction for business operations, identifies the markets the company should target, and outlines the methods for effective market engagement. Consequently, the strategy equips the company with the necessary tools and approaches to enhance its competitiveness.<\/p>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-ba21b0d eae-pop-btn-align-left elementor-absolute eae-pop-btn-type-text elementor-widget elementor-widget-wts-modal-popup\" data-id=\"ba21b0d\" data-element_type=\"widget\" data-settings=\"{&quot;_position&quot;:&quot;absolute&quot;}\" data-widget_type=\"wts-modal-popup.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"eae-popup-wrapper eae-popup-eae-pupup-item-1253646333\" data-id=\"eae-pupup-item-1253646333\" data-preview-modal=\"\" data-close-button-type=\"icon\" data-close-btn=\"fas fa-times\" data-close-in-out=\"false\" data-effect=\"zoom-in\">\n\t\t\t<a class=\"eae-popup-link icon-position-before\"\n\t\t\tdata-id=\"eae-pupup-item-1253646333\" data-ctrl-id=\"ba21b0d\" href=\"#eae-pupup-item-1253646333\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"eae-popup-btn-icon\">\n\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"eae-popup-btn-text\">\n\t\t\t\t\t\t\tRead More\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t<\/div>\n\n\t\t<div id=\"eae-pupup-item-1253646333\" class=\"eae-popup-eae-pupup-item-1253646333 mfp-hide eae-popup-container\">\n\t\t\t<div class=\"eae-popup-content\">\n\t\t\t\t\t\t\t\t\t<div class=\"eae-modal-content\">\n\t\t\t\t\t\t\t\t<div data-elementor-type=\"section\" data-elementor-id=\"11974\" class=\"elementor elementor-11974 elementor-9904\" data-elementor-post-type=\"elementor_library\">\n\t\t\t<div class=\"has_eae_slider elementor-element elementor-element-f6761f5 e-flex e-con-boxed e-con e-parent\" data-id=\"f6761f5\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-13e063c elementor-widget elementor-widget-image\" data-id=\"13e063c\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/inmanet.com.sa\/wp-content\/uploads\/2024\/12\/target.webp\" title=\"\" alt=\"\" loading=\"lazy\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-7954f10 elementor-widget elementor-widget-text-editor\" data-id=\"7954f10\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>As a pivotal milestone in the company\u2019s journey following its legal transformation, the company launched a strategic plan aimed at achieving its long-term goals. This strategy provides clear direction for business operations, identifies the markets the company should target, and outlines the methods for effective market engagement. Consequently, the strategy equips the company with the necessary tools and approaches to enhance its competitiveness.<\/p>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div data-elementor-type=\"loop-item\" data-elementor-id=\"11975\" class=\"elementor elementor-11975 elementor-9896 swiper-slide e-loop-item e-loop-item-12510 post-12510 news type-news status-publish hentry\" data-elementor-post-type=\"elementor_library\" role=\"group\" aria-roledescription=\"slide\" data-custom-edit-handle=\"1\">\n\t\t\t<div class=\"has_eae_slider elementor-element elementor-element-f58f5c1 e-con-full e-flex e-con e-parent\" data-id=\"f58f5c1\" data-element_type=\"container\">\n\t\t<div class=\"has_eae_slider elementor-element elementor-element-dde06f9 e-con-full e-flex e-con e-child\" data-id=\"dde06f9\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-8c367f5 elementor-widget elementor-widget-image\" data-id=\"8c367f5\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/inmanet.com.sa\/wp-content\/uploads\/2024\/12\/news01.webp\" title=\"\" alt=\"\" loading=\"lazy\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0a0045c eae-pop-btn-align-left eae-pop-btn-type-text elementor-widget elementor-widget-wts-modal-popup\" data-id=\"0a0045c\" data-element_type=\"widget\" data-widget_type=\"wts-modal-popup.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"eae-popup-wrapper eae-popup-eae-pupup-item-399898542\" data-id=\"eae-pupup-item-399898542\" data-preview-modal=\"\" data-close-button-type=\"icon\" data-close-btn=\"fas fa-times\" data-close-in-out=\"false\" data-effect=\"zoom-in\">\n\t\t\t<a class=\"eae-popup-link icon-position-before\"\n\t\t\tdata-id=\"eae-pupup-item-399898542\" data-ctrl-id=\"0a0045c\" href=\"#eae-pupup-item-399898542\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"eae-popup-btn-icon\">\n\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"eae-popup-btn-text\">\n\t\t\t\t\t\t\tComplete Transition to Fixed Drip Irrigation Systems for Potato Crops\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t<\/div>\n\n\t\t<div id=\"eae-pupup-item-399898542\" class=\"eae-popup-eae-pupup-item-399898542 mfp-hide eae-popup-container\">\n\t\t\t<div class=\"eae-popup-content\">\n\t\t\t\t\t\t\t\t\t<div class=\"eae-modal-content\">\n\t\t\t\t\t\t\t\t<div data-elementor-type=\"section\" data-elementor-id=\"11974\" class=\"elementor elementor-11974 elementor-9904\" data-elementor-post-type=\"elementor_library\">\n\t\t\t<div class=\"has_eae_slider elementor-element elementor-element-f6761f5 e-flex e-con-boxed e-con e-parent\" data-id=\"f6761f5\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-13e063c elementor-widget elementor-widget-image\" data-id=\"13e063c\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/inmanet.com.sa\/wp-content\/uploads\/2024\/12\/news01.webp\" title=\"\" alt=\"\" loading=\"lazy\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-7954f10 elementor-widget elementor-widget-text-editor\" data-id=\"7954f10\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>After conducting research and investing in all available aspects\u2014technical (such as using modern technologies and advanced irrigation systems, specifically drip irrigation, to conserve water), human (by training all staff on the use and application of these techniques), and financial (through monetary investments aimed at pioneering advanced agricultural methods)\u2014the complete transition to using a fixed drip irrigation system for the company\u2019s potato crop was achieved.<\/p>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-ba21b0d eae-pop-btn-align-left elementor-absolute eae-pop-btn-type-text elementor-widget elementor-widget-wts-modal-popup\" data-id=\"ba21b0d\" data-element_type=\"widget\" data-settings=\"{&quot;_position&quot;:&quot;absolute&quot;}\" data-widget_type=\"wts-modal-popup.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"eae-popup-wrapper eae-popup-eae-pupup-item-53148598\" data-id=\"eae-pupup-item-53148598\" data-preview-modal=\"\" data-close-button-type=\"icon\" data-close-btn=\"fas fa-times\" data-close-in-out=\"false\" data-effect=\"zoom-in\">\n\t\t\t<a class=\"eae-popup-link icon-position-before\"\n\t\t\tdata-id=\"eae-pupup-item-53148598\" data-ctrl-id=\"ba21b0d\" href=\"#eae-pupup-item-53148598\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"eae-popup-btn-icon\">\n\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"eae-popup-btn-text\">\n\t\t\t\t\t\t\tRead More\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t<\/div>\n\n\t\t<div id=\"eae-pupup-item-53148598\" class=\"eae-popup-eae-pupup-item-53148598 mfp-hide eae-popup-container\">\n\t\t\t<div class=\"eae-popup-content\">\n\t\t\t\t\t\t\t\t\t<div class=\"eae-modal-content\">\n\t\t\t\t\t\t\t\t<div data-elementor-type=\"section\" data-elementor-id=\"11974\" class=\"elementor elementor-11974 elementor-9904\" data-elementor-post-type=\"elementor_library\">\n\t\t\t<div class=\"has_eae_slider elementor-element elementor-element-f6761f5 e-flex e-con-boxed e-con e-parent\" data-id=\"f6761f5\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-13e063c elementor-widget elementor-widget-image\" data-id=\"13e063c\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/inmanet.com.sa\/wp-content\/uploads\/2024\/12\/news01.webp\" title=\"\" alt=\"\" loading=\"lazy\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-7954f10 elementor-widget elementor-widget-text-editor\" data-id=\"7954f10\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>After conducting research and investing in all available aspects\u2014technical (such as using modern technologies and advanced irrigation systems, specifically drip irrigation, to conserve water), human (by training all staff on the use and application of these techniques), and financial (through monetary investments aimed at pioneering advanced agricultural methods)\u2014the complete transition to using a fixed drip irrigation system for the company\u2019s potato crop was achieved.<\/p>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div data-elementor-type=\"loop-item\" data-elementor-id=\"11975\" class=\"elementor elementor-11975 elementor-9896 swiper-slide e-loop-item e-loop-item-12512 post-12512 news type-news status-publish hentry\" data-elementor-post-type=\"elementor_library\" role=\"group\" aria-roledescription=\"slide\" data-custom-edit-handle=\"1\">\n\t\t\t<div class=\"has_eae_slider elementor-element elementor-element-f58f5c1 e-con-full e-flex e-con e-parent\" data-id=\"f58f5c1\" data-element_type=\"container\">\n\t\t<div class=\"has_eae_slider elementor-element elementor-element-dde06f9 e-con-full e-flex e-con e-child\" data-id=\"dde06f9\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-8c367f5 elementor-widget elementor-widget-image\" data-id=\"8c367f5\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/inmanet.com.sa\/wp-content\/uploads\/2025\/03\/techc2.webp\" title=\"\" alt=\"\" loading=\"lazy\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0a0045c eae-pop-btn-align-left eae-pop-btn-type-text elementor-widget elementor-widget-wts-modal-popup\" data-id=\"0a0045c\" data-element_type=\"widget\" data-widget_type=\"wts-modal-popup.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"eae-popup-wrapper eae-popup-eae-pupup-item-2113129476\" data-id=\"eae-pupup-item-2113129476\" data-preview-modal=\"\" data-close-button-type=\"icon\" data-close-btn=\"fas fa-times\" data-close-in-out=\"false\" data-effect=\"zoom-in\">\n\t\t\t<a class=\"eae-popup-link icon-position-before\"\n\t\t\tdata-id=\"eae-pupup-item-2113129476\" data-ctrl-id=\"0a0045c\" href=\"#eae-pupup-item-2113129476\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"eae-popup-btn-icon\">\n\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"eae-popup-btn-text\">\n\t\t\t\t\t\t\tSmart Farm Implementation\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t<\/div>\n\n\t\t<div id=\"eae-pupup-item-2113129476\" class=\"eae-popup-eae-pupup-item-2113129476 mfp-hide eae-popup-container\">\n\t\t\t<div class=\"eae-popup-content\">\n\t\t\t\t\t\t\t\t\t<div class=\"eae-modal-content\">\n\t\t\t\t\t\t\t\t<div data-elementor-type=\"section\" data-elementor-id=\"11974\" class=\"elementor elementor-11974 elementor-9904\" data-elementor-post-type=\"elementor_library\">\n\t\t\t<div class=\"has_eae_slider elementor-element elementor-element-f6761f5 e-flex e-con-boxed e-con e-parent\" data-id=\"f6761f5\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-13e063c elementor-widget elementor-widget-image\" data-id=\"13e063c\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/inmanet.com.sa\/wp-content\/uploads\/2025\/03\/techc2.webp\" title=\"\" alt=\"\" loading=\"lazy\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-7954f10 elementor-widget elementor-widget-text-editor\" data-id=\"7954f10\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p data-start=\"0\" data-end=\"123\">As a leading company in applying the latest agricultural techniques and implementing the following technological practices:<\/p>\n<ul data-start=\"124\" data-end=\"450\">\n<li data-start=\"124\" data-end=\"149\">The latest water meters<\/li>\n<li data-start=\"150\" data-end=\"196\">Satellite-based crop monitoring technologies<\/li>\n<li data-start=\"197\" data-end=\"255\">Automated control (GPS system) in agricultural equipment<\/li>\n<li data-start=\"256\" data-end=\"318\">Surveillance technologies and field practices using aircraft<\/li>\n<li data-start=\"319\" data-end=\"389\">Modern irrigation systems and the applications of these technologies<\/li>\n<li data-start=\"390\" data-end=\"450\">An integrated quality system for measuring product quality<\/li>\n<\/ul>\n<p data-start=\"452\" data-end=\"552\" data-is-last-node=\"\" data-is-only-node=\"\">The company was selected by the Saudi Snack Foods Company (Lezz) to serve as the smart farm in 2024.<\/p>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-ba21b0d eae-pop-btn-align-left elementor-absolute eae-pop-btn-type-text elementor-widget elementor-widget-wts-modal-popup\" data-id=\"ba21b0d\" data-element_type=\"widget\" data-settings=\"{&quot;_position&quot;:&quot;absolute&quot;}\" data-widget_type=\"wts-modal-popup.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"eae-popup-wrapper eae-popup-eae-pupup-item-2076990794\" data-id=\"eae-pupup-item-2076990794\" data-preview-modal=\"\" data-close-button-type=\"icon\" data-close-btn=\"fas fa-times\" data-close-in-out=\"false\" data-effect=\"zoom-in\">\n\t\t\t<a class=\"eae-popup-link icon-position-before\"\n\t\t\tdata-id=\"eae-pupup-item-2076990794\" data-ctrl-id=\"ba21b0d\" href=\"#eae-pupup-item-2076990794\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"eae-popup-btn-icon\">\n\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"eae-popup-btn-text\">\n\t\t\t\t\t\t\tRead More\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t<\/div>\n\n\t\t<div id=\"eae-pupup-item-2076990794\" class=\"eae-popup-eae-pupup-item-2076990794 mfp-hide eae-popup-container\">\n\t\t\t<div class=\"eae-popup-content\">\n\t\t\t\t\t\t\t\t\t<div class=\"eae-modal-content\">\n\t\t\t\t\t\t\t\t<div data-elementor-type=\"section\" data-elementor-id=\"11974\" class=\"elementor elementor-11974 elementor-9904\" data-elementor-post-type=\"elementor_library\">\n\t\t\t<div class=\"has_eae_slider elementor-element elementor-element-f6761f5 e-flex e-con-boxed e-con e-parent\" data-id=\"f6761f5\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-13e063c elementor-widget elementor-widget-image\" data-id=\"13e063c\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/inmanet.com.sa\/wp-content\/uploads\/2025\/03\/techc2.webp\" title=\"\" alt=\"\" loading=\"lazy\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-7954f10 elementor-widget elementor-widget-text-editor\" data-id=\"7954f10\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p data-start=\"0\" data-end=\"123\">As a leading company in applying the latest agricultural techniques and implementing the following technological practices:<\/p>\n<ul data-start=\"124\" data-end=\"450\">\n<li data-start=\"124\" data-end=\"149\">The latest water meters<\/li>\n<li data-start=\"150\" data-end=\"196\">Satellite-based crop monitoring technologies<\/li>\n<li data-start=\"197\" data-end=\"255\">Automated control (GPS system) in agricultural equipment<\/li>\n<li data-start=\"256\" data-end=\"318\">Surveillance technologies and field practices using aircraft<\/li>\n<li data-start=\"319\" data-end=\"389\">Modern irrigation systems and the applications of these technologies<\/li>\n<li data-start=\"390\" data-end=\"450\">An integrated quality system for measuring product quality<\/li>\n<\/ul>\n<p data-start=\"452\" data-end=\"552\" data-is-last-node=\"\" data-is-only-node=\"\">The company was selected by the Saudi Snack Foods Company (Lezz) to serve as the smart farm in 2024.<\/p>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div data-elementor-type=\"loop-item\" data-elementor-id=\"11975\" class=\"elementor elementor-11975 elementor-9896 swiper-slide e-loop-item e-loop-item-12514 post-12514 news type-news status-publish hentry\" data-elementor-post-type=\"elementor_library\" role=\"group\" aria-roledescription=\"slide\" data-custom-edit-handle=\"1\">\n\t\t\t<div class=\"has_eae_slider elementor-element elementor-element-f58f5c1 e-con-full e-flex e-con e-parent\" data-id=\"f58f5c1\" data-element_type=\"container\">\n\t\t<div class=\"has_eae_slider elementor-element elementor-element-dde06f9 e-con-full e-flex e-con e-child\" data-id=\"dde06f9\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-8c367f5 elementor-widget elementor-widget-image\" data-id=\"8c367f5\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/inmanet.com.sa\/wp-content\/uploads\/2024\/12\/news03.webp\" title=\"\" alt=\"\" loading=\"lazy\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0a0045c eae-pop-btn-align-left eae-pop-btn-type-text elementor-widget elementor-widget-wts-modal-popup\" data-id=\"0a0045c\" data-element_type=\"widget\" data-widget_type=\"wts-modal-popup.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"eae-popup-wrapper eae-popup-eae-pupup-item-549202629\" data-id=\"eae-pupup-item-549202629\" data-preview-modal=\"\" data-close-button-type=\"icon\" data-close-btn=\"fas fa-times\" data-close-in-out=\"false\" data-effect=\"zoom-in\">\n\t\t\t<a class=\"eae-popup-link icon-position-before\"\n\t\t\tdata-id=\"eae-pupup-item-549202629\" data-ctrl-id=\"0a0045c\" href=\"#eae-pupup-item-549202629\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"eae-popup-btn-icon\">\n\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"eae-popup-btn-text\">\n\t\t\t\t\t\t\tParticipation in the Saudi Alliance\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t<\/div>\n\n\t\t<div id=\"eae-pupup-item-549202629\" class=\"eae-popup-eae-pupup-item-549202629 mfp-hide eae-popup-container\">\n\t\t\t<div class=\"eae-popup-content\">\n\t\t\t\t\t\t\t\t\t<div class=\"eae-modal-content\">\n\t\t\t\t\t\t\t\t<div data-elementor-type=\"section\" data-elementor-id=\"11974\" class=\"elementor elementor-11974 elementor-9904\" data-elementor-post-type=\"elementor_library\">\n\t\t\t<div class=\"has_eae_slider elementor-element elementor-element-f6761f5 e-flex e-con-boxed e-con e-parent\" data-id=\"f6761f5\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-13e063c elementor-widget elementor-widget-image\" data-id=\"13e063c\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/inmanet.com.sa\/wp-content\/uploads\/2024\/12\/news03.webp\" title=\"\" alt=\"\" loading=\"lazy\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-7954f10 elementor-widget elementor-widget-text-editor\" data-id=\"7954f10\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>The company was selected as one of the leading companies in using modern technologies for water conservation\u2014a key practice in our agricultural technology efforts\u2014to participate in the Saudi Alliance for Agricultural and Food Technologies. The first Saudi Alliance for Agricultural and Food Technologies was launched with the aim of building an integrated network to promote the dissemination of agricultural food technologies nationwide, in cooperation with King Abdullah University of Science and Technology (KAUST) and the Research and Development Authority.<\/p>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-ba21b0d eae-pop-btn-align-left elementor-absolute eae-pop-btn-type-text elementor-widget elementor-widget-wts-modal-popup\" data-id=\"ba21b0d\" data-element_type=\"widget\" data-settings=\"{&quot;_position&quot;:&quot;absolute&quot;}\" data-widget_type=\"wts-modal-popup.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"eae-popup-wrapper eae-popup-eae-pupup-item-572912335\" data-id=\"eae-pupup-item-572912335\" data-preview-modal=\"\" data-close-button-type=\"icon\" data-close-btn=\"fas fa-times\" data-close-in-out=\"false\" data-effect=\"zoom-in\">\n\t\t\t<a class=\"eae-popup-link icon-position-before\"\n\t\t\tdata-id=\"eae-pupup-item-572912335\" data-ctrl-id=\"ba21b0d\" href=\"#eae-pupup-item-572912335\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"eae-popup-btn-icon\">\n\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"eae-popup-btn-text\">\n\t\t\t\t\t\t\tRead More\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t<\/div>\n\n\t\t<div id=\"eae-pupup-item-572912335\" class=\"eae-popup-eae-pupup-item-572912335 mfp-hide eae-popup-container\">\n\t\t\t<div class=\"eae-popup-content\">\n\t\t\t\t\t\t\t\t\t<div class=\"eae-modal-content\">\n\t\t\t\t\t\t\t\t<div data-elementor-type=\"section\" data-elementor-id=\"11974\" class=\"elementor elementor-11974 elementor-9904\" data-elementor-post-type=\"elementor_library\">\n\t\t\t<div class=\"has_eae_slider elementor-element elementor-element-f6761f5 e-flex e-con-boxed e-con e-parent\" data-id=\"f6761f5\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-13e063c elementor-widget elementor-widget-image\" data-id=\"13e063c\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/inmanet.com.sa\/wp-content\/uploads\/2024\/12\/news03.webp\" title=\"\" alt=\"\" loading=\"lazy\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-7954f10 elementor-widget elementor-widget-text-editor\" data-id=\"7954f10\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>The company was selected as one of the leading companies in using modern technologies for water conservation\u2014a key practice in our agricultural technology efforts\u2014to participate in the Saudi Alliance for Agricultural and Food Technologies. The first Saudi Alliance for Agricultural and Food Technologies was launched with the aim of building an integrated network to promote the dissemination of agricultural food technologies nationwide, in cooperation with King Abdullah University of Science and Technology (KAUST) and the Research and Development Authority.<\/p>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div data-elementor-type=\"loop-item\" data-elementor-id=\"11975\" class=\"elementor elementor-11975 elementor-9896 swiper-slide e-loop-item e-loop-item-12516 post-12516 news type-news status-publish hentry\" data-elementor-post-type=\"elementor_library\" role=\"group\" aria-roledescription=\"slide\" data-custom-edit-handle=\"1\">\n\t\t\t<div class=\"has_eae_slider elementor-element elementor-element-f58f5c1 e-con-full e-flex e-con e-parent\" data-id=\"f58f5c1\" data-element_type=\"container\">\n\t\t<div class=\"has_eae_slider elementor-element elementor-element-dde06f9 e-con-full e-flex e-con e-child\" data-id=\"dde06f9\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-8c367f5 elementor-widget elementor-widget-image\" data-id=\"8c367f5\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/inmanet.com.sa\/wp-content\/uploads\/2024\/12\/istidamah.webp\" title=\"\" alt=\"\" loading=\"lazy\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0a0045c eae-pop-btn-align-left eae-pop-btn-type-text elementor-widget elementor-widget-wts-modal-popup\" data-id=\"0a0045c\" data-element_type=\"widget\" data-widget_type=\"wts-modal-popup.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"eae-popup-wrapper eae-popup-eae-pupup-item-1827608769\" data-id=\"eae-pupup-item-1827608769\" data-preview-modal=\"\" data-close-button-type=\"icon\" data-close-btn=\"fas fa-times\" data-close-in-out=\"false\" data-effect=\"zoom-in\">\n\t\t\t<a class=\"eae-popup-link icon-position-before\"\n\t\t\tdata-id=\"eae-pupup-item-1827608769\" data-ctrl-id=\"0a0045c\" href=\"#eae-pupup-item-1827608769\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"eae-popup-btn-icon\">\n\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"eae-popup-btn-text\">\n\t\t\t\t\t\t\tSigning a Memorandum of Understanding with the National Center for Research and Development of Sustainable Agriculture (Estidamah)\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t<\/div>\n\n\t\t<div id=\"eae-pupup-item-1827608769\" class=\"eae-popup-eae-pupup-item-1827608769 mfp-hide eae-popup-container\">\n\t\t\t<div class=\"eae-popup-content\">\n\t\t\t\t\t\t\t\t\t<div class=\"eae-modal-content\">\n\t\t\t\t\t\t\t\t<div data-elementor-type=\"section\" data-elementor-id=\"11974\" class=\"elementor elementor-11974 elementor-9904\" data-elementor-post-type=\"elementor_library\">\n\t\t\t<div class=\"has_eae_slider elementor-element elementor-element-f6761f5 e-flex e-con-boxed e-con e-parent\" data-id=\"f6761f5\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-13e063c elementor-widget elementor-widget-image\" data-id=\"13e063c\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/inmanet.com.sa\/wp-content\/uploads\/2024\/12\/istidamah.webp\" title=\"\" alt=\"\" loading=\"lazy\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-7954f10 elementor-widget elementor-widget-text-editor\" data-id=\"7954f10\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>In the presence of His Excellency the Minister of Environment, Water, and Agriculture, a Memorandum of Understanding was signed with the <strong>National Center for Research and Development of Sustainable Agriculture (Estidamah)<\/strong>. The agreement aims to achieve leadership in the field of sustainable agricultural research and contribute to food security by empowering sustainable agriculture. This will be accomplished by fostering economic growth and enhancing food security through applied research, development, innovation, and the adoption of successful and effective agricultural applications.<\/p>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-ba21b0d eae-pop-btn-align-left elementor-absolute eae-pop-btn-type-text elementor-widget elementor-widget-wts-modal-popup\" data-id=\"ba21b0d\" data-element_type=\"widget\" data-settings=\"{&quot;_position&quot;:&quot;absolute&quot;}\" data-widget_type=\"wts-modal-popup.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"eae-popup-wrapper eae-popup-eae-pupup-item-381979469\" data-id=\"eae-pupup-item-381979469\" data-preview-modal=\"\" data-close-button-type=\"icon\" data-close-btn=\"fas fa-times\" data-close-in-out=\"false\" data-effect=\"zoom-in\">\n\t\t\t<a class=\"eae-popup-link icon-position-before\"\n\t\t\tdata-id=\"eae-pupup-item-381979469\" data-ctrl-id=\"ba21b0d\" href=\"#eae-pupup-item-381979469\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"eae-popup-btn-icon\">\n\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"eae-popup-btn-text\">\n\t\t\t\t\t\t\tRead More\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t<\/div>\n\n\t\t<div id=\"eae-pupup-item-381979469\" class=\"eae-popup-eae-pupup-item-381979469 mfp-hide eae-popup-container\">\n\t\t\t<div class=\"eae-popup-content\">\n\t\t\t\t\t\t\t\t\t<div class=\"eae-modal-content\">\n\t\t\t\t\t\t\t\t<div data-elementor-type=\"section\" data-elementor-id=\"11974\" class=\"elementor elementor-11974 elementor-9904\" data-elementor-post-type=\"elementor_library\">\n\t\t\t<div class=\"has_eae_slider elementor-element elementor-element-f6761f5 e-flex e-con-boxed e-con e-parent\" data-id=\"f6761f5\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-13e063c elementor-widget elementor-widget-image\" data-id=\"13e063c\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/inmanet.com.sa\/wp-content\/uploads\/2024\/12\/istidamah.webp\" title=\"\" alt=\"\" loading=\"lazy\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-7954f10 elementor-widget elementor-widget-text-editor\" data-id=\"7954f10\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>In the presence of His Excellency the Minister of Environment, Water, and Agriculture, a Memorandum of Understanding was signed with the <strong>National Center for Research and Development of Sustainable Agriculture (Estidamah)<\/strong>. The agreement aims to achieve leadership in the field of sustainable agricultural research and contribute to food security by empowering sustainable agriculture. This will be accomplished by fostering economic growth and enhancing food security through applied research, development, innovation, and the adoption of successful and effective agricultural applications.<\/p>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<div class=\"swiper-pagination\"><\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"has_eae_slider elementor-element elementor-element-ee0961c e-con-full e-flex e-con e-child\" data-id=\"ee0961c\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;video&quot;,&quot;background_video_link&quot;:&quot;https:\\\/\\\/inmanet.com.sa\\\/wp-content\\\/uploads\\\/2025\\\/03\\\/ex-manager.mp4&quot;,&quot;background_play_on_mobile&quot;:&quot;yes&quot;,&quot;background_privacy_mode&quot;:&quot;yes&quot;}\">\n\t\t<div class=\"elementor-background-video-container\">\n\t\t\t\t\t\t\t<video class=\"elementor-background-video-hosted\" autoplay muted playsinline loop><\/video>\n\t\t\t\t\t<\/div>\t\t<div class=\"elementor-element elementor-element-e396b9d elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"e396b9d\" data-element_type=\"widget\" data-widget_type=\"icon.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<a class=\"elementor-icon\" href=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJ0eXBlIjoidmlkZW8iLCJ2aWRlb1R5cGUiOiJob3N0ZWQiLCJ1cmwiOiJodHRwczpcL1wvaW5tYW5ldC5jb20uc2FcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjVcLzAzXC9leC1tYW5hZ2VyLm1wNCJ9\">\n\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" id=\"Layer_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 485 485\" style=\"enable-background:new 0 0 485 485;\" xml:space=\"preserve\"><g>\t<path d=\"M413.974,71.026C368.171,25.225,307.274,0,242.5,0S116.829,25.225,71.026,71.026C25.225,116.829,0,177.726,0,242.5  s25.225,125.671,71.026,171.474C116.829,459.775,177.726,485,242.5,485s125.671-25.225,171.474-71.026  C459.775,368.171,485,307.274,485,242.5S459.775,116.829,413.974,71.026z M242.5,455C125.327,455,30,359.673,30,242.5  S125.327,30,242.5,30S455,125.327,455,242.5S359.673,455,242.5,455z\"><\/path>\t<polygon points=\"181.062,336.575 343.938,242.5 181.062,148.425  \"><\/polygon><\/g><g><\/g><g><\/g><g><\/g><g><\/g><g><\/g><g><\/g><g><\/g><g><\/g><g><\/g><g><\/g><g><\/g><g><\/g><g><\/g><g><\/g><g><\/g><\/svg>\t\t\t<\/a>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"has_eae_slider elementor-element elementor-element-d83e361 e-con-full e-flex e-con e-parent\" data-id=\"d83e361\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-53ba278 elementor-widget elementor-widget-video\" data-id=\"53ba278\" data-element_type=\"widget\" id=\"myVideo\" data-settings=\"{&quot;video_type&quot;:&quot;hosted&quot;,&quot;start&quot;:1,&quot;autoplay&quot;:&quot;yes&quot;,&quot;play_on_mobile&quot;:&quot;yes&quot;,&quot;mute&quot;:&quot;yes&quot;,&quot;loop&quot;:&quot;yes&quot;,&quot;controls&quot;:&quot;yes&quot;}\" data-widget_type=\"video.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"e-hosted-video elementor-wrapper elementor-open-inline\">\n\t\t\t\t\t<video class=\"elementor-video\" src=\"https:\/\/inmanet.com.sa\/wp-content\/uploads\/2025\/03\/inma-full-en.mp4#t=1\" autoplay=\"\" loop=\"\" controls=\"\" muted=\"muted\" playsinline=\"\" controlsList=\"nodownload\"><\/video>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-814bd61 elementor-absolute elementor-widget elementor-widget-html\" data-id=\"814bd61\" data-element_type=\"widget\" data-settings=\"{&quot;_position&quot;:&quot;absolute&quot;}\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t <style>\n.mute-toggle {\n  display: block;\n  position: absolute;\n  top: 20px;\n  left: 20px;\n  border: 0;\n  cursor: pointer;\n  z-index: 999;\n  width: 40px;\n  height: 40px;\n  padding: 0;\n}\n\n.mute-toggle:hover, .mute-toggle:active {\n    border: 0;\n    background: transparent;\n}\n\n\n.inma-volume-on:after {\n    content: \"\";\n    background-image: url('data:image\/svg+xml,<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" id=\"Filled\" viewBox=\"0 0 24 24\" width=\"40\" height=\"40\" fill=\"%23ffffff\"><path d=\"M20.8,4.293A1,1,0,0,0,19.39,5.707a8.911,8.911,0,0,1,0,12.586A1,1,0,1,0,20.8,19.707,10.911,10.911,0,0,0,20.8,4.293Z\"\/><path d=\"M18.093,7.293a1,1,0,1,0-1.414,1.414,4.664,4.664,0,0,1,0,6.586,1,1,0,1,0,1.414,1.414A6.665,6.665,0,0,0,18.093,7.293Z\"\/><path d=\"M13.819.207A12.055,12.055,0,0,0,6.268,5H5a5.006,5.006,0,0,0-5,5v4a5.006,5.006,0,0,0,5,5H6.269a12.051,12.051,0,0,0,7.55,4.793A1,1,0,0,0,15,22.81V1.19A1,1,0,0,0,13.819.207Z\"\/><\/svg>');\n    background-repeat: no-repeat;\n    background-color: transparent;\n    display: block;\n    width: 40px;\n    height: 40px;\n    opacity: .8;\n}\n\n\n.inma-volume-off:after {\n    content: \"\";\n    background-image: url('data:image\/svg+xml,<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" id=\"Layer_1\" data-name=\"Layer 1\" viewBox=\"0 0 24 24\" width=\"40\" height=\"40\" fill=\"%23ffffff\"><path d=\"m13.644.418c-.228-.19-.529-.268-.821-.215-3.001.555-5.754,2.302-7.554,4.794h-.271C2.241,4.998-.002,7.241-.002,9.998v4.005C-.002,16.76,2.241,19.003,4.998,19.003h.271c1.802,2.495,4.555,4.243,7.554,4.794.06.011.121.017.181.017.232,0,.459-.081.64-.231.228-.19.36-.472.36-.769V1.187c0-.297-.131-.579-.36-.769Zm10.089,13.875c.391.391.391,1.023,0,1.414-.195.195-.451.293-.707.293s-.512-.098-.707-.293l-2.293-2.293-2.293,2.293c-.195.195-.451.293-.707.293s-.512-.098-.707-.293c-.391-.391-.391-1.023,0-1.414l2.293-2.293-2.293-2.293c-.391-.391-.391-1.023,0-1.414s1.023-.391,1.414,0l2.293,2.293,2.293-2.293c.391-.391,1.023-.391,1.414,0s.391,1.023,0,1.414l-2.293,2.293,2.293,2.293Z\"\/><\/svg>');\n    background-repeat: no-repeat;\n    background-color: transparent;\n    display: block;\n    width: 40px;\n    height: 40px;\n    opacity: .8;\n}\n\n<\/style>\n\n <div id=\"muteToggle\" class=\"mute-toggle\">\n    <i class=\"inma-volume-off\"><\/i>\n  <\/div>\n\n<script>\n  document.getElementById(\"muteToggle\").addEventListener(\"click\", function() {\n    var video = document.querySelector('#myVideo video');\n    video.muted = !video.muted;\n    this.innerHTML = video.muted \n      ? '<i class=\"inma-volume-off\"><\/i>' \n      : '<i class=\"inma-volume-on\"><\/i>';\n  });\n<\/script>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>We create sustainable agriculture for future generations using the best modern technologies. Smart Agriculture Advanced Systems Innovative Solutions #00a751 We contribute to shaping and implementing the roadmap for sustainable food and water security in the Kingdom. Inma collaborates with a wide range of professional and scientific sectors to meet the needs of tomorrow. Our extensive [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"footnotes":""},"class_list":["post-11620","page","type-page","status-publish","hentry"],"acf":[],"rankMath":{"parentDomain":"inmanet.com.sa","noFollowDomains":[],"noFollowExcludeDomains":[],"noFollowExternalLinks":false,"featuredImageNotice":"The featured image should be at least 200 by 200 pixels to be picked up by Facebook and other social media sites.","pluginReviewed":false,"postSettings":{"linkSuggestions":true,"useFocusKeyword":false},"frontEndScore":false,"postName":"signing-a-memorandum-of-understanding-with-the-national-center-for-research-and-development-of-sustainable-agriculture-estidamah","permalinkFormat":"https:\/\/inmanet.com.sa\/en\/news\/%news%\/","showLockModifiedDate":true,"assessor":{"focusKeywordLink":"https:\/\/inmanet.com.sa\/wp-admin\/edit.php?focus_keyword=%focus_keyword%&post_type=%post_type%","hasTOCPlugin":true,"primaryTaxonomy":false,"serpData":{"title":"","description":"","focusKeywords":"","pillarContent":false,"canonicalUrl":"","breadcrumbTitle":"","advancedRobots":[],"facebookTitle":"","facebookDescription":"","facebookImage":"","facebookImageID":"","facebookHasOverlay":false,"facebookImageOverlay":"","facebookAuthor":"","twitterCardType":"","twitterUseFacebook":true,"twitterTitle":"","twitterDescription":"","twitterImage":"","twitterImageID":"","twitterHasOverlay":false,"twitterImageOverlay":"","twitterPlayerUrl":"","twitterPlayerSize":"","twitterPlayerStream":"","twitterPlayerStreamCtype":"","twitterAppDescription":"","twitterAppIphoneName":"","twitterAppIphoneID":"","twitterAppIphoneUrl":"","twitterAppIpadName":"","twitterAppIpadID":"","twitterAppIpadUrl":"","twitterAppGoogleplayName":"","twitterAppGoogleplayID":"","twitterAppGoogleplayUrl":"","twitterAppCountry":"","robots":{"index":true},"twitterAuthor":"username","primaryTerm":0,"authorName":"inmanet","titleTemplate":"%title% %sep% %sitename%","descriptionTemplate":"%excerpt%","showScoreFrontend":true,"lockModifiedDate":false},"powerWords":["a cut above","absolute","absolutely","absolutely lowest","absurd","abuse","accurate","accuse","achieve","actionable","adaptable","adequate","admit","adorable","advantage","advice","affordable","aggravate","aggressive","agitated","agonizing","agony","alarmed","alarming","alienated","aligned","alive","all-inclusive","alluring","always","amazing","amp","animated","annihilate","announcing","anonymous","antagonistic","anxious","apocalypse","appalled","approved","approving","argumentative","armageddon","arrogant","ass kicking","assault","assured","astonishing","astounded","astounding","at ease","atrocious","attack","attractive","audacity","authentic","authoritative","authority","avoid","aware","awe-inspiring","awesome","awkward","backbone","backdoor","backed","backlash","backstabbing","badass","balanced","banned","bargain","barrage","basic","battle","beaming","beat down","beating","beautiful","beauty","begging","behind the scenes","belief","belong","best","best-selling","better","beware","big","billion","black market","blacklisted","blast","blessed","blinded","blissful","blood","bloodbath","bloodcurdling","bloody","blunder","blushing","bold","bomb","bona","bona fide","bonanza","bonus","bootleg","bottom line","bountiful","brave","bravery","brazen","break","breaking","breakthrough","breathtaking","bright","brilliant","broke","brutal","budget","buffoon","bullshit","bully","bumbling","buy","cadaver","calm","cancel anytime","capable","captivate","captivating","carefree","case study","cash","cataclysmic","catapult","catastrophe","caution","censored","centered","certain","certainly","certified","challenge","charming","cheap","cheat","cheat-sheet","cheer","cheerful","child-like","clarity","classified","clear","clueless","collapse","colorful","colossal","comfortable","compare","competitive","complete","completely","completeness","comprehensive","compromise","compulsive","concealed","conclusive","condemning","condescending","confess","confession","confessions","confident","confidential","conquer","conscientious","constructive","content","contrary","controlling","controversial","convenient","convert","cool","cooperative","copy","corpse","corrupt","corrupting","courage","courageous","cover-up","covert","coward","cowardly","crammed","crave","crazy","create","creative","cringeworthy","cripple","crisis","critical","crooked","crush","crushing","damaging","danger","dangerous","daring","dazzling","dead","deadline","deadly","death","decadent","deceived","deceptive","deep","defiance","definitely","definitive","defying","dejected","delicious","delight","delighted","delightful","delirious","delivered","demoralizing","deplorable","depraved","desire","desperate","despicable","destiny","destroy","detailed","devastating","devoted","diagnosed","direct","dirty","disadvantages","disastrous","discount","discover","disdainful","disempowered","disgusted","disgusting","dishonest","disillusioned","disoriented","distracted","distraught","distressed","distrustful","divulge","document","dollar","dominate","doomed","double","doubtful","download","dreadful","dreamy","drive","drowning","dumb","dynamic","eager","earnest","easily","easy","economical","ecstatic","edge","effective","efficient","effortless","elated","eliminate","elite","embarrass","embarrassed","embarrassing","emergency","emerging","emphasize","empowered","enchant","encouraged","endorsed","energetic","energy","enormous","enraged","enthusiastic","envy","epic","epidemic","essential","ethical","euphoric","evil","exactly","exasperated","excellent","excited","excitement","exciting","exclusive","exclusivity","excruciating","exhilarated","expensive","expert","explode","exploit","explosive","exposed","exquisite","extra","extraordinary","extremely","exuberant","eye-opening","fail","fail-proof","failure","faith","famous","fantasy","fascinating","fatigued","faux","faux pas","fearless","feast","feeble","festive","fide","fierce","fight","final","fine","fired","first","first ever","flirt","fluid","focus","focused","fool","fooled","foolish","forbidden","force-fed","forever","forgiving","forgotten","formula","fortune","foul","frantic","free","freebie","freedom","frenzied","frenzy","frightening","frisky","frugal","frustrated","fulfill","fulfilled","full","fully","fun","fun-loving","fundamentals","funniest","funny","furious","gambling","gargantuan","genius","genuine","gift","gigantic","giveaway","glamorous","gleeful","glorious","glowing","goddamn","gorgeous","graceful","grateful","gratified","gravity","great","greatest","greatness","greed","greedy","gripping","grit","grounded","growth","guaranteed","guilt","guilt-free","gullible","guts","hack","happiness","happy","harmful","harsh","hate","have you heard","havoc","hazardous","healthy","heart","heartbreaking","heartwarming","heavenly","hell","helpful","helplessness","hero","hesitant","hidden","high tech","highest","highly effective","hilarious","hoak","hoax","honest","honored","hope","hopeful","horribly","horrific","horrifying","horror","hostile","how to","huge","humility","humor","hurricane","hurry","hypnotic","idiot","ignite","illegal","illusive","imagination","immediately","imminently","impatience","impatient","impenetrable","important","impressive","improved","in the zone","incapable","incapacitated","incompetent","inconsiderate","increase","incredible","indecisive","indulgence","indulgent","inexpensive","inferior","informative","infuriated","ingredients","innocent","innovative","insane","insecure","insider","insidious","inspired","inspiring","instant savings","instantly","instructive","insult","intel","intelligent","intense","interesting","intriguing","introducing","invasion","investment","iron-clad","ironclad","irresistible","irs","is here","jackpot","jail","jaw-dropping","jealous","jeopardy","jittery","jovial","joyous","jubilant","judgmental","jumpstart","just arrived","keen","kickass","kickstart","kill","killed","killing","kills","know it all","lame","largest","lascivious","last","last chance","last minute","latest","laugh","laughing","launch","launching","lavishly","lawsuit","lazy","left behind","legendary","legitimate","liberal","liberated","lick","lies","life-changing","lifetime","light","lighthearted","likely","limited","literally","little-known","loathsome","lonely","looming","loser","lost","love","lucrative","lunatic","lurking","lust","luxurious","luxury","lying","magic","magical","magnificent","mainstream","malicious","mammoth","manipulative","marked down","massive","master","masterclass","maul","mediocre","meditative","meltdown","memorability","memorable","menacing","mesmerizing","meticulous","mind-blowing","minimalist","miracle","mired","mischievous","misgiving","missing out","mistake","monetize","money","moneyback","moneygrubbing","monumental","most important","motivated","mouth-watering","murder","mystery","nail","naked","natural","naughty","nazi","nest egg","never","new","nightmare","no good","no obligation","no one talks about","no questions asked","no risk","no strings attached","non-controlling","noted","novelty","now","obnoxious","obsessed","obsession","obvious","odd","off-kilter","off-limits","off-the record","offensive","official","okay","on-demand","open-minded","opportunities","optimistic","ordeal","outlawed","outrageousness","outstanding","overcome","overjoyed","overnight","overwhelmed","packed","painful","painless","painstaking","pale","panic","panicked","paralyzed","pas","passionate","pathetic","pay zero","payback","perfect","peril","perplexed","perspective","pessimistic","pioneering","piranha","pitfall","pitiful","placid","plague","played","playful","pleased","pluck","plummet","plunge","poison","poisonous","polarizing","poor","popular","portfolio","pound","powerful","powerless","practical","preposterous","prestige","price","priceless","pride","prison","privacy","private","privileged","prize","problem","productive","professional","profit","profitable","profound","promiscuous","promising","promote","protect","protected","proven","provocative","provoke","psychological","pummel","punch","punish","pus","quadruple","quality","quarrelsome","quick","quick-start","quickly","quiet","radiant","rare","ravenous","rebellious","recession-proof","reckoning","recognized","recommend","recreate","reduced","reflective","refugee","refund","refundable","reject","relaxed","release","relentless","reliable","remarkable","replicate","report","reprimanding","repulsed","repulsive","research","resentful","resourceful","responsible","responsive","rested","restricted","results","retaliating","reveal","revealing","revenge","revengeful","revisited","revolting","revolutionary","reward","rich","ridiculous","risky","riveting","rookie","rowdy","ruin","rules","ruthless","sabotaging","sacred","sadistic","sadly","sadness","safe","safety","sale","sampler","sarcastic","satisfied","savage","savagery","save","savings","savvy","scam","scandal","scandalous","scarce","scared","scary","scornful","scream","searing","secret","secret agenda","secret plot","secrets","secure","security","seductive","seething","seize","selected","self-hating","self-sufficient","sensational","senseless","sensual","serene","seriously","severe","sex","sexy","shaking","shameful","shameless","shaming","shatter","shellacking","shocking","should","shrewd","sick and tired","signs","silly","simple","simplicity","simplified","simplistic","sincere","sinful","sins","six-figure","sizable","sizzle","sizzled","sizzles","sizzling","sizzlingly","skill","skyrocket","slaughter","slave","sleazy","sleeping","sly","smash","smiling","smug","smuggle","smuggled","sneak-peek","sneaky","sniveling","snob","snooty","snotty","soar","soaring","solid","solution","spank","special","spectacular","speedy","spell-binding","spine","spirit","spirited","spiteful","spoiler","spontaneous","spotlight","spunky","squirming","stable","staggering","startling","steady","steal","stealthy","steamy","step-by-step","still","stoic","stop","strange","strangle","strategy","stressed","strong","strongly suggest","struggle","stuck up","studies","stunning","stupid","stupid-simple","sturdy","sublime","succeed","success","successful","suck","suddenly","suffer","sunny","super","super-human","superb","supercharge","superior","supported","supportive","sure","sure fire","surefire","surge","surging","surprise","surprised","surprising","survival","survive","suspicious","sweaty","swoon","swoon-worthy","tailspin","tank","tantalizing","targeted","tawdry","tease","technology","teetering","tempting","tenacious","tense","terrible","terrific","terrified","terrifying","terror","terrorist","tested","thankful","the truth","threaten","threatened","thrilled","thrilling","thug","ticked off","tickled","timely","today","torture","toxic","track record","trade secret","tragedy","tragic","transform","transparency","trap","trapped","trauma","traumatized","treacherous","treasure","tremendous","trend","tricks","triggers","triple","triumph","truly","trusting","trustworthy","truth","truthful","turbo-charge","turbocharges","tweaks","twitching","ultimate","unadulterated","unassuming","unauthorized","unbelievable","unburdened","uncaring","uncensored","uncertain","uncomfortable","unconditional","uncontrollable","unconventional","uncovered","undeniable","under priced","undercover","underground","underhanded","underused","unexpected","unforgettable","unheard of","unhurried","uninterested","unique","unjustified","unknowingly","unleashed","unlimited","unlock","unparalleled","unpopular","unreliable","unresponsive","unseen","unstable","unstoppable","unsure","unsurpassed","untapped","unusual","up-sell","upbeat","uplifted","uplifting","urge","urgent","useful","useless","validate","valor","valuable","value","vanquish","vaporize","venomous","verify","vibrant","vicious","victim","victory","vigorous","vilified","vindictive","violated","violent","volatile","vulnerable","waiting","wanted","wanton","warning","waste","weak","wealth","weird","what no one tells you","whip","whopping","wicked","wild","willpower","withheld","wonderful","wondrous","woozy","world","worry","worst","worthwhile","wounded","wreaking","youthful","zen","zinger"],"diacritics":{"A":"[\\u0041\\u24B6\\uFF21\\u00C0\\u00C1\\u00C2\\u1EA6\\u1EA4\\u1EAA\\u1EA8\\u00C3\\u0100\\u0102\\u1EB0\\u1EAE\\u1EB4\\u1EB2\\u0226\\u01E0\\u00C4\\u01DE\\u1EA2\\u00C5\\u01FA\\u01CD\\u0200\\u0202\\u1EA0\\u1EAC\\u1EB6\\u1E00\\u0104\\u023A\\u2C6F]","AA":"[\\uA732]","AE":"[\\u00C6\\u01FC\\u01E2]","AO":"[\\uA734]","AU":"[\\uA736]","AV":"[\\uA738\\uA73A]","AY":"[\\uA73C]","B":"[\\u0042\\u24B7\\uFF22\\u1E02\\u1E04\\u1E06\\u0243\\u0182\\u0181]","C":"[\\u0043\\u24B8\\uFF23\\u0106\\u0108\\u010A\\u010C\\u00C7\\u1E08\\u0187\\u023B\\uA73E]","D":"[\\u0044\\u24B9\\uFF24\\u1E0A\\u010E\\u1E0C\\u1E10\\u1E12\\u1E0E\\u0110\\u018B\\u018A\\u0189\\uA779]","DZ":"[\\u01F1\\u01C4]","Dz":"[\\u01F2\\u01C5]","E":"[\\u0045\\u24BA\\uFF25\\u00C8\\u00C9\\u00CA\\u1EC0\\u1EBE\\u1EC4\\u1EC2\\u1EBC\\u0112\\u1E14\\u1E16\\u0114\\u0116\\u00CB\\u1EBA\\u011A\\u0204\\u0206\\u1EB8\\u1EC6\\u0228\\u1E1C\\u0118\\u1E18\\u1E1A\\u0190\\u018E]","F":"[\\u0046\\u24BB\\uFF26\\u1E1E\\u0191\\uA77B]","G":"[\\u0047\\u24BC\\uFF27\\u01F4\\u011C\\u1E20\\u011E\\u0120\\u01E6\\u0122\\u01E4\\u0193\\uA7A0\\uA77D\\uA77E]","H":"[\\u0048\\u24BD\\uFF28\\u0124\\u1E22\\u1E26\\u021E\\u1E24\\u1E28\\u1E2A\\u0126\\u2C67\\u2C75\\uA78D]","I":"[\\u0049\\u24BE\\uFF29\\u00CC\\u00CD\\u00CE\\u0128\\u012A\\u012C\\u0130\\u00CF\\u1E2E\\u1EC8\\u01CF\\u0208\\u020A\\u1ECA\\u012E\\u1E2C\\u0197]","J":"[\\u004A\\u24BF\\uFF2A\\u0134\\u0248]","K":"[\\u004B\\u24C0\\uFF2B\\u1E30\\u01E8\\u1E32\\u0136\\u1E34\\u0198\\u2C69\\uA740\\uA742\\uA744\\uA7A2]","L":"[\\u004C\\u24C1\\uFF2C\\u013F\\u0139\\u013D\\u1E36\\u1E38\\u013B\\u1E3C\\u1E3A\\u0141\\u023D\\u2C62\\u2C60\\uA748\\uA746\\uA780]","LJ":"[\\u01C7]","Lj":"[\\u01C8]","M":"[\\u004D\\u24C2\\uFF2D\\u1E3E\\u1E40\\u1E42\\u2C6E\\u019C]","N":"[\\u004E\\u24C3\\uFF2E\\u01F8\\u0143\\u00D1\\u1E44\\u0147\\u1E46\\u0145\\u1E4A\\u1E48\\u0220\\u019D\\uA790\\uA7A4]","NJ":"[\\u01CA]","Nj":"[\\u01CB]","O":"[\\u004F\\u24C4\\uFF2F\\u00D2\\u00D3\\u00D4\\u1ED2\\u1ED0\\u1ED6\\u1ED4\\u00D5\\u1E4C\\u022C\\u1E4E\\u014C\\u1E50\\u1E52\\u014E\\u022E\\u0230\\u00D6\\u022A\\u1ECE\\u0150\\u01D1\\u020C\\u020E\\u01A0\\u1EDC\\u1EDA\\u1EE0\\u1EDE\\u1EE2\\u1ECC\\u1ED8\\u01EA\\u01EC\\u00D8\\u01FE\\u0186\\u019F\\uA74A\\uA74C]","OI":"[\\u01A2]","OO":"[\\uA74E]","OU":"[\\u0222]","P":"[\\u0050\\u24C5\\uFF30\\u1E54\\u1E56\\u01A4\\u2C63\\uA750\\uA752\\uA754]","Q":"[\\u0051\\u24C6\\uFF31\\uA756\\uA758\\u024A]","R":"[\\u0052\\u24C7\\uFF32\\u0154\\u1E58\\u0158\\u0210\\u0212\\u1E5A\\u1E5C\\u0156\\u1E5E\\u024C\\u2C64\\uA75A\\uA7A6\\uA782]","S":"[\\u0053\\u24C8\\uFF33\\u1E9E\\u015A\\u1E64\\u015C\\u1E60\\u0160\\u1E66\\u1E62\\u1E68\\u0218\\u015E\\u2C7E\\uA7A8\\uA784]","T":"[\\u0054\\u24C9\\uFF34\\u1E6A\\u0164\\u1E6C\\u021A\\u0162\\u1E70\\u1E6E\\u0166\\u01AC\\u01AE\\u023E\\uA786]","TZ":"[\\uA728]","U":"[\\u0055\\u24CA\\uFF35\\u00D9\\u00DA\\u00DB\\u0168\\u1E78\\u016A\\u1E7A\\u016C\\u00DC\\u01DB\\u01D7\\u01D5\\u01D9\\u1EE6\\u016E\\u0170\\u01D3\\u0214\\u0216\\u01AF\\u1EEA\\u1EE8\\u1EEE\\u1EEC\\u1EF0\\u1EE4\\u1E72\\u0172\\u1E76\\u1E74\\u0244]","V":"[\\u0056\\u24CB\\uFF36\\u1E7C\\u1E7E\\u01B2\\uA75E\\u0245]","VY":"[\\uA760]","W":"[\\u0057\\u24CC\\uFF37\\u1E80\\u1E82\\u0174\\u1E86\\u1E84\\u1E88\\u2C72]","X":"[\\u0058\\u24CD\\uFF38\\u1E8A\\u1E8C]","Y":"[\\u0059\\u24CE\\uFF39\\u1EF2\\u00DD\\u0176\\u1EF8\\u0232\\u1E8E\\u0178\\u1EF6\\u1EF4\\u01B3\\u024E\\u1EFE]","Z":"[\\u005A\\u24CF\\uFF3A\\u0179\\u1E90\\u017B\\u017D\\u1E92\\u1E94\\u01B5\\u0224\\u2C7F\\u2C6B\\uA762]","a":"[\\u0061\\u24D0\\uFF41\\u1E9A\\u00E0\\u00E1\\u00E2\\u1EA7\\u1EA5\\u1EAB\\u1EA9\\u00E3\\u0101\\u0103\\u1EB1\\u1EAF\\u1EB5\\u1EB3\\u0227\\u01E1\\u00E4\\u01DF\\u1EA3\\u00E5\\u01FB\\u01CE\\u0201\\u0203\\u1EA1\\u1EAD\\u1EB7\\u1E01\\u0105\\u2C65\\u0250]","aa":"[\\uA733]","ae":"[\\u00E6\\u01FD\\u01E3]","ao":"[\\uA735]","au":"[\\uA737]","av":"[\\uA739\\uA73B]","ay":"[\\uA73D]","b":"[\\u0062\\u24D1\\uFF42\\u1E03\\u1E05\\u1E07\\u0180\\u0183\\u0253]","c":"[\\u0063\\u24D2\\uFF43\\u0107\\u0109\\u010B\\u010D\\u00E7\\u1E09\\u0188\\u023C\\uA73F\\u2184]","d":"[\\u0064\\u24D3\\uFF44\\u1E0B\\u010F\\u1E0D\\u1E11\\u1E13\\u1E0F\\u0111\\u018C\\u0256\\u0257\\uA77A]","dz":"[\\u01F3\\u01C6]","e":"[\\u0065\\u24D4\\uFF45\\u00E8\\u00E9\\u00EA\\u1EC1\\u1EBF\\u1EC5\\u1EC3\\u1EBD\\u0113\\u1E15\\u1E17\\u0115\\u0117\\u00EB\\u1EBB\\u011B\\u0205\\u0207\\u1EB9\\u1EC7\\u0229\\u1E1D\\u0119\\u1E19\\u1E1B\\u0247\\u025B\\u01DD]","f":"[\\u0066\\u24D5\\uFF46\\u1E1F\\u0192\\uA77C]","g":"[\\u0067\\u24D6\\uFF47\\u01F5\\u011D\\u1E21\\u011F\\u0121\\u01E7\\u0123\\u01E5\\u0260\\uA7A1\\u1D79\\uA77F]","h":"[\\u0068\\u24D7\\uFF48\\u0125\\u1E23\\u1E27\\u021F\\u1E25\\u1E29\\u1E2B\\u1E96\\u0127\\u2C68\\u2C76\\u0265]","hv":"[\\u0195]","i":"[\\u0069\\u24D8\\uFF49\\u00EC\\u00ED\\u00EE\\u0129\\u012B\\u012D\\u00EF\\u1E2F\\u1EC9\\u01D0\\u0209\\u020B\\u1ECB\\u012F\\u1E2D\\u0268\\u0131]","j":"[\\u006A\\u24D9\\uFF4A\\u0135\\u01F0\\u0249]","k":"[\\u006B\\u24DA\\uFF4B\\u1E31\\u01E9\\u1E33\\u0137\\u1E35\\u0199\\u2C6A\\uA741\\uA743\\uA745\\uA7A3]","l":"[\\u006C\\u24DB\\uFF4C\\u0140\\u013A\\u013E\\u1E37\\u1E39\\u013C\\u1E3D\\u1E3B\\u017F\\u0142\\u019A\\u026B\\u2C61\\uA749\\uA781\\uA747]","lj":"[\\u01C9]","m":"[\\u006D\\u24DC\\uFF4D\\u1E3F\\u1E41\\u1E43\\u0271\\u026F]","n":"[\\u006E\\u24DD\\uFF4E\\u01F9\\u0144\\u00F1\\u1E45\\u0148\\u1E47\\u0146\\u1E4B\\u1E49\\u019E\\u0272\\u0149\\uA791\\uA7A5]","nj":"[\\u01CC]","o":"[\\u006F\\u24DE\\uFF4F\\u00F2\\u00F3\\u00F4\\u1ED3\\u1ED1\\u1ED7\\u1ED5\\u00F5\\u1E4D\\u022D\\u1E4F\\u014D\\u1E51\\u1E53\\u014F\\u022F\\u0231\\u00F6\\u022B\\u1ECF\\u0151\\u01D2\\u020D\\u020F\\u01A1\\u1EDD\\u1EDB\\u1EE1\\u1EDF\\u1EE3\\u1ECD\\u1ED9\\u01EB\\u01ED\\u00F8\\u01FF\\u0254\\uA74B\\uA74D\\u0275]","oi":"[\\u01A3]","ou":"[\\u0223]","oo":"[\\uA74F]","p":"[\\u0070\\u24DF\\uFF50\\u1E55\\u1E57\\u01A5\\u1D7D\\uA751\\uA753\\uA755]","q":"[\\u0071\\u24E0\\uFF51\\u024B\\uA757\\uA759]","r":"[\\u0072\\u24E1\\uFF52\\u0155\\u1E59\\u0159\\u0211\\u0213\\u1E5B\\u1E5D\\u0157\\u1E5F\\u024D\\u027D\\uA75B\\uA7A7\\uA783]","s":"[\\u0073\\u24E2\\uFF53\\u015B\\u1E65\\u015D\\u1E61\\u0161\\u1E67\\u1E63\\u1E69\\u0219\\u015F\\u023F\\uA7A9\\uA785\\u1E9B]","ss":"[\\u00DF]","t":"[\\u0074\\u24E3\\uFF54\\u1E6B\\u1E97\\u0165\\u1E6D\\u021B\\u0163\\u1E71\\u1E6F\\u0167\\u01AD\\u0288\\u2C66\\uA787]","tz":"[\\uA729]","u":"[\\u0075\\u24E4\\uFF55\\u00F9\\u00FA\\u00FB\\u0169\\u1E79\\u016B\\u1E7B\\u016D\\u00FC\\u01DC\\u01D8\\u01D6\\u01DA\\u1EE7\\u016F\\u0171\\u01D4\\u0215\\u0217\\u01B0\\u1EEB\\u1EE9\\u1EEF\\u1EED\\u1EF1\\u1EE5\\u1E73\\u0173\\u1E77\\u1E75\\u0289]","v":"[\\u0076\\u24E5\\uFF56\\u1E7D\\u1E7F\\u028B\\uA75F\\u028C]","vy":"[\\uA761]","w":"[\\u0077\\u24E6\\uFF57\\u1E81\\u1E83\\u0175\\u1E87\\u1E85\\u1E98\\u1E89\\u2C73]","x":"[\\u0078\\u24E7\\uFF58\\u1E8B\\u1E8D]","y":"[\\u0079\\u24E8\\uFF59\\u1EF3\\u00FD\\u0177\\u1EF9\\u0233\\u1E8F\\u00FF\\u1EF7\\u1E99\\u1EF5\\u01B4\\u024F\\u1EFF]","z":"[\\u007A\\u24E9\\uFF5A\\u017A\\u1E91\\u017C\\u017E\\u1E93\\u1E95\\u01B6\\u0225\\u0240\\u2C6C\\uA763]"},"researchesTests":["contentHasTOC","contentHasShortParagraphs","contentHasAssets","keywordInTitle","keywordInMetaDescription","keywordInPermalink","keywordIn10Percent","keywordInContent","keywordInSubheadings","keywordInImageAlt","keywordDensity","keywordNotUsed","lengthContent","lengthPermalink","linksHasInternal","linksHasExternals","linksNotAllExternals","titleStartWithKeyword","titleSentiment","titleHasPowerWords","titleHasNumber","hasContentAI"],"hasRedirection":false,"hasBreadcrumb":false},"homeUrl":"https:\/\/inmanet.com.sa\/en\/","objectID":12516,"objectType":"post","locale":"en","localeFull":"en_US","overlayImages":{"play":{"name":"Play icon","url":"https:\/\/inmanet.com.sa\/wp-content\/plugins\/seo-by-rank-math\/assets\/admin\/img\/icon-play.png","path":"\/var\/www\/html\/inma-website\/wp-content\/plugins\/seo-by-rank-math\/assets\/admin\/img\/icon-play.png","position":"middle_center"},"gif":{"name":"GIF icon","url":"https:\/\/inmanet.com.sa\/wp-content\/plugins\/seo-by-rank-math\/assets\/admin\/img\/icon-gif.png","path":"\/var\/www\/html\/inma-website\/wp-content\/plugins\/seo-by-rank-math\/assets\/admin\/img\/icon-gif.png","position":"middle_center"}},"defautOgImage":"https:\/\/inmanet.com.sa\/wp-content\/uploads\/2025\/01\/inma-social.webp","customPermalinks":true,"isUserRegistered":false,"autoSuggestKeywords":false,"connectSiteUrl":"https:\/\/rankmath.com\/auth?site=https%3A%2F%2Finmanet.com.sa%2Fen%2F&r=https%3A%2F%2Finmanet.com.sa%2Fen%2Fwp-json%2Fwp%2Fv2%2Fpages%2F11620%3Fnonce%3Db49cf0dd2f","maxTags":5,"trendsIcon":"<svg viewBox=\"0 0 610 610\"><path d=\"M18.85,446,174.32,290.48l58.08,58.08L76.93,504a14.54,14.54,0,0,1-20.55,0L18.83,466.48a14.54,14.54,0,0,1,0-20.55Z\" style=\"fill:#4285f4\"\/><path d=\"M242.65,242.66,377.59,377.6l-47.75,47.75a14.54,14.54,0,0,1-20.55,0L174.37,290.43l47.75-47.75A14.52,14.52,0,0,1,242.65,242.66Z\" style=\"fill:#ea4335\"\/><polygon points=\"319.53 319.53 479.26 159.8 537.34 217.88 377.61 377.62 319.53 319.53\" style=\"fill:#fabb05\"\/><path d=\"M594.26,262.73V118.61h0a16.94,16.94,0,0,0-16.94-16.94H433.2a16.94,16.94,0,0,0-12,28.92L565.34,274.71h0a16.94,16.94,0,0,0,28.92-12Z\" style=\"fill:#34a853\"\/><rect width=\"610\" height=\"610\" style=\"fill:none\"\/><\/svg>","showScore":true,"siteFavIcon":"https:\/\/inmanet.com.sa\/wp-content\/uploads\/2025\/01\/cropped-inma-favicon-1-32x32.png","canUser":{"general":false,"advanced":false,"snippet":false,"social":false,"analysis":false,"analytics":false,"content_ai":false},"showKeywordIntent":true,"isPro":false,"is_front_page":false,"trendsUpgradeLink":"https:\/\/rankmath.com\/pricing\/?utm_source=Plugin&utm_medium=CE%20General%20Tab%20Trends&utm_campaign=WP","trendsUpgradeLabel":"Upgrade","trendsPreviewImage":"https:\/\/inmanet.com.sa\/wp-content\/plugins\/seo-by-rank-math\/assets\/admin\/img\/trends-preview.jpg","currentEditor":false,"homepageData":{"assessor":{"powerWords":["a cut above","absolute","absolutely","absolutely lowest","absurd","abuse","accurate","accuse","achieve","actionable","adaptable","adequate","admit","adorable","advantage","advice","affordable","aggravate","aggressive","agitated","agonizing","agony","alarmed","alarming","alienated","aligned","alive","all-inclusive","alluring","always","amazing","amp","animated","annihilate","announcing","anonymous","antagonistic","anxious","apocalypse","appalled","approved","approving","argumentative","armageddon","arrogant","ass kicking","assault","assured","astonishing","astounded","astounding","at ease","atrocious","attack","attractive","audacity","authentic","authoritative","authority","avoid","aware","awe-inspiring","awesome","awkward","backbone","backdoor","backed","backlash","backstabbing","badass","balanced","banned","bargain","barrage","basic","battle","beaming","beat down","beating","beautiful","beauty","begging","behind the scenes","belief","belong","best","best-selling","better","beware","big","billion","black market","blacklisted","blast","blessed","blinded","blissful","blood","bloodbath","bloodcurdling","bloody","blunder","blushing","bold","bomb","bona","bona fide","bonanza","bonus","bootleg","bottom line","bountiful","brave","bravery","brazen","break","breaking","breakthrough","breathtaking","bright","brilliant","broke","brutal","budget","buffoon","bullshit","bully","bumbling","buy","cadaver","calm","cancel anytime","capable","captivate","captivating","carefree","case study","cash","cataclysmic","catapult","catastrophe","caution","censored","centered","certain","certainly","certified","challenge","charming","cheap","cheat","cheat-sheet","cheer","cheerful","child-like","clarity","classified","clear","clueless","collapse","colorful","colossal","comfortable","compare","competitive","complete","completely","completeness","comprehensive","compromise","compulsive","concealed","conclusive","condemning","condescending","confess","confession","confessions","confident","confidential","conquer","conscientious","constructive","content","contrary","controlling","controversial","convenient","convert","cool","cooperative","copy","corpse","corrupt","corrupting","courage","courageous","cover-up","covert","coward","cowardly","crammed","crave","crazy","create","creative","cringeworthy","cripple","crisis","critical","crooked","crush","crushing","damaging","danger","dangerous","daring","dazzling","dead","deadline","deadly","death","decadent","deceived","deceptive","deep","defiance","definitely","definitive","defying","dejected","delicious","delight","delighted","delightful","delirious","delivered","demoralizing","deplorable","depraved","desire","desperate","despicable","destiny","destroy","detailed","devastating","devoted","diagnosed","direct","dirty","disadvantages","disastrous","discount","discover","disdainful","disempowered","disgusted","disgusting","dishonest","disillusioned","disoriented","distracted","distraught","distressed","distrustful","divulge","document","dollar","dominate","doomed","double","doubtful","download","dreadful","dreamy","drive","drowning","dumb","dynamic","eager","earnest","easily","easy","economical","ecstatic","edge","effective","efficient","effortless","elated","eliminate","elite","embarrass","embarrassed","embarrassing","emergency","emerging","emphasize","empowered","enchant","encouraged","endorsed","energetic","energy","enormous","enraged","enthusiastic","envy","epic","epidemic","essential","ethical","euphoric","evil","exactly","exasperated","excellent","excited","excitement","exciting","exclusive","exclusivity","excruciating","exhilarated","expensive","expert","explode","exploit","explosive","exposed","exquisite","extra","extraordinary","extremely","exuberant","eye-opening","fail","fail-proof","failure","faith","famous","fantasy","fascinating","fatigued","faux","faux pas","fearless","feast","feeble","festive","fide","fierce","fight","final","fine","fired","first","first ever","flirt","fluid","focus","focused","fool","fooled","foolish","forbidden","force-fed","forever","forgiving","forgotten","formula","fortune","foul","frantic","free","freebie","freedom","frenzied","frenzy","frightening","frisky","frugal","frustrated","fulfill","fulfilled","full","fully","fun","fun-loving","fundamentals","funniest","funny","furious","gambling","gargantuan","genius","genuine","gift","gigantic","giveaway","glamorous","gleeful","glorious","glowing","goddamn","gorgeous","graceful","grateful","gratified","gravity","great","greatest","greatness","greed","greedy","gripping","grit","grounded","growth","guaranteed","guilt","guilt-free","gullible","guts","hack","happiness","happy","harmful","harsh","hate","have you heard","havoc","hazardous","healthy","heart","heartbreaking","heartwarming","heavenly","hell","helpful","helplessness","hero","hesitant","hidden","high tech","highest","highly effective","hilarious","hoak","hoax","honest","honored","hope","hopeful","horribly","horrific","horrifying","horror","hostile","how to","huge","humility","humor","hurricane","hurry","hypnotic","idiot","ignite","illegal","illusive","imagination","immediately","imminently","impatience","impatient","impenetrable","important","impressive","improved","in the zone","incapable","incapacitated","incompetent","inconsiderate","increase","incredible","indecisive","indulgence","indulgent","inexpensive","inferior","informative","infuriated","ingredients","innocent","innovative","insane","insecure","insider","insidious","inspired","inspiring","instant savings","instantly","instructive","insult","intel","intelligent","intense","interesting","intriguing","introducing","invasion","investment","iron-clad","ironclad","irresistible","irs","is here","jackpot","jail","jaw-dropping","jealous","jeopardy","jittery","jovial","joyous","jubilant","judgmental","jumpstart","just arrived","keen","kickass","kickstart","kill","killed","killing","kills","know it all","lame","largest","lascivious","last","last chance","last minute","latest","laugh","laughing","launch","launching","lavishly","lawsuit","lazy","left behind","legendary","legitimate","liberal","liberated","lick","lies","life-changing","lifetime","light","lighthearted","likely","limited","literally","little-known","loathsome","lonely","looming","loser","lost","love","lucrative","lunatic","lurking","lust","luxurious","luxury","lying","magic","magical","magnificent","mainstream","malicious","mammoth","manipulative","marked down","massive","master","masterclass","maul","mediocre","meditative","meltdown","memorability","memorable","menacing","mesmerizing","meticulous","mind-blowing","minimalist","miracle","mired","mischievous","misgiving","missing out","mistake","monetize","money","moneyback","moneygrubbing","monumental","most important","motivated","mouth-watering","murder","mystery","nail","naked","natural","naughty","nazi","nest egg","never","new","nightmare","no good","no obligation","no one talks about","no questions asked","no risk","no strings attached","non-controlling","noted","novelty","now","obnoxious","obsessed","obsession","obvious","odd","off-kilter","off-limits","off-the record","offensive","official","okay","on-demand","open-minded","opportunities","optimistic","ordeal","outlawed","outrageousness","outstanding","overcome","overjoyed","overnight","overwhelmed","packed","painful","painless","painstaking","pale","panic","panicked","paralyzed","pas","passionate","pathetic","pay zero","payback","perfect","peril","perplexed","perspective","pessimistic","pioneering","piranha","pitfall","pitiful","placid","plague","played","playful","pleased","pluck","plummet","plunge","poison","poisonous","polarizing","poor","popular","portfolio","pound","powerful","powerless","practical","preposterous","prestige","price","priceless","pride","prison","privacy","private","privileged","prize","problem","productive","professional","profit","profitable","profound","promiscuous","promising","promote","protect","protected","proven","provocative","provoke","psychological","pummel","punch","punish","pus","quadruple","quality","quarrelsome","quick","quick-start","quickly","quiet","radiant","rare","ravenous","rebellious","recession-proof","reckoning","recognized","recommend","recreate","reduced","reflective","refugee","refund","refundable","reject","relaxed","release","relentless","reliable","remarkable","replicate","report","reprimanding","repulsed","repulsive","research","resentful","resourceful","responsible","responsive","rested","restricted","results","retaliating","reveal","revealing","revenge","revengeful","revisited","revolting","revolutionary","reward","rich","ridiculous","risky","riveting","rookie","rowdy","ruin","rules","ruthless","sabotaging","sacred","sadistic","sadly","sadness","safe","safety","sale","sampler","sarcastic","satisfied","savage","savagery","save","savings","savvy","scam","scandal","scandalous","scarce","scared","scary","scornful","scream","searing","secret","secret agenda","secret plot","secrets","secure","security","seductive","seething","seize","selected","self-hating","self-sufficient","sensational","senseless","sensual","serene","seriously","severe","sex","sexy","shaking","shameful","shameless","shaming","shatter","shellacking","shocking","should","shrewd","sick and tired","signs","silly","simple","simplicity","simplified","simplistic","sincere","sinful","sins","six-figure","sizable","sizzle","sizzled","sizzles","sizzling","sizzlingly","skill","skyrocket","slaughter","slave","sleazy","sleeping","sly","smash","smiling","smug","smuggle","smuggled","sneak-peek","sneaky","sniveling","snob","snooty","snotty","soar","soaring","solid","solution","spank","special","spectacular","speedy","spell-binding","spine","spirit","spirited","spiteful","spoiler","spontaneous","spotlight","spunky","squirming","stable","staggering","startling","steady","steal","stealthy","steamy","step-by-step","still","stoic","stop","strange","strangle","strategy","stressed","strong","strongly suggest","struggle","stuck up","studies","stunning","stupid","stupid-simple","sturdy","sublime","succeed","success","successful","suck","suddenly","suffer","sunny","super","super-human","superb","supercharge","superior","supported","supportive","sure","sure fire","surefire","surge","surging","surprise","surprised","surprising","survival","survive","suspicious","sweaty","swoon","swoon-worthy","tailspin","tank","tantalizing","targeted","tawdry","tease","technology","teetering","tempting","tenacious","tense","terrible","terrific","terrified","terrifying","terror","terrorist","tested","thankful","the truth","threaten","threatened","thrilled","thrilling","thug","ticked off","tickled","timely","today","torture","toxic","track record","trade secret","tragedy","tragic","transform","transparency","trap","trapped","trauma","traumatized","treacherous","treasure","tremendous","trend","tricks","triggers","triple","triumph","truly","trusting","trustworthy","truth","truthful","turbo-charge","turbocharges","tweaks","twitching","ultimate","unadulterated","unassuming","unauthorized","unbelievable","unburdened","uncaring","uncensored","uncertain","uncomfortable","unconditional","uncontrollable","unconventional","uncovered","undeniable","under priced","undercover","underground","underhanded","underused","unexpected","unforgettable","unheard of","unhurried","uninterested","unique","unjustified","unknowingly","unleashed","unlimited","unlock","unparalleled","unpopular","unreliable","unresponsive","unseen","unstable","unstoppable","unsure","unsurpassed","untapped","unusual","up-sell","upbeat","uplifted","uplifting","urge","urgent","useful","useless","validate","valor","valuable","value","vanquish","vaporize","venomous","verify","vibrant","vicious","victim","victory","vigorous","vilified","vindictive","violated","violent","volatile","vulnerable","waiting","wanted","wanton","warning","waste","weak","wealth","weird","what no one tells you","whip","whopping","wicked","wild","willpower","withheld","wonderful","wondrous","woozy","world","worry","worst","worthwhile","wounded","wreaking","youthful","zen","zinger"],"diacritics":true,"researchesTests":["contentHasTOC","contentHasShortParagraphs","contentHasAssets","keywordInTitle","keywordInMetaDescription","keywordInPermalink","keywordIn10Percent","keywordInContent","keywordInSubheadings","keywordInImageAlt","keywordDensity","keywordNotUsed","lengthContent","lengthPermalink","linksHasInternal","linksHasExternals","linksNotAllExternals","titleStartWithKeyword","titleSentiment","titleHasPowerWords","titleHasNumber","hasContentAI"],"hasBreadcrumb":false,"serpData":{"title":"%sitename% %page% %sep% %sitedesc%","description":"","titleTemplate":"%sitename% %page% %sep% %sitedesc%","descriptionTemplate":"","focusKeywords":"","breadcrumbTitle":"Home","robots":{"index":true},"advancedRobots":[],"facebookTitle":"","facebookDescription":"","facebookImage":"","facebookImageID":""}}},"tocTitle":"Table of Contents","tocExcludeHeadings":[],"listStyle":"ul"},"_links":{"self":[{"href":"https:\/\/inmanet.com.sa\/en\/wp-json\/wp\/v2\/pages\/11620","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/inmanet.com.sa\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/inmanet.com.sa\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/inmanet.com.sa\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/inmanet.com.sa\/en\/wp-json\/wp\/v2\/comments?post=11620"}],"version-history":[{"count":84,"href":"https:\/\/inmanet.com.sa\/en\/wp-json\/wp\/v2\/pages\/11620\/revisions"}],"predecessor-version":[{"id":14977,"href":"https:\/\/inmanet.com.sa\/en\/wp-json\/wp\/v2\/pages\/11620\/revisions\/14977"}],"wp:attachment":[{"href":"https:\/\/inmanet.com.sa\/en\/wp-json\/wp\/v2\/media?parent=11620"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}