* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--charcoal: #1a2332;
	--slate: #2d3748;
	--navy: #2c5282;
	--navy-light: #3d6ba8;
	--gold: #d4af37;
	--gold-muted: #c29d2e;
	--light-gray: #e2e8f0;
	--white: #ffffff;
	--text-primary: #f7fafc;
	--text-secondary: #cbd5e0;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Georgia Pro", Georgia, "Times New Roman", serif;
	line-height: 1.6;
	color: var(--text-primary);
	background-color: var(--charcoal);
}

h1,
h2,
h3 {
	line-height: 1.2;
	margin-bottom: 1rem;
}

h1 {
	font-size: 3rem;
	color: var(--white);
}

h2 {
	font-size: 2.5rem;
	font-weight: normal;
	color: var(--gold);
	text-align: center;
	margin-bottom: 3rem;
}

h2 svg {
	stroke: var(--gold);
	width: 40px;
	height: 40px;
	margin-top: -10px;
	vertical-align: middle;
}

h3 {
	font-size: 1.5rem;
	color: var(--white);
}

a {
	color: var(--gold);
}

section {
	padding: 5rem 2rem;
}

section > * {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

#header {
	background-color: rgba(26, 35, 50, 0.95);
	backdrop-filter: blur(10px);
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.7);
}

#nav {
	max-width: 1200px;
	margin: 0 auto;
	padding: 1rem 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.nav-links {
	display: flex;
	gap: 2rem;
	list-style: none;
}

.nav-links a {
	font-size: 1.1em;
	color: var(--text-primary);
	text-decoration: none;
	transition: color 0.3s ease;
	font-weight: 500;
}

.nav-links a:hover,
.nav-links a:focus {
	color: var(--gold);
}

.menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
}

.menu-toggle svg {
	stroke: var(--text-primary);
}

#logo {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--gold);
	text-decoration: none;
}

#hero {
	max-width: 100%;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: linear-gradient(135deg, var(--navy) 0%, var(--charcoal) 100%);
	background-image: url(images/bg.jpg);
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	position: relative;
	padding: 8rem 2rem;
}

#hero:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(26, 35, 50, 0.1);
}

.hero-content {
	position: relative;
	z-index: 1;
	max-width: 800px;
}

#hero h1 {
	margin-bottom: 1.5rem;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

#hero p {
	font-size: 1.25rem;
	margin-bottom: 2rem;
	color: var(--text-secondary);
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

#services {
	background-color: #1e2a3a;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.service-card {
	background-color: var(--slate);
	padding: 2rem;
	border-radius: 8px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border: 1px solid rgba(212, 175, 55, 0.1);
}

.service-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
	border-color: var(--gold);
}

.service-icon {
	width: 48px;
	height: 48px;
	margin-bottom: 1rem;
	stroke: var(--gold);
}

.service-card h3 {
	margin-bottom: 0.5rem;
}

.service-card p {
	color: var(--text-secondary);
	font-size: 0.95rem;
}

#portfolio {
	background-color: #212f41;
}

.portfolio-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.portfolio-card {
	background-color: var(--slate);
	padding: 2rem;
	border-radius: 8px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border: 1px solid rgba(212, 175, 55, 0.1);
	cursor: pointer;
	text-align: center;
}

.portfolio-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
	border-color: var(--gold);
}

.portfolio-card img {
	width: 100%;
	height: auto;
	border-radius: 4px;
	margin-bottom: 1rem;
	object-fit: contain;
	aspect-ratio: 16 / 9;
}

.portfolio-icon {
	width: 64px;
	height: 64px;
	margin: 0 auto 1rem;
	stroke: var(--gold);
}

.portfolio-card h3 {
	margin-bottom: 0.5rem;
}

.portfolio-card p {
	color: var(--text-secondary);
	font-size: 0.95rem;
}

#expertise {
	background-color: #1e2a3a;
}

.expertise-content {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.expertise-content p {
	font-size: 1.3rem;
	color: var(--text-secondary);
	margin-bottom: 1.5rem;
	line-height: 1.8;
}

.expertise-highlights {
	display: flex;
	justify-content: center;
	gap: 3rem;
	margin-top: 2rem;
	flex-wrap: wrap;
}

.highlight-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
}

