:root {
	--logyq-blue: #007bff; /* Primary Blue (Adjust to match your logo) */
	--dark-blue: #1f2937; /* Deep Blue/Near Black for contrast */
	--light-gray: #f4f4f9;
	--white: #ffffff;
	--text-dark: #333;
	--text-light: #d1d5db;
	--font-family: 'Montserrat', sans-serif;
}

/* Global Reset */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* Base Styles */
body {
	font-family: var(--font-family);
	line-height: 1.6;
	color: var(--text-dark);
	background-color: var(--white);
	overflow-x: hidden;
}

a {
	text-decoration: none;
	color: var(--logyq-blue);
	transition: color 0.3s;
}

h1, h2, h3 {
	line-height: 1.2;
	margin-bottom: 0.5rem;
	font-weight: 700;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.section-padding {
	padding: 5rem 0;
}

.section-title {
	font-size: 2.5rem;
	text-align: center;
	margin-bottom: 0.5rem;
	color: var(--dark-blue);
}

.section-subtitle {
	max-width: 600px;
	margin: 0 auto 3rem;
	text-align: center;
	font-size: 1.1rem;
	color: #555;
}

.white-text {
	color: var(--white);
}

.bg-dark-blue {
	background-color: var(--dark-blue);
	color: var(--white);
}

.bg-light-gray {
	background-color: var(--light-gray);
}

/* --- Buttons --- */
.btn {
	display: inline-block;
	padding: 0.8rem 2rem;
	border-radius: 4px;
	font-weight: 600;
	transition: background-color 0.3s, transform 0.1s;
	border: none;
	cursor: pointer;
	text-align: center;
}

.primary-btn {
	background-color: var(--logyq-blue);
	color: var(--white);
	box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

.primary-btn:hover {
	background-color: #0056b3;
	transform: translateY(-2px);
}

.secondary-btn {
	background-color: var(--white);
	color: var(--logyq-blue);
	border: 2px solid var(--logyq-blue);
}

.secondary-btn:hover {
	background-color: var(--logyq-blue);
	color: var(--white);
}

.primary-btn-nav {
	padding: 0.5rem 1.2rem;
	background-color: var(--logyq-blue);
	color: var(--white) !important;
}

/* --- Header & Navigation --- */
#main-header {
	background: var(--white);
	padding: 2rem 0;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
	z-index: 1000;
	position: relative;
}

#main-header.sticky {
	position: fixed;
	top: 0;
	width: 100%;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

#main-header .container {
	max-height: 150px;
	overflow: hidden;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/* LOGO STYLES */
.logo img {
	height: 100px;
	max-width: 350px;
	width: auto;
}

/* Navigation Menu */
#nav-menu ul {
	list-style: none;
	display: none; /* Hidden by default on mobile */
}

#nav-menu a {
	color: var(--dark-blue);
	font-weight: 600;
	padding: 0.5rem 1rem;
	display: block;
}

.menu-toggle {
	background: none;
	border: none;
	color: var(--dark-blue);
	font-size: 1.5rem;
	cursor: pointer;
	display: block; /* Visible on mobile */
}

/* Mobile Menu Active State */
#nav-menu.active ul {
	display: flex;
	flex-direction: column;
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	background: var(--white);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
	padding: 1rem 0;
}

#nav-menu.active ul li {
	border-bottom: 1px solid var(--light-gray);
}

#nav-menu.active ul li:last-child {
	border-bottom: none;
	padding-top: 1rem;
}

#nav-menu.active ul li:last-child a {
	display: block;
	width: fit-content;
	margin: 0 auto;
}

/* --- Hero Section --- */
.hero-section {
	background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8)),
		url('https://via.placeholder.com/1600x800/e0e0e0/333?text=Abstract+AI+Network+Background');
	background-size: cover;
	background-position: center;
	padding: 6rem 0;
	min-height: 70vh;
	display: flex;
	align-items: center;
	text-align: center;
}

.hero-content {
	max-width: 800px;
	margin: 0 auto;
}

.tagline {
	font-weight: 700;
	color: var(--logyq-blue);
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 0.5rem;
}

.hero-section h1 {
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
	color: var(--dark-blue);
}

.hero-section .subtitle {
	font-size: 1.15rem;
	margin-bottom: 2rem;
	color: #555;
}

/* --- Stats Section --- */
.stats-grid {
	display: flex;
	flex-direction: column;
	text-align: center;
	gap: 2rem;
	padding: 1rem 0;
}

.stat-number {
	font-size: 3rem;
	font-weight: 800;
	color: var(--logyq-blue);
}

.stat-label {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--text-light);
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* --- Solutions Grid --- */
.solution-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.solution-card {
	background: var(--white);
	padding: 2.5rem;
	border-radius: 8px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s, box-shadow 0.3s;
}

.solution-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.solution-icon {
	font-size: 2.5rem;
	color: var(--logyq-blue);
	margin-bottom: 1rem;
}

