:root {
	--primary-color: #003366;
	--secondary-color: #1E5A99;
	--accent-color: #F39C12;
	--dark-grey: #333333;
	--light-grey: #f4f4f4;
	--medium-grey: #e0e0e0;
	--border-grey: #ccc;
	--white-color: #ffffff;
	--border-color: #002244;
	--font-family: 'Roboto', sans-serif;
	--heading-font: 'Teko', sans-serif;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-family);
	line-height: 1.6;
	color: var(--dark-grey);
	background-color: var(--white-color);
}

img {
	max-width: 100%;
	height: auto;
}

a {
	color: var(--secondary-color);
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

.container,
.container-content {
	margin: 0 auto;
	padding: 0 20px;
}

.container {
	max-width: 800px;
}

.container-content {
	max-width: 960px;
}

.bg-light {
	background-color: var(--light-grey);
}

.text-left {
	text-align: left;
}

.text-center {
	text-align: center;
}

.large-text {
	font-size: 1.2rem;
	margin-bottom: 40px;
}

.section-divider {
	border: 0;
	height: 1px;
	background-color: var(--medium-grey);
	margin: 40px auto;
}

.header {
	user-select: none;
	background-color: var(--white-color);
	padding: 1rem 0;
	position: absolute;
	width: 100%;
	top: 0;
	z-index: 1000;
}

.header-top {
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px 15px;
	gap: 20px;
}

.logo-container,
.customer-logo,
.facility-image {
	pointer-events: none;
	user-select: none;
}

.logo-container {
	flex-shrink: 0;
}

.logo-container img {
	max-height: 90px;
}

.header-center {
	text-align: center;
}

.business-name {
	font-family: var(--heading-font);
	font-size: 3.5rem;
	color: var(--dark-grey);
	line-height: 1;
	margin: 0;
}

.tagline {
	font-size: 1rem;
	color: var(--dark-grey);
}

.nav {
	width: 100%;
	padding-top: 10px;
}

.nav-list {
	list-style: none;
	display: flex;
	justify-content: center;
	gap: 15px;
}

.nav-link {
	text-decoration: none;
	color: var(--dark-grey);
	font-weight: 700;
	padding: 8px 20px;
	border: 2px solid var(--border-color);
	transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
	background-color: var(--primary-color);
	color: var(--white-color);
	border-color: var(--primary-color);
	text-decoration: none;
}

.hamburger {
	display: none;
	cursor: pointer;
	background: none;
	border: none;
	position: absolute;
	right: 20px;
	top: 60%;
	transform: translateY(-50%);
}

.hamburger span {
	display: block;
	width: 25px;
	height: 3px;
	margin: 5px 0;
	background-color: var(--primary-color);
	transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.hamburger.active span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
	opacity: 0;
}

.hamburger.active span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -6px);
}

.footer {
	background-color: var(--dark-grey);
	color: var(--white-color);
	text-align: center;
	padding: 20px 0;
	user-select: none;
}

.footer a {
	color: var(--white-color);
	transition: color 0.3s ease;
}

.footer a:hover {
	color: #cfcfcf;
	text-decoration: none;
}

.hero {
	padding-top: 200px;
}

.page-hero {
	padding: 60px 20px;
	margin-top: 150px;
	text-align: center;
	color: var(--white-color);
	background-size: cover;
	background-position: center;
}

.page-hero h2 {
	font-size: 3rem;
	color: var(--white-color);
	background-color: rgba(0, 0, 0, 0.5);
	display: inline-block;
	padding: 10px 20px;
}

.content-section {
	padding: 60px 0;
	text-align: center;
}

.content-section h2 {
	font-size: 2.5rem;
	color: var(--primary-color);
	margin-bottom: 20px;
}

.content-section p {
	font-size: 1.1rem;
	max-width: 800px;
	margin: 0 auto;
}

.image-grid,
.benefits-grid,
.contact-grid {
	display: grid;
	gap: 40px;
}

.image-grid {
	grid-template-columns: 1fr 1fr;
	margin-top: 40px;
}

.benefits-grid {
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	text-align: left;
}

.contact-grid {
	grid-template-columns: 2fr 1fr;
	text-align: left;
}

.about-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	text-align: left;
}

.about-item {
	padding: 20px;
	border-bottom: 1px solid #eee;
}

.about-item:last-child {
	border-bottom: none;
}

.about-item h3,
.contact-form-container h3,
.contact-info-container h3 {
	color: var(--primary-color);
	font-size: 1.8rem;
	margin-bottom: 20px;
}

.contact-form {
	max-width: 700px;
	margin: 30px auto 0;
}

.form-group {
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: 700;
	color: var(--dark-grey);
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 12px;
	border: 1px solid var(--border-grey);
	font-family: var(--font-family);
	font-size: 1rem;
	resize: vertical;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 5px rgba(0, 51, 102, 0.2);
}

.btn-submit,
.cta-button {
	display: inline-block;
	font-weight: 700;
	color: var(--white-color);
	background-color: var(--primary-color);
	border: none;
	cursor: pointer;
	text-decoration: none;
	transition: background-color 0.3s ease;
	padding: 15px;
	font-size: 1.1rem;
}

.btn-submit {
	width: 100%;
}

