/* Global Styles */
html {
	scroll-behavior: smooth; /* Enables smooth scrolling */
}

body {
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
	line-height: 1.6;
}

header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: white;
	padding: 20px 50px; /* Add padding for more space */
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Add shadow for a clean separation */
}

header .logo img {
	max-height: 50px;
}

header nav ul {
	list-style: none;
	display: flex;
	gap: 30px; /* Increase gap between nav links */
}

nav ul li a {
	color: #303d6a;
	text-decoration: none;
	font-size: 16px;
}

nav ul li a:hover {
	text-decoration: underline; /* Add hover effect to links */
}

/* Sections */
section {
	padding: 40px 40px; /* Increase padding for better spacing */
}

.carousel {
	display: flex;
	justify-content: center;
	overflow: hidden;
}

#carousel img {	
	max-width: 100%;
	height: auto;
	border-radius: 5px; /* Add rounded corners to images */
}

/* Footer Styles (Maintained from before for consistency) */
footer {
	display: flex;
	justify-content: space-between;
	background-color: #303d6a;
	padding: 40px 100px;
	color: white;
}

.footer-nav ul li a {
	color: white;
	text-decoration: none;
}

.footer-nav ul li a:hover {
	text-decoration: underline;
}

/* Footer */
footer {
	display: flex;
	justify-content: space-between;
	background-color: #303d6a;
	padding: 40px 100px;
	color: white;
}

footer .contact {
	max-width: 300px;
}

footer .contact i {
	margin-right: 10px;
}

/* Footer Navigation - Vertical Layout for Both Desktop and Mobile */
footer nav ul {
	list-style: none;
	padding-left: 0;
}

.footer-nav ul li {
	margin-bottom: 10px; /* Space between list items */
}

.footer-nav ul li a {
	color: white;
	text-decoration: none;
}

.footer-nav ul li a:hover {
	text-decoration: underline;
}

/* Remove Flex or Inline Styles for Desktop */
footer nav {
	display: block; /* Ensure links are stacked vertically */
}

/* Copyright Section */
.copyright {
	background-color:  white;
	text-align: center;
	padding: 15px 0; /* Added more padding for a cleaner appearance */
	color: #303d6a;
	font-size: 14px;
	border-top: 1px solid rgba(255, 255, 255, 0.2); /* Optional: subtle border to separate the footer */
}

.copyright p {
	margin: 0;
	letter-spacing: 0.5px; /* Slight letter spacing for a more refined look */
}
