* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: Arial, sans-serif; line-height: 1.6; color: #333; }
header { background: #1a3a52; color: white; padding: 1rem 0; position: fixed; width: 100%; top: 0; z-index: 1000; }
nav { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.logo { font-size: 1.5rem; font-weight: bold; }
ul { display: flex; list-style: none; }
ul li { margin-left: 2rem; }
ul a { color: white; text-decoration: none; }
.hamburger { display: none; cursor: pointer; }
.hero { background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('hero-bg.jpg'); /* Add laser cutting image */ height: 100vh; background-size: cover; display: flex; align-items: center; justify-content: center; text-align: center; color: white; }
.hero-content h1 { font-size: 3rem; margin-bottom: 1rem; }
.cta { background: #ff6b35; color: white; padding: 1rem 2rem; text-decoration: none; border-radius: 5px; font-weight: bold; }
section { padding: 5rem 2rem; max-width: 1200px; margin: 0 auto; }
h2 { text-align: center; margin-bottom: 3rem; color: #1a3a52; }
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.service-card { text-align: center; padding: 2rem; border: 1px solid #ddd; border-radius: 10px; transition: transform 0.3s; }
.service-card:hover { transform: translateY(-10px); }
.service-card i { font-size: 3rem; color: #ff6b35; margin-bottom: 1rem; }
.stats { display: flex; justify-content: space-around; margin-top: 2rem; }
.stats div { text-align: center; }
.stats span { font-size: 2rem; color: #ff6b35; display: block; }
form { max-width: 600px; margin: 0 auto 2rem; }
input, textarea { width: 100%; padding: 1rem; margin-bottom: 1rem; border: 1px solid #ddd; border-radius: 5px; }
button { background: #1a3a52; color: white; padding: 1rem 2rem; border: none; border-radius: 5px; cursor: pointer; width: 100%; }
.contact-info { text-align: center; }
.contact-info p { margin-bottom: 1rem; }
.contact-info a { color: #ff6b35; }
footer { background: #1a3a52; color: white; text-align: center; padding: 1rem; }
@media (max-width: 768px) { .hamburger { display: block; } ul { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: #1a3a52; flex-direction: column; } ul.show { display: flex; } .stats { flex-direction: column; } }
