CINXE.COM

Contact Us - 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/contact-us/" hreflang="en" /> <link rel="alternate" href="https://iffco.com/ar/contact-us/" hreflang="ar" /> <!-- This site is optimized with the Yoast SEO plugin v23.7 - https://yoast.com/wordpress/plugins/seo/ --> <title>Contact Us - IFFCO</title> <link rel="canonical" href="https://iffco.com/contact-us/" /> <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="Contact Us - IFFCO" /> <meta property="og:url" content="https://iffco.com/contact-us/" /> <meta property="og:site_name" content="IFFCO" /> <meta property="article:modified_time" content="2024-06-24T13:04:10+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/contact-us/","url":"https://iffco.com/contact-us/","name":"Contact Us - IFFCO","isPartOf":{"@id":"https://iffco.com/#website"},"datePublished":"2023-12-04T06:31:38+00:00","dateModified":"2024-06-24T13:04:10+00:00","breadcrumb":{"@id":"https://iffco.com/contact-us/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https://iffco.com/contact-us/"]}]},{"@type":"BreadcrumbList","@id":"https://iffco.com/contact-us/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://iffco.com/"},{"@type":"ListItem","position":2,"name":"Contact Us"}]},{"@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/629" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://iffco.com/xmlrpc.php?rsd" /> <link rel='shortlink' href='https://iffco.com/?p=629' /> <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%2Fcontact-us%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%2Fcontact-us%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-contact page-template-templatetemplate-contact-php page page-id-629" id="parent-page-629"> <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/contact-us/" lang="en-US" selected='selected'>English</option> <option value="https://iffco.com/ar/contact-us/" 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="active item-current item-629"><strong class="bread-current bread-629"> Contact Us</strong></li></ul> </div> </div> <section class="hero__banner " style="--bg-color: #ea3239;"> <div class="container"> <div class="hero__banner__content"> <h1> Contact us </h1> <p> Get in touch with us for any inquiries you may have, and we will be more than happy to get back to you. </p> </div> </div> <img src="https://iffco.com/wp-content/uploads/2023/12/qfbnr-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/qfi1.jpg" alt="" class="overlay__grid__wrap__item__bg" /> <div class="overlay__grid__wrap__item__header"> </div> <div class="overlay__grid__wrap__item__footer__icon ms-auto "> <img src="https://iffco.com/wp-content/uploads/2023/12/Banners-1440X159-PXL-Out-04-1.png" alt="" /> </div> </div> <div class="overlay__grid__wrap__item " style="--card-bg: #ee2e24;--line-color:; --empty-color: "> <div class="overlay__grid__wrap__item__header"> <div class="custom__hero__carousel"> <div class="custom__hero__carousel__item "> <h3> 50+ </h3> <h5 class="text-white">Countries</h5> </div> <div class="custom__hero__carousel__item hidden"> <h3> 80+ </h3> <h5 class="text-white">Brands</h5> </div> <div class="custom__hero__carousel__item hidden"> <h3> 12,000+ </h3> <h5 class="text-white">People</h5> </div> </div> </div> <div class="overlay__grid__wrap__item__footer__icon ms-auto "> <div class="overlay__grid__wrap__item__footer__icon__carousel"> <div class="overlay__grid__wrap__item__footer__icon__carousel__item "> <img src="https://iffco.com/wp-content/uploads/2023/11/globe.svg" alt="" /> </div> <div class="overlay__grid__wrap__item__footer__icon__carousel__item hidden "> <img src="https://iffco.com/wp-content/uploads/2023/11/badge.svg" alt="" /> </div> <div class="overlay__grid__wrap__item__footer__icon__carousel__item hidden "> <img src="https://iffco.com/wp-content/uploads/2023/11/people-1.svg" alt="" /> </div> </div> </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/c1.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/c2.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="contact__form"> <div class="container"> <div class="contact__form__wrap"> <div class="wpcf7 no-js" id="wpcf7-f628-o1" lang="en-US" dir="ltr" data-wpcf7-id="628"> <div class="screen-reader-response"><p role="status" aria-live="polite" aria-atomic="true"></p> <ul></ul></div> <form action="/contact-us/#wpcf7-f628-o1" method="post" class="wpcf7-form init" aria-label="Contact form" novalidate="novalidate" data-status="init"> <div style="display: none;"> <input type="hidden" name="_wpcf7" value="628" /> <input type="hidden" name="_wpcf7_version" value="6.0" /> <input type="hidden" name="_wpcf7_locale" value="en_US" /> <input type="hidden" name="_wpcf7_unit_tag" value="wpcf7-f628-o1" /> <input type="hidden" name="_wpcf7_container_post" value="0" /> <input type="hidden" name="_wpcf7_posted_data_hash" value="" /> <input type="hidden" name="_wpcf7_recaptcha_response" value="" /> </div> <fieldset> <label for="inquiry_type">Inquiry type</label> <div class="flexible__selectbox"> <span class="wpcf7-form-control-wrap" data-name="inquiry_type"><select class="wpcf7-form-control wpcf7-select" id="inquiry_type" aria-invalid="false" name="inquiry_type"><option value="Business Inquiries">Business Inquiries</option><option value="Consumer Inquiries">Consumer Inquiries</option><option value="General Inquiries">General Inquiries</option><option value="Sustainability">Sustainability</option><option value="IFFCO Out of Home (Food Services) Inquiries">IFFCO Out of Home (Food Services) Inquiries</option></select></span> <svg width="14" height="8" viewBox="0 0 14 8" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M7.07102 5.31388L12.021 0.363882C12.1133 0.268372 12.2236 0.19219 12.3456 0.139781C12.4676 0.0873716 12.5988 0.0597853 12.7316 0.0586315C12.8644 0.0574777 12.9961 0.0827794 13.119 0.13306C13.2419 0.183341 13.3535 0.257594 13.4474 0.351487C13.5413 0.44538 13.6156 0.557032 13.6658 0.679928C13.7161 0.802824 13.7414 0.934504 13.7403 1.06728C13.7391 1.20006 13.7115 1.33128 13.6591 1.45329C13.6067 1.57529 13.5305 1.68564 13.435 1.77788L7.77802 7.43488C7.59049 7.62235 7.33619 7.72767 7.07102 7.72767C6.80586 7.72767 6.55155 7.62235 6.36402 7.43488L0.707022 1.77788C0.611511 1.68564 0.535329 1.57529 0.48292 1.45329C0.430511 1.33128 0.402925 1.20006 0.401771 1.06728C0.400617 0.934504 0.425919 0.802824 0.4762 0.679928C0.526481 0.557032 0.600734 0.44538 0.694627 0.351487C0.788519 0.257594 0.900171 0.183341 1.02307 0.13306C1.14596 0.0827794 1.27764 0.0574777 1.41042 0.0586315C1.5432 0.0597853 1.67442 0.0873716 1.79643 0.139781C1.91843 0.19219 2.02877 0.268372 2.12102 0.363882L7.07102 5.31388Z" fill="#697077" /> </svg> </div> </fieldset> <fieldset> <label for="inquiry_name">Your name</label> <span class="wpcf7-form-control-wrap" data-name="inquiry_name"><input size="40" maxlength="400" class="wpcf7-form-control wpcf7-text" id="inquiry_name" aria-invalid="false" placeholder="Insert your full name" value="" type="text" name="inquiry_name" /></span> </fieldset> <fieldset> <label for="subject">Subject</label> <span class="wpcf7-form-control-wrap" data-name="Subject"><input size="40" maxlength="400" class="wpcf7-form-control wpcf7-text" id="subject" aria-invalid="false" placeholder="Type here" value="" type="text" name="Subject" /></span> </fieldset> <fieldset> <label for="select_country">Country</label> <div class="flexible__selectbox"> <span class="wpcf7-form-control-wrap" data-name="select_country"><select class="wpcf7-form-control wpcf7-select" id="select_country" aria-invalid="false" name="select_country"><option value="United Arab Emirates">United Arab Emirates</option><option value="Afghanistan">Afghanistan</option><option value="Albania">Albania</option><option value="Algeria">Algeria</option><option value="American Samoa">American Samoa</option><option value="Andorra">Andorra</option><option value="Angola">Angola</option><option value="Anguilla">Anguilla</option><option value="Antarctica">Antarctica</option><option value="Antigua and Barbuda">Antigua and Barbuda</option><option value="Argentina">Argentina</option><option value="Armenia">Armenia</option><option value="Aruba">Aruba</option><option value="Australia">Australia</option><option value="Austria">Austria</option><option value="Azerbaijan">Azerbaijan</option><option value="Bahamas">Bahamas</option><option value="Bahrain">Bahrain</option><option value="Bangladesh">Bangladesh</option><option value="Barbados">Barbados</option><option value="Belarus">Belarus</option><option value="Belgium">Belgium</option><option value="Belize">Belize</option><option value="Benin">Benin</option><option value="Bermuda">Bermuda</option><option value="Bhutan">Bhutan</option><option value="Bolivia">Bolivia</option><option value="Bosnia and Herzegowina">Bosnia and Herzegowina</option><option value="Botswana">Botswana</option><option value="Bouvet Island">Bouvet Island</option><option value="Brazil">Brazil</option><option value="British Indian Ocean Territory">British Indian Ocean Territory</option><option value="Brunei Darussalam">Brunei Darussalam</option><option value="Bulgaria">Bulgaria</option><option value="Burkina Faso">Burkina Faso</option><option value="Burundi">Burundi</option><option value="Cambodia">Cambodia</option><option value="Cameroon">Cameroon</option><option value="Canada">Canada</option><option value="Cape Verde">Cape Verde</option><option value="Cayman Islands">Cayman Islands</option><option value="Central African Republic">Central African Republic</option><option value="Chad">Chad</option><option value="Chile">Chile</option><option value="China">China</option><option value="Christmas Island">Christmas Island</option><option value="Cocos Islands">Cocos Islands</option><option value="Colombia">Colombia</option><option value="Comoros">Comoros</option><option value="Congo">Congo</option><option value="Congo, the Democratic Republic of the">Congo, the Democratic Republic of the</option><option value="Cook Islands">Cook Islands</option><option value="Costa Rica">Costa Rica</option><option value="Cote d&#039;Ivoire">Cote d&#039;Ivoire</option><option value="Croatia">Croatia</option><option value="Cuba">Cuba</option><option value="Cyprus">Cyprus</option><option value="Czech Republic">Czech Republic</option><option value="Denmark">Denmark</option><option value="Djibouti">Djibouti</option><option value="Dominica">Dominica</option><option value="Dominican Republic">Dominican Republic</option><option value="East Timor">East Timor</option><option value="Ecuador">Ecuador</option><option value="Egypt">Egypt</option><option value="El Salvador">El Salvador</option><option value="Equatorial Guinea">Equatorial Guinea</option><option value="Eritrea">Eritrea</option><option value="Estonia">Estonia</option><option value="Ethiopia">Ethiopia</option><option value="Falkland Islands">Falkland Islands</option><option value="Faroe Islands">Faroe Islands</option><option value="Fiji">Fiji</option><option value="Finland">Finland</option><option value="France">France</option><option value="France, Metropolitan">France, Metropolitan</option><option value="French Guiana">French Guiana</option><option value="French Polynesia">French Polynesia</option><option value="French Southern Territories">French Southern Territories</option><option value="Gabon">Gabon</option><option value="Gambia">Gambia</option><option value="Georgia">Georgia</option><option value="Germany">Germany</option><option value="Ghana">Ghana</option><option value="Gibraltar">Gibraltar</option><option value="Greece">Greece</option><option value="Greenland">Greenland</option><option value="Grenada">Grenada</option><option value="Guadeloupe">Guadeloupe</option><option value="Guam">Guam</option><option value="Guatemala">Guatemala</option><option value="Guinea">Guinea</option><option value="Guinea-Bissau">Guinea-Bissau</option><option value="Guyana">Guyana</option><option value="Haiti">Haiti</option><option value="Heard and Mc Donald Islands">Heard and Mc Donald Islands</option><option value="Holy See">Holy See</option><option value="Honduras">Honduras</option><option value="Hong Kong">Hong Kong</option><option value="Hungary">Hungary</option><option value="Iceland">Iceland</option><option value="India">India</option><option value="Indonesia">Indonesia</option><option value="Iran">Iran</option><option value="Iraq">Iraq</option><option value="Ireland">Ireland</option><option value="Israel">Israel</option><option value="Italy">Italy</option><option value="Jamaica">Jamaica</option><option value="Japan">Japan</option><option value="Jordan">Jordan</option><option value="Kazakhstan">Kazakhstan</option><option value="Kenya">Kenya</option><option value="Kiribati">Kiribati</option><option value="Korea, Democratic People&#039;s Republic of">Korea, Democratic People&#039;s Republic of</option><option value="Korea, Republic of">Korea, Republic of</option><option value="Kuwait">Kuwait</option><option value="Kyrgyzstan">Kyrgyzstan</option><option value="Lao People&#039;s Democratic Republic">Lao People&#039;s Democratic Republic</option><option value="Latvia">Latvia</option><option value="Lebanon">Lebanon</option><option value="Lesotho">Lesotho</option><option value="Liberia">Liberia</option><option value="Libyan Arab Jamahiriya">Libyan Arab Jamahiriya</option><option value="Liechtenstein">Liechtenstein</option><option value="Lithuania">Lithuania</option><option value="Luxembourg">Luxembourg</option><option value="Macau">Macau</option><option value="Macedonia, The Former Yugoslav Republic of">Macedonia, The Former Yugoslav Republic of</option><option value="Madagascar">Madagascar</option><option value="Malawi">Malawi</option><option value="Malaysia">Malaysia</option><option value="Maldives">Maldives</option><option value="Mali">Mali</option><option value="Malta">Malta</option><option value="Marshall Islands">Marshall Islands</option><option value="Martinique">Martinique</option><option value="Mauritania">Mauritania</option><option value="Mauritius">Mauritius</option><option value="Mayotte">Mayotte</option><option value="Mexico">Mexico</option><option value="Micronesia, Federated States of">Micronesia, Federated States of</option><option value="Moldova, Republic of">Moldova, Republic of</option><option value="Monaco">Monaco</option><option value="Mongolia">Mongolia</option><option value="Montserrat">Montserrat</option><option value="Morocco">Morocco</option><option value="Mozambique">Mozambique</option><option value="Myanmar">Myanmar</option><option value="Namibia">Namibia</option><option value="Nauru">Nauru</option><option value="Nepal">Nepal</option><option value="Netherlands">Netherlands</option><option value="Netherlands Antilles">Netherlands Antilles</option><option value="New Caledonia">New Caledonia</option><option value="New Zealand">New Zealand</option><option value="Nicaragua">Nicaragua</option><option value="Niger">Niger</option><option value="Nigeria">Nigeria</option><option value="Niue">Niue</option><option value="Norfolk Island">Norfolk Island</option><option value="Northern Mariana Islands">Northern Mariana Islands</option><option value="Norway">Norway</option><option value="Oman">Oman</option><option value="Pakistan">Pakistan</option><option value="Palau">Palau</option><option value="Panama">Panama</option><option value="Papua New Guinea">Papua New Guinea</option><option value="Paraguay">Paraguay</option><option value="Philippines">Philippines</option><option value="Pitcairn">Pitcairn</option><option value="Poland">Poland</option><option value="Portugal">Portugal</option><option value="Puerto Rico">Puerto Rico</option><option value="Qatar">Qatar</option><option value="Reunion">Reunion</option><option value="Romania">Romania</option><option value="Russian Federation">Russian Federation</option><option value="Rwanda">Rwanda</option><option value="Saint Kitts and Nevis">Saint Kitts and Nevis</option><option value="Saint LUCIA">Saint LUCIA</option><option value="Saint Vincent and the Grenadines">Saint Vincent and the Grenadines</option><option value="Samoa">Samoa</option><option value="San Marino">San Marino</option><option value="Sao Tome and Principe">Sao Tome and Principe</option><option value="Saudi Arabia">Saudi Arabia</option><option value="Senegal">Senegal</option><option value="Seychelles">Seychelles</option><option value="Sierra Leone">Sierra Leone</option><option value="Singapore">Singapore</option><option value="Slovakia">Slovakia</option><option value="Slovenia">Slovenia</option><option value="Solomon Islands">Solomon Islands</option><option value="Somalia">Somalia</option><option value="South Africa">South Africa</option><option value="South Georgia and the South Sandwich Islands">South Georgia and the South Sandwich Islands</option><option value="Spain">Spain</option><option value="Sri Lanka">Sri Lanka</option><option value="St. Helena">St. Helena</option><option value="St. Pierre and Miquelon">St. Pierre and Miquelon</option><option value="Sudan">Sudan</option><option value="Suriname">Suriname</option><option value="Svalbard and Jan Mayen Islands">Svalbard and Jan Mayen Islands</option><option value="Swaziland">Swaziland</option><option value="Sweden">Sweden</option><option value="Switzerland">Switzerland</option><option value="Syrian Arab Republic">Syrian Arab Republic</option><option value="Taiwan, Province of China">Taiwan, Province of China</option><option value="Tajikistan">Tajikistan</option><option value="Tanzania, United Republic of">Tanzania, United Republic of</option><option value="Thailand">Thailand</option><option value="Togo">Togo</option><option value="Tokelau">Tokelau</option><option value="Tonga">Tonga</option><option value="Trinidad and Tobago">Trinidad and Tobago</option><option value="Tunisia">Tunisia</option><option value="Turkey">Turkey</option><option value="Turkmenistan">Turkmenistan</option><option value="Turks and Caicos Islands">Turks and Caicos Islands</option><option value="Tuvalu">Tuvalu</option><option value="Uganda">Uganda</option><option value="Ukraine">Ukraine</option><option value="United Kingdom">United Kingdom</option><option value="United States">United States</option><option value="United States Minor Outlying Islands">United States Minor Outlying Islands</option><option value="Uruguay">Uruguay</option><option value="Uzbekistan">Uzbekistan</option><option value="Vanuatu">Vanuatu</option><option value="Venezuela">Venezuela</option><option value="Viet Nam">Viet Nam</option><option value="Virgin Islands">Virgin Islands</option><option value="Virgin Islands">Virgin Islands</option><option value="Wallis and Futuna Islands">Wallis and Futuna Islands</option><option value="Western Sahara">Western Sahara</option><option value="Yemen">Yemen</option><option value="Serbia">Serbia</option><option value="Zambia">Zambia</option><option value="Zimbabwe">Zimbabwe</option></select></span> <svg width="14" height="8" viewBox="0 0 14 8" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M7.07102 5.31388L12.021 0.363882C12.1133 0.268372 12.2236 0.19219 12.3456 0.139781C12.4676 0.0873716 12.5988 0.0597853 12.7316 0.0586315C12.8644 0.0574777 12.9961 0.0827794 13.119 0.13306C13.2419 0.183341 13.3535 0.257594 13.4474 0.351487C13.5413 0.44538 13.6156 0.557032 13.6658 0.679928C13.7161 0.802824 13.7414 0.934504 13.7403 1.06728C13.7391 1.20006 13.7115 1.33128 13.6591 1.45329C13.6067 1.57529 13.5305 1.68564 13.435 1.77788L7.77802 7.43488C7.59049 7.62235 7.33619 7.72767 7.07102 7.72767C6.80586 7.72767 6.55155 7.62235 6.36402 7.43488L0.707022 1.77788C0.611511 1.68564 0.535329 1.57529 0.48292 1.45329C0.430511 1.33128 0.402925 1.20006 0.401771 1.06728C0.400617 0.934504 0.425919 0.802824 0.4762 0.679928C0.526481 0.557032 0.600734 0.44538 0.694627 0.351487C0.788519 0.257594 0.900171 0.183341 1.02307 0.13306C1.14596 0.0827794 1.27764 0.0574777 1.41042 0.0586315C1.5432 0.0597853 1.67442 0.0873716 1.79643 0.139781C1.91843 0.19219 2.02877 0.268372 2.12102 0.363882L7.07102 5.31388Z" fill="#697077" /> </svg> </div> </fieldset> <fieldset> <label for="user_email">Email</label> <span class="wpcf7-form-control-wrap" data-name="user_email"><input size="40" maxlength="400" class="wpcf7-form-control wpcf7-email wpcf7-validates-as-required wpcf7-text wpcf7-validates-as-email" id="user_email" aria-required="true" aria-invalid="false" placeholder="Enter your email" value="" type="email" name="user_email" /></span> </fieldset> <fieldset> <label for="user__message">Message</label> <span class="wpcf7-form-control-wrap" data-name="user__message"><textarea cols="40" rows="10" maxlength="2000" class="wpcf7-form-control wpcf7-textarea" id="user__message" aria-invalid="false" placeholder="Write your message here" name="user__message"></textarea></span> </fieldset> <span class="wpcf7-form-control-wrap recaptcha" data-name="recaptcha"><span data-sitekey="6LfG2U8qAAAAANIOS92ZuzXpw-IG3RaWbLzlRFvc" class="wpcf7-form-control wpcf7-recaptcha g-recaptcha"></span> <noscript> <div class="grecaptcha-noscript"> <iframe src="https://www.google.com/recaptcha/api/fallback?k=6LfG2U8qAAAAANIOS92ZuzXpw-IG3RaWbLzlRFvc" frameborder="0" scrolling="no" width="310" height="430"> </iframe> <textarea name="g-recaptcha-response" rows="3" cols="40" placeholder="reCaptcha Response Here"> </textarea> </div> </noscript> </span> <input class="wpcf7-form-control wpcf7-submit has-spinner cta__primary" type="submit" value="Send your details" /><div class="wpcf7-response-output" aria-hidden="true"></div> </form> </div> </div> </div> </section> <section class="enduring__values" style="--bg-color: #149cbf"> <div class="container"> <h2 class="title__secondary text-center text-white">Useful contact details</h2> <div class="flexible__selectbox"> <select name="hl" id="inquiry_typ"><!-- <option value="" disabled selected>Select an option</option> --> <option value="uae">UAE</option> <option value="angola">Angola</option> <option value="algeria">Algeria</option> <option value="bosnia">Bosnia</option> <option value="djibouti">Djibouti</option> <option value="egypt">Egypt</option> <option value="ethiopia">Ethiopia</option> <option value="france">France</option> <option value="ghana">Ghana</option> <option value="italy">Italy</option> <option value="india">India</option> <option value="iraq">Iraq</option> <option value="indonesia">Indonesia</option> <option value="kenya">Kenya</option> <option value="kuwait">Kuwait</option> <option value="lebanon">Lebanon</option> <option value="malaysia">Malaysia</option> <option value="nigeria">Nigeria</option> <option value="oman">Oman</option> <option value="pakistan">Pakistan</option> <option value="rwanda">Rwanda</option> <option value="south-africa">South Africa</option> <option value="somaliland">Somaliland</option> <option value="slovenia">Slovenia</option> <option value="spain">Spain</option> <option value="serbia">Serbia</option> <option value="ksa">KSA</option> <option value="singapore">Singapore</option> <option value="tanzania">Tanzania</option> <option value="tunisia">Tunisia</option> <option value="turkey">Turkey</option> <option value="uganda">Uganda</option> <option value="usa">USA</option> <option value="ukraine">Ukraine</option> </select> <svg width="14" height="8" viewBox="0 0 14 8" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M7.07102 5.31388L12.021 0.363882C12.1133 0.268372 12.2236 0.19219 12.3456 0.139781C12.4676 0.0873716 12.5988 0.0597853 12.7316 0.0586315C12.8644 0.0574777 12.9961 0.0827794 13.119 0.13306C13.2419 0.183341 13.3535 0.257594 13.4474 0.351487C13.5413 0.44538 13.6156 0.557032 13.6658 0.679928C13.7161 0.802824 13.7414 0.934504 13.7403 1.06728C13.7391 1.20006 13.7115 1.33128 13.6591 1.45329C13.6067 1.57529 13.5305 1.68564 13.435 1.77788L7.77802 7.43488C7.59049 7.62235 7.33619 7.72767 7.07102 7.72767C6.80586 7.72767 6.55155 7.62235 6.36402 7.43488L0.707022 1.77788C0.611511 1.68564 0.535329 1.57529 0.48292 1.45329C0.430511 1.33128 0.402925 1.20006 0.401771 1.06728C0.400617 0.934504 0.425919 0.802824 0.4762 0.679928C0.526481 0.557032 0.600734 0.44538 0.694627 0.351487C0.788519 0.257594 0.900171 0.183341 1.02307 0.13306C1.14596 0.0827794 1.27764 0.0574777 1.41042 0.0586315C1.5432 0.0597853 1.67442 0.0873716 1.79643 0.139781C1.91843 0.19219 2.02877 0.268372 2.12102 0.363882L7.07102 5.31388Z" fill="#697077" /> </svg> </div> </div> </section> <section class="office__addresses"> <div class="container"> <div class="row" id="filtered-posts"> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>IFFCO Corporate Offices </h4> <p><p>41 – 44 floor – Tiffany Tower,<br /> Cluster W, Jumeirah Lake Towers,<br /> P.O.Box 3181, Dubai – UAE<br /> Tel: +971 4 2150000<br /> Fax +971 4 3323279</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>Al Ain National Juice &#038; Refreshments Co.LLC </h4> <p><p>P. O. Box 15937, Al Ain, UAE<br /> Tel: +971 3 721 6555<br /> Fax: +971 3 721 5208</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>Emirates Grain Products Co. LLC </h4> <p><p>P. O. Box 24275, Sharjah, UAE<br /> Tel: +971 6 502 9000<br /> Fax: +971 6 528 2868<br /> Sharjah</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>EMIRATES INDUSTRIAL AND TRADING COMPANY LIMITED </h4> <p><p>P. O. Box 4115, Sharjah, UAE<br /> Tel: +971 6 502 9000<br /> Sharjah</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>EMIRATES NATIONAL POULTRY FARMS LLC </h4> <p><p>P. O. Box 23456, Al Ain, UAE<br /> Tel: +971 3 737 2992<br /> Fax: +971 3 737 2995<br /> Rimah, Abu Dhabi</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>EMIRATES POULTRY FARM JV (AFPC) </h4> <p><p>P. O. Box 12014, Al Manama, Ajman, UAE<br /> Tel: +971 6 5614818,<br /> +971 6 8827875</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>EMIRATES REFINING COMPANY LTD </h4> <p><p>P. O. Box 6906, Sharjah, UAE<br /> Tel: +971 6 502 9555<br /> Fax: + 971 6 554 6950</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>EMPOL LIMITED (LLC) </h4> <p><p>P. O. Box 78174, Umm Ramool<br /> Dubai, UAE<br /> Tel: +971 4 285 5253<br /> Fax: +971 4 285 6797</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>ALLIED FOOD &#038; BEVERAGE INDUSTRIES L.L.C. </h4> <p><p>P.O. Box 54176, Plot 597-1201,<br /> Dubai Investments Park 2, Dubai,<br /> UAE<br /> Tel: +9714-3895822<br /> Fax: +9714-3392949</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>GROUP CORPORATE OFFICE (IFFCO DMCC) </h4> <p><p>41- 44 floor, Tiffany Towers, Cluster W, Jumeirah Lakes Towers, Dubai – UAE<br /> P.O. Box 3181<br /> Tel: +971 4 2150000<br /> Fax: +971 4 3323279</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>EMIRATES GRAIN PRODUCTS COMPANY. LLC </h4> <p><p>P. O. Box 15937, Al Ain, UAE<br /> Tel: +971 3 721 6555<br /> Fax: +971 3 721 5208</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>EMIRATES NATIONAL POULTRY FARMS LLC </h4> <p><p>P. O. Box 23456, Al Ain, UAE<br /> Tel: +971 3 737 2992<br /> Fax: +971 3 737 2995</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>IFFCO BEVERAGE SOLUTIONS LLC </h4> <p><p>Villa No. 2, Plot No. 375-3370,<br /> Hessa Street, Al Barsha 3, Dubai, UAE.<br /> Tel: +971 4 608 2888<br /> Fax: +971 4 329 1552</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>IFFCO CHEMICALS FZE </h4> <p><p>Plot No. ID-03, 04, Hamriyah Free Zone P. O. Box No. 41671, Sharjah, UAE<br /> Tel: +971 6 526 3922<br /> Fax: +971 6 526 3923</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>IFFCO INTERNATIONAL FOODSTUFFS CO. LLC Fresh Fruits Division </h4> <p><p>P. O. Box: 2595, Dubai, UAE<br /> Tel: +971 4 333 0555<br /> Fax: +971 4 333 0550</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>IFFCO TECH LTD </h4> <p><p>P. O. Box 29220, Sharjah, UAE<br /> Tel: +971 6 502 9000<br /> Fax: +971 6 502 9185</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>IFFCO VETERINARY MEDICINES TRADING LLC </h4> <p><p>Dubai Municipality – Souq Al Ayaas<br /> Plot number: 69-0 Block 1, Unit<br /> number 10 Deira, Dubai, UAE<br /> Tel: +971 6 502 9000</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>IFFCO TECH LTD </h4> <p><p>P. O<br /> Tel: +971 6 502 9000<br /> Fax: +971 6 502 9185</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>INTEGRATED CATERING SERVICES L.L.C. </h4> <p><p>P.O. Box 54176, Plot 364-301, Al<br /> Quoz Industrial Area 1, Dubai, UAE<br /> Tel: +9714-3895822<br /> Fax: +9714-3392949</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>INTERGULF TRANSPORTATION SERVICES LLC </h4> <p><p>8th Floor, City Avenue Building<br /> Port Saeed, Deira, Dubai, UAE<br /> Post Box No. 3181<br /> Tel: + 971 (06) 5029000</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>INTERGULF LTD </h4> <p><p>Empol Division<br /> P. O. Box 6131, Sharjah, UAE<br /> Tel: +971 6 5029284<br /> Fax: +971 6 528 5720</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>INTERGULF LTD </h4> <p><p>Shipping Division<br /> P. O. Box 6284, Sharjah, UAE<br /> Tel: +971 6 5029284<br /> Fax: +971 6 528 5720</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>INTERGULF LTD </h4> <p><p>Transportation Division<br /> P. O. Box 6131, Sharjah, UAE<br /> Tel: +971 6 502 9000</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>INTERNATIONAL FOODSTUFFS COMPANY LLC </h4> <p><p>P. O. Box 4115, Sharjah, UAE<br /> Tel: +971 6 533 4969<br /> Fax: +971 6 533 3180</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>INTERNATIONAL FOODSTUFF COMPANY WLL </h4> <p><p>Shop number 15, Abu Dhabi<br /> Building number 4 Plot number 47,<br /> sector E9-02, Abu Dhabi Island,<br /> Abu Dhabi, UAE<br /> Tel: +97127114111</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>INTERNATIONAL PACKAGING CO LLC </h4> <p><p>P. O. Box 2990, Ajman, UAE<br /> Tel: +971 6 743 6814<br /> Fax: +971 6 743 5503</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>JUST CHILL DRINKS CO LLC. </h4> <p><p>Villa No. 2, Plot No. 375-3370,<br /> Hessa Street, Al Barsha 3, Dubai,<br /> UAE<br /> Tel: +971 4 608 2888<br /> Fax: +971 4 329 1552</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>SEVILLE PRODUCTS LLC </h4> <p><p>Bakery Ingredients Division<br /> P.O. Box 54176, Al Quoz,<br /> Industrial Area 1,<br /> Dubai, UAE<br /> Tel: +971 4 346 7007</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>SEVILLE PRODUCTS LLC </h4> <p><p>Frozen Foods Division<br /> P. O. Box 4115, Sharjah, UAE<br /> Tel: +971 6 533 4969<br /> Fax: +971 6 533 8505</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>SHAMA FOOD INDUSTRIES (LLC) </h4> <p><p>P. O. Box – 234894,<br /> Dubai Industrial City Phase-1,<br /> Dubai, UAE<br /> Tel: +971 4 885 8991<br /> Fax: +971 4 885 8144</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>SEVILLE PRODUCTS LLC </h4> <p><p>Soaps Division<br /> Street 3 B plot 24, Old Steel Mill Road,<br /> Umm Ramool, Dubai UAE PO BOX 10596<br /> Tel: +971 4 2850066<br /> Fax: +971 4 2855724</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>TIFFANY FOODS LTD </h4> <p><p>P. O. Box 6597, Sharjah, UAE<br /> Tel: +971 6 528 5195<br /> Fax: +971 6 502 9189</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>UNIPEX DAIRY PRODUCTS CO. LTD </h4> <p><p>Dry Grains Branch<br /> P. O. Box 4115, Sharjah, UAE<br /> Tel: +971 6 502 9000<br /> Fax: +971 6 528 2868</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>IFFCO DISTRIBUTION SERVICES FZCO </h4> <p><p>(DUBAI BR)<br /> National Industries Park<br /> P. O. Box 6597, Sharjah UAE<br /> Tel: +971 6 502 9000<br /> Fax: +971 6 502 9190</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>GRIFFCO FOODS LLC, DUBAI </h4> <p><p>Office 1003, Grosvenor Business<br /> Tower, Al Barsha Heights (Tecom),<br /> Dubai UAE<br /> Tel: +971 4 5798767</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>IFFCO FOODSTUFFS, ALGERIA </h4> <p><p>Zone Industrielle,<br /> partie n°7, propriété n°366,<br /> lot n°31, Rouiba, Algiers, Algeria<br /> Phone: 213 23 850 262 / +213 23 850 332 / +213 23 850 421</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>IFFCO OVERSEAS HOLDING CO LTD </h4> <p><p>Rua dos Enganos:<br /> house number 1<br /> 8th floor, suburb Ingombotas<br /> District Kinaxixi , City of Luanda, Angola<br /> Tel: +244 922521760</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>IFFCO VELVET d.o.o. </h4> <p><p>Hasana Merdžanovića 42, 71320<br /> Vogošća, Sarajevo, Bosnia and<br /> Herzegovina<br /> Phone: +387 33 760 470<br /> Fax: +387 33 766 472</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>IFFCO AFRICA FZE </h4> <p><p>LOB 020, DJIBOUTI FREE ZONE,DJIBOUTI<br /> Tel: +253 77509010<br /> WhatsApp No: 00971508704207</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>IFFCO (EGYPT) S.A.E. </h4> <p><p>Majarrah, Neptune Building,<br /> 26th July Corridor,<br /> Sheikh Zayed City, Giza Egypt.<br /> Tel: (+202)25867700<br /> Fax: +20 2 2522 5380</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>IFFCO OVERSEAS HOLDING CO.LTD – Rep office </h4> <p><p>Getas building 6th floor,<br /> office #601, Arogew Kera<br /> Addis Ababa, Ethiopia<br /> Tel: +251 912502714</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>FELDA IFFCO FRANCE SAS </h4> <p><p>8, Place Vendome 75001, Paris, France<br /> Tel: +33 1 4020 7840<br /> Fax: +33 1 4020 0620</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>IFFCO GHANA TRADING LIMITED </h4> <p><p>Plot No. 87, Opp. Metalex Roofing,<br /> Near Manet Junction, Spintex Road,<br /> Accra, Ghana<br /> Tel: +233-302966902/3</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>Pristine Ingredients Pvt Ltd </h4> <p><p>Factory Survey No. 785,<br /> Burgul Village,<br /> Farooqnagar Mandal,<br /> Ranga Reddy District, Telangana, 509202, India.<br /> Tel: 917337333700</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>Pristine Ingredients Pvt Ltd </h4> <p><p>C/O Vatika Business Centre,<br /> 6th Floor, Omega-C Block,<br /> Divyasree Building, Hitech City Road, 509202, India.<br /> Tel: 917337333700</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>P T SYNERGY OIL NUSANTARA </h4> <p><p>Jalan Raya Pelabuhan Kabil KM 12.5, Kabil,<br /> Batam 29467 Kepulauan Riau, Indonesia<br /> Tel: +62 77 871 1171<br /> Fax: +62 77 871 1170</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>PT. IFFCO INDONESIA </h4> <p><p>Wisma Nusantara, 27th Floor<br /> Jalan M.H.Thamrin 59<br /> Jakarta 10350 – Indonesia<br /> Tel: +62 21 391 5666<br /> Fax: +62 21 391 8666</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>OFOQ AL IRAQ For Food Stuff &#038; Detergent Industrial LLC </h4> <p><p>Jarf Al Nadaf – Street No. 6 –<br /> Building no 4/7 Baghdad, Iraq<br /> Tel: +964 772 769 8587</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>IFFCO ITALIA S.R.L. </h4> <p><p>Viale Sarca, 235 – 20126 – MILANO – ITALIA<br /> Tel: +39 02 3592780</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>IFFCO ITALIA S.R.L. </h4> <p><p>Factory: Contrada Casale, 81025 Marcianise CE, Italy<br /> Tel: +39 0823 822111</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>IFFCO KENYA LTD </h4> <p><p>Nairobi OFF THIKA HIGHWAY,<br /> Trax Properties Exit 10,<br /> Warehouse No.15, P. O. Box 13774<br /> Tel: +254 787786701</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>IFFCO KUWAIT W.L.L </h4> <p><p>P. O. Box 210 Safat, 13003<br /> Ardiya: Area#1, Plot No. 56, Kuwait<br /> Tel: +965 2433 0112 / 3 / 4<br /> Fax: +965 2433 0115</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>IFFCO LEBANON </h4> <p><p>IFFCO LEBANON<br /> 11th floor, Center 210<br /> Sin El-Fil area,<br /> Beirut, Lebanon<br /> Tel: +961 1 48 49 70<br /> Mobile: +961 71 271 270</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>FGV IFFCO OIL PRODUCTS SDN BHD </h4> <p><p>Lot 82, Kawasan Perindustrian Pasir Gudang<br /> Jalan Besi Dua, 81700 Pasir Gudang<br /> Johor, Malaysia<br /> Tel: +60 7 251 2811<br /> Fax: +60 7 251 4650 / 251 3090</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>FGV IFFCO SDN BHD </h4> <p><p>Lot 596, Lebuh Raja Lumu Pandamaran Industrial Estate<br /> P.O. Box 204, 42009 Port Klang Selangor Darul Ehsan, Malaysia<br /> Tel: +60 3 3168 7601<br /> Fax: +60 3 3167 1980</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>FGV IFFCO TRADING SDN BHD </h4> <p><p>Level 22, Tower 2<br /> Etiqa Twins, 11, Jalan Pinang<br /> 50450 Kuala Lumpur, Malaysia<br /> Tel: +60 3 2174 2020<br /> Fax: +60 3 2176 0355</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>IFFCO (S.E.A) SDN BHD </h4> <p><p>Lot A &#038; B, Level 22<br /> Tower 2, Etiqa Twins<br /> 11, Jalan Pinang<br /> 50450 Kuala Lumpur, Malaysia<br /> Tel: +60 3 2174 2020<br /> Fax: +60 3 2176 0355</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>IFFCO FOODS NIGERIA LIMITED </h4> <p><p>7th Floor,Marble House 1 Kingsway Road,<br /> Falomo Ikoyi Lagos.<br /> Tel: +234 8057597146</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>ARABIAN FOOD PRODUCTION COMPANY </h4> <p><p>P. O. Box 275, Airport Area<br /> PC: 111, Muscat, Sultanate of Oman<br /> Tel: +968 2698 3900 / 8<br /> Fax: +968 2698 3909</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>IFFCO DISTRIBUTION LLC </h4> <p><p>P. O. Box 711, Postal Code 112<br /> Ruwi, Sultanate of Oman<br /> Tel: +968 2461 4888<br /> Fax: +968 2461 4889</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>NATIONAL BISCUIT INDUSTRIES LTD S.O.A.G </h4> <p><p>P.O.Box: 29, Postal code 124<br /> Rusayl, Muscat, Sultanate of Oman<br /> Tel: +968 2444 6034 / 35 / 36<br /> Fax: +968 2444 6048</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>OSOOL POULTRY SAOC </h4> <p><p>PC: 112, Muscat,<br /> Sultanate of Oman<br /> Tel: +968 2236 0250<br /> Fax: +968 2236 0280</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>SOHAR POULTRY COMPANY S.A.O.C </h4> <p><p>PO Box: 2808, Barka – AL Saqsuq<br /> PC: 112, Muscat Sultanate of Oman<br /> Tel: + 968 26886042<br /> Fax: + 968 26884049</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>IFFCO PAKISTAN (PVT) LTD </h4> <p><p>Plot OZ/I/P-44, Port Qasim Industrial Area,<br /> Port Qasim, Karachi, Pakistan<br /> Tel: UAN +92 21 111-433-267<br /> Tel: +92 21 3473 0151 / 2<br /> Fax: +92 21 3473 0287</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>BULK OIL TERMINALS (PRIVATE) LIMITED </h4> <p><p>Plot no. 30-31, Operations Zone,<br /> Oil Installation Area, Port Bin<br /> Qasim, Karachi, Pakistan<br /> Tel: +92 21 34730023-24</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>IFFCO Rwanda Limited: Rukiri II Cell </h4> <p><p>Kimihurura, Gasabo, Kigali,<br /> RWANDA<br /> Tel: +250 783798287</p> <p>Remera Sector, Gasabo District,<br /> Anglican Trinity Plaza, Kigali-Rwanda.<br /> Tel: +250 783798287</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>DELMON PRODUCTS LIMTED </h4> <p><p>Al Mohamadia Dist. Al Olaya Tower, Al Amir Sultan Rd, Next to My Clinic, Building No.<br /> 7878, 7 th Floor.<br /> PO Box 23826, Jeddah Saudi Arabia<br /> Tel: KSA (B)+966 6517069<br /> Fax: +966 6520288</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>Factory: Delmon Products Limited </h4> <p><p>Yanbu Commercial Port,<br /> Yanbu Al Bahr 41911 – KSA<br /> Tel: +966 14 396 2499M</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>PURE FOOD CO LLC </h4> <p><p>Al Mohamadia Dist. Al Olaya Tower, Al Amir Sultan Rd, Next to My Clinic, Building No.<br /> 7878<br /> PO Box 23826, Jeddah, Saudi Arabia<br /> Tel: +966 126527816<br /> Fax: +966 12 6520288</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>PURE FOOD CO LLC </h4> <p><p>EXIT-15 RIYADH, Prince Saad Ibn Abdulrahman Al Awal Branch Rd – Sharq Plaza<br /> 1st Floor<br /> PO Box 11442<br /> Riyadh KSA</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>PURE FOOD CO LLC </h4> <p><p>Prince Mohamed bin Fahd Branch Road Al Qusur distract beside SNB Bank –<br /> Almousa Building , 5th Floor Office No 31<br /> PO Box 34247, Dhahran KSA<br /> Tel: +966 1138875457</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>Serbia </h4> <p><p>Bulevar kralja Aleksandra<br /> 28, 11000 Belgrade,<br /> Serbia<br /> Tel: +381 11 3284 212</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>IFFCO SOUTH EAST EUROPE D.O.O. </h4> <p><p>Omladinskih brigada 86b<br /> 11000 Belgrade, Serbia<br /> Tel: +381628621577</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>IFFCO SINGAPORE PTE. LTD </h4> <p><p>10 Marina Boulevard<br /> #40-02 Marina Bay Financial Centre Tower 2,<br /> Singapore 018983<br /> Tel: + 6565090875<br /> Fax: +6565090875</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>IFFCO CE D.O.O. </h4> <p><p>Slovenska cesta 47<br /> 1000 Ljubljana, Slovenia<br /> Mobile: +38641663523</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>FR WARING (HOLDINGS) (PTY) LIMITED </h4> <p><p>1st Floor, Oakbrook House<br /> 56 Richefond circle, Ridgeside Office Park,<br /> Umhlanga Ridge, Durban, South Africa<br /> Tel: +27 31 536 3200</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>IFFCO SOUTH AFRICA PTY LTD </h4> <p><p>Ridgeside office block, FF<br /> 56 Richefond Circle,<br /> Umhlanga Ridge,<br /> Durban 4319, South Africa<br /> Tel: +27315363200<br /> Mobile: +27844013460<br /> Fax: +27865241885</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>FELDA IFFCO FRANCE SUCURSAL ESPANA </h4> <p><p>Paseo de Gracia 123- 2o 2a 08008 Barcelona, Spain<br /> Tel: +34 932 389 745<br /> Mobile: +34 628 783 852</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>IFFCO IBERIA, S.L.U. </h4> <p><p>Parque Metropolitano,<br /> Avenida de Íncar nº47<br /> PC 18130 Escúzar, Granada (Spain)<br /> Tel: +34958228061</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>IFFCO TANZANIA LIMITED </h4> <p><p>Plot NO. 1008/12, OHIO Street<br /> P O Box 19813, DAR ES SALAAM<br /> Tel: +255 738744000</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>COGIA, S.A. </h4> <p><p>Route de Moureddine<br /> Km. 3.5, BP n 82, 4000<br /> Sousse, Tunisia<br /> Tel: +21673301899</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>L’APPETISSANTE SA </h4> <p><p>Km 12 Route de Mateur<br /> 021 Oued Ellil, Tunisia<br /> Tel: +216 71 535 215<br /> Fax: +216 71 535 189</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>SDA ZITOUNA 1 </h4> <p><p>P.O. Box No.7 Smenja 1131<br /> Zaghouan, Tunisia</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>IFFCO TUNISIE DISTRIBUTION </h4> <p><p>kM 12 Route de Mateur<br /> 2021 Oued Ellil Manouba Tunisia<br /> Tel: 216 36 404 370<br /> Fax: +216 70 20 13 46</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>FELDA IFFCO GIDA SANAYI VE TICARET A.S. </h4> <p><p>Izmir Ataturk Organize Sanayi Bolgesi<br /> 10003 Sokak No. 3<br /> 35620 Cigli – Izmir / Turkey<br /> Tel: +90 232 280 8080<br /> Fax: +90 232 280 8090</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>FELDA IFFCO GIDA SANAYI VE TICARET A.S. </h4> <p><p>Büyükdere Caddesi Levent Loft Kapı<br /> No. 201 Dr: 26 Esentepe/Istanbul, Turkey<br /> Tel: +90 216 280 8080,<br /> Fax: +90 216 280 8090</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>FELDA IFFCO GIDA SANAYI VE TICARET A.S. </h4> <p><p>Büyükdere Caddesi Levent Loft Kapı<br /> No. 201 Dr: 26 Esentepe/Istanbul, Turkey<br /> Tel: +90 216 280 8080,<br /> Fax: +90 216 280 8090</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>SEVILLE KISISEL BAKIM URUNLERI ENDUSTRILERI URETIM SANAYI VE TICARET LIMITED SIRKETI </h4> <p><p>AOSB MAHALLESI 10003 SK. IFFCO GIDA A.S.<br /> Apt. No. 3 Cigli, Izmir, Turkey</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>IFFCO UGANDA LTD </h4> <p><p>Plot No. 48 Rashid Khamis Road,<br /> Old Kampala,<br /> P O Box 21841 Kampala, Uganda<br /> Tel: +256 751102558</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>IFFCO UKRAINE LLC </h4> <p><p>11, Sagaydachnogo st.,<br /> Kyiv, 04070, Business center<br /> “Volodymyrskyy”,<br /> Third floor, office 213<br /> Tel: +380674471704</p> </p> </address> </div> <div class="col-12 col-md-6 col-lg-4"> <address> <h4>IFFCO INC. </h4> <p><p>2776 Glenlocke Circle NW, Atlanta,<br /> Ga 30318, USA<br /> Tel: +1 404 688 6000<br /> Fax: +1 404 688 4000</p> </p> </address> </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 src="https://iffco.com/wp-content/cache/minify/64051.js"></script> <script type="text/javascript" id="google-recaptcha-js-extra"> /* <![CDATA[ */ var wpcf7iqfix = {"recaptcha_empty":"Please verify that you are not a robot.","response_err":"wpcf7-recaptcha: Could not verify reCaptcha response."}; /* ]]> */ </script> <script type="text/javascript" src="https://www.google.com/recaptcha/api.js?hl=en_US&amp;onload=recaptchaCallback&amp;render=explicit" id="google-recaptcha-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-11-23 22:44:20 by W3 Total Cache -->

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