body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.header {
    background: #0A1F44;
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

nav {
    display: flex;
    gap: 25px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

nav a:hover {
    color: #E63946;
}

.menu-toggle {
    display: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
}

.main-content {
    min-height: 70vh;
}

/* Slider - paths relative to css/ so work in any folder */
.swiper {
    width: 100%;
    height: 85vh;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide1 {
    background-image: url('../images/slider1.jpg');
}

.slide2 {
    background-image: url('../images/slider2.jpg');
}

.slide3 {
    background-image: url('../images/slider3.jpg');
}

.slide-content {
    background: rgba(0,0,0,0.6);
    color: white;
    padding: 40px;
    text-align: center;
}

.btn-primary {
    background: #E63946;
    padding: 12px 25px;
    color: white;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
}

.btn-primary:hover {
    color: white;
    opacity: 0.9;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    text-align: center;
}

.services-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.service-card {
    background: #f4f4f4;
    padding: 30px;
    width: 300px;
    border-radius: 8px;
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

/* Footer */
.footer {
    background: #0A1F44;
    color: white;
    padding: 50px 0 20px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer a {
    color: white;
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid #444;
    padding-top: 15px;
}

/* Page title for inner pages */
.page-title {
    margin-top: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        position: absolute;
        top: 80px;
        right: 0;
        background: #0A1F44;
        flex-direction: column;
        width: 200px;
        padding: 20px;
        display: none;
    }

    nav.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}
