html, body {
    height: 100%; /* Ensure the HTML and body take up the full height of the viewport */
    margin: 0; /* Remove default margin */
    padding: 0; /* Remove default padding */
    overflow-y: auto; /* Enable vertical scrolling */
}

body {
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    min-height: 100%; /* Allow the body to grow beyond the viewport if content overflows */
}

.page-container {
    flex: 1; /* Allow the main content to grow and take up available space */
}

html, body {
    height: 100%; /* Ensure the HTML and body take up the full height of the viewport */
    margin: 0; /* Remove default margin */
    padding: 0; /* Remove default padding */
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background: url('images/white_blue_background.png') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    flex-direction: column; /* Stack elements vertically */
}

/* filepath: c:\xampp\htdocs\Aerotechnology\Aerotechnology\styles.css */
.logo {
    position: absolute; /* Position the logo absolutely */
    left: 50%; /* Move the logo to the center horizontally */
    transform: translateX(-50%); /* Adjust for the logo's width */
    max-width: 1200px; /* Adjust the logo width */
    height: auto; /* Maintain aspect ratio */
    object-fit: contain; /* Ensure the logo scales proportionally */
    padding: 0;
}

header {
    background-color: #bfe1ec2c; /* Light blue color */
    padding: 0 20px; /* Horizontal padding */
    display: flex;
    align-items: center;
    justify-content: center; /* Center the content horizontally */
    flex-wrap: wrap; /* Allow wrapping for smaller screens */
    height: 120px; /* Height of the header */
    box-sizing: border-box; /* Ensure padding doesn't affect height */
    position: relative;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap; /* Wrap content on smaller screens */
    position: relative; /* Ensure the logo can be centered */
}

.nav-buttons {
    list-style: none;
    display: flex;
    gap: 50px; /* Adjust spacing between buttons */
    margin: 0; /* Remove auto centering margin */
    padding: 0;
    justify-content: center; /* Center the buttons within the container */
    align-items: center; /* Vertically align the buttons */
}

.nav-buttons li {
    display: inline;
}

.nav-buttons a {
    text-decoration: none;
    color: #4a515e; /* Dark text for contrast */
    background: none; /* Remove background */
    padding: 0; /* Remove padding */
    font-size: 24px; /* Slightly larger font for better visibility */
    font-weight: bold; /* Make the text bold */
    font-family: 'Arial', sans-serif; /* Use a friendly sans-serif font */
    transition: color 0.3s; /* Smooth transition for hover effect */
}

.nav-buttons a:hover {
    color: #007BFF; /* Change text color on hover (blue) */
}

/* Blended image section */
#blended-image {
    position: relative;
    width: 100%;
    height: 400px; /* Set the height of the blended image section */
    overflow: hidden;
}

#blended-image .main-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure the image covers the entire section */
    filter: none; /* Remove any fading effect */
}

#blended-image {
    position: relative; /* Set relative positioning for the container */
    text-align: center; /* Center the text horizontally */
    margin: 20px 0;
}

.main-image {
    width: 100%; /* Make the image span the full width of the page */
    max-height: 500px; /* Set a maximum height for the image */
    height: auto; /* Maintain aspect ratio */
    object-fit: cover; /* Ensure the image fits within the dimensions */
    border: none; /* Optional: Remove border */
    border-radius: 0; /* Optional: Remove rounded corners */
    opacity: 0.2; /* Set the transparency (0 is fully transparent, 1 is fully opaque) */
}

.overlay-logo {
    position: absolute; /* Position the logo absolutely within the container */
    top: 50%; /* Center vertically */
    left: 50%; /* Center horizontally */
    transform: translate(-50%, -50%); /* Adjust for the logo's dimensions */
    max-width: 1000px; /* Increase the size of the logo */
    height: auto; /* Maintain aspect ratio */
    z-index: 10; /* Ensure the logo appears above the image */
}

.overlay-text {
    position: absolute; /* Position the text absolutely within the container */
    top: 50%; /* Center vertically */
    left: 50%; /* Center horizontally */
    transform: translate(-50%, -50%); /* Adjust for the text's dimensions */
    color: #333; /* Dark text for contrast */
    font-family: 'Arial', sans-serif; /* Match the website's font */
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5); /* Add a subtle shadow for readability */
}

.overlay-text h1 {
    font-size: 72px; /* Double the original size (36px) */
    margin: 0 0 20px; /* Add spacing below the heading */
    font-weight: bold; /* Keep the heading bold */
}

.overlay-text p {
    font-size: 36px; /* Double the original size (18px) */
    margin: 0; /* Remove default margin */
}

