* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.6;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: #003366;
    color: white;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.logo {
    font-size: 22px;
    font-weight: bold;
}

.btn {
    background: #00aaff;
    color: white;
    padding: 10px 18px;
    text-decoration: none;
    border-radius: 5px;
}

/* HERO */
.hero {
    height: 90vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
    url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
}

.hero p {
    margin: 15px 0;
}

/* SERVICES */
.services {
    padding: 60px 50px;
    text-align: center;
}

.service-container {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.service-box {
    background: #f4f4f4;
    padding: 25px;
    width: 220px;
    border-radius: 8px;
}

/* ABOUT */
.about {
    background: #003366;
    color: white;
    padding: 60px 50px;
    text-align: center;
}

/* CTA */
.cta {
    padding: 60px;
    text-align: center;
    background: #00aaff;
    color: white;
}

/* FOOTER */
footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 15px;
}


/* CONTACT PAGE */
.contact {
    padding: 60px;
    text-align: center;
}

.contact-form {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
}