* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.top-bar {
    background: #1e3c72;
    color: #fff;
    padding: 8px 20px;
    text-align: right;
    font-size: 14px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #fff;
    border-bottom: 1px solid #ddd;
}

.logo {
    font-size: 20px;
    font-weight: bold;
    color: #1e3c72;
}

.nav-menu a {
    margin-left: 15px;
    text-decoration: none;
    color: #1e3c72;
    font-weight: bold;

}

.hero {
    background: linear-gradient(to right, #1e3c72, #2a5298);
    color: #fff;
    text-align: center;
    padding: 70px 20px;
}

.hero-buttons {
    margin-top: 20px;
}

.btn {
    background: #fff;
    color: #1e3c72;
    padding: 12px 25px;
    margin: 5px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
}

.btn-alt {
    background: #ffcc00;
    color: #000;
}

.services, .about, .why-us {
    padding: 40px 20px;
    text-align: center;
}

.service-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.card {
    background: #fff;
    padding: 20px;
    width: 180px;
    border-radius: 6px;
    border: 1px solid #ddd;
    font-weight: bold;
}

.quote {
    background: #f4f6f9;
    padding: 40px 20px;
    text-align: center;
}

.quote form input,
.quote form select {
    width: 220px;
    padding: 10px;
    margin: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.quote button {
    background: #1e3c72;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    cursor: pointer;
}

.why-us ul {
    list-style: none;
    margin-top: 15px;
}

.why-us li {
    margin: 8px 0;
    font-size: 16px;
}

.footer {
    background: #1e3c72;
    color: #fff;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}
/* ===== MOBILE MENU FINAL FIX ===== */

.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #1e3c72;
}

.nav-menu {
    display: flex;
}

@media (max-width: 768px){
    
.header { flex-wrap: wrap; }

    .menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        background: #ffffff;
        margin-top: 10px;
        border-top: 1px solid #ddd;
    }

    .nav-menu a {
        padding: 12px;
        border-bottom: 1px solid #eee;
        margin: 0;
    }

    .nav-menu.active {
        display: flex;
    }
}
/* ===== Images MENU FINAL FIX ===== */


.hero {
    background: url("images/firstpage.jpg") center/cover no-repeat;

}

/* ===== IMAGE SLIDER ===== */

.slider {
    width: 100%;
    max-width: 1500px;
    height: 600px;
    margin: 30px auto;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}
/*===Clickable===*/
.hero {
    position: relative;
    z-index: 2;
}

.slider {
    position: relative;
    z-index: 1;
}
/*===Logo===*/
.logo img {
    height: 80px;          /* logo size */
    width: auto;
    display: block;
}

@media (max-width: 768px) {
    .logo img {
        height: 40px;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