#front-page-text {
    text-align: center; /* Center the text horizontally */
    margin: 40px auto; /* Add vertical spacing and center the section */
    max-width: 12000px; /* Limit the width for better readability */
    font-family: 'Arial', sans-serif; /* Use a friendly sans-serif font */
    font-size: 25px; /* Increase font size for better readability */
    line-height: 1.8; /* Add more line spacing for a friendly look */
    color: #333; /* Use a dark gray color for better contrast */
}

#what-we-do {
    text-align: center; /* Center the section content */
    margin: 40px auto; /* Add vertical spacing and center the section */
}

#what-we-do div {
    display: flex;
    justify-content: center; /* Center the images horizontally */
    gap: 60px; /* Increase spacing between the images */
    flex-wrap: wrap; /* Allow wrapping for smaller screens */
}

#what-we-do a {
    text-decoration: none; /* Remove underline from links */
    color: #333; /* Set text color to match the website */
    text-align: center; /* Center the text below the images */
    font-family: 'Arial', sans-serif; /* Use the website's font */
    font-size: 18px; /* Set font size for the text */
    line-height: 1.6; /* Add line spacing for readability */
}

.button-image {
    width: 500px; /* Set a fixed width for all button images */
    height: 250px; /* Set a fixed height for all button images */
    object-fit: cover; /* Ensure the image scales proportionally and fills the container */
    border-radius: 8px; /* Optional: Add rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional: Add a subtle shadow */
}

.button-image:hover {
    transform: scale(1.1); /* Slightly enlarge the image on hover */
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2); /* Enhance the shadow on hover */
}

#what-we-do p {
    margin-top: 10px; /* Add spacing between the image and the text */
    font-size: 16px; /* Set font size for the text */
    color: #555; /* Use a softer color for the text */
    font-family: 'Arial', sans-serif; /* Match the website's font */
    font-weight: normal; /* Keep the text weight consistent with the website */
    width: 400px; /* Match the width of the associated image */
    text-align: center; /* Center the text */
    margin-left: auto; /* Center horizontally */
    margin-right: auto; /* Center horizontally */
}


.technology-blended-image {
    position: fixed; /* Fix the image to the viewport */
    bottom: 0; /* Align it to the bottom of the screen */
    left: 0; /* Align it to the left edge */
    width: 100%; /* Make the image span the full width of the screen */
    height: auto; /* Maintain the aspect ratio */
    z-index: -1; /* Ensure it stays behind other content */
}

#technology-consulting {
    display: flex;
    align-items: center; /* Align content vertically */
    justify-content: center; /* Space out text and image */
    margin: 50px auto; /* Center the section horizontally and add vertical spacing */
    padding: 20px; /* Add padding around the section */
    width: 75%; /* Set the container width to 75% of the page */
    background-color: #f9f9f9; /* Optional: Light background for the section */
    border-radius: 8px; /* Optional: Add rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional: Add a subtle shadow */
}

.consulting-content {
    display: flex;
    align-items: flex-start; /* Align text and image at the top */
    justify-content: space-between; /* Ensure text is on the left and image is on the right */
    width: 100%; /* Ensure the content spans the full width of the container */
}

.text-container {
    flex: 2; /* Allow the text container to take up more space */
    margin-right: 20px; /* Add spacing between the text and the image */
    margin-left: 40px; /* Add spacing from the left side */
    font-family: 'Arial', sans-serif; /* Match the website's font */
    color: #333; /* Dark text for contrast */
    line-height: 1.8; /* Improve readability with increased line spacing */
}

.text-container h2 {
    font-size: 32px; /* Increase heading size for emphasis */
    margin-bottom: 20px; /* Add spacing below the heading */
    color: #007BFF; /* Optional: Add a blue color for the heading */
    font-weight: bold; /* Make the heading bold */
    text-transform: capitalize; /* Capitalize the heading */
}

.text-container p {
    font-size: 18px; /* Slightly larger paragraph text size */
    line-height: 1.8; /* Improve readability with increased line spacing */
    margin-bottom: 15px; /* Add spacing between paragraphs */
}

.image-placeholder {
    flex: 1; /* Allow the image to take up less space */
    text-align: right; /* Align the image to the right */
}

.placeholder-image {
    max-width: 400px; /* Set a maximum width for the image */
    height: auto; /* Maintain aspect ratio */
    border-radius: 8px; /* Optional: Add rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional: Add a subtle shadow */
}

#technology-consulting .placeholder-image {
    max-width: 300px; /* Reduce the maximum width of the image */
    height: auto; /* Maintain the aspect ratio */
    border-radius: 8px; /* Optional: Add rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional: Add a subtle shadow */
    margin: 0 auto; /* Center the image horizontally if needed */
    display: block; /* Ensure the image behaves as a block element */
}