.highlight-item svg {
	stroke: var(--gold);
	width: 32px;
	height: 32px;
}

.highlight-item span {
	color: var(--text-primary);
	font-weight: 600;
}

#why {
	background-color: #212f41;
	text-align: center;
}

#why p {
	font-size: 1.3rem;
	color: var(--text-secondary);
	max-width: 700px;
	margin: 0 auto 2rem;
	line-height: 1.8;
}

#contact {
	background-color: #1e2a3a;
}

.contact-form {
	max-width: 600px;
	margin: 0 auto;
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	color: var(--text-primary);
	font-weight: 600;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 0.75rem;
	background-color: var(--slate);
	border: 1px solid rgba(212, 175, 55, 0.2);
	border-radius: 4px;
	color: var(--text-primary);
	font-family: inherit;
	font-size: 1rem;
	transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--gold);
}

.form-group textarea {
	resize: vertical;
	min-height: 150px;
}

.form-submit {
	text-align: center;
}

.form-submit button {
	background-color: var(--navy);
	color: var(--white);
	padding: 1rem 3rem;
	border: 2px solid var(--navy);
	border-radius: 4px;
	font-size: 1.1rem;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.form-submit button:hover,
.form-submit button:focus {
	background-color: var(--navy-light);
	border-color: var(--navy-light);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(44, 82, 130, 0.4);
}

#footer {
	background-color: rgba(26, 35, 50, 0.95);
	padding: 3rem 2rem 2rem;
	text-align: center;
}

#footer p {
	color: var(--text-secondary);
	margin-bottom: 1rem;
}

.button {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background-color: var(--gold);
	color: var(--charcoal);
	padding: 1rem 2.5rem;
	text-decoration: none;
	font-weight: 700;
	font-size: 1.1rem;
	border-radius: 4px;
	transition: all 0.3s ease;
	border: 2px solid var(--gold);
}

.button svg {
	width: 20px;
	height: 20px;
	stroke: var(--charcoal);
}

.button:hover,
.button:focus {
	background-color: var(--gold-muted);
	border-color: var(--gold-muted);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.social-links {
	display: flex;
	justify-content: center;
	gap: 1.5rem;
	margin-bottom: 2rem;
	flex-wrap: wrap;
}

.social-links a {
	color: var(--text-secondary);
	transition: color 0.3s ease;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	text-decoration: none;
}

.social-links a:hover {
	color: var(--gold);
}

.social-links svg {
	width: 20px;
	height: 20px;
	fill: currentColor;
}

.modal {
	display: none;
	position: fixed;
	z-index: 2000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.9);
	align-items: center;
	justify-content: center;
}

.modal.active {
	display: flex;
}

.modal-content {
	max-width: 90%;
	max-height: 90%;
	position: relative;
}

.modal-content img {
	width: 100%;
	height: auto;
	max-height: 90vh;
	object-fit: contain;
}

.modal-close {
	position: absolute;
	top: 0;
	right: 0;
	color: var(--white);
	font-size: 40px;
	font-weight: 300;
	cursor: pointer;
	background: none;
	border: none;
	padding: 0;
	width: 40px;
	height: 40px;
	line-height: 1;
}

.modal-close:hover {
	color: var(--gold);
}

.skip-link {
	position: absolute;
	top: -9999px;
	left: 0;
	background: var(--navy);
	color: var(--white);
	padding: 8px 16px;
	text-decoration: none;
	z-index: 9999;
}

.skip-link:focus {
	top: 0;
}

/* Blog Styles */

#blog-index {
	background-color: #1e2a3a;
	min-height: 60vh;
}

#blog-index h1 {
	text-align: center;
	margin-bottom: 2rem;
}

.blog-search {
	max-width: 600px;
	margin: 0 auto 3rem;
}

.blog-search input {
	width: 100%;
	padding: 1rem;
	background-color: var(--slate);
	border: 1px solid rgba(212, 175, 55, 0.2);
	border-radius: 4px;
	color: var(--text-primary);
	font-family: inherit;
	font-size: 1rem;
	transition: border-color 0.3s ease;
}

