body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f4f4f4;
}

/* CONTAINER */
.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

/* HEADER */
.header {
    background: #0b3d91;
    padding: 10px 0;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOGO */
.logo-box {
    display: flex;
    align-items: center;
}

.logo {
    height: 70px;
    margin-right: 10px;
}

.logo-box h1 {
    color: white;
    margin: 0;
    font-size: 18px;
}

.logo-box p {
    color: #ff7a00;
    margin: 0;
    font-size: 12px;
}

/* NAV */
.nav-right a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
}

.nav-right a:hover {
    color: #ff7a00;
}

/* BUTTON */
.btn {
    background: #ff7a00;
    padding: 10px 18px;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn:hover {
    background: #e66a00;
}

/* HERO */
.hero {
    position: relative;
    background: url('assets/hydraulic1.png') center/cover no-repeat;
    color: white;
    padding: 120px 20px 80px;
}

/* GRADIENT OVERLAY */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to right,
        rgba(11,61,145,0.5) 0%,
        rgba(11,61,145,0.3) 30%,
        rgba(11,61,145,0.1) 60%,
        rgba(11,61,145,0) 100%
    ),
    linear-gradient(
        to bottom,
        rgba(11,61,145,0.4) 0%,
        rgba(11,61,145,0.2) 40%,
        rgba(11,61,145,0) 80%
    );

    z-index: 1;
}

/* CONTENT ABOVE OVERLAY */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.hero p {
    margin-bottom: 25px;
    line-height: 1.5;
}

/* CTA */
.hero-cta {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.phone {
    font-weight: bold;
}

/* SERVICES */
.services {
    padding: 50px 0;
    background: white;
    text-align: center;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.card {
    background: #f9f9f9;
    margin: 15px;
    padding: 15px;
    border-radius: 10px;
    width: 280px;
}

.card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 8px;
}

/* MANUFACTURING */
.manufacturing {
    padding: 50px 0;
    text-align: center;
}

.machine-list p {
    font-weight: bold;
}

/* WHY */
.why {
    background: #0b3d91;
    color: white;
    padding: 50px 0;
    text-align: center;
}

/* CONTACT */
.contact {
    padding: 50px 0;
    text-align: center;
    background: white;
}

/* FOOTER */
footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 10px;
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .nav {
        flex-direction: column;
    }

    .cards {
        flex-direction: column;
        align-items: center;
    }
}