#general-aviation-consulting {
    display: flex;
    align-items: center; /* Align content vertically */
    justify-content: space-between; /* Space out text and image */
    margin: 50px auto; /* Center the section horizontally and add vertical spacing */
    padding: 20px; /* Add padding around the section */
    width: 75%; /* Set the container width to 75% of the page */
    background-color: #f9f9f9; /* Light background for the section */
    border-radius: 8px; /* Add rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
}

.text-container {
    flex: 2; /* Allow the text container to take up more space */
    margin-right: 20px; /* Add spacing between the text and the image */
    font-family: 'Arial', sans-serif; /* Match the website's font */
    color: #333; /* Dark text for contrast */
    line-height: 1.8; /* Improve readability with increased line spacing */
}

.text-container h2 {
    font-size: 32px; /* Increase heading size for emphasis */
    margin-bottom: 20px; /* Add spacing below the heading */
    color: #007BFF; /* Optional: Add a blue color for the heading */
    font-weight: bold; /* Make the heading bold */
    text-transform: capitalize; /* Capitalize the heading */
}

.text-container p {
    font-size: 18px; /* Slightly larger paragraph text size */
    line-height: 1.8; /* Improve readability with increased line spacing */
    margin-bottom: 15px; /* Add spacing between paragraphs */
    text-align: justify; /* Justify the text for a clean look */
}

.image-placeholder {
    flex: 1; /* Allow the image to take up less space */
    text-align: right; /* Align the image to the right */
}

.placeholder-image {
    max-width: 400px; /* Set a maximum width for the image */
    height: auto; /* Maintain aspect ratio */
    border-radius: 8px; /* Optional: Add rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional: Add a subtle shadow */
}

#general-aviation-consulting .placeholder-image {
    max-width: 300px; /* Reduce the maximum width of the image */
    height: auto; /* Maintain the aspect ratio */
    border-radius: 8px; /* Optional: Add rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional: Add a subtle shadow */
    margin: 0 auto; /* Center the image horizontally if needed */
    display: block; /* Ensure the image behaves as a block element */
}

#training-consultancy {
    display: flex;
    align-items: center; /* Align content vertically */
    justify-content: space-between; /* Space out text and image */
    margin: 50px auto; /* Center the section horizontally and add vertical spacing */
    padding: 20px; /* Add padding around the section */
    width: 75%; /* Set the container width to 75% of the page */
    background-color: #f9f9f9; /* Optional: Light background for the section */
    border-radius: 8px; /* Optional: Add rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional: Add a subtle shadow */
}

.text-container {
    flex: 2; /* Allow the text container to take up more space */
    margin-right: 20px; /* Add spacing between the text and the image */
    font-family: 'Arial', sans-serif; /* Match the website's font */
    color: #333; /* Dark text for contrast */
    line-height: 1.8; /* Improve readability with increased line spacing */
}

.text-container h2 {
    font-size: 32px; /* Increase heading size for emphasis */
    margin-bottom: 20px; /* Add spacing below the heading */
    color: #007BFF; /* Optional: Add a blue color for the heading */
    font-weight: bold; /* Make the heading bold */
    text-transform: capitalize; /* Capitalize the heading */
}

.text-container p {
    font-size: 18px; /* Slightly larger paragraph text size */
    line-height: 1.8; /* Improve readability with increased line spacing */
    margin-bottom: 15px; /* Add spacing between paragraphs */
    text-align: justify; /* Justify the text for a clean look */
}

.image-placeholder {
    flex: 1; /* Allow the image to take up less space */
    text-align: right; /* Align the image to the right */
}

.placeholder-image {
    max-width: 400px; /* Set a maximum width for the image */
    height: auto; /* Maintain aspect ratio */
    border-radius: 8px; /* Optional: Add rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional: Add a subtle shadow */
}

#training-consultancy .placeholder-image {
    max-width: 300px; /* Reduce the maximum width of the image */
    height: auto; /* Maintain the aspect ratio */
    border-radius: 8px; /* Optional: Add rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional: Add a subtle shadow */
    margin: 0 auto; /* Center the image horizontally if needed */
    display: block; /* Ensure the image behaves as a block element */
}

#logistics-consultancy {
    display: flex;
    align-items: center; /* Align content vertically */
    justify-content: space-between; /* Space out text and image */
    margin: 50px auto; /* Center the section horizontally and add vertical spacing */
    padding: 20px; /* Add padding around the section */
    width: 75%; /* Set the container width to 75% of the page */
    background-color: #f9f9f9; /* Optional: Light background for the section */
    border-radius: 8px; /* Optional: Add rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional: Add a subtle shadow */
}