.blog-search input:focus {
	outline: none;
	border-color: var(--gold);
}

.article-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.article-card {
	background-color: var(--slate);
	border-radius: 8px;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border: 1px solid rgba(212, 175, 55, 0.1);
}

.article-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
	border-color: var(--gold);
}

.article-card a {
	text-decoration: none;
	color: inherit;
	display: block;
}

.article-card img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.article-content {
	padding: 1.5rem;
}

.article-card h2 {
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
	text-align: left;
	color: var(--white);
}

.article-category {
	color: var(--gold);
}

.article-card p {
	color: var(--text-secondary);
	font-size: 0.95rem;
	line-height: 1.6;
}

.no-results {
	text-align: center;
	padding: 3rem;
	color: var(--text-secondary);
}

#blog-single .blog-article {
	max-width: 750px;
	margin: 0 auto;
	padding: 3rem 2rem;
}

.featured-image {
	width: 100%;
	height: auto;
	border-radius: 8px;
	margin-bottom: 2rem;
}

#blog-single .blog-article h1 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	line-height: 1.2;
}

#blog-single .blog-article .article-meta {
	display: flex;
	gap: 1.5rem;
	flex-wrap: wrap;
	font-size: 0.95rem;
	color: var(--text-secondary);
	border-bottom: 1px solid rgba(212, 175, 55, 0.2);
	padding-bottom: 1rem;
}

#blog-single .blog-article .article-meta .author a {
	color: var(--gold);
	text-decoration: none;
}

#blog-single .blog-article .article-meta .category {
	color: var(--gold);
}

#blog-single .blog-article .article-content {
	font-size: 1.1rem;
	line-height: 1.8;
	color: var(--text-primary);
	padding: 0;
}

#blog-single .blog-article .article-content h2 {
	font-size: 1.75rem;
	margin-top: 2.5rem;
	margin-bottom: 1rem;
	text-align: left;
	color: var(--gold);
}

#blog-single .blog-article .article-content h3 {
	font-size: 1.375rem;
	margin-top: 2rem;
	margin-bottom: 0.75rem;
}

#blog-single .blog-article .article-content p {
	font-size: 1.1em;
	margin-bottom: 1.5rem;
	color: var(--text-primary);
}

#blog-single .blog-article .article-content a {
	color: var(--gold);
	text-decoration: underline;
}

#blog-single .blog-article .article-content a:hover {
	color: var(--gold-muted);
}

#blog-single .blog-article .article-content blockquote {
	margin: 2rem 0;
	padding: 1.5rem 2rem;
	background-color: var(--slate);
	border-left: 4px solid var(--gold);
	font-style: italic;
	color: var(--text-secondary);
}

#blog-single .blog-article .article-content blockquote p {
	margin-bottom: 0;
}

#blog-single .blog-article .article-content blockquote p:last-child {
	margin-bottom: 0;
}

#blog-single .blog-article .article-content blockquote cite {
	display: block;
	margin-top: 1rem;
	font-size: 0.9rem;
	font-style: normal;
	color: var(--gold);
}

#blog-single .blog-article .article-content hr {
	margin: 3rem 0;
	border: none;
	border-top: 1px solid rgba(212, 175, 55, 0.2);
}

#blog-single .blog-article .article-content code {
	padding: 0.2rem 0.4rem;
	background-color: var(--slate);
	border-radius: 3px;
	font-family: 'Courier New', monospace;
	font-size: 0.9em;
	color: var(--gold);
}

#blog-single .blog-article .article-content pre {
	margin: 2rem 0;
	padding: 1.5rem;
	background-color: var(--slate);
	border-radius: 4px;
	overflow-x: auto;
}

#blog-single .blog-article .article-content pre code {
	padding: 0;
	background: none;
	color: var(--text-primary);
}

#blog-single .blog-article .article-content strong {
	font-weight: 700;
	color: var(--white);
}

#blog-single .blog-article .article-content em {
	font-style: italic;
}

