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

body {
    color: #1a1a1a;
    background: #ffffff;
    line-height: 1.6;
}

/* CONTAINER */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
header {
    background: #0b1f3a;
    color: white;
    padding: 15px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 1px;
}

.logo span {
    display: block;
    font-size: 12px;
    font-weight: normal;
    opacity: 0.8;
}

/* NAVIGATION */
nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    padding: 5px 8px;
}

nav a:hover,
nav a.active {
    border-bottom: 2px solid #f5b301;
}

/* HERO SECTION */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 40px;
    margin-bottom: 15px;
}

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

/* BUTTON */
.btn {
    display: inline-block;
    background: #f5b301;
    color: #000;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
}

.btn:hover {
    background: #d99f00;
}

/* SECTIONS */
section {
    padding: 60px 0;
}

h2 {
    margin-bottom: 20px;
    font-size: 28px;
}

/* SERVICE CARDS */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 6px;
    background: #fafafa;
}

.card h3 {
    margin-bottom: 10px;
}

/* WHY US */
.why-us ul {
    list-style: none;
}

.why-us li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

/* CTA */
.cta {
    background: #0b1f3a;
    color: white;
    text-align: center;
}

/* FOOTER */
footer {
    background: #111;
    color: white;
    text-align: center;
    padding: 20px 0;
    font-size: 14px;
}