.text-container {
    flex: 2; /* Allow the text container to take up more space */
    margin-right: 20px; /* Add spacing between the text and the image */
    font-family: 'Arial', sans-serif; /* Match the website's font */
    color: #333; /* Dark text for contrast */
    line-height: 1.8; /* Improve readability with increased line spacing */
}

.text-container h2 {
    font-size: 32px; /* Increase heading size for emphasis */
    margin-bottom: 20px; /* Add spacing below the heading */
    color: #007BFF; /* Optional: Add a blue color for the heading */
    font-weight: bold; /* Make the heading bold */
    text-transform: capitalize; /* Capitalize the heading */
}

.text-container p {
    font-size: 18px; /* Slightly larger paragraph text size */
    line-height: 1.8; /* Improve readability with increased line spacing */
    margin-bottom: 15px; /* Add spacing between paragraphs */
    text-align: justify; /* Justify the text for a clean look */
}

.image-placeholder {
    flex: 1; /* Allow the image to take up less space */
    text-align: right; /* Align the image to the right */
}

.placeholder-image {
    max-width: 400px; /* Set a maximum width for the image */
    height: auto; /* Maintain aspect ratio */
    border-radius: 8px; /* Optional: Add rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional: Add a subtle shadow */
}

#project-management {
    display: flex;
    justify-content: center; /* Center the container horizontally */
    align-items: center; /* Center the content vertically */
    background-image: url('images/project_management.jpeg'); /* Set the background image */
    background-size: cover; /* Ensure the image covers the entire section */
    background-position: center; /* Center the background image */
    background-repeat: no-repeat; /* Prevent the image from repeating */
    padding: 50px 0; /* Add vertical padding */
    color: #333; /* Ensure text color is readable */
    position: relative; /* Ensure child elements are positioned relative to this section */
}

#project-management::before {
    content: ''; /* Add an overlay */
    position: absolute; /* Position the overlay */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.3); /* White overlay with 0.3 opacity */
    z-index: 1; /* Place the overlay below the text */
}

.project-container {
    display: flex;
    flex-direction: row; /* Align text and image side by side */
    justify-content: space-between; /* Space out the text and image */
    align-items: center; /* Align items vertically */
    width: 50%; /* Set the container width to 50% of the page */
    background-color: rgba(255, 255, 255, 0.8); /* Add a semi-transparent white background */
    padding: 20px; /* Add padding inside the container */
    border-radius: 8px; /* Add rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
    position: relative; /* Ensure the container is above the overlay */
    z-index: 2; /* Place the container above the overlay */
}

.text-container {
    flex: 1; /* Allow the text to take up half the container */
    margin-right: 20px; /* Add spacing between the text and the image */
    font-family: 'Arial', sans-serif; /* Match the website's font */
    color: #333; /* Dark text for contrast */
    line-height: 1.8; /* Improve readability with increased line spacing */
}

.text-container h2 {
    font-size: 28px; /* Heading size */
    margin-bottom: 15px; /* Add spacing below the heading */
    color: #007BFF; /* Optional: Add a blue color for the heading */
    font-weight: bold; /* Make the heading bold */
}

.text-container p {
    font-size: 16px; /* Paragraph text size */
    line-height: 1.6; /* Improve readability */
    margin-bottom: 15px; /* Add spacing between paragraphs */
    text-align: justify; /* Justify the text for a clean look */
}

.image-placeholder {
    flex: 1; /* Allow the image to take up half the container */
    text-align: center; /* Center the image horizontally */
}

.placeholder-image {
    max-width: 100%; /* Ensure the image fits within its container */
    height: auto; /* Maintain aspect ratio */
    border-radius: 8px; /* Optional: Add rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional: Add a subtle shadow */
}

/* Custom Software Section */
#custom-software {
    padding: 50px 20px; /* Add padding to the section */
    text-align: center; /* Center-align the content */
    margin: 20px auto; /* Add vertical spacing and center the section */
}

#custom-software .overlay-container {
    max-width: 800px; /* Limit the width of the content */
    margin: 0 auto; /* Center the content horizontally */
    padding: 20px; /* Add padding inside the container */
    background-color: rgba(255, 255, 255, 0.9); /* Add a semi-transparent white background */
    border-radius: 8px; /* Add rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
}

#custom-software .overlay-container {
    position: relative; /* Position the container relative to the section */
    z-index: 2; /* Ensure the container is above the background */
}

#custom-software::before {
    content: ''; /* Add an overlay */
    position: absolute; /* Position the overlay */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Black overlay with 0.5 opacity */
    z-index: 1; /* Place the overlay below the text */
}