.cta-button {
	padding: 15px 30px;
	margin-top: 20px;
}

.btn-submit:hover,
.cta-button:hover {
	background-color: var(--secondary-color);
	color: var(--white-color);
}

.product-list,
.services-list {
	list-style-type: none;
	padding-left: 0;
	margin: 1.5rem 0;
}

.product-list li,
.services-list li,
.benefit-item {
	padding: 10px 15px;
	margin-bottom: 8px;
	background-color: var(--light-grey);
	border-left: 4px solid var(--primary-color);
	font-weight: 500;
}

.services-list li {
	border-left-color: var(--secondary-color);
}

.statement-quote {
	border-left: 5px solid var(--primary-color);
	margin: 40px auto;
	padding: 20px 30px;
	background-color: var(--light-grey);
	font-size: 1.2rem;
	font-style: italic;
}

.statement-quote.large p {
	font-size: 1.5rem;
	font-weight: 700;
	font-style: normal;
	text-align: center;
	line-height: 1.4;
}

.table-container {
	width: 100%;
	overflow-x: auto;
	margin: 2rem 0;
}

.products-table {
	width: 100%;
	border-collapse: collapse;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.products-table thead {
	background-color: var(--primary-color);
	color: var(--white-color);
}

.products-table th,
.products-table td {
	padding: 12px 15px;
	text-align: left;
	border-bottom: 1px solid var(--medium-grey);
}

.products-table th {
	font-weight: 700;
	text-transform: uppercase;
	font-size: 0.9rem;
	letter-spacing: 0.5px;
}

.products-table tbody tr:nth-child(even) {
	background-color: var(--light-grey);
}

.products-table tbody tr:hover {
	background-color: #f0f7ff;
}

.carousel {
	position: relative;
	max-width: 100%;
	height: 300px;
	overflow: hidden;
}

.carousel-inner {
	display: flex;
	height: 100%;
	transition: transform 0.5s ease-in-out;
}

.carousel-item {
	min-width: 100%;
	height: 100%;
	position: relative;
}

.carousel-item img {
	filter: brightness(0.7);
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.carousel-caption {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: var(--white-color);
	background-color: rgba(0, 0, 0, 0.5);
	padding: 20px;
	text-align: center;
	width: 80%;
	max-width: 600px;
}

.carousel-caption h2 {
	font-size: 2rem;
	margin-bottom: 0.5rem;
}

.carousel-control {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background-color: rgba(0, 0, 0, 0.5);
	color: white;
	border: none;
	padding: 15px;
	cursor: pointer;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.3s ease;
	width: 50px;
	height: 50px;
}

.carousel-control:hover {
	background-color: rgba(0, 0, 0, 0.8)
}

.prev {
	left: 15px;
}

.map {
	width: 100%;
	height: 300px
}

.next {
	right: 15px;
}

@media (max-width: 992px) {
	.map {
		display: none;
		width: 30px;
	}

	.form-group input,
	textarea {
		max-width: 350px;
	}

	.business-name {
		font-size: 2.8rem;
	}

	.tagline {
		font-size: 0.9rem;
	}

	.hero {
		padding-top: 180px;
	}

	.page-hero {
		margin-top: 180px;
	}

	.logo-right {
		display: none;
	}

	.contact-grid {
		grid-template-columns: 1fr;
	}

	.carousel-control {
		display: none;
	}
}

@media (max-width: 768px) {
	.header-top {
		flex-direction: column;
		gap: 15px;
	}

	.header-center {
		order: -1;
	}

	.business-name {
		font-size: 2.5rem;
	}

	.tagline {
		font-size: 0.8rem;
	}

	.hero {
		padding-top: 320px;
	}

	.page-hero {
		margin-top: 300px;
	}

	.page-hero h2 {
		font-size: 2.2rem;
	}

	.hamburger {
		display: block;
	}

	.nav {
		border-top: none;
		padding-top: 0;
		position: absolute;
		top: 100%;
		left: 0;
		background: var(--white-color);
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.5s ease-in-out;
		box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
	}

	.nav.active {
		max-height: 300px;
	}

	.nav-list {
		flex-direction: column;
		align-items: center;
		padding: 20px 0;
		width: 100%;
	}

	.nav-item {
		margin: 10px 0;
	}

	.image-grid {
		grid-template-columns: 1fr;
	}

	.products-table thead {
		display: none;
	}

	.products-table tbody tr {
		display: block;
		margin-bottom: 1rem;
		border: 1px solid var(--medium-grey);
	}

	.products-table tbody td {
		display: flex;
		justify-content: space-between;
		align-items: center;
		font-size: 0.9rem;
	}

	.products-table tbody td::before {
		content: attr(data-label);
		font-weight: 700;
		color: var(--primary-color);
		margin-right: 1rem;
	}

	.carousel {
		margin-top: 130px;
	}

	.carousel-caption {
		width: 90%;
		margin-top: 20px;
		padding: 15px;
	}

	.carousel-caption h2 {
		font-size: 1.5rem;
	}

	.carousel-caption p {
		font-size: 1rem;
	}

	.content-section h2 {
		font-size: 2rem;
	}
}

@media (max-width: 480px) {
	.hero {
		padding-top: 50px;
	}
}