* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f7f7f7;
    color: #333;
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: #0a3d62;
}

header .logo {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

header nav a {
    margin-left: 20px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

header nav a:hover {
    text-decoration: underline;
}

/* HERO SECTION */
.hero {
    height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items:center;
    /*background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
        url('https://images.unsplash.com/photo-1535223289827-42f1e9919769?auto=format&fit=crop&w=1200&q=80');
    */
    background-image: url(./IMG-20251119-WA0008.jpg);
    
    background-size: cover;
    background-position: center;
    color:  #fff;
    text-align: center;
    padding: 20px;
}

.hero h1 {
    font-size: 28px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 20px;
}

.btn {
    padding: 12px 25px;
    background: #1e90ff;
    color:  white;
    text-decoration: none;
    font-size: 12px;
    border-radius: 4px;
}

.btn:hover {
    background: #0a74d1;
}

/* SERVICES */
.services {
    padding: 50px;
    text-align: center;
}

.services h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.service-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.box {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.box h3 {
    margin-bottom: 10px;
    color: #0a3d62;
}

/* Industries */
.Industries {
    padding: 50px;
    text-align: center;
}

.Industries h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.Industries-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.box {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.box h3 {
    margin-bottom: 10px;
    color: #0a3d62;
}

/* ABOUT */
.about {
    padding: 50px;
    text-align: Left;
    background: #fff;
}

.about h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

/* Our Team */
.Ourteam {
    padding: 50px;
    text-align: center;
    background: #fff;
}

.Ourteam h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

/* CONTACT */
.contact {
    padding: 50px;
    text-align: center;
    background: #0a3d62;
    color: #fff;
}

.contact form {
    max-width: 500px;
    margin: auto;
}

.contact input,
.contact textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 5px;
    border: none;
}

.contact button {
    width: 100%;
    padding: 12px;
    background: #1e90ff;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
}

.contact button:hover {
    background: #0a74d1;
}

/* FOOTER */
footer {
    padding: 20px;
    text-align: center;
    background: #062641;
    color: #fff;
}