#custom-software .text-overlay {
    position: relative; /* Ensure the text is above the overlay */
    z-index: 3; /* Place the text above the overlay */
    max-width: 800px; /* Limit the width of the text for better readability */
    margin: 0 auto; /* Center the text container */
    padding: 20px; /* Add padding inside the text container */
    background-color: rgba(255, 255, 255, 0.8); /* Add a semi-transparent white background */
    border-radius: 8px; /* Add rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
}

#custom-software .text-overlay h2 {
    font-size: 32px; /* Increase heading size */
    margin-bottom: 20px; /* Add spacing below the heading */
    color: #007BFF; /* Optional: Add a blue color for the heading */
    font-weight: bold; /* Make the heading bold */
}

#custom-software .text-overlay p {
    font-size: 18px; /* Slightly larger paragraph text size */
    line-height: 1.8; /* Improve readability with increased line spacing */
    margin-bottom: 15px; /* Add spacing between paragraphs */
    color: #333; /* Dark text for contrast */
}

#custom-software {
    text-align: center; /* Center-align the content */
    margin: 40px auto; /* Add vertical spacing and center the section */
}

#custom-software img {
    width: 500px; /* Set a fixed width for the image */
    height: 250px; /* Set a fixed height for the image */
    object-fit: cover; /* Ensure the image scales proportionally and fills the container */
    border-radius: 8px; /* Add rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
}

#custom-software p {
    margin-top: 10px; /* Add spacing between the image and the text */
    font-size: 16px; /* Set font size for the text */
    color: #555; /* Use a softer color for the text */
    font-family: 'Arial', sans-serif; /* Match the website's font */
    font-weight: normal; /* Keep the text weight consistent with the website */
    text-align: center; /* Center-align the text */
}

/* Custom Software Content Section */
#custom-software-content {
    padding: 50px 20px;
    display: flex;
    justify-content: center; /* Center the content horizontally */
    background-color: #f9f9f9; /* Light gray background for contrast */
}

#custom-software-content .content-container {
    width: 50%; /* Set the width of the container to 50% */
    padding: 20px; /* Add padding inside the container */
    background-color: rgba(255, 255, 255, 0.5); /* Semi-transparent white background */
    border-radius: 8px; /* Add rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
    color: #333; /* Ensure the text color remains dark */
    font-family: Arial, sans-serif;
    line-height: 1.8;
    text-align: center;
}

#custom-software-content h2 {
    font-size: 36px;
    color: #007BFF; /* Blue heading color */
    margin-bottom: 20px;
}

#custom-software-content p {
    font-size: 18px;
    margin-bottom: 20px;
}

/* Contact Us Section */
.contact-section {
    padding: 50px 20px; /* Add padding to the top and bottom of the section */
    overflow: hidden; /* Ensure the section contains all its content */
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.5); /* Semi-transparent white background */
    border-radius: 8px; /* Add rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
    text-align: center; /* Center-align the text inside the container */
}

.contact-container h1 {
    font-size: 36px;
    color: #007BFF; /* Blue heading color */
    margin-bottom: 20px;
}

