* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
}

/* Hero */
.hero {
    background: url("images/hero.jpg") center/cover no-repeat;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-content {
    background: rgba(0, 0, 0, 0.6);
    padding: 40px;
    border-radius: 8px;
}

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

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

.btn {
    background: #ff7a00;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.btn:hover {
    background: #e56b00;
}

/* Sections */
section {
    padding: 60px 10%;
}

h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #222;
}

/* About */
.about p {
    max-width: 800px;
    margin: auto;
    text-align: center;
}

/* Services */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-box {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.service-box img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px;
}

/* Industries */
.industries ul {
    max-width: 600px;
    margin: auto;
    list-style: none;
    text-align: center;
}

.industries li {
    padding: 8px 0;
    font-weight: 500;
}

/* Contact */
.contact {
    background: #f1f1f1;
    text-align: center;
}

/* Footer */
footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
}
