* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
header {
    background: #004aad;
    color: #fff;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo h1 {
    font-size: 1.8rem;
    margin-left: 1rem; /* Space between hamburger and logo */
}

nav {
    display: flex;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

nav a.active,
nav a:hover {
    color: #ffd700;
}

.cta-button {
    background: #ffd700;
    color: #004aad;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.cta-button:hover {
    background: #e6c200;
}

/* Hamburger Menu Styles */
.nav-toggle {
    display: none; /* Hidden by default */
}

.nav-toggle-label {
    display: none; /* Hidden on desktop */
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    margin-left: 10px; /* Add some margin from the left edge */
}

.nav-toggle-label span {
    background: #fff;
    height: 3px;
    width: 100%;
    border-radius: 5px;
}

/* Hero Section */
.hero {
    background: url('\hero-background2.png') no-repeat center center;
    background-size: cover;
    text-align: center;
    padding:17rem 8rem;
    margin-top: 70px; /* Adjust for fixed header */
    color: #fff;
}


.hero h2 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 5rem;
}

/* Services Section */
.services {
    padding: 3rem 0;
    text-align: center;
}

.services h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background: #004aad;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
}

footer .social-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

footer a {
    color: #ffd700;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Power BI Embed Section */
.powerbi {
    padding: 5rem 0;
    text-align: center;
}

.powerbi iframe {
    border: none;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
/* Contact Form Styles */
.contact-form {
    padding: 3rem 0;
}

.contact-form form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
}

.contact-form button {
    align-self: flex-start;
}
/* Submenu styles */
.has-submenu {
    position: relative;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #004aad;
    list-style: none;
    padding: 0.5rem 0;
    display: none;
    flex-direction: column;
    min-width: 150px;
    z-index: 1000;
}

.submenu li {
    padding: 0.5rem 1rem;
}

.submenu a {
    color: #fff;
    text-decoration: none;
    font-weight: normal;
}

.submenu a:hover {
    color: #ffd700;
}

/* Show submenu on hover */
.has-submenu:hover .submenu {
    display: flex;
}
/* Responsive Design */
@media (max-width: 768px) {
    header .container {
        flex-direction: row;
        justify-content: flex-start; /* Align items to the left */
        align-items: center;
    }

    .nav-toggle-label {
        display: flex; /* Show hamburger on mobile */
        margin-left: 10px; /* Keep it close to the left edge */
    }

    .logo {
        margin-left: 1rem; /* Space between hamburger and logo */
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #004aad;
        padding: 1rem;
        display: none; /* Hide nav by default on mobile */
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .cta-button {
        margin-top: 1rem; /* Space below menu if open */
        display: block;
        text-align: center;
        position: absolute;
        right: 10px; /* Keep it on the right */
        top: 10px;
    }

    /* Toggle show/hide */
    .nav-toggle:checked + .nav-toggle-label + .logo + nav {
        display: block;
    }

    .hero {
        padding: 3rem 0;
    }

    .hero h2 {
        font-size: 2rem;
    }
}