.contact-container p {
    font-size: 18px;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.contact-item {
    text-align: center;
    margin: 10px;
}

.contact-icon {
    max-width: 50px;
    height: auto;
    margin-bottom: 10px;
}

.contact-item p {
    font-size: 16px;
    color: #555;
}

.contact-item a {
    color: #007BFF;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Contact Form */
.contact-form-container {
    margin-top: 30px; /* Add spacing above the form */
    padding: 20px; /* Add padding inside the form container */
    background-color: #ffffff1f; /* Keep a solid white background */
    border-radius: 8px; /* Add rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
    width: 50%; /* Set the width of the form container */
    margin-left: auto; /* Center the form horizontally */
    margin-right: auto; /* Center the form horizontally */
}

.contact-form-container h2 {
    font-size: 28px;
    color: #007BFF;
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.contact-form .submit-button {
    background-color: #007BFF;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    display: block; /* Make the button a block element */
    margin: 0 auto; /* Center the button horizontally */
    text-align: center; /* Center the text inside the button */
}

.contact-form .submit-button:hover {
    background-color: #0056b3;
}

.contact-container {
    width: 50%; /* Set the width of the contact container to 50% */
    margin: 0 auto; /* Center the container horizontally */
    padding: 20px; /* Add padding inside the container */
    background-color: #fff; /* Keep a solid white background */
    border-radius: 8px; /* Add rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
    text-align: center; /* Center-align the text inside the container */
}

.map-container {
    width: 50%; /* Set the width of the map container to 50% */
    margin: 20px auto; /* Center the map container horizontally and add vertical spacing */
    padding: 20px 0; /* Add vertical padding for spacing */
    text-align: center; /* Center-align the content inside the container */
}

.map-container iframe {
    width: 100%; /* Ensure the iframe takes up the full width of the container */
    height: 400px; /* Set a fixed height for the map */
    border: 0; /* Remove the border around the iframe */
}

@media (max-width: 768px) {
    .logo {
        width: 200px; /* Further reduce logo size on smaller screens */
    }

    .nav-buttons {
        justify-content: center; /* Center buttons on smaller screens */
        gap: 8px; /* Reduce spacing between buttons */
    }

    .nav-buttons a {
        font-size: 12px; /* Smaller font size for buttons */
        padding: 5px 8px; /* Adjust padding for smaller buttons */
    }

    header {
        flex-direction: column; /* Stack logo and navigation vertically */
        align-items: center;
    }
}

footer {
    margin-top: auto; /* Push the footer to the bottom of the page */
    background-color: #f1f1f1; /* Light gray background for the footer */
    padding: 20px 0; /* Add padding inside the footer */
    text-align: center; /* Center-align the footer text */
}

.footer-container {
    max-width: 1200px; /* Limit the width of the footer content */
    margin: 0 auto; /* Center the footer content */
    display: flex;
    justify-content: center; /* Center the text horizontally */
    align-items: center; /* Align items vertically */
    gap: 10px; /* Add spacing between elements */
    flex-wrap: nowrap; /* Ensure everything stays on a single line */
}

.footer-links {
    display: flex;
    gap: 10px; /* Add spacing between links */
    align-items: center;
}

.footer-links a {
    text-decoration: none; /* Remove underline from links */
    color: #4079e4; /* Match the website's link color */
    font-weight: bold; /* Make the links bold */
    transition: color 0.3s; /* Add a smooth hover effect */
}

.footer-links a:hover {
    color: #007BFF; /* Change link color on hover */
}

.footer-links span {
    color: #555; /* Use a softer color for the separator */
}

.consultancy-header .nav-logo {
    position: absolute; /* Position the logo absolutely */
    left: 20px; /* Align the logo to the left */
    top: 50%; /* Center the logo vertically */
    transform: translateY(-50%); /* Adjust for the logo's height */
    max-width: 120px; /* Shrink the logo for Consultancy.html */
    height: auto; /* Maintain aspect ratio */
}

.consultancy-header .header-container {
    display: flex;
    align-items: center; /* Align logo and navigation vertically */
    justify-content: center; /* Center the navigation buttons horizontally */
    padding: 0 20px; /* Match the padding from the Index page */
    height: 120px; /* Match the height of the header */
    box-sizing: border-box; /* Ensure padding doesn't affect height */
    position: relative; /* Allow absolute positioning for the logo */
}

.consultancy-header .nav-buttons {
    list-style: none;
    display: flex;
    gap: 50px; /* Match the spacing between buttons */
    margin: 0;
    padding: 0;
    justify-content: center; /* Center the buttons within the container */
    align-items: center; /* Vertically align the buttons */
}

.nav-logo img {
    max-width: 300px; /* Increase the size of the logo */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Ensure the image behaves as a block element */
}

.nav-logo {
    position: absolute; /* Position the logo absolutely */
    top: 10px; /* Add spacing from the top */
    left: 20px; /* Add spacing from the left */
    z-index: 10; /* Ensure the logo appears above other elements */
}

/* Blended image container */
#blended-image-container {
    position: relative;
    width: 100%;
    height: 400px; /* Set the height of the blended image section */
    overflow: hidden;
}

#blended-image-container .blended-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure the image covers the entire section */
}

/* Content container below the blended image */
#content-container {
    padding: 50px 20px;
   
    text-align: center;
}

#content-container .content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.9); /* Semi-transparent white background */
    padding: 20px;
    border-radius: 8px; /* Add rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
    color: #333; /* Ensure the text color remains dark */
    font-family: Arial, sans-serif;
    line-height: 1.8;
}

#content-container h2 {
    font-size: 36px;
    color: #007BFF; /* Blue heading color */
    margin-bottom: 20px;
}

#content-container p {
    font-size: 18px;
    margin-bottom: 20px;
}

#blended-image-container .content-container {
    position: absolute;
    top: 50%; /* Center the content vertically */
    left: 50%; /* Center the content horizontally */
    transform: translate(-50%, -50%); /* Adjust for the content's dimensions */
    width: 50%; /* Set the width of the content container */
    padding: 20px; /* Add padding inside the container */
    background-color: rgba(255, 255, 255, 0.9); /* Semi-transparent white background */
    border-radius: 8px; /* Add rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
    text-align: center; /* Center-align the text */
    color: #333; /* Ensure the text color remains dark */
    font-family: Arial, sans-serif;
    line-height: 1.8;
}