#blog-single .blog-article .article-content img {
	max-width: 100%;
	height: auto;
	border-radius: 4px;
	margin: 2rem 0;
}

#blog-single .blog-article .article-content ul,
#blog-single .blog-article .article-content ol {
	margin-bottom: 1.5rem;
	padding-left: 2rem;
}

#blog-single .blog-article .article-content ul {
	list-style-type: disc;
}

#blog-single .blog-article .article-content ol {
	list-style-type: decimal;
}

#blog-single .blog-article .article-content li {
	margin-bottom: 0.75rem;
	line-height: 1.8;
	color: var(--text-primary);
}

#blog-single .blog-article .article-content li:last-child {
	margin-bottom: 0;
}

#blog-single .blog-article .article-content ul ul,
#blog-single .blog-article .article-content ol ol,
#blog-single .blog-article .article-content ul ol,
#blog-single .blog-article .article-content ol ul {
	margin-top: 0.75rem;
	margin-bottom: 0.75rem;
}

#blog-single .blog-article .article-content table {
	width: 100%;
	margin: 2rem 0;
	border-collapse: collapse;
	background-color: var(--slate);
}

#blog-single .blog-article .article-content th,
#blog-single .blog-article .article-content td {
	padding: 0.75rem 1rem;
	border: 1px solid rgba(212, 175, 55, 0.2);
	text-align: left;
}

#blog-single .blog-article .article-content th {
	background-color: rgba(212, 175, 55, 0.1);
	font-weight: 700;
	color: var(--gold);
}

#blog-single .blog-article .article-content td {
	color: var(--text-primary);
}

.article-tags {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
	margin-top: 3rem;
}

.tag {
	background-color: var(--slate);
	color: var(--text-secondary);
	padding: 0.25rem 0.75rem;
	border-radius: 4px;
	font-size: 0.875rem;
	border: 1px solid rgba(212, 175, 55, 0.1);
}

.article-footer {
	margin-top: 3rem;
	padding-top: 3rem;
	border-top: 1px solid rgba(212, 175, 55, 0.2);
}

#blog .article-footer {
	padding: 3rem;
}

.cta-box {
	max-width: 750px;
	background-color: var(--slate);
	padding: 2rem;
	margin: 0 auto;
	border-radius: 8px;
	text-align: center;
	border: 1px solid rgba(212, 175, 55, 0.2);
}

.cta-box h3 {
	margin-bottom: 1rem;
	color: var(--gold);
}

.cta-box p {
	margin-bottom: 1.5rem;
	color: var(--text-secondary);
}

.article-share {
	display: flex;
	gap: 1rem;
	margin: 0 0 2rem;
	padding: 2rem 0;
	border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.article-share a {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--navy);
	padding: 1rem;
	border-radius: 4px;
	transition: all 0.3s ease;
	text-decoration: none;
	background:  var(--gold);
}

.article-share a:hover,
.article-share a:focus {
	opacity: 0.8;
	transform: translateY(-2px);
}

.article-share svg {
	width: 20px;
	height: 20px;
}

@media (max-width: 768px) {

	.menu-toggle {
		display: block;
	}

	.nav-links {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background-color: rgba(26, 35, 50, 0.98);
		flex-direction: column;
		gap: 0;
		padding: 1rem 0;
		display: none;
		box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
	}

	.nav-links.active {
		display: flex;
	}

	.nav-links li {
		padding: 0.75rem 2rem;
	}

	.nav-links a {
		display: block;
	}

	h1 {
		font-size: 2rem;
	}

	h2 {
		font-size: 2rem;
	}

	section {
		padding: 3rem 1.5rem;
	}

	.expertise-highlights {
		gap: 2rem;
	}

	#expertise p,
	#why p {
		text-align: left;
	}

	#blog-single .blog-article h1 {
		font-size: 1.75rem;
	}

	#blog-single .blog-article .article-content h2 {
		font-size: 1.5rem;
	}

	.article-grid {
		grid-template-columns: 1fr;
	}

	.article-share {
		gap: 0.5rem;
	}

	.article-share a {
		padding: 0.75rem;
	}

	.article-share svg {
		width: 16px;
		height: 16px;
	}

}