ABOUT US

I design therefore I am.

We at Fanfare Designs are enthused 24×7 to design. Practicing design for over 22 years has made the challenge to offer something new and fresh ever more exciting.

It renews us, re-energizes us. It pits us against many odds that we couldn’t fathom when we were learning the language and principles of design.

Understanding what truly matters after 2 decades of practicing design is to accept a situation, and deliver the best possible.

At Fanfare Designs we encourage every new idea, an active participation from the team and exploring the unconventional.

A multidisciplinary design approach

Our in-house team with varying skillsets from different disciplines is our biggest asset.

It models our ideas and solves complex issues. We collaborate with international agencies for our project requirements.

Adapting a progressive design method- different stages of the design process are all concurrent, enables healthy partnership and teamwork.

Infrastructure

While the keyword today is collaboration and integration of ideas, we strengthen our service with a workshop and prototyping space.

A stringent quality control and timelines is maintained by the team. Higher in quality and lesser in quantity is our design mantra.

Clients

const textElement = document.getElementById("typewriter-text"); const text = textElement.innerHTML; // Get the existing text const speed = 100; // Speed of typing in milliseconds let index = 0;// Clear the text in the div initially textElement.innerHTML = "";function typeWriter() { if (index < text.length) { textElement.innerHTML += text.charAt(index); index++; setTimeout(typeWriter, speed); } }// Start the typewriter effect when the page loads window.onload = function() { typeWriter(); };