#blended-image-container .content-container h2 {
    font-size: 36px;
    color: #007BFF; /* Blue heading color */
    margin-bottom: 20px;
}

#blended-image-container .content-container p {
    font-size: 18px;
    margin-bottom: 20px;
}

/* Scrollable image section */
#scrollable-image-section {
    width: 100%; /* Full width of the page */
    height: 100vh; /* Full height of the viewport */
    overflow: hidden; /* Prevent scrolling within the section */
    position: relative; /* Position the section relative to its content */
}

.scrollable-container {
    width: 100%; /* Ensure the container takes up the full width */
    height: 100%; /* Ensure the container takes up the full height */
    position: relative; /* Position the container relative to the overlay */
}

.scrollable-image {
    width: 100%; /* Make the image span the full width of the container */
    height: 100%; /* Make the image span the full height of the container */
    object-fit: cover; /* Ensure the image covers the entire container */
    display: block; /* Ensure the image behaves as a block element */
}

/* Text overlay container */
.text-overlay-container {
    position: absolute; /* Position the container over the image */
    top: 50%; /* Center vertically */
    left: 50%; /* Center horizontally */
    transform: translate(-50%, -50%); /* Adjust for the container's dimensions */
    width: 60%; /* Set the width of the container */
    padding: 20px; /* Add padding inside the container */
    background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent white background */
    border-radius: 8px; /* Add rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
    text-align: center; /* Center-align the text */
    color: #333; /* Ensure the text color remains dark */
    font-family: Arial, sans-serif; /* Match the website's font */
    line-height: 1.8; /* Improve readability with increased line spacing */
    overflow-y: auto; /* Allow scrolling if the text overflows */
    max-height: 80vh; /* Prevent the container from exceeding the viewport height */
}

.text-overlay-container h2 {
    font-size: 40px; /* Increase the font size for emphasis */
    color: #333; /* Dark gray color for a professional look */
    font-weight: 900; /* Extra bold font weight for a strong appearance */
    text-transform: uppercase; /* Make the text uppercase for a militaristic feel */
    letter-spacing: 2px; /* Add spacing between letters for a bold statement */
    margin-bottom: 20px; /* Add spacing below the heading */
    font-family: 'Arial Black', Arial, sans-serif; /* Use a bold, clean font */
}

.text-overlay-container p {
    font-size: 18px; /* Set a readable font size for the paragraph */
    margin-bottom: 15px; /* Add spacing between paragraphs */
    color: #555; /* Use a softer dark gray for the text */
}

/* Hero Section */
#hero-section {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.hero-text h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.hero-text p {
    font-size: 24px;
}


/* Our Team Section */
#our-team {
    padding: 50px 20px;
    text-align: center;
    background-color: #fff;
}

#our-team h2 {
    font-size: 36px;
    color: #007BFF;
    margin-bottom: 30px;
}

.team-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.team-member {
    text-align: center;
    max-width: 200px;
}

.team-image {
    width: 100%;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

.team-member h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 5px;
}

.team-member p {
    font-size: 16px;
    color: #555;
}

/* General Content Box Styling */
.content-box {
    width: 50%; /* Set the width to 50% of the screen */
    margin: 40px auto; /* Center the box and add vertical spacing */
    padding: 20px; /* Add padding inside the box */
    background-color: #fff; /* White background */
    border-radius: 8px; /* Add rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
    text-align: center; /* Center-align the text */
    color: #333; /* Dark text color for readability */
    font-family: Arial, sans-serif; /* Match the website's font */
    line-height: 1.8; /* Improve readability with increased line spacing */
}

/* Centered Content Box Styling */
#about-us-content {
    display: flex; /* Use flexbox for centering */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    min-height: 80vh; /* Ensure the section takes up at least 80% of the viewport height */
    background-color: #f9f9f956; /* Light gray background for contrast */
    padding: 20px; /* Add padding for spacing */
}


.content-box h2 {
    font-size: 36px;
    color: #007BFF; /* Blue heading color */
    margin-bottom: 20px;
}

.content-box p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #555; /* Softer dark gray for paragraph text */
}

/* Our Team Section */
#our-team h2 {
    font-size: 36px;
    color: #007BFF; /* Blue heading color */
    margin-bottom: 30px;
}

.team-container {
    display: flex;
    justify-content: center;
    gap: 40px; /* Add spacing between team members */
    flex-wrap: wrap; /* Allow wrapping for smaller screens */
}

.team-member {
    text-align: center;
    max-width: 150px; /* Limit the width of each team member card */
}

.team-image {
    width: 100%;
    height: auto;
    border-radius: 50%; /* Make the images circular */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
    margin-bottom: 10px;
}

