Lost your password? Please enter your username or email address. You will receive a link to create a new password via email.




Sales Icon

Chat with Sales

Support Icon

Chat with Support

jQuery(document).ready(function($) { // Trigger the Sales contact form when 'Chat with Sales' is clicked $('#chat-with-sales').on('click', function(e) { e.preventDefault(); // Show the sales form (you can style and customize this form as needed) $('#sales-form').toggle(); // Toggle visibility of the form }); // Trigger WhatsApp chat for support team when 'Chat with Support' is clicked $('#chat-with-support').on('click', function(e) { e.preventDefault(); // Open WhatsApp chat with the support team window.open('https://wa.me/918959090480?text=Hello,%20I%20need%20support', '_blank'); }); });