body {
	font-family: sans-serif;
	margin: 0;
	padding: 0;
	background-color: #f8f9fa;
}

 path {
  stroke: #347fff; /* or fill: #347fff depending on the file */
}


#logo {
	position: fixed;
	top: 0;
	left: 0;
}

.dark-bg {
	background-color: #333;
	color: #f4f4f4;
}

.blue-bg {
	background-color: #3A6EA5;
}

header {
	background: #333;
	color: #fff;
	padding: 15px 0;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	position: sticky;
	top: 0;
	z-index: 1000;
}

header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

header h1 {
	margin: 0;
	font-size: 1.8em;
}

header nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
}

header nav ul li {
	margin-left: 20px;
}

header nav ul li a {
	color: #333;
	font-weight: bold;
	padding: 5px 0;
	transition: color 0.3s ease;
}

header nav ul li a:hover {
	color: #3A6EA5;
}

.fixed {
	position: fixed;
}

.w-full {
	width: 100%;
}

.bg-white {
	--tw-bg-opacity: 1;
	background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}

.border-gray-200 {
	--tw-border-opacity: 1;
	border-color: rgb(229 231 235 / var(--tw-border-opacity));
}

.flex {
	display: flex;
}

.flex-wrap {
	flex-wrap: wrap;
}

.items-center {
	align-items: center;
}

.justify-between {
	justify-content: space-between;
}

.max-w-screen-xl {
	max-width: 1200px;
}

.px-4 {
	padding-left: 1rem;
	padding-right: 1rem;
}

.mx-auto {
	margin-left: auto;
	margin-right: auto;
}

.h-6 {
	height: 4.5rem;
}

.mr-3 {
	margin-right: 0.75rem;
}

.h-9 {
	height: 2.25rem;
}

@media (min-width: 1024px) {
	.lg\:order-2 {
		order: 2;
	}
}

.mr-4 {
	margin-right: 1rem;
}

.inline-block {
	display: inline-block;
}

.mt-5 {
	margin-top: 1.25rem;
}

.space-x-5> :not([hidden])~ :not([hidden]) {
	--tw-space-x-reverse: 0;
	margin-right: calc(1.25rem * var(--tw-space-x-reverse));
	margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse)));
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px 0;
}

.grid-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
	/* increase or decrease based on desired spacing */
	max-width: 1200px;
	/* limits how wide the grid can stretch */
	margin: 0 auto;
	/* center grid in page */
	padding: 20px;
	justify-items: center;
}

@media (min-width: 768px) {
	.grid-container {
		grid-template-columns: repeat(3, 1fr);
	}
}

.grid-item {
	background-color: #f0f0f0;
	padding: 20px;
	text-align: center;
	border: 1px solid #ddd;
	max-width: 300px;
	width: 80%;
	border-radius: 10px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.grid-item img {
	max-width: 100%;
	/* Make images responsive */
	height: auto;
	/* Maintain aspect ratio */
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
	/* Smooth hover effect */
}

.grid-item h4 {
	font-size: 1.2rem;
	margin-bottom: 10px;
}

.grid-item p {
	font-size: 0.95rem;
	color: #444;
}

#contact {
	padding: 60px 0;
	text-align: center;
}

#contact form {
	max-width: 600px;
	margin: 30px auto;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

#contact form input,
#contact form textarea {
	padding: 12px;
	border: 1px solid #3A6EA5;
	border-radius: 5px;
	font-size: 1.125rem;
	width: 100%;
	box-sizing: border-box;
	/* Ensures padding doesn't increase width */
}

#contact form button.btn {
    width: auto;
    align-self: flex-start;
    margin-top: 10px;
    background: #3A6EA5;
    color: #fff;
    /* Add this line to set the font size */
    font-size: 1.125rem; /* Adjust this value as needed. Common sizes are 1rem (16px), 1.125rem (18px), etc. */
    padding: 10px 20px; /* Add some padding for a better button appearance */
    border: none; /* Remove default button border */
    border-radius: 5px; /* Optional: adds slight rounded corners */
    cursor: pointer; /* Indicates it's clickable */
    transition: background 0.3s ease; /* Smooth hover effect */
}

/* Optional: Add a hover effect for better user experience */
#contact form button.btn:hover {
    background: #0056b3; /* A darker shade of blue on hover */
}

/* It's also good practice to ensure your inputs and textarea have a consistent font size */
#contact form input,
#contact form textarea {
    font-size: 1rem; /* Ensure these are also consistent with your desired text size */
    padding: 10px; /* Add some padding to inputs for better usability */
    margin-bottom: 10px; /* Space out your form fields */
    width: 100%; /* Make them take full width */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

.contact-info {
	margin-top: 30px;
	font-size: 1.1em;
}

footer {
	background: #333;
	color: #fff;
	text-align: center;
	padding: 10px 0;
	font-size: 0.9em;
}

.social-links {
	list-style: none;
	/* Remove bullet points from list */
	padding: 0;
	margin: 0;
	display: flex;
	/* Arrange links horizontally */
	gap: 20px;
	/* Space between links */
}

.social-links li a {
	color: white;
	/* Set link color to white */
	text-decoration: none;
	/* Remove underline */
	font-size: 30px;
	/* Adjust icon size */
	transition: color 0.3s ease;
	/* Smooth transition on hover */
}

.social-links li a:hover {
	color: #ccc;
	/* Slightly grey on hover for feedback */
}

/* If not using Font Awesome, you can use text or images */
.social-links li a.text-link {
	font-size: 18px;
	border: 1px solid white;
	padding: 5px 10px;
	border-radius: 5px;

}