.team-member h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 5px;
}

.team-member p {
    font-size: 16px;
    color: #555;
}

/* Cookie Consent Banner */
#cookie-banner {
    position: fixed; /* Fix the banner at the bottom of the screen */
    bottom: 0;
    left: 0;
    width: 100%; /* Full width of the screen */
    background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent black background */
    color: #fff; /* White text for contrast */
    padding: 15px; /* Add padding inside the banner */
    font-size: 16px; /* Set a readable font size */
    z-index: 1000; /* Ensure the banner appears above other elements */
    display: flex; /* Use flexbox for layout */
    flex-wrap: wrap; /* Allow wrapping for smaller screens */
    justify-content: space-between; /* Space out the text and button */
    align-items: center; /* Center-align the content vertically */
    box-sizing: border-box; /* Include padding in width calculations */
}

#cookie-banner p {
    margin: 0; /* Remove default margin */
    flex: 1; /* Allow the text to take up available space */
}

#cookie-banner a {
    color: #4da6ff; /* Light blue link color */
    text-decoration: underline; /* Underline the link */
}

#cookie-banner a:hover {
    color: #007BFF; /* Darker blue on hover */
}

#cookie-banner button {
    background-color: #007BFF; /* Blue button background */
    color: #fff; /* White text */
    border: none; /* Remove border */
    border-radius: 5px; /* Add rounded corners */
    padding: 10px 20px; /* Add padding inside the button */
    font-size: 16px; /* Set a readable font size */
    cursor: pointer; /* Change cursor to pointer on hover */
    margin-left: 20px; /* Add spacing between the text and button */
    flex-shrink: 0; /* Prevent the button from shrinking */
}

#cookie-banner button:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

/* General Mobile Styles */
@media (max-width: 768px) {
    /* Header adjustments */
    header {
        flex-direction: column; /* Stack logo and navigation vertically */
        align-items: center; /* Center-align the content */
        height: auto; /* Allow height to adjust dynamically */
        padding: 10px 20px; /* Add padding for spacing */
    }

    .header-container {
        flex-direction: column; /* Stack elements vertically */
        align-items: center; /* Center-align the content */
    }

    .nav-logo {
        margin-bottom: 10px; /* Add spacing below the logo */
    }

    .nav-buttons {
        flex-direction: column; /* Stack navigation links vertically */
        gap: 10px; /* Add spacing between links */
        width: 100%; /* Make the navigation take full width */
        text-align: center; /* Center-align the links */
    }

    .nav-buttons a {
        font-size: 18px; /* Adjust font size for better readability */
        padding: 10px 0; /* Add padding for easier tapping */
    }

    /* Blended image section */
    #blended-image {
        height: auto; /* Allow height to adjust dynamically */
    }

    .main-image {
        max-height: 300px; /* Limit the height of the image */
    }

    .overlay-logo {
        max-width: 150px; /* Reduce the size of the overlay logo */
    }

    /* Front page text */
    #front-page-text {
        font-size: 18px; /* Adjust font size for readability */
        padding: 10px; /* Add padding for spacing */
    }

    /* What We Do section */
    #what-we-do div {
        flex-direction: column; /* Stack items vertically */
        gap: 20px; /* Add spacing between items */
    }

    .button-image {
        width: 100%; /* Make images responsive */
        height: auto; /* Maintain aspect ratio */
    }

    #what-we-do p {
        font-size: 16px; /* Adjust font size */
        width: auto; /* Remove fixed width */
    }

    /* Footer adjustments */
    footer {
        padding: 20px; /* Add padding for spacing */
    }

    .footer-container {
        flex-direction: column; /* Stack footer content vertically */
        gap: 10px; /* Add spacing between elements */
    }

    .footer-links {
        flex-direction: column; /* Stack links vertically */
        gap: 5px; /* Add spacing between links */
    }

    /* Cookie banner */
    #cookie-banner {
        flex-direction: column; /* Stack text and button vertically */
        text-align: center; /* Center-align the content */
        padding: 20px; /* Add padding for spacing */
    }

    #cookie-banner button {
        margin: 10px 0 0; /* Add spacing above the button */
        width: 100%; /* Make the button take full width */
    }
}

/* General Mobile Styles for Smaller Screens */
@media (max-width: 480px) {
    .nav-buttons a {
        font-size: 16px; /* Further reduce font size */
    }

    .overlay-logo {
        max-width: 100px; /* Further reduce the size of the overlay logo */
    }

    #front-page-text {
        font-size: 16px; /* Adjust font size */
    }

    .button-image {
        width: 100%; /* Ensure images are fully responsive */
    }

    footer {
        font-size: 14px; /* Reduce font size for footer text */
    }
}