body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #1f1f1f url("/img/brushed-steel-dark.png") repeat;
    color: #e6e6e6;
}

/* HERO */
.hero {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(60%);
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 900px;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.btn {
    background: #d96a00;
    padding: 12px 24px;
    color: white;
    text-decoration: none;
    border-radius: 4px;
}

/* INTRO */
.intro {
    padding: 10px;
    background: transparent;
    color: #ff7a00;
    text-align: center;
}
.intro h2 {
    background: transparent;
    color: #ff7a00;
    text-transform: uppercase;
    letter-spacing: 1.25px;
    font-weight: 0;
}

/* MACHINE GRID */
.machine-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 10px;
    padding: 20px;
    background: #2e2e2e;
}

.machine-card {
    background: #3a3a3a;
    padding: 20px;
    border-radius: 6px;
    text-align: center;
}

.machine-card img {
    width: 100%;
    height: 400;
    object-fit: auto;
    border-radius: 4px;
}

.machine-card h3 {
    color: #d96a00;
}

/* CAPABILITIES */
.capabilities, .industries {
    padding: 40px;
    background: #1f1f1f;
}

.capabilities h2, .industries h2 {
    color: #d96a00;
    text-align: center;
}

.capabilities ul, .industries ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

.capabilities li, .industries li {
    margin: 8px 0;
}

/* USA */
.usa {
    padding: 40px;
    background: #1f1f1f;
    color: #d96a00;
    text-align: center;
}

.usa img {
    width: 120px;
    margin-bottom: 20px;
}

/* FOOTER */
footer {
    padding: 20px;
    background: #000;
    text-align: center;
}

/* SERVICES PAGE */
.services-wrapper {
    max-width: 900px;
    margin: 60px auto;
    padding: 30px;
    background: #2a2a2a; /* dark steel panel */
    border-radius: 6px;
    box-shadow: 0 0 12px rgba(0,0,0,0.4);
}

.services-wrapper h1 {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 40px;
    color: #d96a00; /* anodized orange */
}

/* Individual service blocks */
.service-card {
    background: #3a3a3a; /* dark card */
    border-left: 6px solid #d96a00; /* orange stripe */
    padding: 20px;
    margin-bottom: 25px;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.service-card h2 {
    margin-top: 0;
    color: #ff8a1f; /* brighter orange for headers */
}

.service-card p {
    color: #e6e6e6;
}

<style>
    body { 
        color: #fff !important;
        background-color: #222 !important;
    }
</style>