.solution-card h3 {
	font-size: 1.35rem;
	color: var(--dark-blue);
	margin-bottom: 0.75rem;
}

.read-more {
	display: inline-block;
	margin-top: 1rem;
	font-weight: 600;
}

/* --- Sector Expertise --- */
.sector-block {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.5rem;
	padding: 2rem 1.5rem;
	border-radius: 8px;
	margin-bottom: 2rem;
}

.sector-visual i {
	font-size: 3.5rem;
	color: var(--logyq-blue);
}

.sector-text {
	max-width: 600px;
	text-align: center;
}

.sector-text h3 {
	font-size: 1.7rem;
	color: var(--dark-blue);
}

.bg-white {
	background-color: var(--white);
}

/* --- Insights/Blog --- */
.insight-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.insight-card {
	background: var(--white);
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	list-style: none;
}

.insight-card img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.insight-card h4 {
	padding: 1rem 1.5rem 0.5rem;
	font-size: 1.25rem;
	color: var(--dark-blue);
}

.insight-card p {
	padding: 0 1.5rem;
	color: #666;
}

.insight-card .read-more {
	display: block;
	padding: 1rem 1.5rem 1.5rem;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 0.9rem;
}

/* --- About Us --- */
#about .section-title {
	margin-bottom: 3rem;
}

.about-flex {
	display: flex;
	flex-direction: column;
	gap: 3rem;
	align-items: center;
}

.about-text {
	max-width: 600px;
	color: var(--text-light);
}

.about-text p {
	margin-bottom: 1.5rem;
	font-size: 1.1rem;
}

.about-image img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
}

/* Prominent Logo */
.logo-prominent-placement {
	text-align: center;
	margin-top: 4rem;
}

.logo-prominent-placement .large-logo {
	height: auto;
	max-width: 300px;
	width: 100%;
}

/* --- Contact Section --- */
.contact-form {
	max-width: 600px;
	margin: 3rem auto 0;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
	padding: 1rem;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 1rem;
	transition: border-color 0.3s;
}

.contact-form textarea {
	min-height: 150px;
	resize: vertical;
}

.contact-form button {
	margin-top: 1rem;
}

/* --- Footer --- */
footer {
	background: #111827;
	color: #9ca3af;
	padding: 3rem 0;
	font-size: 0.9rem;
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
	text-align: center;
}

.footer-col {
	padding: 1rem;
}

/* Footer Logo */
.footer-logo {
	height: 40px;
	margin-bottom: 0.5rem;
	max-width: 180px;
	width: auto;
	display: block;
	margin-left: auto;
	margin-right: auto;
	filter: brightness(0) invert(1) drop-shadow(0 0 1px rgba(255, 255, 255, 0.5));
}

.footer-col h4 {
	color: var(--white);
	font-size: 1.1rem;
	margin-bottom: 1rem;
}

.footer-col ul {
	list-style: none;
	line-height: 2;
}

.footer-col a {
	color: #9ca3af;
}

.footer-col a:hover {
	color: var(--logyq-blue);
}

/* --- Responsive / Desktop --- */
@media (min-width: 768px) {
	.insight-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	/* Header/Nav */
	#nav-menu ul {
		display: flex;
		flex-direction: row;
		align-items: center;
		gap: 0.5rem;
	}

	.menu-toggle {
		display: none;
	}

	#nav-menu.active ul {
		position: static;
		box-shadow: none;
		padding: 0;
	}

	#nav-menu a {
		padding: 0.5rem 1rem;
		border-bottom: none !important;
	}

	#nav-menu.active ul li {
		border-bottom: none;
	}

	#nav-menu.active ul li:last-child a {
		margin: 0;
	}

	#main-header {
		padding: 1.5rem 0;
	}

	.logo img {
		height: 75px;
	}

	.hero-section {
		min-height: 85vh;
		text-align: left;
	}

	.hero-content {
		margin: 0;
	}

	.hero-section h1 {
		font-size: 3.5rem;
	}

	.stats-grid {
		flex-direction: row;
		justify-content: space-around;
		gap: 0;
		text-align: left;
	}

	.sector-block {
		flex-direction: row;
		text-align: left;
		align-items: center;
		justify-content: space-between;
		padding: 3rem 0;
	}

	.sector-block.left-aligned {
		flex-direction: row-reverse;
	}

	.sector-text {
		max-width: 50%;
		padding: 0 2rem;
	}

	.sector-visual {
		flex-shrink: 0;
		padding: 0 2rem;
	}

	.about-flex {
		flex-direction: row;
		justify-content: space-between;
		align-items: flex-start;
	}

	.about-text {
		flex-basis: 50%;
	}

	.about-image {
		flex-basis: 40%;
	}

	.footer-grid {
		text-align: left;
	}

	.footer-col.logo-col {
		text-align: left;
	}

	.footer-col.logo-col .footer-logo {
		height: 50px;
	}
}