body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #fff; /* Set body background color to white */
    color: #333; /* Set body text color to dark */
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff; /* Change header background color */
    color: #fff;
    text-align: center;
    padding: 20px;
}

header img {
    max-width: 100%;
    height: auto;
    max-height: 100px; /* Set a maximum height for the header image */
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav li {
    margin-right: 20px;
}

nav a {
    text-decoration: none;
    color: rgb(7, 7, 7);
    font-size: 1.2em;
}

.hero {
    background-image: url('path/to/your-hero-image.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 50px;
}

.hero::before {
    content: ''; /* Create a pseudo-element for the background image */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('path/to/your-hero-image.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Make the background image fixed */
    opacity: 0.5; /* Adjust opacity for the background image */
    z-index: -1; /* Send it to the back */
}


.hero h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 1); /* Set text color with full opacity */
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 1); /* Set text color with full opacity */
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1.2em;
    text-decoration: none;
    background-color: #fff;
    color: #fff;
    border-radius: 5px;
}

.btn:hover {
    background-color: #555;
}

section {
    padding: 50px;
}

section h2 {
    font-size: 2em;
    margin-bottom: 20px;
    text-align: center;
    color: #333; /* Heading color */
}

.service {
    margin-bottom: 30px;
    text-align: center;
}

.service img {
    max-width: 100%;
    height: auto;
    max-height: 200px; /* Set a maximum height for the service images */
    border-radius: 8px;
    margin-bottom: 10px;
}

.service h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #333; /* Service heading color */
}

.service p {
    font-size: 1.1em;
    color: #555; /* Service paragraph color */
}

footer {
    background-color: rgba(17, 53, 75, 255);
    color: #fff;
    text-align: center;
    padding: 20px;
}
.services-header {
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 50px;
}

.services-header h2 {
    color: #fff; /* Set text color to white */
}

#map {
    max-width: 1000px; /* Adjust the maximum width as needed */
    margin: 0 auto; /* Center-align the iframe */
}

/* Add a class for the animation */
.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

/* Define the fadeIn animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
/* Styles for header */
/* Styles for header */
header {
    background-color: #fff; /* Change header background color */
    color: #fff;
    text-align: center;
    padding: 20px;
}

.header-upper {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional: add shadow for separation */
}

.header-lower {
    background-color: #f5f5f5; /* Use the existing background color */
    height: 20px; /* Adjust the height to match the padding-bottom of header-upper */
}


.site-location-images img {
    max-width: 300px; /* Adjust the value as needed */
    margin: 10px; /* Add some margin between images */
}

.white-background {
    color: black;
}