<!doctype html>
<html lang="en-US">
<head>
	<meta charset="UTF-8" />
	<meta name="viewport" content="width=device-width, initial-scale=1" />
	<link rel="profile" href="https://gmpg.org/xfn/11" />
	<meta name='robots' content='index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1' />

	<!-- This site is optimized with the Yoast SEO plugin v19.1 - https://yoast.com/wordpress/plugins/seo/ -->
	<title>Blog | Performics India</title>
	<meta name="description" content="Get industry insights from our Media, Content, Analytics and commerce and planning experts. Get access to latest updates and informative blogs in the digital marketing world." />
	<link rel="canonical" href="https://www.performics.com/in/?page_id=14812" />
	<link rel="next" href="https://www.performics.com/in/?page_id=14812/page/2/" />
	<meta property="og:locale" content="en_US" />
	<meta property="og:type" content="article" />
	<meta property="og:title" content="Blog | Performics India" />
	<meta property="og:description" content="Get industry insights from our Media, Content, Analytics and commerce and planning experts. Get access to latest updates and informative blogs in the digital marketing world." />
	<meta property="og:url" content="https://www.performics.com/in/?page_id=14812" />
	<meta property="og:site_name" content="Performics India" />
	<meta property="og:image" content="http://www.performics.com/in/wp-content/uploads/sites/6/2020/08/annie-spratt-bGdiuIyN3Rs-unsplash-1024x639.jpg" />
	<meta property="og:image:width" content="1024" />
	<meta property="og:image:height" content="639" />
	<meta property="og:image:type" content="image/jpeg" />
	<meta name="twitter:card" content="summary_large_image" />
	<script type="application/ld+json" class="yoast-schema-graph">{"@context":"https://schema.org","@graph":[{"@type":"WebSite","@id":"https://www.performics.com/in/#website","url":"https://www.performics.com/in/","name":"Performics India","description":"Performics India","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https://www.performics.com/in/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"ImageObject","inLanguage":"en-US","@id":"https://www.performics.com/in/?page_id=14812#primaryimage","url":"https://www.performics.com/in/wp-content/uploads/sites/6/2020/08/annie-spratt-bGdiuIyN3Rs-unsplash.jpg","contentUrl":"https://www.performics.com/in/wp-content/uploads/sites/6/2020/08/annie-spratt-bGdiuIyN3Rs-unsplash.jpg","width":3949,"height":2464,"caption":"performics blog"},{"@type":["WebPage","CollectionPage"],"@id":"https://www.performics.com/in/?page_id=14812#webpage","url":"https://www.performics.com/in/?page_id=14812","name":"Blog | Performics India","isPartOf":{"@id":"https://www.performics.com/in/#website"},"primaryImageOfPage":{"@id":"https://www.performics.com/in/?page_id=14812#primaryimage"},"datePublished":"2020-08-14T12:30:30+00:00","dateModified":"2022-11-15T09:04:15+00:00","description":"Get industry insights from our Media, Content, Analytics and commerce and planning experts. Get access to latest updates and informative blogs in the digital marketing world.","breadcrumb":{"@id":"https://www.performics.com/in/?page_id=14812#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https://www.performics.com/in/?page_id=14812"]}]},{"@type":"BreadcrumbList","@id":"https://www.performics.com/in/?page_id=14812#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://www.performics.com/in/"},{"@type":"ListItem","position":2,"name":"Blog"}]}]}</script>
	<!-- / Yoast SEO plugin. -->


<link rel='dns-prefetch' href='//fonts.googleapis.com' />
<link rel='dns-prefetch' href='//s.w.org' />
<link rel="alternate" type="application/rss+xml" title="Performics India &raquo; Feed" href="https://www.performics.com/in/feed/" />
<link rel="alternate" type="application/rss+xml" title="Performics India &raquo; Comments Feed" href="https://www.performics.com/in/comments/feed/" />
<script type="text/javascript">
window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/14.0.0\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/14.0.0\/svg\/","svgExt":".svg","source":{"wpemoji":"https:\/\/www.performics.com\/in\/wp-includes\/js\/wp-emoji.js?ver=6.0.9","twemoji":"https:\/\/www.performics.com\/in\/wp-includes\/js\/twemoji.js?ver=6.0.9"}};
/**
 * @output wp-includes/js/wp-emoji-loader.js
 */

( function( window, document, settings ) {
	var src, ready, ii, tests;

	// Create a canvas element for testing native browser support of emoji.
	var canvas = document.createElement( 'canvas' );
	var context = canvas.getContext && canvas.getContext( '2d' );

	/**
	 * Checks if two sets of Emoji characters render the same visually.
	 *
	 * @since 4.9.0
	 *
	 * @private
	 *
	 * @param {number[]} set1 Set of Emoji character codes.
	 * @param {number[]} set2 Set of Emoji character codes.
	 *
	 * @return {boolean} True if the two sets render the same.
	 */
	function emojiSetsRenderIdentically( set1, set2 ) {
		var stringFromCharCode = String.fromCharCode;

		// Cleanup from previous test.
		context.clearRect( 0, 0, canvas.width, canvas.height );
		context.fillText( stringFromCharCode.apply( this, set1 ), 0, 0 );
		var rendered1 = canvas.toDataURL();

		// Cleanup from previous test.
		context.clearRect( 0, 0, canvas.width, canvas.height );
		context.fillText( stringFromCharCode.apply( this, set2 ), 0, 0 );
		var rendered2 = canvas.toDataURL();

		return rendered1 === rendered2;
	}

	/**
	 * Detects if the browser supports rendering emoji or flag emoji.
	 *
	 * Flag emoji are a single glyph made of two characters, so some browsers
	 * (notably, Firefox OS X) don't support them.
	 *
	 * @since 4.2.0
	 *
	 * @private
	 *
	 * @param {string} type Whether to test for support of "flag" or "emoji".
	 *
	 * @return {boolean} True if the browser can render emoji, false if it cannot.
	 */
	function browserSupportsEmoji( type ) {
		var isIdentical;

		if ( ! context || ! context.fillText ) {
			return false;
		}

		/*
		 * 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';

		switch ( type ) {
			case 'flag':
				/*
				 * Test for Transgender flag compatibility. This flag is shortlisted for the Emoji 13 spec,
				 * but has landed in Twemoji early, so we can add support for it, too.
				 *
				 * 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(
					[ 0x1F3F3, 0xFE0F, 0x200D, 0x26A7, 0xFE0F ],
					[ 0x1F3F3, 0xFE0F, 0x200B, 0x26A7, 0xFE0F ]
				);

				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(
					[ 0xD83C, 0xDDFA, 0xD83C, 0xDDF3 ],
					[ 0xD83C, 0xDDFA, 0x200B, 0xD83C, 0xDDF3 ]
				);

				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 an 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(
					[ 0xD83C, 0xDFF4, 0xDB40, 0xDC67, 0xDB40, 0xDC62, 0xDB40, 0xDC65, 0xDB40, 0xDC6E, 0xDB40, 0xDC67, 0xDB40, 0xDC7F ],
					[ 0xD83C, 0xDFF4, 0x200B, 0xDB40, 0xDC67, 0x200B, 0xDB40, 0xDC62, 0x200B, 0xDB40, 0xDC65, 0x200B, 0xDB40, 0xDC6E, 0x200B, 0xDB40, 0xDC67, 0x200B, 0xDB40, 0xDC7F ]
				);

				return ! isIdentical;
			case 'emoji':
				/*
				 * Why can't we be friends? Everyone can now shake hands in emoji, regardless of skin tone!
				 *
				 * To test for Emoji 14.0 support, try to render a new emoji: Handshake: Light Skin Tone, Dark Skin Tone.
				 *
				 * The Handshake: Light Skin Tone, Dark Skin Tone emoji is a ZWJ sequence combining 🫱 Rightwards Hand,
				 * 🏻 Light Skin Tone, a Zero Width Joiner, 🫲 Leftwards Hand, and 🏿 Dark Skin Tone.
				 *
				 * 0x1FAF1 == Rightwards Hand
				 * 0x1F3FB == Light Skin Tone
				 * 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.
				 * 0x1FAF2 == Leftwards Hand
				 * 0x1F3FF == Dark Skin Tone.
				 *
				 * When updating this test for future Emoji releases, ensure that individual emoji that make up the
				 * sequence come from older emoji standards.
				 */
				isIdentical = emojiSetsRenderIdentically(
					[0x1FAF1, 0x1F3FB, 0x200D, 0x1FAF2, 0x1F3FF],
					[0x1FAF1, 0x1F3FB, 0x200B, 0x1FAF2, 0x1F3FF]
				);

				return ! isIdentical;
		}

		return false;
	}

	/**
	 * Adds a script to the head of the document.
	 *
	 * @ignore
	 *
	 * @since 4.2.0
	 *
	 * @param {Object} src The url where the script is located.
	 * @return {void}
	 */
	function addScript( src ) {
		var script = document.createElement( 'script' );

		script.src = src;
		script.defer = script.type = 'text/javascript';
		document.getElementsByTagName( 'head' )[0].appendChild( script );
	}

	tests = Array( 'flag', 'emoji' );

	settings.supports = {
		everything: true,
		everythingExceptFlag: true
	};

	/*
	 * Tests the browser support for flag emojis and other emojis, and adjusts the
	 * support settings accordingly.
	 */
	for( ii = 0; ii < tests.length; ii++ ) {
		settings.supports[ tests[ ii ] ] = browserSupportsEmoji( tests[ ii ] );

		settings.supports.everything = settings.supports.everything && settings.supports[ tests[ ii ] ];

		if ( 'flag' !== tests[ ii ] ) {
			settings.supports.everythingExceptFlag = settings.supports.everythingExceptFlag && settings.supports[ tests[ ii ] ];
		}
	}

	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;
	};

	// When the browser can not render everything we need to load a polyfill.
	if ( ! settings.supports.everything ) {
		ready = function() {
			settings.readyCallback();
		};

		/*
		 * Cross-browser version of adding a dom ready event.
		 */
		if ( document.addEventListener ) {
			document.addEventListener( 'DOMContentLoaded', ready, false );
			window.addEventListener( 'load', ready, false );
		} else {
			window.attachEvent( 'onload', ready );
			document.attachEvent( 'onreadystatechange', function() {
				if ( 'complete' === document.readyState ) {
					settings.readyCallback();
				}
			} );
		}

		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 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' id='wp-block-library-css'  href='https://www.performics.com/in/wp-includes/css/dist/block-library/style.css?ver=6.0.9' type='text/css' media='all' />
<style id='wp-block-library-theme-inline-css' type='text/css'>
/**
 * Colors
 */
/**
 * Breakpoints & Media Queries
 */
/**
 * SCSS Variables.
 *
 * Please use variables from this sheet to ensure consistency across the UI.
 * Don't add to this sheet unless you're pretty sure the value will be reused in many places.
 * For example, don't add rules to this sheet that affect block visuals. It's purely for UI.
 */
/**
 * Colors
 */
/**
 * Fonts & basic variables.
 */
/**
 * Grid System.
 * https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
 */
/**
 * Dimensions.
 */
/**
 * Shadows.
 */
/**
 * Editor widths.
 */
/**
 * Block & Editor UI.
 */
/**
 * Block paddings.
 */
/**
 * React Native specific.
 * These variables do not appear to be used anywhere else.
 */
/**
*  Converts a hex value into the rgb equivalent.
*
* @param {string} hex - the hexadecimal value to convert
* @return {string} comma separated rgb values
*/
/**
 * Breakpoint mixins
 */
/**
 * Long content fade mixin
 *
 * Creates a fading overlay to signify that the content is longer
 * than the space allows.
 */
/**
 * Focus styles.
 */
/**
 * Applies editor left position to the selector passed as argument
 */
/**
 * Styles that are reused verbatim in a few places
 */
/**
 * Allows users to opt-out of animations via OS-level preferences.
 */
/**
 * Reset default styles for JavaScript UI based pages.
 * This is a WP-admin agnostic reset
 */
/**
 * Reset the WP Admin page styles for Gutenberg-like pages.
 */
.wp-block-audio figcaption {
  color: #555;
  font-size: 13px;
  text-align: center;
}
.is-dark-theme .wp-block-audio figcaption {
  color: rgba(255, 255, 255, 0.65);
}

.wp-block-code {
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: Menlo, Consolas, monaco, monospace;
  padding: 0.8em 1em;
}

.wp-block-embed figcaption {
  color: #555;
  font-size: 13px;
  text-align: center;
}
.is-dark-theme .wp-block-embed figcaption {
  color: rgba(255, 255, 255, 0.65);
}

.blocks-gallery-caption {
  color: #555;
  font-size: 13px;
  text-align: center;
}
.is-dark-theme .blocks-gallery-caption {
  color: rgba(255, 255, 255, 0.65);
}

.wp-block-image figcaption {
  color: #555;
  font-size: 13px;
  text-align: center;
}
.is-dark-theme .wp-block-image figcaption {
  color: rgba(255, 255, 255, 0.65);
}

.wp-block-pullquote {
  border-top: 4px solid currentColor;
  border-bottom: 4px solid currentColor;
  margin-bottom: 1.75em;
  color: currentColor;
}
.wp-block-pullquote cite,
.wp-block-pullquote footer, .wp-block-pullquote__citation {
  color: currentColor;
  text-transform: uppercase;
  font-size: 0.8125em;
  font-style: normal;
}

.wp-block-quote {
  border-left: 0.25em solid currentColor;
  margin: 0 0 1.75em 0;
  padding-left: 1em;
}
.wp-block-quote cite,
.wp-block-quote footer {
  color: currentColor;
  font-size: 0.8125em;
  position: relative;
  font-style: normal;
}
.wp-block-quote.has-text-align-right {
  border-left: none;
  border-right: 0.25em solid currentColor;
  padding-left: 0;
  padding-right: 1em;
}
.wp-block-quote.has-text-align-center {
  border: none;
  padding-left: 0;
}
.wp-block-quote.is-style-plain, .wp-block-quote.is-style-large, .wp-block-quote.is-large {
  border: none;
}

.wp-block-search .wp-block-search__label {
  font-weight: bold;
}

:where(.wp-block-group.has-background) {
  padding: 1.25em 2.375em;
}

.wp-block-separator.has-css-opacity {
  opacity: 0.4;
}

.wp-block-separator {
  border: none;
  border-bottom: 2px solid currentColor;
  margin-left: auto;
  margin-right: auto;
}
.wp-block-separator.has-alpha-channel-opacity {
  opacity: initial;
}
.wp-block-separator:not(.is-style-wide):not(.is-style-dots) {
  width: 100px;
}
.wp-block-separator.has-background:not(.is-style-dots) {
  border-bottom: none;
  height: 1px;
}
.wp-block-separator.has-background:not(.is-style-wide):not(.is-style-dots) {
  height: 2px;
}

.wp-block-table thead {
  border-bottom: 3px solid;
}
.wp-block-table tfoot {
  border-top: 3px solid;
}
.wp-block-table td,
.wp-block-table th {
  padding: 0.5em;
  border: 1px solid;
  word-break: normal;
}
.wp-block-table figcaption {
  color: #555;
  font-size: 13px;
  text-align: center;
}
.is-dark-theme .wp-block-table figcaption {
  color: rgba(255, 255, 255, 0.65);
}

.wp-block-video figcaption {
  color: #555;
  font-size: 13px;
  text-align: center;
}
.is-dark-theme .wp-block-video figcaption {
  color: rgba(255, 255, 255, 0.65);
}

.wp-block-template-part.has-background {
  padding: 1.25em 2.375em;
  margin-top: 0;
  margin-bottom: 0;
}
</style>
<link rel='stylesheet' id='wp-components-css'  href='https://www.performics.com/in/wp-includes/css/dist/components/style.css?ver=6.0.9' type='text/css' media='all' />
<link rel='stylesheet' id='wp-block-editor-css'  href='https://www.performics.com/in/wp-includes/css/dist/block-editor/style.css?ver=6.0.9' type='text/css' media='all' />
<link rel='stylesheet' id='wp-nux-css'  href='https://www.performics.com/in/wp-includes/css/dist/nux/style.css?ver=6.0.9' type='text/css' media='all' />
<link rel='stylesheet' id='wp-reusable-blocks-css'  href='https://www.performics.com/in/wp-includes/css/dist/reusable-blocks/style.css?ver=6.0.9' type='text/css' media='all' />
<link rel='stylesheet' id='wp-editor-css'  href='https://www.performics.com/in/wp-includes/css/dist/editor/style.css?ver=6.0.9' type='text/css' media='all' />
<link rel='stylesheet' id='centered_content_container-cgb-style-css-css'  href='https://www.performics.com/in/wp-content/plugins/centered-content-container/dist/blocks.style.build.css' type='text/css' media='all' />
<link rel='stylesheet' id='columns_container-cgb-style-css-css'  href='https://www.performics.com/in/wp-content/plugins/columns-container/dist/blocks.style.build.css' type='text/css' media='all' />
<link rel='stylesheet' id='bulma-framework-css'  href='https://www.performics.com/in/wp-content/themes/PFX-india/css/pfx_bulma/css/pfx_bulma.css?ver=6.0.9' type='text/css' media='all' />
<link rel='stylesheet' id='pfx-font-css'  href='https://fonts.googleapis.com/css?family=Open+Sans%3A300%2C400%2C600%2C700%2C800&#038;display=swap&#038;ver=6.0.9' type='text/css' media='all' />
<link rel='stylesheet' id='pfx-style-css'  href='https://www.performics.com/in/wp-content/themes/PFX-india/css/style.css?ver=6.0.9' type='text/css' media='all' />
<style id='global-styles-inline-css' type='text/css'>
body{--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #FFF;--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--color--primary: #1e9a4b;--wp--preset--color--yellow: #f0c92d;--wp--preset--color--dark-gray: #20b6ee;--wp--preset--color--light-gray: #4a4f55;--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--duotone--dark-grayscale: url('#wp-duotone-dark-grayscale');--wp--preset--duotone--grayscale: url('#wp-duotone-grayscale');--wp--preset--duotone--purple-yellow: url('#wp-duotone-purple-yellow');--wp--preset--duotone--blue-red: url('#wp-duotone-blue-red');--wp--preset--duotone--midnight: url('#wp-duotone-midnight');--wp--preset--duotone--magenta-yellow: url('#wp-duotone-magenta-yellow');--wp--preset--duotone--purple-green: url('#wp-duotone-purple-green');--wp--preset--duotone--blue-orange: url('#wp-duotone-blue-orange');--wp--preset--font-size--small: 19.5px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36.5px;--wp--preset--font-size--x-large: 42px;--wp--preset--font-size--normal: 22px;--wp--preset--font-size--huge: 49.5px;}.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;}
</style>
<link rel="https://api.w.org/" href="https://www.performics.com/in/wp-json/" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://www.performics.com/in/xmlrpc.php?rsd" />
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="https://www.performics.com/in/wp-includes/wlwmanifest.xml" /> 
<meta name="generator" content="WordPress 6.0.9" />
<!-- start Mixpanel -->
<script type="text/javascript">(function(f,b){if(!b.__SV){var a,e,i,g;window.mixpanel=b;b._i=[];b.init=function(a,e,d){function f(b,h){var a=h.split(".");2==a.length&&(b=b[a[0]],h=a[1]);b[h]=function(){b.push([h].concat(Array.prototype.slice.call(arguments,0)))}}var c=b;"undefined"!==typeof d?c=b[d]=[]:d="mixpanel";c.people=c.people||[];c.toString=function(b){var a="mixpanel";"mixpanel"!==d&&(a+="."+d);b||(a+=" (stub)");return a};c.people.toString=function(){return c.toString(1)+".people (stub)"};i="disable track track_pageview track_links track_forms register register_once alias unregister identify name_tag set_config people.set people.set_once people.increment people.append people.track_charge people.clear_charges people.delete_user".split(" ");
for(g=0;g<i.length;g++)f(c,i[g]);b._i.push([a,e,d])};b.__SV=1.2;a=f.createElement("script");a.type="text/javascript";a.async=!0;a.src="//cdn.mxpnl.com/libs/mixpanel-2.2.min.js";e=f.getElementsByTagName("script")[0];e.parentNode.insertBefore(a,e)}})(document,window.mixpanel||[]);
mixpanel.init("097f8117266d231bd491bcdd1208d005");</script>
<!-- end Mixpanel -->

<script type="text/javascript"> 
mixpanel.set_config({
    cross_subdomain_cookie: false,
    debug: true});
</script> 
<!-- end Mixpanel -->
        <script type="text/javascript">
            var jQueryMigrateHelperHasSentDowngrade = false;

			window.onerror = function( msg, url, line, col, error ) {
				// Break out early, do not processing if a downgrade reqeust was already sent.
				if ( jQueryMigrateHelperHasSentDowngrade ) {
					return true;
                }

				var xhr = new XMLHttpRequest();
				var nonce = '9117329587';
				var jQueryFunctions = [
					'andSelf',
					'browser',
					'live',
					'boxModel',
					'support.boxModel',
					'size',
					'swap',
					'clean',
					'sub',
                ];
				var match_pattern = /\)\.(.+?) is not a function/;
                var erroredFunction = msg.match( match_pattern );

                // If there was no matching functions, do not try to downgrade.
                if ( typeof erroredFunction !== 'object' || typeof erroredFunction[1] === "undefined" || -1 === jQueryFunctions.indexOf( erroredFunction[1] ) ) {
                    return true;
                }

                // Set that we've now attempted a downgrade request.
                jQueryMigrateHelperHasSentDowngrade = true;

				xhr.open( 'POST', 'https://www.performics.com/in/wp-admin/admin-ajax.php' );
				xhr.setRequestHeader( 'Content-Type', 'application/x-www-form-urlencoded' );
				xhr.onload = function () {
					var response,
                        reload = false;

					if ( 200 === xhr.status ) {
                        try {
                        	response = JSON.parse( xhr.response );

                        	reload = response.data.reload;
                        } catch ( e ) {
                        	reload = false;
                        }
                    }

					// Automatically reload the page if a deprecation caused an automatic downgrade, ensure visitors get the best possible experience.
					if ( reload ) {
						location.reload();
                    }
				};

				xhr.send( encodeURI( 'action=jquery-migrate-downgrade-version&_wpnonce=' + nonce ) );

				// Suppress error alerts in older browsers
				return true;
			}
        </script>

				<script>
			document.documentElement.className = document.documentElement.className.replace( 'no-js', 'js' );
		</script>
				<style>
			.no-js img.lazyload { display: none; }
			figure.wp-block-image img.lazyloading { min-width: 150px; }
							.lazyload, .lazyloading { opacity: 0; }
				.lazyloaded {
					opacity: 1;
					transition: opacity 400ms;
					transition-delay: 0ms;
				}
					</style>
		<style type="text/css">.recentcomments a{display:inline !important;padding:0 !important;margin:0 !important;}</style>		<script
				  src="https://code.jquery.com/jquery-3.4.1.min.js"
				  integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo="
				  crossorigin="anonymous">
	</script>
	<script src="https://www.performics.com/in/wp-content/themes/PFX-india/js/controller.js" ></script>
	<link rel="stylesheet" type="text/css" href="https://wpcc.io/lib/1.0.2/cookieconsent.min.css"/>
 <script src="https://wpcc.io/lib/1.0.2/cookieconsent.min.js"></script>
 <script>
 window.addEventListener("load", function(){
 window.wpcc.init({"corners":"small","colors":{"popup":{"background":"#f0c92d","text":"#4a4f55","border":"#e0bc57"},"button":{"background":"#4a4f55","text":"#ffffff"}},"position":"bottom"})
 });
 </script>
 

<!-- Microsoft Clarity -->
<script type="text/javascript"> (function(c,l,a,r,i,t,y){ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); })(window, document, "clarity", "script", "a1wzg8rnj9"); </script>
<!-- End Microsoft Clarity -->
 <script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "Organization",
  "address": {
    "@type": "PostalAddress",
    "addressLocality": "Mumbai, India",
    "postalCode": "400013",
    "streetAddress": "Urmi Estate, 95, Ganapatrao Kadam Marg, Lower Parel"
  },
  "name": "Performics India",
  "url": "https://www.performics.com/in/",
  "telephone": "022 3041 0328"
}
</script>
 
</head>
<body class="blog wp-custom-logo wp-embed-responsive hfeed image-filters-enabled">

	<svg
		xmlns="http://www.w3.org/2000/svg"
		viewBox="0 0 0 0"
		width="0"
		height="0"
		focusable="false"
		role="none"
		style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;"
	>
		<defs>
			<filter id="wp-duotone-dark-grayscale">
				<feColorMatrix
					color-interpolation-filters="sRGB"
					type="matrix"
					values="
						.299 .587 .114 0 0
						.299 .587 .114 0 0
						.299 .587 .114 0 0
						.299 .587 .114 0 0
					"
				/>
				<feComponentTransfer color-interpolation-filters="sRGB" >
					<feFuncR type="table" tableValues="0 0.49803921568627" />
					<feFuncG type="table" tableValues="0 0.49803921568627" />
					<feFuncB type="table" tableValues="0 0.49803921568627" />
					<feFuncA type="table" tableValues="1 1" />
				</feComponentTransfer>
				<feComposite in2="SourceGraphic" operator="in" />
			</filter>
		</defs>
	</svg>

	
	<svg
		xmlns="http://www.w3.org/2000/svg"
		viewBox="0 0 0 0"
		width="0"
		height="0"
		focusable="false"
		role="none"
		style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;"
	>
		<defs>
			<filter id="wp-duotone-grayscale">
				<feColorMatrix
					color-interpolation-filters="sRGB"
					type="matrix"
					values="
						.299 .587 .114 0 0
						.299 .587 .114 0 0
						.299 .587 .114 0 0
						.299 .587 .114 0 0
					"
				/>
				<feComponentTransfer color-interpolation-filters="sRGB" >
					<feFuncR type="table" tableValues="0 1" />
					<feFuncG type="table" tableValues="0 1" />
					<feFuncB type="table" tableValues="0 1" />
					<feFuncA type="table" tableValues="1 1" />
				</feComponentTransfer>
				<feComposite in2="SourceGraphic" operator="in" />
			</filter>
		</defs>
	</svg>

	
	<svg
		xmlns="http://www.w3.org/2000/svg"
		viewBox="0 0 0 0"
		width="0"
		height="0"
		focusable="false"
		role="none"
		style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;"
	>
		<defs>
			<filter id="wp-duotone-purple-yellow">
				<feColorMatrix
					color-interpolation-filters="sRGB"
					type="matrix"
					values="
						.299 .587 .114 0 0
						.299 .587 .114 0 0
						.299 .587 .114 0 0
						.299 .587 .114 0 0
					"
				/>
				<feComponentTransfer color-interpolation-filters="sRGB" >
					<feFuncR type="table" tableValues="0.54901960784314 0.98823529411765" />
					<feFuncG type="table" tableValues="0 1" />
					<feFuncB type="table" tableValues="0.71764705882353 0.25490196078431" />
					<feFuncA type="table" tableValues="1 1" />
				</feComponentTransfer>
				<feComposite in2="SourceGraphic" operator="in" />
			</filter>
		</defs>
	</svg>

	
	<svg
		xmlns="http://www.w3.org/2000/svg"
		viewBox="0 0 0 0"
		width="0"
		height="0"
		focusable="false"
		role="none"
		style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;"
	>
		<defs>
			<filter id="wp-duotone-blue-red">
				<feColorMatrix
					color-interpolation-filters="sRGB"
					type="matrix"
					values="
						.299 .587 .114 0 0
						.299 .587 .114 0 0
						.299 .587 .114 0 0
						.299 .587 .114 0 0
					"
				/>
				<feComponentTransfer color-interpolation-filters="sRGB" >
					<feFuncR type="table" tableValues="0 1" />
					<feFuncG type="table" tableValues="0 0.27843137254902" />
					<feFuncB type="table" tableValues="0.5921568627451 0.27843137254902" />
					<feFuncA type="table" tableValues="1 1" />
				</feComponentTransfer>
				<feComposite in2="SourceGraphic" operator="in" />
			</filter>
		</defs>
	</svg>

	
	<svg
		xmlns="http://www.w3.org/2000/svg"
		viewBox="0 0 0 0"
		width="0"
		height="0"
		focusable="false"
		role="none"
		style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;"
	>
		<defs>
			<filter id="wp-duotone-midnight">
				<feColorMatrix
					color-interpolation-filters="sRGB"
					type="matrix"
					values="
						.299 .587 .114 0 0
						.299 .587 .114 0 0
						.299 .587 .114 0 0
						.299 .587 .114 0 0
					"
				/>
				<feComponentTransfer color-interpolation-filters="sRGB" >
					<feFuncR type="table" tableValues="0 0" />
					<feFuncG type="table" tableValues="0 0.64705882352941" />
					<feFuncB type="table" tableValues="0 1" />
					<feFuncA type="table" tableValues="1 1" />
				</feComponentTransfer>
				<feComposite in2="SourceGraphic" operator="in" />
			</filter>
		</defs>
	</svg>

	
	<svg
		xmlns="http://www.w3.org/2000/svg"
		viewBox="0 0 0 0"
		width="0"
		height="0"
		focusable="false"
		role="none"
		style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;"
	>
		<defs>
			<filter id="wp-duotone-magenta-yellow">
				<feColorMatrix
					color-interpolation-filters="sRGB"
					type="matrix"
					values="
						.299 .587 .114 0 0
						.299 .587 .114 0 0
						.299 .587 .114 0 0
						.299 .587 .114 0 0
					"
				/>
				<feComponentTransfer color-interpolation-filters="sRGB" >
					<feFuncR type="table" tableValues="0.78039215686275 1" />
					<feFuncG type="table" tableValues="0 0.94901960784314" />
					<feFuncB type="table" tableValues="0.35294117647059 0.47058823529412" />
					<feFuncA type="table" tableValues="1 1" />
				</feComponentTransfer>
				<feComposite in2="SourceGraphic" operator="in" />
			</filter>
		</defs>
	</svg>

	
	<svg
		xmlns="http://www.w3.org/2000/svg"
		viewBox="0 0 0 0"
		width="0"
		height="0"
		focusable="false"
		role="none"
		style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;"
	>
		<defs>
			<filter id="wp-duotone-purple-green">
				<feColorMatrix
					color-interpolation-filters="sRGB"
					type="matrix"
					values="
						.299 .587 .114 0 0
						.299 .587 .114 0 0
						.299 .587 .114 0 0
						.299 .587 .114 0 0
					"
				/>
				<feComponentTransfer color-interpolation-filters="sRGB" >
					<feFuncR type="table" tableValues="0.65098039215686 0.40392156862745" />
					<feFuncG type="table" tableValues="0 1" />
					<feFuncB type="table" tableValues="0.44705882352941 0.4" />
					<feFuncA type="table" tableValues="1 1" />
				</feComponentTransfer>
				<feComposite in2="SourceGraphic" operator="in" />
			</filter>
		</defs>
	</svg>

	
	<svg
		xmlns="http://www.w3.org/2000/svg"
		viewBox="0 0 0 0"
		width="0"
		height="0"
		focusable="false"
		role="none"
		style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;"
	>
		<defs>
			<filter id="wp-duotone-blue-orange">
				<feColorMatrix
					color-interpolation-filters="sRGB"
					type="matrix"
					values="
						.299 .587 .114 0 0
						.299 .587 .114 0 0
						.299 .587 .114 0 0
						.299 .587 .114 0 0
					"
				/>
				<feComponentTransfer color-interpolation-filters="sRGB" >
					<feFuncR type="table" tableValues="0.098039215686275 1" />
					<feFuncG type="table" tableValues="0 0.66274509803922" />
					<feFuncB type="table" tableValues="0.84705882352941 0.41960784313725" />
					<feFuncA type="table" tableValues="1 1" />
				</feComponentTransfer>
				<feComposite in2="SourceGraphic" operator="in" />
			</filter>
		</defs>
	</svg>

	 <!-- hook for adding custom scripts to start of body tags -->


<section class="hero has-background is-70-height">
  <img   alt="Performics Blog" data-src="https://www.performics.com/in/wp-content/uploads/sites/6/2020/08/annie-spratt-bGdiuIyN3Rs-unsplash.jpg" class="hero-image lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="><noscript><img class="hero-image" src="https://www.performics.com/in/wp-content/uploads/sites/6/2020/08/annie-spratt-bGdiuIyN3Rs-unsplash.jpg" alt="Performics Blog"></noscript>

	<!-- Hero head: will stick at the top -->
<div class="hero-head">
  <nav class="navbar is-transparent" role="navigation" aria-label="dropdown navigation">
    <div class="container">
      <div class="navbar-brand">
        <a class="navbar-item" href="https://www.performics.com/in">
          <img  alt="Performics Logo" style="width:200px" data-src="https://www.performics.com/in/wp-content/themes/PFX/img/performics_logo_white.svg" class="lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="><noscript><img  alt="Performics Logo" style="width:200px" data-src="https://www.performics.com/in/wp-content/themes/PFX/img/performics_logo_white.svg" class="lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="><noscript><img src="https://www.performics.com/in/wp-content/themes/PFX/img/performics_logo_white.svg" alt="Performics Logo" style="width:200px"></noscript></noscript>
        </a>
        <span class="navbar-burger burger" data-target="navbarMenuHeroA">
          <span></span>
          <span></span>
          <span></span>
        </span>
      </div><!-- navbar brand ends-->
      <div class="navbar-menu" id="navbarMenuHeroA" >
        <div class="navbar-end">
                                  <a class="navbar-item is-tab" href="https://www.performics.com/in/">Home</a>
                                              <div class="navbar-item has-dropdown is-hoverable">
                <a class="navbar-link" href="https://www.performics.com/in/about-us-performics-india/">About Us</a>
                <div class="navbar-dropdown is-boxed">
                                            <a class="navbar-item" href="https://www.performics.com/in/about-us-performics-india/leadership/our-leaders/">Leadership</a>
                                                                    <a class="navbar-item" href="https://www.performics.com/in/about-us-performics-india/locations/">Locations</a>
                                                          </div>
              </div>
                                                <div class="navbar-item has-dropdown is-hoverable">
                <a class="navbar-link" href="https://www.performics.com/in/services/">Services</a>
                <div class="navbar-dropdown is-boxed">
                                            <a class="navbar-item" href="https://www.performics.com/in/services/search-engine-marketing-social-media-ads-performics-india/">Performance Media</a>
                                                                    <a class="navbar-item" href="https://www.performics.com/in/services/performance-content/">Performance Content</a>
                                                                    <a class="navbar-item" href="https://www.performics.com/in/services/analytics-data-science-performics-india/">Analytics &amp; Data Science</a>
                                                                    <a class="navbar-item" href="https://www.performics.com/in/services/ecommerce-optimisation-services-performics-india/">Commerce Practice</a>
                                                          </div>
              </div>
                                                <div class="navbar-item has-dropdown is-hoverable">
                <a class="navbar-link" href="https://www.performics.com/in/decoding-ondc-a-perspective-for-marketers/">Insights</a>
                <div class="navbar-dropdown is-boxed">
                                            <a class="navbar-item" href="https://www.performics.com/in/?page_id=14812">Blog</a>
                                                                    <a class="navbar-item" href="https://www.performics.com/in/decoding-ondc-a-perspective-for-marketers/">Report - Decoding ONDC</a>
                                                                    <a class="navbar-item" href="https://www.performics.com/in/banking-and-financial-services-a-2023-industry-roundup-report/">BFS - Industry Roundup Report 2023</a>
                                                          </div>
              </div>
                                              <a class="navbar-item is-tab" href="https://www.performics.com/in/our-work/">Our Work</a>
                                            <a class="navbar-item is-tab" href="https://www.performics.com/in/performance-marketing-job-opportunities-performics-india/">Careers</a>
                                            <a class="navbar-item is-tab" href="https://www.performics.com/in/performics-india-news/">News &amp; Awards</a>
                                            <a class="navbar-item is-tab" href="https://www.performics.com/in/contact-us/">Contact Us</a>
                              <div class="navbar-item has-dropdown is-hoverable is-mega">
            <div class="navbar-link">
              IN
            </div>
            <div id="countryDrop" class="navbar-dropdown is-boxed" data-style="width: 18rem;">
              <div class="container is-fluid">
                <div class="columns">
                  <div class="column">
                    <span class="title is-6 is-mega-menu-title navbar-item">Americas</span>
                    <a href="https://www.performics.com/" class="navbar-item">United States</a>
                    <!-- <a href="" class="navbar-item">Argentina</a> -->
                    <a href="https://www.performics.com/ca/" class="navbar-item">Canada</a>
                    <!-- <a href="" class="navbar-item">Colombia</a> -->
                    <!-- <a href="" class="navbar-item">Mexico</a> -->
                    <!-- <a href="" class="navbar-item">Panama</a> -->
                  </div>
                  <div class="column">
                    <span class="title is-6 is-mega-menu-title navbar-item">EMEA (Europe, Middle East and Africa)</span>
                    <div class="columns">
                      <div class="column">
                        <a href="https://www.performics.com/emea/" class="navbar-item">United Kingdom</a>
                        <a href="https://www.performics.com/be/" class="navbar-item">Austria</a>
                        <!-- <a href="" class="navbar-item">Belgium</a> -->
                        <a href="https://www.performics.com/cz/" class="navbar-item">Czech Republic</a>
                        <a href="https://www.performics.com/dk/" class="navbar-item">Denmark</a>
                        <a href="https://www.performics.com/ae/" class="navbar-item">Egypt</a>
						<a href="https://performics.de/" class="navbar-item">Germany</a>
                        <a href="https://www.performics.com/ae/" class="navbar-item">Kuwait</a>
                        <a href="https://www.performics.com/ae/" class="navbar-item">Lebanon</a>
                        <a href="https://www.performics.com/ae/" class="navbar-item">Saudi Arabia</a>
                        <a href="https://www.performics.com/ae/" class="navbar-item">United Arab Emirates</a>
                        <a href="https://www.performics.com/fr/" class="navbar-item">France</a>                        
                        <!-- <a href="" class="navbar-item">Germany</a> -->
                      </div>
                      <div class="column">
                        <a href="https://www.performics.com/it/" class="navbar-item">Italy</a>
                        <!-- <a href="" class="navbar-item">Netherlands</a> -->
                        <a href="https://www.performics.com/no/" class="navbar-item">Norway</a>
                        <a href="https://www.performics.com/pl/" class="navbar-item">Poland</a>
                        <a href="https://www.performics.com/pt/" class="navbar-item">Portugal</a>
                        <!-- <a href="" class="navbar-item">Russia</a> -->
                        <a href="https://www.performics.com/es/" class="navbar-item">Spain</a>
                        <a href="https://www.performics.com/sk/" class="navbar-item">Slovakia</a>
                        <!-- <a href="" class="navbar-item">Sweden</a> -->
                        <!-- <a href="" class="navbar-item">Switzerland</a> -->
                        <a href="https://www.performics.com/tr/" class="navbar-item">Turkey</a>
                      </div>
                    </div>
                  </div>
                  <div class="column">
                    <span class="title is-6 is-mega-menu-title navbar-item">APAC (Asia Pacific)</span>
                    <a href="https://www.performics.com/au/" class="navbar-item">Australia</a>
                    <a href="https://www.performics.com/cn/" class="navbar-item">China</a>
                    <a href="https://www.performics.com/in/" class="navbar-item">India</a>
                    <a href="https://www.performics.com/id/" class="navbar-item">Indonesia</a>
                    <a href="https://www.performics.com/ph/" class="navbar-item">Philippines</a>
                    <a href="https://www.performics.com/sg/" class="navbar-item">Singapore</a>
                    <a href="https://www.performics.com/vn/" class="navbar-item">Vietnam</a>
                  </div>
                </div>
              </div>
            </div>
          </div>
        </div><!-- navbar end ends-->
      </div><!--navbar menu ends-->
    </div>
  </nav>
</div><!-- hero head ends-->
	<!-- Hero Body content: will be in the middle -->
<div class="hero-body">
  <div class="container has-text-centered">
    <h1 class="title" id="hero-caption">
      Blog
    </h1>
    <div class="has-text-centered is-flex scrollIcon"></div>
  </div>
</div><!-- hero body ends-->
</section><!-- hero banner section ends-->

<section class="section">
	<div class="container">
		<div class="columns is-multiline">

			
                <div class="column is-one-third-widescreen is-half-desktop is-half-tablet">
                  
<article id="post-16939" class="card post-16939 post type-post status-publish format-standard has-post-thumbnail hentry category-ai category-search-ecosystem category-seo category-uncategorized entry">

	<div class="card-image">
				
		<figure class="post-thumbnail">
			<a class="post-thumbnail-inner" href="https://www.performics.com/in/blog/what-is-search-generative-experience-sge/" aria-hidden="true" tabindex="-1">
				<img width="1568" height="1172"   alt="" loading="lazy" data-srcset="https://www.performics.com/in/wp-content/uploads/sites/6/2024/05/homepage-concept-with-search-bar-1568x1172.jpg 1568w, https://www.performics.com/in/wp-content/uploads/sites/6/2024/05/homepage-concept-with-search-bar-300x224.jpg 300w, https://www.performics.com/in/wp-content/uploads/sites/6/2024/05/homepage-concept-with-search-bar-1024x766.jpg 1024w, https://www.performics.com/in/wp-content/uploads/sites/6/2024/05/homepage-concept-with-search-bar-768x574.jpg 768w, https://www.performics.com/in/wp-content/uploads/sites/6/2024/05/homepage-concept-with-search-bar-1536x1148.jpg 1536w, https://www.performics.com/in/wp-content/uploads/sites/6/2024/05/homepage-concept-with-search-bar-2048x1531.jpg 2048w"  data-src="https://www.performics.com/in/wp-content/uploads/sites/6/2024/05/homepage-concept-with-search-bar-1568x1172.jpg" data-sizes="(max-width: 34.9rem) calc(100vw - 2rem), (max-width: 53rem) calc(8 * (100vw / 12)), (min-width: 53rem) calc(6 * (100vw / 12)), 100vw" class="attachment-post-thumbnail size-post-thumbnail wp-post-image lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" /><noscript><img width="1568" height="1172" src="https://www.performics.com/in/wp-content/uploads/sites/6/2024/05/homepage-concept-with-search-bar-1568x1172.jpg" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" loading="lazy" srcset="https://www.performics.com/in/wp-content/uploads/sites/6/2024/05/homepage-concept-with-search-bar-1568x1172.jpg 1568w, https://www.performics.com/in/wp-content/uploads/sites/6/2024/05/homepage-concept-with-search-bar-300x224.jpg 300w, https://www.performics.com/in/wp-content/uploads/sites/6/2024/05/homepage-concept-with-search-bar-1024x766.jpg 1024w, https://www.performics.com/in/wp-content/uploads/sites/6/2024/05/homepage-concept-with-search-bar-768x574.jpg 768w, https://www.performics.com/in/wp-content/uploads/sites/6/2024/05/homepage-concept-with-search-bar-1536x1148.jpg 1536w, https://www.performics.com/in/wp-content/uploads/sites/6/2024/05/homepage-concept-with-search-bar-2048x1531.jpg 2048w" sizes="(max-width: 34.9rem) calc(100vw - 2rem), (max-width: 53rem) calc(8 * (100vw / 12)), (min-width: 53rem) calc(6 * (100vw / 12)), 100vw" /></noscript>			</a>
		</figure>

				</div>

	<div class="card-content">

		<header class="content">
			<h2 class="entry-title has-text-primary"><a href="https://www.performics.com/in/blog/what-is-search-generative-experience-sge/" rel="bookmark">Google SGE: Marketers&#8217; Guide To Win On Search</a></h2>		</header>

		<footer>
						on <span class="posted-on"><a href="https://www.performics.com/in/blog/what-is-search-generative-experience-sge/" rel="bookmark"><time class="entry-date published updated" datetime="2024-05-15T10:15:21+00:00">May 15, 2024</time></a></span>		</footer><!-- .entry-footer -->

		<p>1.&nbsp;What is Search Generative Experience (SGE)? In May 2023, Google introduced its experiment with Generative AI in Search Labs, welcoming users to experience the next leap in SERP. In December 2023, it rolled out the [&hellip;]</p>
		<a href="https://www.performics.com/in/blog/what-is-search-generative-experience-sge/" class="button is-primary">Read More</a>
		<br />
		
	</div>
</article><!-- #post-16939 -->
          </div>
          
                <div class="column is-one-third-widescreen is-half-desktop is-half-tablet">
                  
<article id="post-16915" class="card post-16915 post type-post status-publish format-standard has-post-thumbnail hentry category-ads-data-hub category-programmatic tag-adh tag-ads-data-hub tag-programmatic-advertising entry">

	<div class="card-image">
				
		<figure class="post-thumbnail">
			<a class="post-thumbnail-inner" href="https://www.performics.com/in/blog/leveraging-ads-data-hub-adh-for-unlocking-true-potential-of-programmatic-campaigns/" aria-hidden="true" tabindex="-1">
				<img width="1097" height="579"   alt="" loading="lazy" data-srcset="https://www.performics.com/in/wp-content/uploads/sites/6/2024/04/Screenshot.png 1097w, https://www.performics.com/in/wp-content/uploads/sites/6/2024/04/Screenshot-300x158.png 300w, https://www.performics.com/in/wp-content/uploads/sites/6/2024/04/Screenshot-1024x540.png 1024w, https://www.performics.com/in/wp-content/uploads/sites/6/2024/04/Screenshot-768x405.png 768w"  data-src="https://www.performics.com/in/wp-content/uploads/sites/6/2024/04/Screenshot.png" data-sizes="(max-width: 34.9rem) calc(100vw - 2rem), (max-width: 53rem) calc(8 * (100vw / 12)), (min-width: 53rem) calc(6 * (100vw / 12)), 100vw" class="attachment-post-thumbnail size-post-thumbnail wp-post-image lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" /><noscript><img width="1097" height="579" src="https://www.performics.com/in/wp-content/uploads/sites/6/2024/04/Screenshot.png" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" loading="lazy" srcset="https://www.performics.com/in/wp-content/uploads/sites/6/2024/04/Screenshot.png 1097w, https://www.performics.com/in/wp-content/uploads/sites/6/2024/04/Screenshot-300x158.png 300w, https://www.performics.com/in/wp-content/uploads/sites/6/2024/04/Screenshot-1024x540.png 1024w, https://www.performics.com/in/wp-content/uploads/sites/6/2024/04/Screenshot-768x405.png 768w" sizes="(max-width: 34.9rem) calc(100vw - 2rem), (max-width: 53rem) calc(8 * (100vw / 12)), (min-width: 53rem) calc(6 * (100vw / 12)), 100vw" /></noscript>			</a>
		</figure>

				</div>

	<div class="card-content">

		<header class="content">
			<h2 class="entry-title has-text-primary"><a href="https://www.performics.com/in/blog/leveraging-ads-data-hub-adh-for-unlocking-true-potential-of-programmatic-campaigns/" rel="bookmark">Leveraging Ads Data Hub (ADH) for Unlocking true potential of Programmatic Campaigns</a></h2>		</header>

		<footer>
						on <span class="posted-on"><a href="https://www.performics.com/in/blog/leveraging-ads-data-hub-adh-for-unlocking-true-potential-of-programmatic-campaigns/" rel="bookmark"><time class="entry-date published updated" datetime="2024-04-23T08:30:46+00:00">April 23, 2024</time></a></span>		</footer><!-- .entry-footer -->

		<p>Programmatic advertising has revolutionized the way media is bought, adding transparency, efficiency and accuracy to media buying process. It allows advertisers to opt for different types of media buys and further consolidating them within a [&hellip;]</p>
		<a href="https://www.performics.com/in/blog/leveraging-ads-data-hub-adh-for-unlocking-true-potential-of-programmatic-campaigns/" class="button is-primary">Read More</a>
		<br />
		
	</div>
</article><!-- #post-16915 -->
          </div>
          
                <div class="column is-one-third-widescreen is-half-desktop is-half-tablet">
                  
<article id="post-16898" class="card post-16898 post type-post status-publish format-standard has-post-thumbnail hentry category-3rd-party-cookie category-data category-performance-marketing category-programmatic tag-3rd-party-cookie-deprecation tag-programmatic-advertising entry">

	<div class="card-image">
				
		<figure class="post-thumbnail">
			<a class="post-thumbnail-inner" href="https://www.performics.com/in/blog/3rd-party-cookie-deprecation-first-steps-to-reorchestrate-digital-programmatic-advertising/" aria-hidden="true" tabindex="-1">
				<img width="626" height="720"   alt="" loading="lazy" data-srcset="https://www.performics.com/in/wp-content/uploads/sites/6/2024/03/cookie-image-1.png 626w, https://www.performics.com/in/wp-content/uploads/sites/6/2024/03/cookie-image-1-261x300.png 261w"  data-src="https://www.performics.com/in/wp-content/uploads/sites/6/2024/03/cookie-image-1.png" data-sizes="(max-width: 34.9rem) calc(100vw - 2rem), (max-width: 53rem) calc(8 * (100vw / 12)), (min-width: 53rem) calc(6 * (100vw / 12)), 100vw" class="attachment-post-thumbnail size-post-thumbnail wp-post-image lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" /><noscript><img width="626" height="720" src="https://www.performics.com/in/wp-content/uploads/sites/6/2024/03/cookie-image-1.png" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" loading="lazy" srcset="https://www.performics.com/in/wp-content/uploads/sites/6/2024/03/cookie-image-1.png 626w, https://www.performics.com/in/wp-content/uploads/sites/6/2024/03/cookie-image-1-261x300.png 261w" sizes="(max-width: 34.9rem) calc(100vw - 2rem), (max-width: 53rem) calc(8 * (100vw / 12)), (min-width: 53rem) calc(6 * (100vw / 12)), 100vw" /></noscript>			</a>
		</figure>

				</div>

	<div class="card-content">

		<header class="content">
			<h2 class="entry-title has-text-primary"><a href="https://www.performics.com/in/blog/3rd-party-cookie-deprecation-first-steps-to-reorchestrate-digital-programmatic-advertising/" rel="bookmark">3rd Party Cookie Deprecation &#8211; First Steps to Reorchestrate Digital &amp; Programmatic Advertising</a></h2>		</header>

		<footer>
						on <span class="posted-on"><a href="https://www.performics.com/in/blog/3rd-party-cookie-deprecation-first-steps-to-reorchestrate-digital-programmatic-advertising/" rel="bookmark"><time class="entry-date published updated" datetime="2024-03-23T04:45:46+00:00">March 23, 2024</time></a></span>		</footer><!-- .entry-footer -->

		<p>Let us start by aligning to a simple definition of what a 3rd party cookie is &#8211; A small piece of data that a website other than the one you&#8217;re currently visiting, stores on your [&hellip;]</p>
		<a href="https://www.performics.com/in/blog/3rd-party-cookie-deprecation-first-steps-to-reorchestrate-digital-programmatic-advertising/" class="button is-primary">Read More</a>
		<br />
		
	</div>
</article><!-- #post-16898 -->
          </div>
          
                <div class="column is-one-third-widescreen is-half-desktop is-half-tablet">
                  
<article id="post-16861" class="card post-16861 post type-post status-publish format-standard has-post-thumbnail hentry category-performance-marketing tag-attention-scarcity tag-demand-gen-campaigns tag-google-ads entry">

	<div class="card-image">
				
		<figure class="post-thumbnail">
			<a class="post-thumbnail-inner" href="https://www.performics.com/in/blog/how-demand-gen-campaigns-in-google-ads-help-you-rise/" aria-hidden="true" tabindex="-1">
				<img width="898" height="639"   alt="" loading="lazy" data-srcset="https://www.performics.com/in/wp-content/uploads/sites/6/2024/01/WhatsApp-Image-2024-02-01-at-18.35.06.jpeg 898w, https://www.performics.com/in/wp-content/uploads/sites/6/2024/01/WhatsApp-Image-2024-02-01-at-18.35.06-300x213.jpeg 300w, https://www.performics.com/in/wp-content/uploads/sites/6/2024/01/WhatsApp-Image-2024-02-01-at-18.35.06-768x546.jpeg 768w"  data-src="https://www.performics.com/in/wp-content/uploads/sites/6/2024/01/WhatsApp-Image-2024-02-01-at-18.35.06.jpeg" data-sizes="(max-width: 34.9rem) calc(100vw - 2rem), (max-width: 53rem) calc(8 * (100vw / 12)), (min-width: 53rem) calc(6 * (100vw / 12)), 100vw" class="attachment-post-thumbnail size-post-thumbnail wp-post-image lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" /><noscript><img width="898" height="639" src="https://www.performics.com/in/wp-content/uploads/sites/6/2024/01/WhatsApp-Image-2024-02-01-at-18.35.06.jpeg" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" loading="lazy" srcset="https://www.performics.com/in/wp-content/uploads/sites/6/2024/01/WhatsApp-Image-2024-02-01-at-18.35.06.jpeg 898w, https://www.performics.com/in/wp-content/uploads/sites/6/2024/01/WhatsApp-Image-2024-02-01-at-18.35.06-300x213.jpeg 300w, https://www.performics.com/in/wp-content/uploads/sites/6/2024/01/WhatsApp-Image-2024-02-01-at-18.35.06-768x546.jpeg 768w" sizes="(max-width: 34.9rem) calc(100vw - 2rem), (max-width: 53rem) calc(8 * (100vw / 12)), (min-width: 53rem) calc(6 * (100vw / 12)), 100vw" /></noscript>			</a>
		</figure>

				</div>

	<div class="card-content">

		<header class="content">
			<h2 class="entry-title has-text-primary"><a href="https://www.performics.com/in/blog/how-demand-gen-campaigns-in-google-ads-help-you-rise/" rel="bookmark">Addressing Attention Scarcity &#8211; How Demand Gen Campaigns in Google Ads Help You Rise Above the Noise</a></h2>		</header>

		<footer>
						on <span class="posted-on"><a href="https://www.performics.com/in/blog/how-demand-gen-campaigns-in-google-ads-help-you-rise/" rel="bookmark"><time class="entry-date published updated" datetime="2024-01-31T06:24:43+00:00">January 31, 2024</time></a></span>		</footer><!-- .entry-footer -->

		<p>Capturing attention has become a Herculean task in today’s fast paced digital landscape. Marketers face a constant struggle to break through the information overload and connect with potential customers at the right moment. Traditional Google [&hellip;]</p>
		<a href="https://www.performics.com/in/blog/how-demand-gen-campaigns-in-google-ads-help-you-rise/" class="button is-primary">Read More</a>
		<br />
		
	</div>
</article><!-- #post-16861 -->
          </div>
          
                <div class="column is-one-third-widescreen is-half-desktop is-half-tablet">
                  
<article id="post-16855" class="card post-16855 post type-post status-publish format-standard has-post-thumbnail hentry category-ai tag-ai tag-gemini-ai tag-google-gemini-ai entry">

	<div class="card-image">
				
		<figure class="post-thumbnail">
			<a class="post-thumbnail-inner" href="https://www.performics.com/in/blog/google-gemini-ai/" aria-hidden="true" tabindex="-1">
				<img width="1568" height="1046"   alt="Gemini AI" loading="lazy" data-srcset="https://www.performics.com/in/wp-content/uploads/sites/6/2023/12/person-using-ai-tool-job-1568x1046.jpg 1568w, https://www.performics.com/in/wp-content/uploads/sites/6/2023/12/person-using-ai-tool-job-300x200.jpg 300w, https://www.performics.com/in/wp-content/uploads/sites/6/2023/12/person-using-ai-tool-job-1024x683.jpg 1024w, https://www.performics.com/in/wp-content/uploads/sites/6/2023/12/person-using-ai-tool-job-768x513.jpg 768w, https://www.performics.com/in/wp-content/uploads/sites/6/2023/12/person-using-ai-tool-job-1536x1025.jpg 1536w, https://www.performics.com/in/wp-content/uploads/sites/6/2023/12/person-using-ai-tool-job-2048x1367.jpg 2048w"  data-src="https://www.performics.com/in/wp-content/uploads/sites/6/2023/12/person-using-ai-tool-job-1568x1046.jpg" data-sizes="(max-width: 34.9rem) calc(100vw - 2rem), (max-width: 53rem) calc(8 * (100vw / 12)), (min-width: 53rem) calc(6 * (100vw / 12)), 100vw" class="attachment-post-thumbnail size-post-thumbnail wp-post-image lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" /><noscript><img width="1568" height="1046" src="https://www.performics.com/in/wp-content/uploads/sites/6/2023/12/person-using-ai-tool-job-1568x1046.jpg" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="Gemini AI" loading="lazy" srcset="https://www.performics.com/in/wp-content/uploads/sites/6/2023/12/person-using-ai-tool-job-1568x1046.jpg 1568w, https://www.performics.com/in/wp-content/uploads/sites/6/2023/12/person-using-ai-tool-job-300x200.jpg 300w, https://www.performics.com/in/wp-content/uploads/sites/6/2023/12/person-using-ai-tool-job-1024x683.jpg 1024w, https://www.performics.com/in/wp-content/uploads/sites/6/2023/12/person-using-ai-tool-job-768x513.jpg 768w, https://www.performics.com/in/wp-content/uploads/sites/6/2023/12/person-using-ai-tool-job-1536x1025.jpg 1536w, https://www.performics.com/in/wp-content/uploads/sites/6/2023/12/person-using-ai-tool-job-2048x1367.jpg 2048w" sizes="(max-width: 34.9rem) calc(100vw - 2rem), (max-width: 53rem) calc(8 * (100vw / 12)), (min-width: 53rem) calc(6 * (100vw / 12)), 100vw" /></noscript>			</a>
		</figure>

				</div>

	<div class="card-content">

		<header class="content">
			<h2 class="entry-title has-text-primary"><a href="https://www.performics.com/in/blog/google-gemini-ai/" rel="bookmark">Google&#8217;s Gemini AI: Marketing&#8217;s New Weapon of Mass Persuasion?</a></h2>		</header>

		<footer>
						on <span class="posted-on"><a href="https://www.performics.com/in/blog/google-gemini-ai/" rel="bookmark"><time class="entry-date published updated" datetime="2023-12-18T10:26:44+00:00">December 18, 2023</time></a></span>		</footer><!-- .entry-footer -->

		<p>Move over, banner ads and targeted pop-ups, there&#8217;s a new player in town, and its stats are enough to make any marketer salivate. Enter Gemini AI, Google&#8217;s latest language model, a behemoth of code that&#8217;s [&hellip;]</p>
		<a href="https://www.performics.com/in/blog/google-gemini-ai/" class="button is-primary">Read More</a>
		<br />
		
	</div>
</article><!-- #post-16855 -->
          </div>
          
                <div class="column is-one-third-widescreen is-half-desktop is-half-tablet">
                  
<article id="post-16764" class="card post-16764 post type-post status-publish format-standard has-post-thumbnail hentry category-programmatic category-supply-path-optimization tag-programmatic-advertising tag-supply-path-optimization entry">

	<div class="card-image">
				
		<figure class="post-thumbnail">
			<a class="post-thumbnail-inner" href="https://www.performics.com/in/blog/the-power-of-supply-path-optimization/" aria-hidden="true" tabindex="-1">
				<img width="1568" height="1047"   alt="Supply Path Optimization" loading="lazy" data-srcset="https://www.performics.com/in/wp-content/uploads/sites/6/2023/10/still-life-supply-chain-representation-1568x1047.jpg 1568w, https://www.performics.com/in/wp-content/uploads/sites/6/2023/10/still-life-supply-chain-representation-300x200.jpg 300w, https://www.performics.com/in/wp-content/uploads/sites/6/2023/10/still-life-supply-chain-representation-1024x684.jpg 1024w, https://www.performics.com/in/wp-content/uploads/sites/6/2023/10/still-life-supply-chain-representation-768x513.jpg 768w, https://www.performics.com/in/wp-content/uploads/sites/6/2023/10/still-life-supply-chain-representation-1536x1025.jpg 1536w, https://www.performics.com/in/wp-content/uploads/sites/6/2023/10/still-life-supply-chain-representation-2048x1367.jpg 2048w"  data-src="https://www.performics.com/in/wp-content/uploads/sites/6/2023/10/still-life-supply-chain-representation-1568x1047.jpg" data-sizes="(max-width: 34.9rem) calc(100vw - 2rem), (max-width: 53rem) calc(8 * (100vw / 12)), (min-width: 53rem) calc(6 * (100vw / 12)), 100vw" class="attachment-post-thumbnail size-post-thumbnail wp-post-image lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" /><noscript><img width="1568" height="1047" src="https://www.performics.com/in/wp-content/uploads/sites/6/2023/10/still-life-supply-chain-representation-1568x1047.jpg" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="Supply Path Optimization" loading="lazy" srcset="https://www.performics.com/in/wp-content/uploads/sites/6/2023/10/still-life-supply-chain-representation-1568x1047.jpg 1568w, https://www.performics.com/in/wp-content/uploads/sites/6/2023/10/still-life-supply-chain-representation-300x200.jpg 300w, https://www.performics.com/in/wp-content/uploads/sites/6/2023/10/still-life-supply-chain-representation-1024x684.jpg 1024w, https://www.performics.com/in/wp-content/uploads/sites/6/2023/10/still-life-supply-chain-representation-768x513.jpg 768w, https://www.performics.com/in/wp-content/uploads/sites/6/2023/10/still-life-supply-chain-representation-1536x1025.jpg 1536w, https://www.performics.com/in/wp-content/uploads/sites/6/2023/10/still-life-supply-chain-representation-2048x1367.jpg 2048w" sizes="(max-width: 34.9rem) calc(100vw - 2rem), (max-width: 53rem) calc(8 * (100vw / 12)), (min-width: 53rem) calc(6 * (100vw / 12)), 100vw" /></noscript>			</a>
		</figure>

				</div>

	<div class="card-content">

		<header class="content">
			<h2 class="entry-title has-text-primary"><a href="https://www.performics.com/in/blog/the-power-of-supply-path-optimization/" rel="bookmark">Navigating Efficiency: The Power of Supply Path Optimization</a></h2>		</header>

		<footer>
						on <span class="posted-on"><a href="https://www.performics.com/in/blog/the-power-of-supply-path-optimization/" rel="bookmark"><time class="entry-date published updated" datetime="2023-10-18T16:17:21+00:00">October 18, 2023</time></a></span>		</footer><!-- .entry-footer -->

		<p>Introduction In the ever-evolving landscape of digital advertising, staying competitive requires constant adaptation and innovation. One such innovation that has gained significant attention and traction in recent years is Supply Path Optimization (SPO). SPO is [&hellip;]</p>
		<a href="https://www.performics.com/in/blog/the-power-of-supply-path-optimization/" class="button is-primary">Read More</a>
		<br />
		
	</div>
</article><!-- #post-16764 -->
          </div>
          
                <div class="column is-one-third-widescreen is-half-desktop is-half-tablet">
                  
<article id="post-16750" class="card post-16750 post type-post status-publish format-standard has-post-thumbnail hentry category-seo category-seo-automation category-sge tag-ai-content-creation tag-content-creation-using-ai tag-generative-ai entry">

	<div class="card-image">
				
		<figure class="post-thumbnail">
			<a class="post-thumbnail-inner" href="https://www.performics.com/in/blog/content-creation-using-generative-ai/" aria-hidden="true" tabindex="-1">
				<img width="1568" height="1045"   alt="Content creation using generative AI" loading="lazy" data-srcset="https://www.performics.com/in/wp-content/uploads/sites/6/2023/09/Content-Creation-using-Generative-AI-1568x1045.jpg 1568w, https://www.performics.com/in/wp-content/uploads/sites/6/2023/09/Content-Creation-using-Generative-AI-300x200.jpg 300w, https://www.performics.com/in/wp-content/uploads/sites/6/2023/09/Content-Creation-using-Generative-AI-1024x683.jpg 1024w, https://www.performics.com/in/wp-content/uploads/sites/6/2023/09/Content-Creation-using-Generative-AI-768x512.jpg 768w, https://www.performics.com/in/wp-content/uploads/sites/6/2023/09/Content-Creation-using-Generative-AI-1536x1024.jpg 1536w, https://www.performics.com/in/wp-content/uploads/sites/6/2023/09/Content-Creation-using-Generative-AI-2048x1365.jpg 2048w"  data-src="https://www.performics.com/in/wp-content/uploads/sites/6/2023/09/Content-Creation-using-Generative-AI-1568x1045.jpg" data-sizes="(max-width: 34.9rem) calc(100vw - 2rem), (max-width: 53rem) calc(8 * (100vw / 12)), (min-width: 53rem) calc(6 * (100vw / 12)), 100vw" class="attachment-post-thumbnail size-post-thumbnail wp-post-image lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" /><noscript><img width="1568" height="1045" src="https://www.performics.com/in/wp-content/uploads/sites/6/2023/09/Content-Creation-using-Generative-AI-1568x1045.jpg" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="Content creation using generative AI" loading="lazy" srcset="https://www.performics.com/in/wp-content/uploads/sites/6/2023/09/Content-Creation-using-Generative-AI-1568x1045.jpg 1568w, https://www.performics.com/in/wp-content/uploads/sites/6/2023/09/Content-Creation-using-Generative-AI-300x200.jpg 300w, https://www.performics.com/in/wp-content/uploads/sites/6/2023/09/Content-Creation-using-Generative-AI-1024x683.jpg 1024w, https://www.performics.com/in/wp-content/uploads/sites/6/2023/09/Content-Creation-using-Generative-AI-768x512.jpg 768w, https://www.performics.com/in/wp-content/uploads/sites/6/2023/09/Content-Creation-using-Generative-AI-1536x1024.jpg 1536w, https://www.performics.com/in/wp-content/uploads/sites/6/2023/09/Content-Creation-using-Generative-AI-2048x1365.jpg 2048w" sizes="(max-width: 34.9rem) calc(100vw - 2rem), (max-width: 53rem) calc(8 * (100vw / 12)), (min-width: 53rem) calc(6 * (100vw / 12)), 100vw" /></noscript>			</a>
		</figure>

				</div>

	<div class="card-content">

		<header class="content">
			<h2 class="entry-title has-text-primary"><a href="https://www.performics.com/in/blog/content-creation-using-generative-ai/" rel="bookmark">Generative AI Application to Boost Content Creation</a></h2>		</header>

		<footer>
						on <span class="posted-on"><a href="https://www.performics.com/in/blog/content-creation-using-generative-ai/" rel="bookmark"><time class="entry-date published updated" datetime="2023-09-12T05:35:26+00:00">September 12, 2023</time></a></span>		</footer><!-- .entry-footer -->

		<p>Today’s digital media-marketing industry has a target audience mainly comprising millennials and generation z. The user today expects digital content to be more interactive, multi-fold and holistic in nature. With Generative Artificial Intelligence (AI) causing [&hellip;]</p>
		<a href="https://www.performics.com/in/blog/content-creation-using-generative-ai/" class="button is-primary">Read More</a>
		<br />
		
	</div>
</article><!-- #post-16750 -->
          </div>
          
                <div class="column is-one-third-widescreen is-half-desktop is-half-tablet">
                  
<article id="post-16697" class="card post-16697 post type-post status-publish format-standard has-post-thumbnail hentry category-search-ecosystem category-seo category-sge tag-generative-ai tag-search-generative-experience tag-sge entry">

	<div class="card-image">
				
		<figure class="post-thumbnail">
			<a class="post-thumbnail-inner" href="https://www.performics.com/in/blog/google-generative-ai-to-enhance-search-in-india/" aria-hidden="true" tabindex="-1">
				<img width="1200" height="642"   alt="Google introduces generative AI to enhance Search capabilities in India." loading="lazy" data-srcset="https://www.performics.com/in/wp-content/uploads/sites/6/2023/08/MicrosoftTeams-image-2-e1693483680576.png 1200w, https://www.performics.com/in/wp-content/uploads/sites/6/2023/08/MicrosoftTeams-image-2-e1693483680576-300x161.png 300w, https://www.performics.com/in/wp-content/uploads/sites/6/2023/08/MicrosoftTeams-image-2-e1693483680576-1024x548.png 1024w, https://www.performics.com/in/wp-content/uploads/sites/6/2023/08/MicrosoftTeams-image-2-e1693483680576-768x411.png 768w"  data-src="https://www.performics.com/in/wp-content/uploads/sites/6/2023/08/MicrosoftTeams-image-2-e1693483680576.png" data-sizes="(max-width: 34.9rem) calc(100vw - 2rem), (max-width: 53rem) calc(8 * (100vw / 12)), (min-width: 53rem) calc(6 * (100vw / 12)), 100vw" class="attachment-post-thumbnail size-post-thumbnail wp-post-image lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" /><noscript><img width="1200" height="642" src="https://www.performics.com/in/wp-content/uploads/sites/6/2023/08/MicrosoftTeams-image-2-e1693483680576.png" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="Google introduces generative AI to enhance Search capabilities in India." loading="lazy" srcset="https://www.performics.com/in/wp-content/uploads/sites/6/2023/08/MicrosoftTeams-image-2-e1693483680576.png 1200w, https://www.performics.com/in/wp-content/uploads/sites/6/2023/08/MicrosoftTeams-image-2-e1693483680576-300x161.png 300w, https://www.performics.com/in/wp-content/uploads/sites/6/2023/08/MicrosoftTeams-image-2-e1693483680576-1024x548.png 1024w, https://www.performics.com/in/wp-content/uploads/sites/6/2023/08/MicrosoftTeams-image-2-e1693483680576-768x411.png 768w" sizes="(max-width: 34.9rem) calc(100vw - 2rem), (max-width: 53rem) calc(8 * (100vw / 12)), (min-width: 53rem) calc(6 * (100vw / 12)), 100vw" /></noscript>			</a>
		</figure>

				</div>

	<div class="card-content">

		<header class="content">
			<h2 class="entry-title has-text-primary"><a href="https://www.performics.com/in/blog/google-generative-ai-to-enhance-search-in-india/" rel="bookmark">Google introduces generative AI to enhance Search capabilities in India</a></h2>		</header>

		<footer>
						on <span class="posted-on"><a href="https://www.performics.com/in/blog/google-generative-ai-to-enhance-search-in-india/" rel="bookmark"><time class="entry-date published updated" datetime="2023-08-31T11:58:05+00:00">August 31, 2023</time></a></span>		</footer><!-- .entry-footer -->

		<p>Google has ushered in the next generation of Search with the launch of AI led Generative Search Experience in India. Here are our Top 10 Observations regarding how this could impact Search Behaviour within the [&hellip;]</p>
		<a href="https://www.performics.com/in/blog/google-generative-ai-to-enhance-search-in-india/" class="button is-primary">Read More</a>
		<br />
		
	</div>
</article><!-- #post-16697 -->
          </div>
          
                <div class="column is-one-third-widescreen is-half-desktop is-half-tablet">
                  
<article id="post-16684" class="card post-16684 post type-post status-publish format-standard has-post-thumbnail hentry category-data category-data-protection-data category-privacy tag-data-protection-shift tag-digital-personal-data-protection-bill tag-martech tag-privacy entry">

	<div class="card-image">
				
		<figure class="post-thumbnail">
			<a class="post-thumbnail-inner" href="https://www.performics.com/in/blog/indias-data-protection-shift/" aria-hidden="true" tabindex="-1">
				<img width="1568" height="1045"   alt="Data protection" loading="lazy" data-srcset="https://www.performics.com/in/wp-content/uploads/sites/6/2023/08/protection_information-1568x1045.jpg 1568w, https://www.performics.com/in/wp-content/uploads/sites/6/2023/08/protection_information-300x200.jpg 300w, https://www.performics.com/in/wp-content/uploads/sites/6/2023/08/protection_information-1024x683.jpg 1024w, https://www.performics.com/in/wp-content/uploads/sites/6/2023/08/protection_information-768x512.jpg 768w, https://www.performics.com/in/wp-content/uploads/sites/6/2023/08/protection_information-1536x1024.jpg 1536w, https://www.performics.com/in/wp-content/uploads/sites/6/2023/08/protection_information-2048x1365.jpg 2048w"  data-src="https://www.performics.com/in/wp-content/uploads/sites/6/2023/08/protection_information-1568x1045.jpg" data-sizes="(max-width: 34.9rem) calc(100vw - 2rem), (max-width: 53rem) calc(8 * (100vw / 12)), (min-width: 53rem) calc(6 * (100vw / 12)), 100vw" class="attachment-post-thumbnail size-post-thumbnail wp-post-image lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" /><noscript><img width="1568" height="1045" src="https://www.performics.com/in/wp-content/uploads/sites/6/2023/08/protection_information-1568x1045.jpg" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="Data protection" loading="lazy" srcset="https://www.performics.com/in/wp-content/uploads/sites/6/2023/08/protection_information-1568x1045.jpg 1568w, https://www.performics.com/in/wp-content/uploads/sites/6/2023/08/protection_information-300x200.jpg 300w, https://www.performics.com/in/wp-content/uploads/sites/6/2023/08/protection_information-1024x683.jpg 1024w, https://www.performics.com/in/wp-content/uploads/sites/6/2023/08/protection_information-768x512.jpg 768w, https://www.performics.com/in/wp-content/uploads/sites/6/2023/08/protection_information-1536x1024.jpg 1536w, https://www.performics.com/in/wp-content/uploads/sites/6/2023/08/protection_information-2048x1365.jpg 2048w" sizes="(max-width: 34.9rem) calc(100vw - 2rem), (max-width: 53rem) calc(8 * (100vw / 12)), (min-width: 53rem) calc(6 * (100vw / 12)), 100vw" /></noscript>			</a>
		</figure>

				</div>

	<div class="card-content">

		<header class="content">
			<h2 class="entry-title has-text-primary"><a href="https://www.performics.com/in/blog/indias-data-protection-shift/" rel="bookmark">Navigating Privacy Landscape and Marketing Evolution: Insights from India&#8217;s Data Protection Shift</a></h2>		</header>

		<footer>
						on <span class="posted-on"><a href="https://www.performics.com/in/blog/indias-data-protection-shift/" rel="bookmark"><time class="entry-date published updated" datetime="2023-08-11T12:34:10+00:00">August 11, 2023</time></a></span>		</footer><!-- .entry-footer -->

		<p>A 2021 survey by the Internet and Mobile Association of India (IAMAI) found that 72% of Indian internet users are concerned about their privacy. The same survey found that 62% of Indian internet users have [&hellip;]</p>
		<a href="https://www.performics.com/in/blog/indias-data-protection-shift/" class="button is-primary">Read More</a>
		<br />
		
	</div>
</article><!-- #post-16684 -->
          </div>
          
                <div class="column is-one-third-widescreen is-half-desktop is-half-tablet">
                  
<article id="post-16645" class="card post-16645 post type-post status-publish format-standard has-post-thumbnail hentry category-media-buying category-performance-marketing category-programmatic tag-advertising tag-direct-media-buys tag-programmatic tag-programmatic-media-buying entry">

	<div class="card-image">
				
		<figure class="post-thumbnail">
			<a class="post-thumbnail-inner" href="https://www.performics.com/in/blog/consolidated-programmatic-media-buying-vs-fragmented-direct-media-buys/" aria-hidden="true" tabindex="-1">
				<img width="1568" height="1046"   alt="Programmatic Media Buying" loading="lazy" data-srcset="https://www.performics.com/in/wp-content/uploads/sites/6/2023/06/Programmatic-Media-Buying-1568x1046.jpg 1568w, https://www.performics.com/in/wp-content/uploads/sites/6/2023/06/Programmatic-Media-Buying-300x200.jpg 300w, https://www.performics.com/in/wp-content/uploads/sites/6/2023/06/Programmatic-Media-Buying-1024x683.jpg 1024w, https://www.performics.com/in/wp-content/uploads/sites/6/2023/06/Programmatic-Media-Buying-768x512.jpg 768w, https://www.performics.com/in/wp-content/uploads/sites/6/2023/06/Programmatic-Media-Buying-1536x1024.jpg 1536w, https://www.performics.com/in/wp-content/uploads/sites/6/2023/06/Programmatic-Media-Buying-2048x1366.jpg 2048w"  data-src="https://www.performics.com/in/wp-content/uploads/sites/6/2023/06/Programmatic-Media-Buying-1568x1046.jpg" data-sizes="(max-width: 34.9rem) calc(100vw - 2rem), (max-width: 53rem) calc(8 * (100vw / 12)), (min-width: 53rem) calc(6 * (100vw / 12)), 100vw" class="attachment-post-thumbnail size-post-thumbnail wp-post-image lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" /><noscript><img width="1568" height="1046" src="https://www.performics.com/in/wp-content/uploads/sites/6/2023/06/Programmatic-Media-Buying-1568x1046.jpg" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="Programmatic Media Buying" loading="lazy" srcset="https://www.performics.com/in/wp-content/uploads/sites/6/2023/06/Programmatic-Media-Buying-1568x1046.jpg 1568w, https://www.performics.com/in/wp-content/uploads/sites/6/2023/06/Programmatic-Media-Buying-300x200.jpg 300w, https://www.performics.com/in/wp-content/uploads/sites/6/2023/06/Programmatic-Media-Buying-1024x683.jpg 1024w, https://www.performics.com/in/wp-content/uploads/sites/6/2023/06/Programmatic-Media-Buying-768x512.jpg 768w, https://www.performics.com/in/wp-content/uploads/sites/6/2023/06/Programmatic-Media-Buying-1536x1024.jpg 1536w, https://www.performics.com/in/wp-content/uploads/sites/6/2023/06/Programmatic-Media-Buying-2048x1366.jpg 2048w" sizes="(max-width: 34.9rem) calc(100vw - 2rem), (max-width: 53rem) calc(8 * (100vw / 12)), (min-width: 53rem) calc(6 * (100vw / 12)), 100vw" /></noscript>			</a>
		</figure>

				</div>

	<div class="card-content">

		<header class="content">
			<h2 class="entry-title has-text-primary"><a href="https://www.performics.com/in/blog/consolidated-programmatic-media-buying-vs-fragmented-direct-media-buys/" rel="bookmark">Why Consolidated Programmatic Media Buying is Better than Fragmented Direct Media Buys?</a></h2>		</header>

		<footer>
						on <span class="posted-on"><a href="https://www.performics.com/in/blog/consolidated-programmatic-media-buying-vs-fragmented-direct-media-buys/" rel="bookmark"><time class="entry-date published updated" datetime="2023-06-23T08:51:31+00:00">June 23, 2023</time></a></span>		</footer><!-- .entry-footer -->

		<p>Since its inception, Digital advertising has been ever expanding with newer and newer media platforms and formats. From simple website banners, it has now evolved into a mainstream advertising channel that includes Display, Video, Audio, [&hellip;]</p>
		<a href="https://www.performics.com/in/blog/consolidated-programmatic-media-buying-vs-fragmented-direct-media-buys/" class="button is-primary">Read More</a>
		<br />
		
	</div>
</article><!-- #post-16645 -->
          </div>
          		</div>
	</div>
</section>
<!-- footer starts-->
<footer class="footer">
		<div class="container">
				<aside class="menu columns">
						<ul class="menu-list column">
							<p class="menu-label">
								<a href="https://www.performics.com/in/about-us/" class="">About</a> 
							</p>
							<li><a href="https://www.performics.com/in/about-us/leadership/country-leads/">Leadership</a></li>
							<li><a href="https://www.performics.com/in/about-us/locations/">Locations</a></li>
							<!-- <li><a href="https://www.performics.com/in/about-us/intent-lab/">Intent Lab</a></li>
							<li><a href="https://www.performics.com/in/about-us/the-forrester-wave/">The Forrester Wave</a></li> -->
						</ul>
						<ul class="menu-list column">
							<p class="menu-label">
								<a href="https://www.performics.com/in/services/" class="">Services</a>
							</p>							
							<li><a href="https://www.performics.com/in/services/performance-media/">Performance Media</a></li>
							<li><a href="https://www.performics.com/in/services/performance-content/">Performance Content</a></li>
							<li><a href="https://www.performics.com/in/services/analytics-data-science/">Analytics &amp; Data Science</a></li>
							<li><a href="https://www.performics.com/in/services/commerce-practice/">Commerce Practice</a></li>
						</ul>
						<ul class="menu-list column">
							<p class="menu-label">
									<a href="https://www.performics.com/in/our-work/" class="">Our Work</a>
							</p>
							<p class="menu-label">
							<a href="https://www.performics.com/in/performance-marketing-job-opportunities-performics-india/" class="">Careers</a>
						<!-- </p>
							<p class="menu-label">
							<a href="https://www.performics.com/in/blog/" class="">Blog</a>
						</p>
							<p class="menu-label">
							<a href="https://www.performics.com/in/category/performics-news/" class="">Performics News</a>
						</p> -->
							<p class="menu-label">
							<a href="https://www.performics.com/in/contact-us/" class="">Contact Us</a>
							<!-- <a href="https://www.performics.com/in/contact-us/" class="">Contact Us</a> -->
						</p>
						</ul>
						<ul class="menu-list column">
							<p class="menu-label">
								<a class="has-text-center is-paddingless" href="https://www.performics.com/in">
										<img  alt="Performics Logo" style="width:200px" data-src="https://www.performics.com/in/wp-content/themes/PFX/img/performics_logo_white.svg" class="lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="><noscript><img  alt="Performics Logo" style="width:200px" data-src="https://www.performics.com/in/wp-content/themes/PFX/img/performics_logo_white.svg" class="lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="><noscript><img src="https://www.performics.com/in/wp-content/themes/PFX/img/performics_logo_white.svg" alt="Performics Logo" style="width:200px"></noscript></noscript>
								</a>
							</p>
						</ul>
				</aside>
				<div class="columns copyright level">
						<div class="column is-one-quarter">&copy; 2019 Performics | <a href="#">Privacy Policy</a></div>
						<!-- <div class="column is-one-quarter">&copy; 2019 Performics | <a href="https://www.performics.com/in/performics-privacy-policy/">Privacy Policy</a></div> -->
						<div class="column is-offset-half has-text-right socialIcons">
								<a href="https://www.facebook.com/Performics" target="_blank">
									<img  alt="" data-src="https://www.performics.com/in/wp-content/themes/PFX-india/img/facebookIcon.svg" class="lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="><noscript><img src="https://www.performics.com/in/wp-content/themes/PFX-india/img/facebookIcon.svg" alt=""></noscript>
								</a>
								<a href="https://twitter.com/PerformicsIN" target="_blank">
									<img  alt="" data-src="https://www.performics.com/in/wp-content/themes/PFX-india/img/twitterIcon.svg" class="lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="><noscript><img src="https://www.performics.com/in/wp-content/themes/PFX-india/img/twitterIcon.svg" alt=""></noscript>
								</a>
								<a href="https://www.youtube.com/channel/UCcxsmIcN0oujK1ptP-Zi68A" target="_blank">
									<img  alt="" data-src="https://www.performics.com/in/wp-content/themes/PFX-india/img/youtubeIcon.svg" class="lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="><noscript><img src="https://www.performics.com/in/wp-content/themes/PFX-india/img/youtubeIcon.svg" alt=""></noscript>
								</a>
								<a href="https://www.linkedin.com/company/performics-india" target="_blank">
									<img  alt="" data-src="https://www.performics.com/in/wp-content/themes/PFX-india/img/linkedInIcon.svg" class="lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="><noscript><img src="https://www.performics.com/in/wp-content/themes/PFX-india/img/linkedInIcon.svg" alt=""></noscript>
								</a>
								<a href="https://www.instagram.com/performicsindia/" target="_blank">
									<img  alt="" data-src="https://www.performics.com/in/wp-content/themes/PFX-india/img/instagramIcon.svg" class="lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="><noscript><img src="https://www.performics.com/in/wp-content/themes/PFX-india/img/instagramIcon.svg" alt=""></noscript>
								</a>
						</div>
				</div>
		</div>
</footer>
<script src="https://www.performics.com/in/wp-content/themes/PFX-india/js/videoModal.js" ></script>
<script type='text/javascript'>
		var rightNow = new Date();
		var humanDate = rightNow.toDateString();

		mixpanel.register_once({
			'first_wp_page': document.title,
			'first_wp_contact': humanDate
		});
		mixpanel.track("Viewed Page", {
			'Page Name': document.title, 'Page URL': window.location.pathname
		});
		</script><script type='text/javascript' src='https://www.performics.com/in/wp-content/plugins/wp-smushit/app/assets/js/smush-lazy-load.min.js?ver=3.10.2' id='smush-lazy-load-js'></script>
	<script>
	/(trident|msie)/i.test(navigator.userAgent)&&document.getElementById&&window.addEventListener&&window.addEventListener("hashchange",function(){var t,e=location.hash.substring(1);/^[A-z0-9_-]+$/.test(e)&&(t=document.getElementById(e))&&(/^(?:a|select|input|button|textarea)$/i.test(t.tagName)||(t.tabIndex=-1),t.focus())},!1);
	</script>
	</body>
</html>
