body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: #333;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1em;
}

header .logo-container {
    display: flex;
    align-items: center;
}

header .logo {
    height: 50px; /* Adjust the height as needed */
    margin-right: 10px;
}

header .logo-text {
    font-size: 1.5em;
    font-weight: bold;
    color: white;
    text-decoration: none; /* Remove underline */
}

header .innovative-solutions {
    font-size: 1em;
    color: white;
    font-style: italic;
    margin: 0;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    position: relative;
    margin-left: 1em;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 0.5em;
    display: block;
}

nav ul li .dropdown-content {
    display: none;
    position: absolute;
    background-color: #333;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
    min-width: 160px;
}

nav ul li .dropdown-content a {
    color: white;
    padding: 0.5em;
    text-decoration: none;
    display: block;
    text-align: left;
}

nav ul li .dropdown-content a:hover {
    background-color: #575757;
}

nav ul li:hover .dropdown-content {
    display: block;
}

.hero {
    text-align: center;
    padding: 2em 0;
}

.banner-container {
    position: relative;
    max-width: 120%;
    width: 960px; /* 120% of 800px */
    height: 300px; /* Adjust height as needed */
    overflow: hidden;
    margin: 0 auto;
}

.banner {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Ensure the image fits within the container */
}

.banner-text {
    background-color: white;
    color: black;
    padding: 20px;
    width: 120%;
    text-align: justify; /* Justify the text */
    max-width: 960px; /* 120% of 800px */
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cta-button {
    background-color: #007BFF;
    color: white;
    padding: 0.5em 1em;
    text-decoration: none;
    border-radius: 5px;
}

.about-us, .services, .projects, .contact-us {
    padding: 2em;
    text-align: center;
}

.service, .project {
    margin-bottom: 1em;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1em 0;
}
