* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: #f5f7fb;
    color: #333;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 60px;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 26px;
    font-weight: bold;
}

.logo span {
    color: #e7a009;
}

.navbar nav a {
    margin-left: 25px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.navbar .btn {
    background: #d1981e;
    color: white;
    padding: 8px 16px;
    border-radius: 5px;
}

/* Hero */
.hero {
    height: 85vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url("https://images.unsplash.com/photo-1581578731548-c64695cc6952") center/cover;
    display: flex;
    align-items: center;
    padding-left: 60px;
    color: white;
}

.hero h1 {
    font-size: 48px;
    line-height: 1.3;
}

.hero p {
    margin: 15px 0;
    font-size: 18px;
}

.hero-btn {
    display: inline-block;
    background: #d1981e;
    padding: 12px 25px;
    color: white;
    text-decoration: none;
    border-radius: 6px;
}

/* Services */
.services {
    padding: 80px 60px;
    text-align: center;
}

.services h2 {
    font-size: 32px;
}

.subtitle {
    color: #777;
    margin-bottom: 40px;
}

.service-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.service-card {
    background: white;
    padding: 30px;
    width: 260px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card i {
    font-size: 40px;
    color: #d1981e;
    margin-bottom: 15px;
}

/* Why Us */
.why-us {
    background: #0d47a1;
    color: white;
    padding: 70px 60px;
    text-align: center;
}

.why-box {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
}

.why-card {
    background: rgba(255,255,255,0.15);
    padding: 25px;
    width: 180px;
    border-radius: 10px;
}

.why-card i {
    font-size: 30px;
    margin-bottom: 10px;
}

/* Contact */
.contact {
    padding: 80px 60px;
    text-align: center;
}

.contact form {
    max-width: 420px;
    margin: auto;
}

.contact input,
.contact select,
.contact textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.contact button {
    background: #d1981e;
    color: white;
    border: none;
    padding: 12px;
    width: 100%;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
}

/* Footer */
footer {
    background: #111;
    color: #bbb;
    text-align: center;
    padding: 18px;
}
