We pursue relationships based on transparency, persistence, mutual trust, and integrity with our employees, customers and other business partners.

Get Started

About Us

Sevarth Group provides one stop solution for your Construction, Consultancy, Marketing and Manpower Services. Depending on the size and field of your organization, we have different products and services to meet your requirements. We provide the optimum and customized solutions made for your organization.

Sevarth Group began its business operation as a Construction, Consultancy and Marketing solution providing company in 2019.

We are advancing on a tremendous pace and with involvement of skilled and experienced people working in the organization.

// Function to change background image based on the page function setBackgroundImage(pageName) { var imageUrl; debugger // Determine the image URL based on the page switch(pageName) { case 'about': imageUrl = '../img/about.jpg'; break; case 'services': imageUrl = '../img/services.jpg'; break; // Add more cases for other pages if needed default: imageUrl = '../img/default.jpg'; // Default image } // Set the background image document.getElementById('hero').style.backgroundImage = 'url(' + imageUrl + ')'; } // Call the function with the appropriate page name // For example, if the current page is "about", call setBackgroundImage('about'); setBackgroundImage('about');