MARS ENGINEERS

Building the future with Syrian hearts

We Are Mars

We’re not just an engineering company. We are an alliance of Syrian and German experts, driven by a strong vision and unwavering will.

From Damascus to the world, we believe in building a sustainable future, reconstructing cities, and empowering communities. Our mission is not only technical — it is human at its core.

Our Specializations

Reconstruction Stories

We share stories of rebuilding, highlight the human dimension of our projects,and present articles and materials that reflect hope and innovation.

Our vision is to become the leading engineering arm in Syria’s reconstruction,and a regional model in quality, innovation, and sustainability.

Discover More

Our Projects

We turn ideas into reality through tangible projects.

From residential developments to infrastructure,every project carries a story of progress and revival.

Discover More

Contact Us

Whether you’re inside or outside Syria—an investor, engineer, or initiative owner

If you have an idea, a project, or an interest in investment or real estate marketing, we are ready to hear from you.

<div class="cursor"></div>
/*
document.addEventListener("DOMContentLoaded", () => {
  const cursor = document.querySelector(".cursor");

  // حركة المؤشر
  document.addEventListener("mousemove", e => {
    cursor.style.top = e.clientY + "px";
    cursor.style.left = e.clientX + "px";
  });

  // العناصر القابلة للنقر
  document.querySelectorAll("a, button, .clickable").forEach(el => {
    el.addEventListener("mouseenter", () => cursor.classList.add("active"));
    el.addEventListener("mouseleave", () => cursor.classList.remove("active"));
  });
});
*/

/*
document.addEventListener("DOMContentLoaded", () => {
  const cursor = document.querySelector(".cursor");

  document.addEventListener("mousemove", e => {
    // استخدم translate3d بدل top/left
    cursor.style.transform = `translate3d(${e.clientX}px, ${e.clientY}px, 0) translate(-50%, -50%)`;
  });

  document.querySelectorAll("a, button, .clickable").forEach(el => {
    el.addEventListener("mouseenter", () => cursor.classList.add("active"));
    el.addEventListener("mouseleave", () => cursor.classList.remove("active"));
  });
});
*/