body {
    font-family: 'Calibri', Arial, sans-serif; /* Updated to Calibri */
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #E6E6E3; /* Light silver */
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    color: black;
    padding: 10px 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
    box-sizing: border-box;
}

.logo img {
    height: 90px; /* Increased height */
    padding: -20px; /* Added padding */
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin: 0 10px;
}

nav ul li a {
    color: #202A44;
    text-decoration: none;
}

nav ul li a:hover {
    text-decoration: underline;
}

main {
    flex: 1;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: center; /* Center align the content horizontally */
    align-items: center; /* Center align the content vertically */
}

.image-container {
    position: relative;
    text-align: left;
    color: white;
}

.main-image {
	width: 100%;
    height: auto;
    object-fit: cover;
	margin-top: -20px;
}

.image-text {
    position: absolute;
    top: 30%;
    right: 20px; /* Align to the right side */
    transform: translateY(-50%);
    background-color: #202A44; /* Navy blue background */
    color: white;
    padding: 20px;
    border: 2px solid white; /* White border */
    border-radius: 10px; /* Rounded corners */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    width: 700px; /* Fixed width */
    height: auto; /* Adjust height automatically */
    text-align: left; /* Justify the text */
}
.image-text2 {
    position: absolute;
    top: 80%;
    right: 20px; /* Align to the right side */
    transform: translateY(-50%);
    background-color: #202A44; /* Navy blue background */
    color: white;
    padding: 20px;
    border: 2px solid white; /* White border */
    border-radius: 10px; /* Rounded corners */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    width: 700px; /* Fixed width */
    height: auto; /* Adjust height automatically */
    text-align: left; /* Justify the text */
}
.contact-text {
    position: absolute;
    top: 20%;
    transform: translateY(-50%);
    background-color: #202A44; /* Navy blue background */
    color: white;
    padding: 10px;
    border: 2px solid white; /* White border */
    border-radius: 10px; /* Rounded corners */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    width: auto; /* Fixed width */
    height: auto; /* Adjust height automatically */
    text-align: left; /* Justify the text */
}

/*.image-gallery {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

.image-gallery img {
    max-width: 80px; /* Adjust the size of the images as needed */
    /*margin: 0 10px; /* Adjust spacing between the images */
/*} */


.slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.3s ease;
}

.image-gallery {
    display: flex;
}

.image-gallery img {
    max-width: 80px; /* Adjust the size of the images as needed */
    margin: 0 10px; /* Adjust spacing between the images */
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 1;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}





footer {
    background-color: #333;
    color: white;
    text-align: left;
    padding: 10px 20px;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    bottom: 0;
}

footer .social-links {
    margin-top: 10px;
    text-align: right;
    position: absolute;
    bottom: 3px;
    right: 20px;
}

footer .social-links a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
}

footer .social-links a:hover {
    text-decoration: underline;
}

footer .social-links i {
    font-size: 18px;
}

/* Contact Form Styles */
form {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 400px;
    margin: auto;
	padding: 20px;
}

label {
    margin-top: 10px;
}

input, textarea {
    margin-top: 5px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: 'Calibri', Arial, sans-serif; /* Updated to Calibri */
    font-size: 16px;
}

button {
    margin-top: 20px;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    background-color: #333;
    color: white;
    font-family: 'Calibri', Arial, sans-serif; /* Updated to Calibri */
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background-color: #555;
}

/* Media Queries for Mobile Optimization */
@media (max-width: 768px) {
	
	nav ul {
        flex-direction: row; /* Align items in a single line */
        width: 100%;
        display: flex; /* Show the navigation links by default */
    }

    nav ul li {
        margin: 0px 5px; /* Adjust margin for better spacing */
    }
    .image-text {
        position: static;
        margin-top: 40%;
        width: calc(100% - 20px); /* Adjust width for padding */
		padding: 10px;
	 }
    .image-text2 {
        position: static;
		width: calc(100% - 20px); /* Adjust width for padding */
		padding: 10px;
    }
    .social-links {
        position: static;
        margin-top: 20px;
        text-align: center;
    }
}
