* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: #f4f6f9;
    color: #333;
}

/* NAVBAR */
header {
    background: white;
    position: sticky;
    top: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
}

nav img {
    height: 100px;
    width: auto;
    max-width: 280px;
    margin-right: 24px;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    text-decoration: none;
    color: #0d2b5c;
    font-weight: 600;
}

nav ul li a:hover {
    color: #1e5ed7;
}

/* MOBILE MENU */
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* HERO */
.hero {
    height: 90vh;
    background: linear-gradient(rgba(13,43,92,0.7), rgba(13,43,92,0.7)),
    url('https://images.unsplash.com/photo-1503387762-592deb58ef4e');
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero h1 {
    font-size: 50px;
}

.hero p {
    margin-top: 15px;
    font-size: 20px;
}

.btn {
    margin-top: 20px;
    padding: 12px 25px;
    background: #1e5ed7;
    border-radius: 25px;
    color: white;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #0d2b5c;
}

/* SECTION */
section {
    padding: 70px 20px;
    text-align: center;
}

h2 {
    margin-bottom: 30px;
    color: #0d2b5c;
}

/* SERVICES */
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}


    #map-widget {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 9999;
        box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        border-radius: 8px;
        overflow: hidden;
        background: #fff;
    }


.service {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

/* FOOTER */
footer {
    background: #0d2b5c;
    color: white;
    text-align: center;
    padding: 20px;
}

/* MOBILE */
@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        background: white;
        position: absolute;
        top: 70px;
        right: 20px;
        width: 200px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    }

    nav ul.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 32px;
    }
}