Home / Careers
Careers

Join the Centurion Improvements team

We're growing in San Antonio, Dallas, and Austin. Take a look at our current openings below.

Sales Representative

San Antonio · Dallas · Austin

Investor Opportunities

San Antonio · Dallas · Austin

Welder

San Antonio · Dallas · Austin

Project Manager

San Antonio · Dallas · Austin

Apply Now

Send us your information

Request

Tell us what you need and we'll contact you with your quote.
Llamar ahora — (956) 215-4739
// 3D tilt effect for cards (function(){ var cards = document.querySelectorAll('.tilt-card'); cards.forEach(function(card){ card.addEventListener('mousemove', function(e){ var r = card.getBoundingClientRect(); var x = e.clientX - r.left, y = e.clientY - r.top; var cx = r.width/2, cy = r.height/2; var rotY = ((x - cx)/cx) * 6; var rotX = -((y - cy)/cy) * 6; card.style.transform = 'perspective(800px) rotateX(' + rotX + 'deg) rotateY(' + rotY + 'deg) translateZ(3px)'; }); card.addEventListener('mouseleave', function(){ card.style.transform = 'perspective(800px) rotateX(0deg) rotateY(0deg) translateZ(0px)'; }); }); })();