CINXE.COM

Innovation - IFFCO

<!DOCTYPE html> <html lang="en-US"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <!-- <script async src="assets/js/modernizr.min.js"></script> --> <!-- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"> --> <script> window.dataLayer = window.dataLayer || []; function gtag() { dataLayer.push(arguments); } gtag("consent", "default", { ad_user_data: "denied", ad_personalization: "denied", ad_storage: "denied", analytics_storage: "denied", functionality_storage: "denied", personalization_storage: "denied", security_storage: "granted", wait_for_update: 500, }); gtag("set", "ads_data_redaction", true); </script> <script type="text/javascript" id="Cookiebot" src="https://consent.cookiebot.com/uc.js" data-cbid="d6a1aa34-b5d0-42d4-b4a3-afa55e94c561" async ></script> <meta name='robots' content='index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1' /> <style>img:is([sizes="auto" i], [sizes^="auto," i]) { contain-intrinsic-size: 3000px 1500px }</style> <link rel="alternate" href="https://iffco.com/about/innovation/" hreflang="en" /> <link rel="alternate" href="https://iffco.com/ar/about/innovation/" hreflang="ar" /> <!-- This site is optimized with the Yoast SEO plugin v23.9 - https://yoast.com/wordpress/plugins/seo/ --> <title>Innovation - IFFCO</title> <link rel="canonical" href="https://iffco.com/about/innovation/" /> <meta property="og:locale" content="en_US" /> <meta property="og:locale:alternate" content="ar_AR" /> <meta property="og:type" content="article" /> <meta property="og:title" content="Innovation - IFFCO" /> <meta property="og:url" content="https://iffco.com/about/innovation/" /> <meta property="og:site_name" content="IFFCO" /> <meta property="article:modified_time" content="2024-06-04T12:14:28+00:00" /> <meta name="twitter:card" content="summary_large_image" /> <script type="application/ld+json" class="yoast-schema-graph">{"@context":"https://schema.org","@graph":[{"@type":"WebPage","@id":"https://iffco.com/about/innovation/","url":"https://iffco.com/about/innovation/","name":"Innovation - IFFCO","isPartOf":{"@id":"https://iffco.com/#website"},"datePublished":"2023-12-04T05:05:34+00:00","dateModified":"2024-06-04T12:14:28+00:00","breadcrumb":{"@id":"https://iffco.com/about/innovation/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https://iffco.com/about/innovation/"]}]},{"@type":"BreadcrumbList","@id":"https://iffco.com/about/innovation/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://iffco.com/"},{"@type":"ListItem","position":2,"name":"About","item":"https://iffco.com/about/"},{"@type":"ListItem","position":3,"name":"Innovation"}]},{"@type":"WebSite","@id":"https://iffco.com/#website","url":"https://iffco.com/","name":"IFFCO","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https://iffco.com/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}</script> <!-- / Yoast SEO plugin. --> <link rel='dns-prefetch' href='//iffco.com' /> <link rel="alternate" type="application/rss+xml" title="IFFCO &raquo; Feed" href="https://iffco.com/feed/" /> <link rel="alternate" type="application/rss+xml" title="IFFCO &raquo; Comments Feed" href="https://iffco.com/comments/feed/" /> <script type="text/javascript"> /* <![CDATA[ */ window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/svg\/","svgExt":".svg","source":{"wpemoji":"https:\/\/iffco.com\/wp-includes\/js\/wp-emoji.js","twemoji":"https:\/\/iffco.com\/wp-includes\/js\/twemoji.js"}}; /** * @output wp-includes/js/wp-emoji-loader.js */ /** * Emoji Settings as exported in PHP via _print_emoji_detection_script(). * @typedef WPEmojiSettings * @type {object} * @property {?object} source * @property {?string} source.concatemoji * @property {?string} source.twemoji * @property {?string} source.wpemoji * @property {?boolean} DOMReady * @property {?Function} readyCallback */ /** * Support tests. * @typedef SupportTests * @type {object} * @property {?boolean} flag * @property {?boolean} emoji */ /** * IIFE to detect emoji support and load Twemoji if needed. * * @param {Window} window * @param {Document} document * @param {WPEmojiSettings} settings */ ( function wpEmojiLoader( window, document, settings ) { if ( typeof Promise === 'undefined' ) { return; } var sessionStorageKey = 'wpEmojiSettingsSupports'; var tests = [ 'flag', 'emoji' ]; /** * Checks whether the browser supports offloading to a Worker. * * @since 6.3.0 * * @private * * @returns {boolean} */ function supportsWorkerOffloading() { return ( typeof Worker !== 'undefined' && typeof OffscreenCanvas !== 'undefined' && typeof URL !== 'undefined' && URL.createObjectURL && typeof Blob !== 'undefined' ); } /** * @typedef SessionSupportTests * @type {object} * @property {number} timestamp * @property {SupportTests} supportTests */ /** * Get support tests from session. * * @since 6.3.0 * * @private * * @returns {?SupportTests} Support tests, or null if not set or older than 1 week. */ function getSessionSupportTests() { try { /** @type {SessionSupportTests} */ var item = JSON.parse( sessionStorage.getItem( sessionStorageKey ) ); if ( typeof item === 'object' && typeof item.timestamp === 'number' && new Date().valueOf() < item.timestamp + 604800 && // Note: Number is a week in seconds. typeof item.supportTests === 'object' ) { return item.supportTests; } } catch ( e ) {} return null; } /** * Persist the supports in session storage. * * @since 6.3.0 * * @private * * @param {SupportTests} supportTests Support tests. */ function setSessionSupportTests( supportTests ) { try { /** @type {SessionSupportTests} */ var item = { supportTests: supportTests, timestamp: new Date().valueOf() }; sessionStorage.setItem( sessionStorageKey, JSON.stringify( item ) ); } catch ( e ) {} } /** * Checks if two sets of Emoji characters render the same visually. * * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing * scope. Everything must be passed by parameters. * * @since 4.9.0 * * @private * * @param {CanvasRenderingContext2D} context 2D Context. * @param {string} set1 Set of Emoji to test. * @param {string} set2 Set of Emoji to test. * * @return {boolean} True if the two sets render the same. */ function emojiSetsRenderIdentically( context, set1, set2 ) { // Cleanup from previous test. context.clearRect( 0, 0, context.canvas.width, context.canvas.height ); context.fillText( set1, 0, 0 ); var rendered1 = new Uint32Array( context.getImageData( 0, 0, context.canvas.width, context.canvas.height ).data ); // Cleanup from previous test. context.clearRect( 0, 0, context.canvas.width, context.canvas.height ); context.fillText( set2, 0, 0 ); var rendered2 = new Uint32Array( context.getImageData( 0, 0, context.canvas.width, context.canvas.height ).data ); return rendered1.every( function ( rendered2Data, index ) { return rendered2Data === rendered2[ index ]; } ); } /** * Determines if the browser properly renders Emoji that Twemoji can supplement. * * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing * scope. Everything must be passed by parameters. * * @since 4.2.0 * * @private * * @param {CanvasRenderingContext2D} context 2D Context. * @param {string} type Whether to test for support of "flag" or "emoji". * @param {Function} emojiSetsRenderIdentically Reference to emojiSetsRenderIdentically function, needed due to minification. * * @return {boolean} True if the browser can render emoji, false if it cannot. */ function browserSupportsEmoji( context, type, emojiSetsRenderIdentically ) { var isIdentical; switch ( type ) { case 'flag': /* * Test for Transgender flag compatibility. Added in Unicode 13. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly (white flag emoji + transgender symbol). */ isIdentical = emojiSetsRenderIdentically( context, '\uD83C\uDFF3\uFE0F\u200D\u26A7\uFE0F', // as a zero-width joiner sequence '\uD83C\uDFF3\uFE0F\u200B\u26A7\uFE0F' // separated by a zero-width space ); if ( isIdentical ) { return false; } /* * Test for UN flag compatibility. This is the least supported of the letter locale flags, * so gives us an easy test for full support. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly ([U] + [N]). */ isIdentical = emojiSetsRenderIdentically( context, '\uD83C\uDDFA\uD83C\uDDF3', // as the sequence of two code points '\uD83C\uDDFA\u200B\uD83C\uDDF3' // as the two code points separated by a zero-width space ); if ( isIdentical ) { return false; } /* * Test for English flag compatibility. England is a country in the United Kingdom, it * does not have a two letter locale code but rather a five letter sub-division code. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly (black flag emoji + [G] + [B] + [E] + [N] + [G]). */ isIdentical = emojiSetsRenderIdentically( context, // as the flag sequence '\uD83C\uDFF4\uDB40\uDC67\uDB40\uDC62\uDB40\uDC65\uDB40\uDC6E\uDB40\uDC67\uDB40\uDC7F', // with each code point separated by a zero-width space '\uD83C\uDFF4\u200B\uDB40\uDC67\u200B\uDB40\uDC62\u200B\uDB40\uDC65\u200B\uDB40\uDC6E\u200B\uDB40\uDC67\u200B\uDB40\uDC7F' ); return ! isIdentical; case 'emoji': /* * Four and twenty blackbirds baked in a pie. * * To test for Emoji 15.0 support, try to render a new emoji: Blackbird. * * The Blackbird is a ZWJ sequence combining 🐦 Bird and ⬛ large black square., * * 0x1F426 (\uD83D\uDC26) == Bird * 0x200D == Zero-Width Joiner (ZWJ) that links the code points for the new emoji or * 0x200B == Zero-Width Space (ZWS) that is rendered for clients not supporting the new emoji. * 0x2B1B == Large Black Square * * When updating this test for future Emoji releases, ensure that individual emoji that make up the * sequence come from older emoji standards. */ isIdentical = emojiSetsRenderIdentically( context, '\uD83D\uDC26\u200D\u2B1B', // as the zero-width joiner sequence '\uD83D\uDC26\u200B\u2B1B' // separated by a zero-width space ); return ! isIdentical; } return false; } /** * Checks emoji support tests. * * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing * scope. Everything must be passed by parameters. * * @since 6.3.0 * * @private * * @param {string[]} tests Tests. * @param {Function} browserSupportsEmoji Reference to browserSupportsEmoji function, needed due to minification. * @param {Function} emojiSetsRenderIdentically Reference to emojiSetsRenderIdentically function, needed due to minification. * * @return {SupportTests} Support tests. */ function testEmojiSupports( tests, browserSupportsEmoji, emojiSetsRenderIdentically ) { var canvas; if ( typeof WorkerGlobalScope !== 'undefined' && self instanceof WorkerGlobalScope ) { canvas = new OffscreenCanvas( 300, 150 ); // Dimensions are default for HTMLCanvasElement. } else { canvas = document.createElement( 'canvas' ); } var context = canvas.getContext( '2d', { willReadFrequently: true } ); /* * Chrome on OS X added native emoji rendering in M41. Unfortunately, * it doesn't work when the font is bolder than 500 weight. So, we * check for bold rendering support to avoid invisible emoji in Chrome. */ context.textBaseline = 'top'; context.font = '600 32px Arial'; var supports = {}; tests.forEach( function ( test ) { supports[ test ] = browserSupportsEmoji( context, test, emojiSetsRenderIdentically ); } ); return supports; } /** * Adds a script to the head of the document. * * @ignore * * @since 4.2.0 * * @param {string} src The url where the script is located. * * @return {void} */ function addScript( src ) { var script = document.createElement( 'script' ); script.src = src; script.defer = true; document.head.appendChild( script ); } settings.supports = { everything: true, everythingExceptFlag: true }; // Create a promise for DOMContentLoaded since the worker logic may finish after the event has fired. var domReadyPromise = new Promise( function ( resolve ) { document.addEventListener( 'DOMContentLoaded', resolve, { once: true } ); } ); // Obtain the emoji support from the browser, asynchronously when possible. new Promise( function ( resolve ) { var supportTests = getSessionSupportTests(); if ( supportTests ) { resolve( supportTests ); return; } if ( supportsWorkerOffloading() ) { try { // Note that the functions are being passed as arguments due to minification. var workerScript = 'postMessage(' + testEmojiSupports.toString() + '(' + [ JSON.stringify( tests ), browserSupportsEmoji.toString(), emojiSetsRenderIdentically.toString() ].join( ',' ) + '));'; var blob = new Blob( [ workerScript ], { type: 'text/javascript' } ); var worker = new Worker( URL.createObjectURL( blob ), { name: 'wpTestEmojiSupports' } ); worker.onmessage = function ( event ) { supportTests = event.data; setSessionSupportTests( supportTests ); worker.terminate(); resolve( supportTests ); }; return; } catch ( e ) {} } supportTests = testEmojiSupports( tests, browserSupportsEmoji, emojiSetsRenderIdentically ); setSessionSupportTests( supportTests ); resolve( supportTests ); } ) // Once the browser emoji support has been obtained from the session, finalize the settings. .then( function ( supportTests ) { /* * Tests the browser support for flag emojis and other emojis, and adjusts the * support settings accordingly. */ for ( var test in supportTests ) { settings.supports[ test ] = supportTests[ test ]; settings.supports.everything = settings.supports.everything && settings.supports[ test ]; if ( 'flag' !== test ) { settings.supports.everythingExceptFlag = settings.supports.everythingExceptFlag && settings.supports[ test ]; } } settings.supports.everythingExceptFlag = settings.supports.everythingExceptFlag && ! settings.supports.flag; // Sets DOMReady to false and assigns a ready function to settings. settings.DOMReady = false; settings.readyCallback = function () { settings.DOMReady = true; }; } ) .then( function () { return domReadyPromise; } ) .then( function () { // When the browser can not render everything we need to load a polyfill. if ( ! settings.supports.everything ) { settings.readyCallback(); var src = settings.source || {}; if ( src.concatemoji ) { addScript( src.concatemoji ); } else if ( src.wpemoji && src.twemoji ) { addScript( src.twemoji ); addScript( src.wpemoji ); } } } ); } )( window, document, window._wpemojiSettings ); /* ]]> */ </script> <style id='wp-emoji-styles-inline-css' type='text/css'> img.wp-smiley, img.emoji { display: inline !important; border: none !important; box-shadow: none !important; height: 1em !important; width: 1em !important; margin: 0 0.07em !important; vertical-align: -0.1em !important; background: none !important; padding: 0 !important; } </style> <link rel="stylesheet" href="https://iffco.com/wp-content/cache/minify/52347.css" media="all" /> <style id='classic-theme-styles-inline-css' type='text/css'> /** * These rules are needed for backwards compatibility. * They should match the button element rules in the base theme.json file. */ .wp-block-button__link { color: #ffffff; background-color: #32373c; border-radius: 9999px; /* 100% causes an oval, but any explicit but really high value retains the pill shape. */ /* This needs a low specificity so it won't override the rules from the button element if defined in theme.json. */ box-shadow: none; text-decoration: none; /* The extra 2px are added to size solids the same as the outline versions.*/ padding: calc(0.667em + 2px) calc(1.333em + 2px); font-size: 1.125em; } .wp-block-file__button { background: #32373c; color: #ffffff; text-decoration: none; } </style> <style id='global-styles-inline-css' type='text/css'> :root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;} :where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;} :where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;} :root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;} </style> <link rel="stylesheet" href="https://iffco.com/wp-content/cache/minify/4c431.css" media="all" /> <style id='contact-form-7-inline-css' type='text/css'> .wpcf7 .wpcf7-recaptcha iframe {margin-bottom: 0;}.wpcf7 .wpcf7-recaptcha[data-align="center"] > div {margin: 0 auto;}.wpcf7 .wpcf7-recaptcha[data-align="right"] > div {margin: 0 0 0 auto;} </style> <link rel="stylesheet" href="https://iffco.com/wp-content/cache/minify/e57b6.css" media="all" /> <style id='heateor_sss_frontend_css-inline-css' type='text/css'> .heateor_sss_button_instagram span.heateor_sss_svg,a.heateor_sss_instagram span.heateor_sss_svg{background:radial-gradient(circle at 30% 107%,#fdf497 0,#fdf497 5%,#fd5949 45%,#d6249f 60%,#285aeb 90%)}div.heateor_sss_horizontal_sharing a.heateor_sss_button_instagram span{background:#DC1818!important;}div.heateor_sss_standard_follow_icons_container a.heateor_sss_button_instagram span{background:#DC1818}.heateor_sss_horizontal_sharing .heateor_sss_svg,.heateor_sss_standard_follow_icons_container .heateor_sss_svg{background-color:#DC1818!important;background:#DC1818!important;color:#fff;border-width:0px;border-style:solid;border-color:transparent}.heateor_sss_horizontal_sharing span.heateor_sss_svg:hover,.heateor_sss_standard_follow_icons_container span.heateor_sss_svg:hover{border-color:transparent;}.heateor_sss_vertical_sharing span.heateor_sss_svg,.heateor_sss_floating_follow_icons_container span.heateor_sss_svg{color:#fff;border-width:0px;border-style:solid;border-color:transparent;}.heateor_sss_vertical_sharing span.heateor_sss_svg:hover,.heateor_sss_floating_follow_icons_container span.heateor_sss_svg:hover{border-color:transparent;}@media screen and (max-width:783px) {.heateor_sss_vertical_sharing{display:none!important}}div.heateor_sss_mobile_footer{display:none;}@media screen and (max-width:783px){div.heateor_sss_bottom_sharing .heateorSssTCBackground{background-color:white}div.heateor_sss_bottom_sharing{width:100%!important;left:0!important;}div.heateor_sss_bottom_sharing a{width:11.111111111111% !important;}div.heateor_sss_bottom_sharing .heateor_sss_svg{width: 100% !important;}div.heateor_sss_bottom_sharing div.heateorSssTotalShareCount{font-size:1em!important;line-height:28px!important}div.heateor_sss_bottom_sharing div.heateorSssTotalShareText{font-size:.7em!important;line-height:0px!important}div.heateor_sss_mobile_footer{display:block;height:40px;}.heateor_sss_bottom_sharing{padding:0!important;display:block!important;width:auto!important;bottom:-2px!important;top: auto!important;}.heateor_sss_bottom_sharing .heateor_sss_square_count{line-height:inherit;}.heateor_sss_bottom_sharing .heateorSssSharingArrow{display:none;}.heateor_sss_bottom_sharing .heateorSssTCBackground{margin-right:1.1em!important}}div.heateor_sss_sharing_title{text-align:center}div.heateor_sss_sharing_ul{width:100%;text-align:center;}div.heateor_sss_horizontal_sharing div.heateor_sss_sharing_ul a{float:none!important;display:inline-block;} </style> <script src="https://iffco.com/wp-content/cache/minify/c7035.js"></script> <script src="https://iffco.com/wp-content/cache/minify/34f31.js"></script> <link rel="https://api.w.org/" href="https://iffco.com/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="https://iffco.com/wp-json/wp/v2/pages/578" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://iffco.com/xmlrpc.php?rsd" /> <link rel='shortlink' href='https://iffco.com/?p=578' /> <link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://iffco.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fiffco.com%2Fabout%2Finnovation%2F" /> <link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://iffco.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fiffco.com%2Fabout%2Finnovation%2F&#038;format=xml" /> <script type="text/javascript"> var ajaxurl = "https://iffco.com/wp-admin/admin-ajax.php"; </script><link rel="icon" href="https://iffco.com/wp-content/uploads/2023/12/cropped-IFFCO-LOGO-1-32x32.jpg" sizes="32x32" /> <link rel="icon" href="https://iffco.com/wp-content/uploads/2023/12/cropped-IFFCO-LOGO-1-192x192.jpg" sizes="192x192" /> <link rel="apple-touch-icon" href="https://iffco.com/wp-content/uploads/2023/12/cropped-IFFCO-LOGO-1-180x180.jpg" /> <meta name="msapplication-TileImage" content="https://iffco.com/wp-content/uploads/2023/12/cropped-IFFCO-LOGO-1-270x270.jpg" /> </head> <body class="page-template page-template-template page-template-template-innovation page-template-templatetemplate-innovation-php page page-id-578 page-child parent-pageid-571" id="parent-page-571"> <header> <div class="top__nav"> <div class="container"> <div class="top__nav__inner"> <div class="top__nav__left"> <!--<div class="global__toggle__btn">--> <!-- <button type="button">--> <!-- <img src="" alt="" />--> <!-- <span>Global</span>--> <!-- </button>--> <!--</div>--> <div class="global__toggle__btn"> <button type="button"> <img src="https://iffco.com/wp-content/uploads/2023/12/globe-1.svg" alt="" /> <span>English</span> </button> <select name="lang_choice_1" id="lang_choice_1" class="pll-switcher-select"> <option value="https://iffco.com/about/innovation/" lang="en-US" selected='selected'>English</option> <option value="https://iffco.com/ar/about/innovation/" lang="ar">العربية</option> </select> <script type="text/javascript"> document.getElementById( "lang_choice_1" ).addEventListener( "change", function ( event ) { location.href = event.currentTarget.value; } ) </script> <ul></ul> </div> <!--<label for="lowcarbonmode" class="low__carbon__mode__toggle">--> <!-- <input type="checkbox" id="lowcarbonmode" name="lowcarbonmode" />--> <!-- <div class="low__carbon__mode__toggle__btn"></div>Low carbon mode--> <!--</label>--> </div> <div class="top__nav__right"> <nav aria-label="quick navigation"> <ul> <li> <a href="https://iffco.com/search-jobs/"> <img src="https://iffco.com/wp-content/uploads/2023/12/Vector.svg" alt="" /> Careers </a> </li> <li> <a href="https://iffco.com/contact-us/"> <img src="https://iffco.com/wp-content/uploads/2023/12/phone.svg" alt="" /> Contact Us </a> </li> </ul> </nav> </div> </div> </div> </div> <div class="header__outer__wrap"> <div class="container"> <!-- @format --> <div class="header__inner"> <a href="https://iffco.com" class="site__logo"> <img src="https://iffco.com/wp-content/uploads/2023/12/logo.svg" alt="" /> </a> <nav aria-label="Primary navigation"> <ul> <li class="top__header__quick__access__cta"> <div class="top__nav"> <div class="container"> <div class="top__nav__inner"> <div class="top__nav__left"> <script type="text/javascript"> document.addEventListener('DOMContentLoaded', function () { document.querySelectorAll('.pll-switcher-select').forEach(function (select) { select.addEventListener('change', function (event) { location.href = event.currentTarget.value; }); }); }); </script> <div class="global__toggle__btn"> <button type="button"> <img src="https://iffco.com/wp-content/themes/iffco/assets/img/icons/globe.svg" alt="" /> <span>English</span> </button> <ul></ul> </div> <!--<label for="lowcarbonmode2" class="low__carbon__mode__toggle">--> <!-- <input type="checkbox" id="lowcarbonmode2" name="lowcarbonmode2" />--> <!-- <div class="low__carbon__mode__toggle__btn"></div>Low carbon mode--> <!--</label>--> </div> <div class="top__nav__right"> <nav aria-label="quick navigation"> <ul> <li> <a href="https://iffco.com/search-jobs/"> <img src="https://iffco.com/wp-content/themes/iffco/assets/img/icons/Vector.svg" alt="" /> Careers </a> </li> <li> <a href="https://iffco.com/contact-us/"> <img src="https://iffco.com/wp-content/themes/iffco/assets/img/icons/phone.svg" alt="" /> Contact Us </a> </li> </ul> </nav> </div> </div> </div> </div> </li> <li id="parent-page-581"> <a href="https://iffco.com/about/quick-facts/">About</a> <div class="sub__menu"> <div class="container position-relative"> <button type="button" class="sub__menu_close"> <svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M13.75 1.81984L12.1802 0.25L7 5.43016L1.81984 0.25L0.25 1.81984L5.43016 7L0.25 12.1802L1.81984 13.75L7 8.56984L12.1802 13.75L13.75 12.1802L8.56984 7L13.75 1.81984Z" fill="black" /> </svg> </button> <div class="sub__menu__inner"> <div class="sub__menu__left__side"> <h4>About </h4> <p></p> <a href="https://iffco.com/video/" class="cta__primary" target="_self">Watch Video <svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M10.586 5.657L6.636 1.707C6.45384 1.51839 6.35305 1.26579 6.35533 1.00359C6.3576 0.741397 6.46277 0.490585 6.64818 0.305177C6.83359 0.119768 7.0844 0.0145995 7.3466 0.0123211C7.6088 0.0100427 7.8614 0.110837 8.05 0.292995L13.707 5.95C13.8002 6.04265 13.8741 6.15281 13.9246 6.27414C13.9751 6.39548 14.001 6.52559 14.001 6.657C14.001 6.7884 13.9751 6.91852 13.9246 7.03985C13.8741 7.16118 13.8002 7.27134 13.707 7.364L8.05 13.021C7.95775 13.1165 7.84741 13.1927 7.7254 13.2451C7.6034 13.2975 7.47218 13.3251 7.3394 13.3262C7.20662 13.3274 7.07494 13.3021 6.95205 13.2518C6.82915 13.2015 6.7175 13.1273 6.62361 13.0334C6.52971 12.9395 6.45546 12.8278 6.40518 12.7049C6.3549 12.5821 6.3296 12.4504 6.33075 12.3176C6.3319 12.1848 6.35949 12.0536 6.4119 11.9316C6.46431 11.8096 6.54049 11.6992 6.636 11.607L10.586 7.657H1C0.734784 7.657 0.48043 7.55164 0.292893 7.3641C0.105357 7.17657 0 6.92221 0 6.657C0 6.39178 0.105357 6.13742 0.292893 5.94989C0.48043 5.76235 0.734784 5.657 1 5.657H10.586Z" fill="white" /> </svg> </a> </div> <div class="sub__menu__right__side"> <nav aria-label="Secondary navigation"> <ul> <li> <a href="https://iffco.com/about/quick-facts/">Quick Facts</a> </li> <li> <a href="https://iffco.com/history/">History</a> </li> <li> <a href="https://iffco.com/about/values/">Values</a> </li> <li> <a href="https://iffco.com/about/food-safety-and-quality/">Food Safety and Quality</a> </li> <li> <a href="https://iffco.com/about/innovation/">Innovation</a> </li> <li> <a href="https://iffco.com/about/company-policies/">Company Policies</a> </li> <li> <a href="https://iffco.com/about/international-operations/">International Operations</a> </li> </ul> </nav> </div> </div> </div> </div> </li> <li id="parent-page-585"> <a href="https://iffco.com/brands/">Our Brands</a> <div class="sub__menu"> <div class="container position-relative"> <button type="button" class="sub__menu_close"> <svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M13.75 1.81984L12.1802 0.25L7 5.43016L1.81984 0.25L0.25 1.81984L5.43016 7L0.25 12.1802L1.81984 13.75L7 8.56984L12.1802 13.75L13.75 12.1802L8.56984 7L13.75 1.81984Z" fill="black" /> </svg> </button> <div class="sub__menu__inner"> <div class="sub__menu__left__side"> <h4>Our Brands </h4> <p>Our brands span over 20 food and personal care categories.</p> <a href="https://iffco.com/brands/" class="cta__primary" target="_self">See All Brands <svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M10.586 5.657L6.636 1.707C6.45384 1.51839 6.35305 1.26579 6.35533 1.00359C6.3576 0.741397 6.46277 0.490585 6.64818 0.305177C6.83359 0.119768 7.0844 0.0145995 7.3466 0.0123211C7.6088 0.0100427 7.8614 0.110837 8.05 0.292995L13.707 5.95C13.8002 6.04265 13.8741 6.15281 13.9246 6.27414C13.9751 6.39548 14.001 6.52559 14.001 6.657C14.001 6.7884 13.9751 6.91852 13.9246 7.03985C13.8741 7.16118 13.8002 7.27134 13.707 7.364L8.05 13.021C7.95775 13.1165 7.84741 13.1927 7.7254 13.2451C7.6034 13.2975 7.47218 13.3251 7.3394 13.3262C7.20662 13.3274 7.07494 13.3021 6.95205 13.2518C6.82915 13.2015 6.7175 13.1273 6.62361 13.0334C6.52971 12.9395 6.45546 12.8278 6.40518 12.7049C6.3549 12.5821 6.3296 12.4504 6.33075 12.3176C6.3319 12.1848 6.35949 12.0536 6.4119 11.9316C6.46431 11.8096 6.54049 11.6992 6.636 11.607L10.586 7.657H1C0.734784 7.657 0.48043 7.55164 0.292893 7.3641C0.105357 7.17657 0 6.92221 0 6.657C0 6.39178 0.105357 6.13742 0.292893 5.94989C0.48043 5.76235 0.734784 5.657 1 5.657H10.586Z" fill="white" /> </svg> </a> </div> <div class="sub__menu__right__side"> <nav aria-label="Secondary navigation"> <ul> <li> <a href="https://iffco.com/brands-category/agri-business/">Agri</a> </li> <li> <a href="https://iffco.com/brands-category/personal-home-care/">Personal &amp; Home Care</a> </li> <li> <a href="https://iffco.com/brands-category/culinary/">Culinary</a> </li> <li> <a href="https://iffco.com/brands-category/impulse-foods/">Impulse Foods</a> </li> <li> <a href="https://iffco.com/brands-category/oils-and-fats/">Oils and Fats</a> </li> <li> <a href="https://iffco.com/brands-category/packaging/">Packaging</a> </li> <li> <a href="https://iffco.com/brands-category/sales-distribution/">Sales &amp; Distribution</a> </li> </ul> </nav> </div> </div> </div> </div> </li> <li id="parent-page-0"> <a href="https://iffco.com/sustainability/">Sustainability</a> <div class="sub__menu"> <div class="container position-relative"> <button type="button" class="sub__menu_close"> <svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M13.75 1.81984L12.1802 0.25L7 5.43016L1.81984 0.25L0.25 1.81984L5.43016 7L0.25 12.1802L1.81984 13.75L7 8.56984L12.1802 13.75L13.75 12.1802L8.56984 7L13.75 1.81984Z" fill="black" /> </svg> </button> <div class="sub__menu__inner"> <div class="sub__menu__left__side"> <h4>Sustainability </h4> <p>Our products are a part of consumers daily lives. What affects them affects us. Protecting the environment is an extension of caring for our consumers.</p> </div> <div class="sub__menu__right__side"> <nav aria-label="Secondary navigation"> <ul> <li> <a href="https://iffco.com/sustainability/achievements/">Achievements</a> </li> <li> <a href="https://iffco.com/sustainability/milestones/">Milestones</a> </li> <li> <a href="https://iffco.com/sustainability/strategy/">Strategy</a> </li> </ul> </nav> </div> </div> </div> </div> </li> <li id="parent-page-3676"> <a href="https://iffco.com/partners/">Partners</a> </li> <li id="parent-page-2208"> <a href="https://iffco.com/stories/">Stories</a> <div class="sub__menu"> <div class="container position-relative"> <button type="button" class="sub__menu_close"> <svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M13.75 1.81984L12.1802 0.25L7 5.43016L1.81984 0.25L0.25 1.81984L5.43016 7L0.25 12.1802L1.81984 13.75L7 8.56984L12.1802 13.75L13.75 12.1802L8.56984 7L13.75 1.81984Z" fill="black" /> </svg> </button> <div class="sub__menu__inner"> <div class="sub__menu__left__side"> <h4>Stories </h4> <p>Step into the world of stories at the IFFCO Group and discover the experience of people who make IFFCO a thriving community.</p> <a href="https://iffco.com/stories/" class="cta__primary" target="_self">Stories <svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M10.586 5.657L6.636 1.707C6.45384 1.51839 6.35305 1.26579 6.35533 1.00359C6.3576 0.741397 6.46277 0.490585 6.64818 0.305177C6.83359 0.119768 7.0844 0.0145995 7.3466 0.0123211C7.6088 0.0100427 7.8614 0.110837 8.05 0.292995L13.707 5.95C13.8002 6.04265 13.8741 6.15281 13.9246 6.27414C13.9751 6.39548 14.001 6.52559 14.001 6.657C14.001 6.7884 13.9751 6.91852 13.9246 7.03985C13.8741 7.16118 13.8002 7.27134 13.707 7.364L8.05 13.021C7.95775 13.1165 7.84741 13.1927 7.7254 13.2451C7.6034 13.2975 7.47218 13.3251 7.3394 13.3262C7.20662 13.3274 7.07494 13.3021 6.95205 13.2518C6.82915 13.2015 6.7175 13.1273 6.62361 13.0334C6.52971 12.9395 6.45546 12.8278 6.40518 12.7049C6.3549 12.5821 6.3296 12.4504 6.33075 12.3176C6.3319 12.1848 6.35949 12.0536 6.4119 11.9316C6.46431 11.8096 6.54049 11.6992 6.636 11.607L10.586 7.657H1C0.734784 7.657 0.48043 7.55164 0.292893 7.3641C0.105357 7.17657 0 6.92221 0 6.657C0 6.39178 0.105357 6.13742 0.292893 5.94989C0.48043 5.76235 0.734784 5.657 1 5.657H10.586Z" fill="white" /> </svg> </a> </div> <div class="sub__menu__right__side"> <nav aria-label="Secondary navigation"> <ul> <li> <a href="https://iffco.com/storiess/how-does-good-hygiene-affect-your-life/">How does good Hygiene affect your life?</a> </li> <li> <a href="https://iffco.com/storiess/how-food-awakens-childhood-memories/">How food awakens childhood memories</a> </li> <li> <a href="https://iffco.com/storiess/why-is-your-work-environment-important/">Why is your work environment important?</a> </li> <li> <a href="https://iffco.com/storiess/why-is-climate-change-dangerous/">Why is climate change dangerous?</a> </li> <li> <a href="https://iffco.com/storiess/iffco-professional-customer-engagement-centre-a-true-experience-of-excellence/">IFFCO Professional Customer Engagement Centre</a> </li> </ul> </nav> </div> </div> </div> </div> </li> <li id="parent-page-2216"> <a href="https://iffco.com/news/">News &amp; Events</a> <div class="sub__menu"> <div class="container position-relative"> <button type="button" class="sub__menu_close"> <svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M13.75 1.81984L12.1802 0.25L7 5.43016L1.81984 0.25L0.25 1.81984L5.43016 7L0.25 12.1802L1.81984 13.75L7 8.56984L12.1802 13.75L13.75 12.1802L8.56984 7L13.75 1.81984Z" fill="black" /> </svg> </button> <div class="sub__menu__inner"> <div class="sub__menu__left__side"> <h4>News &amp; Events </h4> <p>Welcome to our News & Events page and stay up-to-date on our dynamic organization’s latest developments, milestones, and noteworthy events.</p> <a href="https://iffco.com/news/" class="cta__primary" target="_self">News &amp; Events <svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M10.586 5.657L6.636 1.707C6.45384 1.51839 6.35305 1.26579 6.35533 1.00359C6.3576 0.741397 6.46277 0.490585 6.64818 0.305177C6.83359 0.119768 7.0844 0.0145995 7.3466 0.0123211C7.6088 0.0100427 7.8614 0.110837 8.05 0.292995L13.707 5.95C13.8002 6.04265 13.8741 6.15281 13.9246 6.27414C13.9751 6.39548 14.001 6.52559 14.001 6.657C14.001 6.7884 13.9751 6.91852 13.9246 7.03985C13.8741 7.16118 13.8002 7.27134 13.707 7.364L8.05 13.021C7.95775 13.1165 7.84741 13.1927 7.7254 13.2451C7.6034 13.2975 7.47218 13.3251 7.3394 13.3262C7.20662 13.3274 7.07494 13.3021 6.95205 13.2518C6.82915 13.2015 6.7175 13.1273 6.62361 13.0334C6.52971 12.9395 6.45546 12.8278 6.40518 12.7049C6.3549 12.5821 6.3296 12.4504 6.33075 12.3176C6.3319 12.1848 6.35949 12.0536 6.4119 11.9316C6.46431 11.8096 6.54049 11.6992 6.636 11.607L10.586 7.657H1C0.734784 7.657 0.48043 7.55164 0.292893 7.3641C0.105357 7.17657 0 6.92221 0 6.657C0 6.39178 0.105357 6.13742 0.292893 5.94989C0.48043 5.76235 0.734784 5.657 1 5.657H10.586Z" fill="white" /> </svg> </a> </div> <div class="sub__menu__right__side"> <nav aria-label="Secondary navigation"> <ul> <li> <a href="https://iffco.com/news-category/press-releases/">Press Releases</a> </li> <li> <a href="https://iffco.com/news-category/events-en/">Events</a> </li> <li> <a href="https://iffco.com/news-category/media-coverage/">Media Coverage</a> </li> <li> <a href="https://iffco.com/press-kit/">Press Kit</a> </li> </ul> </nav> </div> </div> </div> </div> </li> </ul> <button class="search__toggle" type="button" id="search__bar__toggle"> Search <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M10.5 16.5C11.2879 16.5 12.0682 16.3448 12.7961 16.0433C13.5241 15.7417 14.1855 15.2998 14.7427 14.7426C15.2998 14.1855 15.7418 13.5241 16.0433 12.7961C16.3448 12.0681 16.5 11.2879 16.5 10.5C16.5 9.71207 16.3448 8.93185 16.0433 8.2039C15.7418 7.47595 15.2998 6.81451 14.7427 6.25736C14.1855 5.70021 13.5241 5.25825 12.7961 4.95672C12.0682 4.65519 11.2879 4.5 10.5 4.5C8.90872 4.5 7.38259 5.13214 6.25737 6.25736C5.13216 7.38258 4.50002 8.9087 4.50002 10.5C4.50002 12.0913 5.13216 13.6174 6.25737 14.7426C7.38259 15.8679 8.90872 16.5 10.5 16.5ZM16.82 15.406L20.4 18.986C20.4955 19.0783 20.5716 19.1887 20.6239 19.3108C20.6762 19.4328 20.7037 19.564 20.7048 19.6968C20.7058 19.8296 20.6804 19.9613 20.63 20.0841C20.5797 20.207 20.5053 20.3186 20.4114 20.4124C20.3174 20.5062 20.2057 20.5804 20.0828 20.6306C19.9599 20.6808 19.8282 20.706 19.6954 20.7047C19.5626 20.7035 19.4314 20.6758 19.3095 20.6233C19.1875 20.5708 19.0772 20.4946 18.985 20.399L15.405 16.819C13.7975 18.0668 11.7748 18.6552 9.74877 18.4642C7.72273 18.2732 5.84562 17.3173 4.49957 15.7911C3.15351 14.2648 2.4397 12.2829 2.50344 10.2489C2.56718 8.2149 3.40368 6.28162 4.84266 4.84265C6.28164 3.40367 8.21492 2.56717 10.2489 2.50343C12.283 2.43968 14.2648 3.1535 15.7911 4.49955C17.3173 5.8456 18.2732 7.72271 18.4642 9.74875C18.6552 11.7748 18.0669 13.7975 16.819 15.405L16.82 15.406Z" fill="black" /> </svg> </button> <!-- <ul class="hamburger__menu" id="hamburger__menu__toggle"> <li></li> <li></li> <li></li> </ul> --> <button class="hamburger hamburger--squeeze" id="hamburger__menu__toggle" type="button"> <span class="hamburger-box"> <span class="hamburger-inner"></span> </span> </button> </nav> </div> </div> </div> <div class="search__bar"> <div class="container"> <form action="https://iffco.com" method="get" value=""> <div class="search__bar__wrap"> <input type="search" name="s" placeholder="Enter keyword..." /> <input type="hidden" name="lang" value="en" /> <!-- Add language attribute --> <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M10.5 16.5C11.2879 16.5 12.0682 16.3448 12.7961 16.0433C13.5241 15.7417 14.1855 15.2998 14.7427 14.7426C15.2998 14.1855 15.7418 13.5241 16.0433 12.7961C16.3448 12.0681 16.5 11.2879 16.5 10.5C16.5 9.71207 16.3448 8.93185 16.0433 8.2039C15.7418 7.47595 15.2998 6.81451 14.7427 6.25736C14.1855 5.70021 13.5241 5.25825 12.7961 4.95672C12.0682 4.65519 11.2879 4.5 10.5 4.5C8.90872 4.5 7.38259 5.13214 6.25737 6.25736C5.13216 7.38258 4.50002 8.9087 4.50002 10.5C4.50002 12.0913 5.13216 13.6174 6.25737 14.7426C7.38259 15.8679 8.90872 16.5 10.5 16.5ZM16.82 15.406L20.4 18.986C20.4955 19.0783 20.5716 19.1887 20.6239 19.3108C20.6762 19.4328 20.7037 19.564 20.7048 19.6968C20.7058 19.8296 20.6804 19.9613 20.63 20.0841C20.5797 20.207 20.5053 20.3186 20.4114 20.4124C20.3174 20.5062 20.2057 20.5804 20.0828 20.6306C19.9599 20.6808 19.8282 20.706 19.6954 20.7047C19.5626 20.7035 19.4314 20.6758 19.3095 20.6233C19.1875 20.5708 19.0772 20.4946 18.985 20.399L15.405 16.819C13.7975 18.0668 11.7748 18.6552 9.74877 18.4642C7.72273 18.2732 5.84562 17.3173 4.49957 15.7911C3.15351 14.2648 2.4397 12.2829 2.50344 10.2489C2.56718 8.2149 3.40368 6.28162 4.84266 4.84265C6.28164 3.40367 8.21492 2.56717 10.2489 2.50343C12.283 2.43968 14.2648 3.1535 15.7911 4.49955C17.3173 5.8456 18.2732 7.72271 18.4642 9.74875C18.6552 11.7748 18.0669 13.7975 16.819 15.405L16.82 15.406Z" fill="black" /> </svg> </div> </form> </div> </div> </header> <div class="bread__crumbs_outer"> <div class="container"> <ul id="tsh_breadcrumbs" class="bread__crumbs"><li class="item-home"><a class="bread-link bread-home" href="https://iffco.com" title="Home">Home</a></li><li class="item-parent item-parent-571"><a class="bread-parent bread-parent-571" href="https://iffco.com/about/" title="About">About</a></li><li class="active item-current item-578"><strong title="Innovation"> Innovation</strong></li></ul> </div> </div> <section class="hero__banner " style="--bg-color: #39b1e6;"> <div class="container"> <div class="hero__banner__content"> <h1> INNOVATION </h1> <p> INNOVATION DRIVES GROWTH <br> <br> The extensive array of top-tier brands across various regions and categories showcases our commitment to innovation rooted in profound customer insights. </p> </div> </div> <img src="https://iffco.com/wp-content/uploads/2023/12/contents_Artboard-1.png" alt="" /> <div class="overlay__grid__wrap"> <div class="overlay__grid__wrap__item " style="--card-bg: ;--line-color:; --empty-color: "> <img src="https://iffco.com/wp-content/uploads/2023/12/Group-10.png" alt="" class="overlay__grid__wrap__item__bg" /> <div class="overlay__grid__wrap__item__header"> <h3> #1 </h3> <h5 class="text-white">Ice cream in the UAE</h5> </div> <div class="overlay__grid__wrap__item__footer__icon ms-auto "> <img src="https://iffco.com/wp-content/uploads/2023/12/contents-05-1.png" alt="" /> </div> </div> <div class="overlay__grid__wrap__item " style="--card-bg: ;--line-color:; --empty-color: "> <img src="https://iffco.com/wp-content/uploads/2023/12/Group-7.png" alt="" class="overlay__grid__wrap__item__bg" /> <div class="overlay__grid__wrap__item__header"> </div> <div class="overlay__grid__wrap__item__footer__icon "> </div> </div> <div class="overlay__grid__wrap__item " style="--card-bg: ;--line-color:; --empty-color: "> <img src="https://iffco.com/wp-content/uploads/2023/12/Group-9.png" alt="" class="overlay__grid__wrap__item__bg" /> <div class="overlay__grid__wrap__item__header"> </div> <div class="overlay__grid__wrap__item__footer__icon "> </div> </div> </div> </section> <section class="vision__banner" style="--bg-color: #da2f21"> <div class="container"> <div class="featured__image"> <img src="https://iffco.com/wp-content/uploads/2024/02/Artboard-1@4x-min-4.png" alt=""> </div> <div class="vision__banner__content"> <h2>What’s new at IFFCO</h2> <p>Our dedicated R&#038;D teams continuously bring new ideas to life. Through research and understanding on consumer needs, habits and key market trends, year on year the IFFCO portfolio of products grows to deliver more and better products.</p> </div> </div> </section> <section class="value__flexible__grid value__flexible__grid--alternate value__flexible__grid__flip" style="--bg-color: "> <div class="container"> <div class="row"> <div class="col-12 col-lg-6"> <div class="value__flexible__grid__content"> <h3>Tiffany Tomato Paste</h3> <p>Tiffany offers you the best quality Tomato paste that will enhance your daily cooking with the delicious and superior taste of tomatoes. To deliver the best results for your dishes, Tiffany tomato paste is made with quality natural ingredients and is available in 400g, and 800g sizes tins.</p> </div> </div> <div class="col-12 col-lg-6"> <div class="value__flexible__grid__image__wrap"> <img src="https://iffco.com/wp-content/uploads/2024/02/Artboard-1@4x-min-2.png" alt=""> </div> </div> </div> </div> </section> <section class="value__flexible__grid value__flexible__grid--alternate value__flexible__grid__flip" style="--bg-color: "> <div class="container"> <div class="row"> <div class="col-12 col-lg-6"> <div class="value__flexible__grid__content"> <h3>Savannah Naturals</h3> <p>Savannah Naturals crafts the best benefits nature has to offer into your daily routine</p> <p>Banish memories of dry skin with this ultra-hydrating olive oil, almond oil and honey-milk with Vitamin E bar soaps that blend quality ingredients with long-lasting formulations for a nourishing effect we know you’ll love.</p> </div> </div> <div class="col-12 col-lg-6"> <div class="value__flexible__grid__image__wrap"> <img src="https://iffco.com/wp-content/uploads/2024/02/Artboard-1@4x-min.png" alt=""> </div> </div> </div> </div> </section> <section class="value__flexible__grid value__flexible__grid--alternate value__flexible__grid__flip" style="--bg-color: "> <div class="container"> <div class="row"> <div class="col-12 col-lg-6"> <div class="value__flexible__grid__content"> <h3>Spray Pan Cioc</h3> <p>A new amazing limited edition sku, the Spray Pan Cioc. It’s the chocolate version of the classic Spray Pan, an icon on the spray cream segment, leader in Italy for over 50 years.</p> <p>Soft, light and super tasty, the Spray Pan Cioc is perfect to create the most delicious recipes or simply to decorate a fruit salad, a semifreddo or ice-creams. Delicious also to be tasted as it is, definitely an irresistible temptation for chocolate lovers! Born from the experience of IFFCO Italia in UHT Aerosol technology, it is practical and easy to use.</p> </div> </div> <div class="col-12 col-lg-6"> <div class="value__flexible__grid__image__wrap"> <img src="https://iffco.com/wp-content/uploads/2024/02/Spray-Pan-Cioc.png" alt=""> </div> </div> </div> </div> </section> <section class="value__flexible__grid value__flexible__grid--alternate value__flexible__grid__flip" style="--bg-color: "> <div class="container"> <div class="row"> <div class="col-12 col-lg-6"> <div class="value__flexible__grid__content"> <h3>Igloo Rosetta Exquisite Desserts</h3> <p>Igloo’s new range of exquisite desserts will make you want to celebrate every sweet moment of life. Celebrate moments of immense joy like reaching an important milestone, spending time with a loved one or simply pampering yourself.</p> <p>Let the flavors of Mango Tango, Raspberry Ripple, and Golden Ribbon make your special moments sweeter.</p> </div> </div> <div class="col-12 col-lg-6"> <div class="value__flexible__grid__image__wrap"> <img src="https://iffco.com/wp-content/uploads/2024/02/Untitled-1.png" alt=""> </div> </div> </div> </div> </section> <section class="value__flexible__grid value__flexible__grid--alternate value__flexible__grid__flip" style="--bg-color: "> <div class="container"> <div class="row"> <div class="col-12 col-lg-6"> <div class="value__flexible__grid__content"> <h3>Sunny Soups</h3> <p>The new range of Sunny Soups is a new alternative for the chefs-at-home to create tasty and nutritious meals in just a few minutes.</p> <p>Made with natural herbs and spices, free of added preservatives or artificial flavours, it will delight the whole family over lunch or dinner. Available in three flavours: Cream of Chicken, Cream of Vegetable and Cream of Mushroom.</p> </div> </div> <div class="col-12 col-lg-6"> <div class="value__flexible__grid__image__wrap"> <img src="https://iffco.com/wp-content/uploads/2024/02/Artboard-1@4x-min-1.png" alt=""> </div> </div> </div> </div> </section> <section class="value__flexible__grid value__flexible__grid--alternate value__flexible__grid__flip" style="--bg-color: "> <div class="container"> <div class="row"> <div class="col-12 col-lg-6"> <div class="value__flexible__grid__content"> <h3>Gran Cucina Garlic Cooking Cream</h3> <p>Created for the specific needs of Romanian consumers, they are an appreciated extension of the range by the market leader in vegetable cooking creams.</p> <p>The Gran Cucina Garlic Cooking Cream comes from the Romanian culinary “culture”, adding a garlic touch to the taste of characteristic dishes of Romania, for gratinating, for typical soups, for the preparation of sauces. The size available is the 200 gr brick.</p> </div> </div> <div class="col-12 col-lg-6"> <div class="value__flexible__grid__image__wrap"> <img src="https://iffco.com/wp-content/uploads/2024/03/Artboard-1@4x.png" alt=""> </div> </div> </div> </div> </section> <section class="value__flexible__grid value__flexible__grid--alternate value__flexible__grid__flip" style="--bg-color: "> <div class="container"> <div class="row"> <div class="col-12 col-lg-6"> <div class="value__flexible__grid__content"> <h3>Gran Cucina Dairy Free Cooking Cream</h3> <p>The Dairy Free cooking cream fits with the consumptions’ habits of the vegetarian, vegan customers and for those people who look for products that have a Plant based origin. The size available is the 500 gr brick.</p> </div> </div> <div class="col-12 col-lg-6"> <div class="value__flexible__grid__image__wrap"> <img src="https://iffco.com/wp-content/uploads/2024/03/Artboard-1@4x-min.png" alt=""> </div> </div> </div> </div> </section> <section class="value__flexible__grid value__flexible__grid--alternate value__flexible__grid__flip" style="--bg-color: "> <div class="container"> <div class="row"> <div class="col-12 col-lg-6"> <div class="value__flexible__grid__content"> <h3>Chocotom Croc & Cream</h3> <p>TOM has introduced its new range of wafers; CHOCOTOM and CROC &amp; CREAM, a crunchy wafer filled with refined cream that no one can resist! CROC &amp; CREAM is available in two flavours: Milk and Chocolate.</p> </div> </div> <div class="col-12 col-lg-6"> <div class="value__flexible__grid__image__wrap"> <img src="https://iffco.com/wp-content/uploads/2023/12/image-391.png" alt=""> </div> </div> </div> </div> </section> <section class="value__flexible__grid value__flexible__grid--alternate value__flexible__grid__flip" style="--bg-color: "> <div class="container"> <div class="row"> <div class="col-12 col-lg-6"> <div class="value__flexible__grid__content"> <h3>Tiffany Delights Triple Chocolate</h3> <p>Tiffany Delights brings a delectable chocolatey indulgence to our consumers. A chocolate base cookie loaded with milk and white chocolate chips—a triple delight for the real chocoholics.</p> </div> </div> <div class="col-12 col-lg-6"> <div class="value__flexible__grid__image__wrap"> <img src="https://iffco.com/wp-content/uploads/2024/02/Tiffany-delights-triple-chocolate.jpg" alt=""> </div> </div> </div> </div> </section> <section class="value__flexible__grid value__flexible__grid--alternate value__flexible__grid__flip" style="--bg-color: "> <div class="container"> <div class="row"> <div class="col-12 col-lg-6"> <div class="value__flexible__grid__content"> <h3>Rahma Organic Extra Virgin Olive Oil</h3> <p>Rahma Organic Olive Oil, Certifiably Organic, healthy and made from 100% natural ingredients using the finest Olives from our farms in Tunisia. Our numerous international certificates for Rahma Organic olive oil, including EcoCert, USDA Organic and EU Organic, proofs that our processes are environmentally and socially conscious to bring the best organic olive oil.<br /> Discover the journey of Rahma Organic Olive Oil by scanning the QR code on the label.</p> </div> </div> <div class="col-12 col-lg-6"> <div class="value__flexible__grid__image__wrap"> <img src="https://iffco.com/wp-content/uploads/2024/02/RAHMA250ORGANIC-FRONT3D-scaled.jpg" alt=""> </div> </div> </div> </div> </section> <section class="value__flexible__grid value__flexible__grid--alternate value__flexible__grid__flip" style="--bg-color: "> <div class="container"> <div class="row"> <div class="col-12 col-lg-6"> <div class="value__flexible__grid__content"> <h3>Al Baker Multigrain Atta</h3> <p>Made with the finest, healthiest grains, we bring to you a selection that promises both taste and nutrition. Al Baker Multigrain Atta comes to you in a package that seals in its nutritional value. A great blend of 8 different grains including soy, ragi, oats, psyllium husk, barley, chana dal, corn, and wheat ensures uncompromised health benefits, taste, and quality while saving time in the kitchen.</p> </div> </div> <div class="col-12 col-lg-6"> <div class="value__flexible__grid__image__wrap"> <img src="https://iffco.com/wp-content/uploads/2023/12/image-395.png" alt=""> </div> </div> </div> </div> </section> <section class="value__flexible__grid value__flexible__grid--alternate value__flexible__grid__flip" style="--bg-color: "> <div class="container"> <div class="row"> <div class="col-12 col-lg-6"> <div class="value__flexible__grid__content"> <h3>Guardex Sanitising Range</h3> <p>Guardex is the new entrant in the anti-bacterial world. Its formulation with OxyfusedZinc technology protects against disease-causing germs.</p> <p>Guardex offers a full portfolio of Soaps, Hand Wash, Shower Gel, Sanitiser spray and Hand Sanitisers. With the rising awareness of hygiene and Personal Care, Guardex with its anti-bacterial properties will help you fight germs with its unique ingredients and fragrances.</p> </div> </div> <div class="col-12 col-lg-6"> <div class="value__flexible__grid__image__wrap"> <img src="https://iffco.com/wp-content/uploads/2024/02/Frame-128.png" alt=""> </div> </div> </div> </div> </section> <section class="value__flexible__grid value__flexible__grid--alternate value__flexible__grid__flip" style="--bg-color: "> <div class="container"> <div class="row"> <div class="col-12 col-lg-6"> <div class="value__flexible__grid__content"> <h3>Just Chill Drinks Co. Karak Chai</h3> <p>Just Chill Drinks Co. (JCDC) Instant Premix is made with Natural Tea Extract with 30% more milk to deliver an authentic Karak experience. The fragrant spices, Broken Black tea and Chemase tea gives it a recognizable aroma that stimulates the senses. Can be served hot, or cold.</p> </div> </div> <div class="col-12 col-lg-6"> <div class="value__flexible__grid__image__wrap"> <img src="https://iffco.com/wp-content/uploads/2024/02/Just-Chill.jpg" alt=""> </div> </div> </div> </div> </section> <section class="value__flexible__grid value__flexible__grid--alternate value__flexible__grid__flip" style="--bg-color: "> <div class="container"> <div class="row"> <div class="col-12 col-lg-6"> <div class="value__flexible__grid__content"> <h3>London Dairy Sorbets</h3> <p>London Dairy was the first brand to introduce the “Sorbets” into the market and further consolidated its position as an absolute market leader by adding two new sorbet flavours to its vast portfolio.</p> </div> </div> <div class="col-12 col-lg-6"> <div class="value__flexible__grid__image__wrap"> <img src="https://iffco.com/wp-content/uploads/2024/02/London-Dairy-Sorbets.png" alt=""> </div> </div> </div> </div> </section> <section class="value__flexible__grid value__flexible__grid--alternate value__flexible__grid__flip" style="--bg-color: "> <div class="container"> <div class="row"> <div class="col-12 col-lg-6"> <div class="value__flexible__grid__content"> <h3>London Dairy Double</h3> <p>London Dairy DOUBLE offers a strong multi-textural chocolate experience which takes the consumer on a journey to uncover multiple layers of indulgence.</p> </div> </div> <div class="col-12 col-lg-6"> <div class="value__flexible__grid__image__wrap"> <img src="https://iffco.com/wp-content/uploads/2024/02/London-Dairy-Double.png" alt=""> </div> </div> </div> </div> </section> <section class="value__flexible__grid value__flexible__grid--alternate value__flexible__grid__flip" style="--bg-color: "> <div class="container"> <div class="row"> <div class="col-12 col-lg-6"> <div class="value__flexible__grid__content"> <h3>Noor Cheese Sauce</h3> <p>Noor Cheddar Cheese Sauce is the ultimate stop to your cheesy cravings. It can enhance the taste of any dish be it hot or cold and has unmatched flexibility in your kitchen. Our cheese sauce can be relished as a dip or a spread. Now with Noor Cheddar Cheese Sauce, it’s easier to make every dish cheesilicious with the perfect texture and taste.</p> </div> </div> <div class="col-12 col-lg-6"> <div class="value__flexible__grid__image__wrap"> <img src="https://iffco.com/wp-content/uploads/2024/02/Noor-Cheddar-Cheese-sauce-425ml.jpg" alt=""> </div> </div> </div> </div> </section> <section class="value__flexible__grid value__flexible__grid--alternate value__flexible__grid__flip" style="--bg-color: "> <div class="container"> <div class="row"> <div class="col-12 col-lg-6"> <div class="value__flexible__grid__content"> <h3>Alfa Chicken Powdered Flavoured Stock</h3> <p>Alfa Chicken stock is an all-in-one powder seasoning made from the finest quality ingredients. These quality ingredients have been naturally dehydrated to provide a perfect balance of aroma and flavour to your culinary delights. Try Endless Possibilities!</p> </div> </div> <div class="col-12 col-lg-6"> <div class="value__flexible__grid__image__wrap"> <img src="https://iffco.com/wp-content/uploads/2024/02/Alfa-chicken-seasoning-17g-1.jpg" alt=""> </div> </div> </div> </div> </section> <section class="value__flexible__grid value__flexible__grid--alternate value__flexible__grid__flip" style="--bg-color: "> <div class="container"> <div class="row"> <div class="col-12 col-lg-6"> <div class="value__flexible__grid__content"> <h3>Tiffany Salad Dressing</h3> <p>Your salad deserves the best taste. Matching up to the new age lifestyle and the rising need for the right balance between great taste and good health, Tiffany brings you four variants of “Easy Salad” with 4 exciting flavours that salad connoisseurs love all over the world.</p> </div> </div> <div class="col-12 col-lg-6"> <div class="value__flexible__grid__image__wrap"> <img src="https://iffco.com/wp-content/uploads/2024/02/TIFFANY-SALAD-DRESSING-SPECIAL-OFFER-DISPLAY-BOX_GROUP-1-scaled.jpg" alt=""> </div> </div> </div> </div> </section> <section class="value__flexible__grid value__flexible__grid--alternate value__flexible__grid__flip" style="--bg-color: "> <div class="container"> <div class="row"> <div class="col-12 col-lg-6"> <div class="value__flexible__grid__content"> <h3>Al Baker Corn Flour</h3> <p>Al Baker continues to innovate with its high-standard products. Al Baker Corn Flour offers refined quality in re-sealable Tin for your comfort. Tailor-made to cater to all your cooking needs, this flour can be used with soups, stews, sauces, and other dishes.</p> <p>Expand Your Signature Bake with our Corn Flour and explore more recipes to surprise your loved ones with rich taste found only in Al Baker Corn Flour.</p> </div> </div> <div class="col-12 col-lg-6"> <div class="value__flexible__grid__image__wrap"> <img src="https://iffco.com/wp-content/uploads/2024/02/Al-Baker-Corn-Flour.jpg" alt=""> </div> </div> </div> </div> </section> <section class="value__flexible__grid value__flexible__grid--alternate value__flexible__grid__flip" style="--bg-color: "> <div class="container"> <div class="row"> <div class="col-12 col-lg-6"> <div class="value__flexible__grid__content"> <h3>Igloo Cookies & Cream</h3> <p>Igloo launches a fun ice cream that appeals to all. The rich and creamy vanilla flavored ice cream has pieces of chocolate sandwiched between dark chocolate biscuits. Just like all Igloo ice creams, it has no artificial colors.</p> </div> </div> <div class="col-12 col-lg-6"> <div class="value__flexible__grid__image__wrap"> <img src="https://iffco.com/wp-content/uploads/2024/02/IGLOO-COOKIES-CREAM-ICE-CREAM-SANDWICH-WRAPPER-scaled.jpg" alt=""> </div> </div> </div> </div> </section> <section class="value__flexible__grid value__flexible__grid--alternate value__flexible__grid__flip" style="--bg-color: "> <div class="container"> <div class="row"> <div class="col-12 col-lg-6"> <div class="value__flexible__grid__content"> <h3>Tiffany Dorino Arabian Desserts</h3> <p>An assortment of 23 delicious pralines, inspired by Arabic Desserts. Each praline is Coated with 100% rich, smooth &amp; creamy milk chocolate and comes individually wrapped in re-sealable bag.</p> </div> </div> <div class="col-12 col-lg-6"> <div class="value__flexible__grid__image__wrap"> <img src="https://iffco.com/wp-content/uploads/2023/12/image-405.png" alt=""> </div> </div> </div> </div> </section> <section class="value__flexible__grid value__flexible__grid--alternate value__flexible__grid__flip" style="--bg-color: "> <div class="container"> <div class="row"> <div class="col-12 col-lg-6"> <div class="value__flexible__grid__content"> <h3>Tiffany Eclairs Arabian Delight</h3> <p>The new Tiffany Eclairs Arabian Delight is an assortment of four exciting flavors. The rich creamy center is inspired by traditional Arabic flavors: cardamom, pistachio, chocolate, and cappuccino. It comes in attractive packaging which is apt for both gifting and sharing.</p> </div> </div> <div class="col-12 col-lg-6"> <div class="value__flexible__grid__image__wrap"> <img src="https://iffco.com/wp-content/uploads/2023/12/image-406.png" alt=""> </div> </div> </div> </div> </section> <section class="value__flexible__grid value__flexible__grid--alternate value__flexible__grid__flip" style="--bg-color: "> <div class="container"> <div class="row"> <div class="col-12 col-lg-6"> <div class="value__flexible__grid__content"> <h3>Sunny Cooking Sunflower Oil</h3> <p>A unique packaging to ensure the upmost convenience. The new 15L Sunny pack comes with an easy fill tap jar for a superior consumer experience. As all Sunny oils, it is fortified with Vitamin A, D, E, and Omega 6.</p> </div> </div> <div class="col-12 col-lg-6"> <div class="value__flexible__grid__image__wrap"> <img src="https://iffco.com/wp-content/uploads/2024/03/MicrosoftTeams-image-205.png" alt=""> </div> </div> </div> </div> </section> <section class="value__flexible__grid value__flexible__grid--alternate value__flexible__grid__flip" style="--bg-color: "> <div class="container"> <div class="row"> <div class="col-12 col-lg-6"> <div class="value__flexible__grid__content"> <h3>Allegro Organic Extra Virgin Olive Oil</h3> <p>The first ever cold pressed olive oil that also has International certification from USDA Organic &amp; ECOCERT. It’s available in 250ml, 500ml and 750ml glass bottles.</p> </div> </div> <div class="col-12 col-lg-6"> <div class="value__flexible__grid__image__wrap"> <img src="https://iffco.com/wp-content/uploads/2023/12/image-408.png" alt=""> </div> </div> </div> </div> </section> <section class="value__flexible__grid value__flexible__grid--alternate value__flexible__grid__flip" style="--bg-color: "> <div class="container"> <div class="row"> <div class="col-12 col-lg-6"> <div class="value__flexible__grid__content"> <h3>Quanta Adore Pralines</h3> <p>Premium Chocolate Pralines made with finest quality ingredients and exotic fillings. They are perfect for gifting.</p> </div> </div> <div class="col-12 col-lg-6"> <div class="value__flexible__grid__image__wrap"> <img src="https://iffco.com/wp-content/uploads/2024/03/MicrosoftTeams-image-203.jpg" alt=""> </div> </div> </div> </div> </section> <section class="value__flexible__grid value__flexible__grid--alternate value__flexible__grid__flip" style="--bg-color: "> <div class="container"> <div class="row"> <div class="col-12 col-lg-6"> <div class="value__flexible__grid__content"> <h3>Tiffany Majesto Wafers</h3> <p>Freshly baked crunchy wafers with rich and smooth cream. Available as on-the-go pack for everyone, every day.</p> </div> </div> <div class="col-12 col-lg-6"> <div class="value__flexible__grid__image__wrap"> <img src="https://iffco.com/wp-content/uploads/2023/12/image-410.png" alt=""> </div> </div> </div> </div> </section> <section class="value__flexible__grid value__flexible__grid--alternate value__flexible__grid__flip" style="--bg-color: "> <div class="container"> <div class="row"> <div class="col-12 col-lg-6"> <div class="value__flexible__grid__content"> <h3>Allegro Seleção Gourmet</h3> <p>This is a Limited Edition special harvest extra virgin olive oil. It is a fruity and sweet extra virgin olive oil, that comes from 100% single Tunisian variety called Cheitou. It has low Acidity levels – 0.3% and it is available in Brazil, UAE and Canada.</p> </div> </div> <div class="col-12 col-lg-6"> <div class="value__flexible__grid__image__wrap"> <img src="https://iffco.com/wp-content/uploads/2023/12/image-411.png" alt=""> </div> </div> </div> </div> </section> <section class="value__flexible__grid value__flexible__grid--alternate value__flexible__grid__flip" style="--bg-color: "> <div class="container"> <div class="row"> <div class="col-12 col-lg-6"> <div class="value__flexible__grid__content"> <h3>London Dairy Dessert Bar</h3> <p>A chocolate ice cream topped with caramel sauce and lots of chocolate fudge cake, coated with Belgian chocolate. Recently, it was awarded in the Most Innovative Ice Cream Category at the International Ice Cream Consortium, Sweden 2019.</p> </div> </div> <div class="col-12 col-lg-6"> <div class="value__flexible__grid__image__wrap"> <img src="https://iffco.com/wp-content/uploads/2023/12/image-412.png" alt=""> </div> </div> </div> </div> </section> <section class="value__flexible__grid value__flexible__grid--alternate value__flexible__grid__flip" style="--bg-color: "> <div class="container"> <div class="row"> <div class="col-12 col-lg-6"> <div class="value__flexible__grid__content"> <h3>Igloo Choco Lava</h3> <p>A Chocolate Ice Cream with luscious soft chocolate sauce at the center, dipped in milk chocolate with crispy wheat crisps.</p> </div> </div> <div class="col-12 col-lg-6"> <div class="value__flexible__grid__image__wrap"> <img src="https://iffco.com/wp-content/uploads/2023/12/image-413.png" alt=""> </div> </div> </div> </div> </section> <section class="value__flexible__grid value__flexible__grid--alternate value__flexible__grid__flip" style="--bg-color: "> <div class="container"> <div class="row"> <div class="col-12 col-lg-6"> <div class="value__flexible__grid__content"> <h3>Tiffany Dorina and Quanta Adore Minis Tins</h3> <p>All-time favorite Tiffany Dorino and Quanta Adore Minis – now available in an attractive tin packaging, making it the best gifting option for any special occasion. Individually wrapped chocolates, made up of the finest quality ingredients for a delightful experience.</p> </div> </div> <div class="col-12 col-lg-6"> <div class="value__flexible__grid__image__wrap"> <img src="https://iffco.com/wp-content/uploads/2023/12/image-414.png" alt=""> </div> </div> </div> </div> </section> <section class="enduring__values" style="--bg-color:#f7f6f6 "> <div class="container"> <h2 class="title__secondary text-center"> Enduring Values, Enhancing Lives </h2> <h5 class="sub__title text-center"> The preferred provider of sustainable value-added products and services for everyone, everywhere & every day. </h5> <a class="cta__primary mx-auto" href="https://iffco.com/contact-us/" target="_self">Contact Us <svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M10.586 5.657L6.636 1.707C6.45384 1.51839 6.35305 1.26579 6.35533 1.00359C6.3576 0.741397 6.46277 0.490585 6.64818 0.305177C6.83359 0.119768 7.0844 0.0145995 7.3466 0.0123211C7.6088 0.0100427 7.8614 0.110837 8.05 0.292995L13.707 5.95C13.8002 6.04265 13.8741 6.15281 13.9246 6.27414C13.9751 6.39548 14.001 6.52559 14.001 6.657C14.001 6.7884 13.9751 6.91852 13.9246 7.03985C13.8741 7.16118 13.8002 7.27134 13.707 7.364L8.05 13.021C7.95775 13.1165 7.84741 13.1927 7.7254 13.2451C7.6034 13.2975 7.47218 13.3251 7.3394 13.3262C7.20662 13.3274 7.07494 13.3021 6.95205 13.2518C6.82915 13.2015 6.7175 13.1273 6.62361 13.0334C6.52971 12.9395 6.45546 12.8278 6.40518 12.7049C6.3549 12.5821 6.3296 12.4504 6.33075 12.3176C6.3319 12.1848 6.35949 12.0536 6.4119 11.9316C6.46431 11.8096 6.54049 11.6992 6.636 11.607L10.586 7.657H1C0.734784 7.657 0.48043 7.55164 0.292893 7.3641C0.105357 7.17657 0 6.92221 0 6.657C0 6.39178 0.105357 6.13742 0.292893 5.94989C0.48043 5.76235 0.734784 5.657 1 5.657H10.586Z" fill="white" /> </svg></a> </div> </section> <footer> <div class="container"> <div class="row"> <div class="col-12 col-lg-6 col-xl-3"> <a href="https://iffco.com" class="footer__logo"> <img src="https://iffco.com/wp-content/uploads/2023/12/logo.svg" alt=""> </a> <!--<h3>One of the leading and most diversified business groups in the Middle East.</h3>--> <div class="news__letter__signup__form"> </div> <div class="footer__navigation"> <h5>Connect with us</h5> <ul class="social__media__links"> <li> <a target="_blank" href="https://www.facebook.com/IFFCO"> <img src="https://iffco.com/wp-content/uploads/2024/02/facebook.png" alt=""> </a> </li> <li> <a target="_blank" href="https://www.instagram.com/iffco_group/"> <img src="https://iffco.com/wp-content/uploads/2024/02/instagram-1.png" alt=""> </a> </li> <li> <a target="_blank" href="https://www.linkedin.com/company/iffco/"> <img src="https://iffco.com/wp-content/uploads/2024/02/linkedin-1.png" alt=""> </a> </li> <li> <a target="_blank" href="https://twitter.com/IFFCOGROUP"> <img src="https://iffco.com/wp-content/uploads/2024/02/x.png" alt=""> </a> </li> <li> <a target="_blank" href="https://www.youtube.com/@iffco_group"> <img src="https://iffco.com/wp-content/uploads/2024/02/Vector-1.png" alt=""> </a> </li> <li> <a target="_blank" href="https://www.tiktok.com/@iffcogroup"> <img src="https://iffco.com/wp-content/uploads/2024/02/tiktok-1.png" alt=""> </a> </li> </ul> </div> </div> <div class="col-12 col-lg-6 col-xl-9"> <div class="row"> <div class="col-12 col-sm-6 col-lg-4- col-xl-3"> <div class="footer__navigation"> <h5> <a href="https://iffco.com/about/"> About </a> </h5> <ul> <li> <a href="https://iffco.com/about/" target="_self">Quick Facts</a> </li> <li> <a href="https://iffco.com/about/history/" target="_self">History</a> </li> <li> <a href="https://iffco.com/about/values/" target="_self">Values</a> </li> <li> <a href="https://iffco.com/about/food-safety-and-quality/" target="_self">Food Safety and Quality</a> </li> <li> <a href="https://iffco.com/about/innovation/" target="_self">Innovation</a> </li> <li> <a href="https://iffco.com/about/company-policies/" target="_self">Company Policies</a> </li> <li> <a href="https://iffco.com/about/international-operations/" target="_self">International Operations</a> </li> </ul> </div> </div> <div class="col-12 col-sm-6 col-lg-4- col-xl-3"> <div class="footer__navigation"> <h5> <a href="https://iffco.com/brands/"> Our Brands </a> </h5> <ul> <li> <a href="https://iffco.com/brands-category/agri-business/" target="_self">Agri</a> </li> <li> <a href="https://iffco.com/brands-category/personal-home-care/" target="_self">Personal &amp; Home Care</a> </li> <li> <a href="https://iffco.com/brands-category/culinary/" target="_self">Culinary</a> </li> <li> <a href="https://iffco.com/brands-category/impulse-foods/" target="_self">Impulse Foods</a> </li> <li> <a href="https://iffco.com/brands-category/logistics/" target="_self">Logistics</a> </li> <li> <a href="https://iffco.com/brands-category/oils-and-fats/" target="_self">Oils and Fats</a> </li> <li> <a href="https://iffco.com/brands-category/packaging/" target="_self">Packaging Solutions</a> </li> <li> <a href="https://iffco.com/brands-category/sales-distribution/" target="_self">Sales &amp; Distribution</a> </li> </ul> </div> </div> <div class="col-12 col-sm-6 col-lg-4- col-xl-3"> <div class="footer__navigation"> <h5> <a href="https://iffco.com/sustainability/achievements/"> Sustainabilty </a> </h5> <ul> <li> <a href="https://iffco.com/sustainability/achievements/" target="_self">Achievements</a> </li> <li> <a href="https://iffco.com/sustainability/strategy/" target="_self">Strategy</a> </li> <li> <a href="https://iffco.com/sustainability/milestones/" target="_self">Milestones</a> </li> </ul> </div> </div> <div class="col-12 col-sm-6 col-lg-4- col-xl-3"> <div class="footer__navigation"> <h5>Others</h5> <ul> <li> <a href="https://iffco.com/news/" target="_self">News &amp; Events</a> </li> <li> <a href="https://iffco.com/stories/" target="_self">Stories</a> </li> <li> <a href="https://iffco.com/partners/" target="_self">Partners</a> </li> <li> <a href="https://iffco.com/search-jobs/" target="_self">Careers</a> </li> <li> <a href="https://iffco.com/contact-us/" target="_self">Contact Us</a> </li> </ul> </div> </div> <!--<div class="col-12 col-sm-6 col-lg-4- col-xl-3">--> <!--</div>--> </div> </div> <!--<div class="col-12 col-lg-6 col-xl-3"></div>--> <div class="col-12 col- col-xl-90"> <div class="footer__bottom"> <!--<p><//?php the_field('footer_bottom_title','options'); ?></p>--> <p>IFFCO 2024. All rights reserved</p> <ul> <li> <a href="https://iffco.com/privacy-policy/" target="_self">Privacy Policy</a> </li> <li> <a href="https://iffco.com/cookie-policy/" target="_self">Cookie Policy</a> </li> </ul> </div> </div> </div> </div> </footer> <script type="text/javascript"> function mukto_search_fetch() { jQuery.ajax({ url: 'https://iffco.com/wp-admin/admin-ajax.php', type: 'post', data: { action: 'data_fetch', keyword: jQuery('#keyword').val() }, success: function (data) { jQuery('#datafetch').html(data); } }); } </script> <style> :root { -webkit-user-select: none; -webkit-touch-callout: none; -ms-user-select: none; -moz-user-select: none; user-select: none; } </style> <script type="text/javascript"> /*<![CDATA[*/ document.oncontextmenu = function(event) { if (event.target.tagName != 'INPUT' && event.target.tagName != 'TEXTAREA') { event.preventDefault(); } }; document.ondragstart = function() { if (event.target.tagName != 'INPUT' && event.target.tagName != 'TEXTAREA') { event.preventDefault(); } }; /*]]>*/ </script> <style id='core-block-supports-inline-css' type='text/css'> /** * Core styles: block-supports */ </style> <script src="https://iffco.com/wp-content/cache/minify/85094.js"></script> <script src="https://iffco.com/wp-content/cache/minify/26e4a.js"></script> <script type="text/javascript" id="wp-i18n-js-after"> /* <![CDATA[ */ wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } ); /* ]]> */ </script> <script src="https://iffco.com/wp-content/cache/minify/1f540.js"></script> <script type="text/javascript" id="contact-form-7-js-before"> /* <![CDATA[ */ var wpcf7 = { "api": { "root": "https:\/\/iffco.com\/wp-json\/", "namespace": "contact-form-7\/v1" }, "cached": 1 }; /* ]]> */ </script> <script src="https://iffco.com/wp-content/cache/minify/b68ea.js"></script> <script src="https://iffco.com/wp-content/cache/minify/ba953.js"></script> <script src="https://iffco.com/wp-content/cache/minify/37fa1.js"></script> <script src="https://iffco.com/wp-content/cache/minify/af1d5.js"></script> <script src="https://iffco.com/wp-content/cache/minify/63013.js"></script> <script src="https://iffco.com/wp-content/cache/minify/8370e.js"></script> <script src="https://iffco.com/wp-content/cache/minify/38db6.js"></script> <script src="https://iffco.com/wp-content/cache/minify/079da.js"></script> <script src="https://iffco.com/wp-content/cache/minify/b64ae.js"></script> <script type="text/javascript" id="heateor_sss_sharing_js-js-before"> /* <![CDATA[ */ function heateorSssLoadEvent(e) {var t=window.onload;if (typeof window.onload!="function") {window.onload=e}else{window.onload=function() {t();e()}}}; var heateorSssSharingAjaxUrl = 'https://iffco.com/wp-admin/admin-ajax.php', heateorSssCloseIconPath = 'https://iffco.com/wp-content/plugins/sassy-social-share/public/../images/close.png', heateorSssPluginIconPath = 'https://iffco.com/wp-content/plugins/sassy-social-share/public/../images/logo.png', heateorSssHorizontalSharingCountEnable = 0, heateorSssVerticalSharingCountEnable = 0, heateorSssSharingOffset = -10; var heateorSssMobileStickySharingEnabled = 1;var heateorSssCopyLinkMessage = "Link copied.";var heateorSssUrlCountFetched = [], heateorSssSharesText = 'Shares', heateorSssShareText = 'Share';function heateorSssPopup(e) {window.open(e,"popUpWindow","height=400,width=600,left=400,top=100,resizable,scrollbars,toolbar=0,personalbar=0,menubar=no,location=no,directories=no,status")} /* ]]> */ </script> <script src="https://iffco.com/wp-content/cache/minify/16f71.js"></script> <script type="text/javascript"> (function() { var expirationDate = new Date(); expirationDate.setTime( expirationDate.getTime() + 31536000 * 1000 ); document.cookie = "pll_language=en; expires=" + expirationDate.toUTCString() + "; path=/; secure; SameSite=Lax"; }()); </script> </body> </html> <!-- Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/ Page Caching using Disk: Enhanced Minified using Disk Served from: example.com @ 2024-12-03 23:03:11 by W3 Total Cache -->

Pages: 1 2 3 4 5 6 7 8 9 10