:root {
	--primary-color: #0a0f2e; /* Deep dark blue */
	--secondary-color: #1a1f3f; /* Slightly lighter blue */
	--accent-color-1: #e03cff; /* Neon Pink/Purple */
	--accent-color-2: #00d0ff; /* Neon Cyan */
	--text-color: #e0e0e0; /* Light grey for text */
	--text-dark: #a0a0a0; /* Darker grey for less emphasis */
	--glow-color-1: rgba(224, 60, 255, 0.7);
	--glow-color-2: rgba(0, 208, 255, 0.7);
	--font-primary: "Orbitron", sans-serif; /* Futuristic font */
	--font-secondary: "Roboto", sans-serif; /* Readable font for body */
}

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

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-secondary);
	background: linear-gradient(135deg, var(--primary-color), #05081a);
	color: var(--text-color);
	line-height: 1.6;
	overflow-x: hidden;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

main {
	flex: 1;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

h1,
h2,
h3,
h4 {
	font-family: var(--font-primary);
	margin-bottom: 1rem;
	color: #fff; /* Brighter white for headings */
	text-shadow: 0 0 5px var(--glow-color-2), 0 0 10px var(--glow-color-2);
}

h1 {
	font-size: 3rem;
	line-height: 1.2;
}

h2 {
	font-size: 2.5rem;
	text-align: center;
	margin-bottom: 2rem;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid var(--accent-color-2);
	display: inline-block; /* Center border properly */
}

h3 {
	font-size: 1.8rem;
	color: var(--accent-color-1);
	text-shadow: 0 0 5px var(--glow-color-1);
}

a {
	color: var(--accent-color-2);
	text-decoration: none;
	transition: color 0.3s ease;
}

a:hover {
	color: var(--accent-color-1);
}

ul {
	list-style: none;
}

img {
	max-width: 100%;
	height: auto;
}

/* --- Header & Navigation --- */
.navbar {
	background-color: rgba(10, 15, 46, 0.8); /* Semi-transparent dark blue */
	backdrop-filter: blur(10px);
	padding: 1rem 0;
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-family: "Hexonia BC", var(--font-primary);
	font-size: 1.8rem;
	font-weight: bold;
	color: #fff;
	text-shadow: 0 0 8px var(--glow-color-1);
}

.logo:hover {
	color: var(--accent-color-1);
}

.nav-links {
	display: flex;
}

.nav-links li {
	margin-left: 2rem;
}

.nav-links a {
	color: var(--text-color);
	padding: 0.5rem;
	position: relative;
	transition: color 0.3s ease;
}

.nav-links a::after {
	content: "";
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--accent-color-1);
	transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
	width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
	color: #fff;
}

.menu-toggle {
	display: none; /* Hidden by default, shown on mobile */
	background: none;
	border: none;
	cursor: pointer;
}

.menu-toggle span {
	display: block;
	width: 25px;
	height: 3px;
	background-color: var(--text-color);
	margin: 5px 0;
	transition: all 0.3s ease;
}

/* --- Buttons --- */
.btn {
	display: inline-block;
	padding: 0.8rem 1.8rem;
	border-radius: 5px;
	font-family: var(--font-primary);
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.3s ease;
	cursor: pointer;
	border: none;
	margin: 0.5rem;
}

.btn-primary {
	background-color: var(--accent-color-1);
	color: #fff;
	box-shadow: 0 0 10px var(--glow-color-1);
}

.btn-primary:hover {
	background-color: var(--accent-color-2);
	box-shadow: 0 0 15px var(--glow-color-2);
	color: var(--primary-color);
}

.btn-secondary {
	background-color: transparent;
	color: var(--accent-color-2);
	border: 2px solid var(--accent-color-2);
	box-shadow: 0 0 8px var(--glow-color-2);
}

.btn-secondary:hover {
	background-color: var(--accent-color-2);
	color: var(--primary-color);
	box-shadow: 0 0 15px var(--glow-color-2);
}

/* --- Hero Section --- */
.hero {
	padding: 6rem 0;
	text-align: center;
	min-height: 80vh;
	display: flex;
	align-items: center;
}

.hero .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}

.hero-content {
	flex: 1;
	text-align: left;
}

.hero-content h1 {
	margin-bottom: 1rem;
	text-shadow: 0 0 10px var(--glow-color-1), 0 0 20px var(--glow-color-1);
}

.hero-content p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	color: var(--text-dark);
}

.cta-buttons {
	margin-top: 1.5rem;
}

.hero-visual {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}

.pulsating-orb {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	background: radial-gradient(circle, var(--accent-color-1), var(--accent-color-2));
	box-shadow: 0 0 20px var(--glow-color-1), 0 0 40px var(--glow-color-2);
	animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
	0% {
		transform: scale(1);
		box-shadow: 0 0 20px var(--glow-color-1), 0 0 40px var(--glow-color-2);
	}
	50% {
		transform: scale(1.05);
		box-shadow: 0 0 30px var(--glow-color-1), 0 0 60px var(--glow-color-2);
	}
	100% {
		transform: scale(1);
		box-shadow: 0 0 20px var(--glow-color-1), 0 0 40px var(--glow-color-2);
	}
}

/* --- Featured Services Section --- */
.featured-services {
	padding: 4rem 0;
	background-color: var(--secondary-color);
	text-align: center;
}

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

.service-card {
	background-color: var(--primary-color);
	padding: 2rem;
	border-radius: 8px;
	border: 1px solid var(--accent-color-2);
	box-shadow: 0 4px 15px rgba(0, 208, 255, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	text-align: left;
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 8px 25px rgba(224, 60, 255, 0.2);
	border-color: var(--accent-color-1);
}

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

.service-card p {
	color: var(--text-dark);
	margin-bottom: 1rem;
}

.service-card a {
	font-weight: bold;
	color: var(--accent-color-2);
}

/* --- Payment Info Section --- */
.payment-info {
	padding: 3rem 0;
	background-color: var(--primary-color);
	text-align: center;
}

.payment-info h2 {
	color: var(--accent-color-1);
	border-bottom-color: var(--accent-color-1);
}

.payment-info p {
	max-width: 800px;
	margin: 0 auto;
	color: var(--text-dark);
}

/* --- Footer --- */
footer {
	background-color: var(--secondary-color);
	color: var(--text-dark);
	padding: 3rem 0 1rem 0;
	border-top: 2px solid var(--accent-color-1);
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.footer-about h3 {
	color: #fff;
	text-shadow: 0 0 5px var(--glow-color-1);
	margin-bottom: 0.5rem;
}

.footer-links h4,
.footer-contact h4 {
	font-family: var(--font-primary);
	color: #fff;
	margin-bottom: 1rem;
	position: relative;
	padding-bottom: 0.5rem;
}

.footer-links h4::after,
.footer-contact h4::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 40px;
	height: 2px;
	background-color: var(--accent-color-2);
}

.footer-links ul li {
	margin-bottom: 0.5rem;
}

.footer-links ul li a,
.footer-contact p a {
	color: var(--text-dark);
}

.footer-links ul li a:hover,
.footer-contact p a:hover {
	color: var(--accent-color-2);
	text-decoration: underline;
}

.footer-contact p {
	margin-bottom: 0.5rem;
	display: flex;
	align-items: center;
}

.footer-contact i {
	margin-right: 0.8rem;
	color: var(--accent-color-1);
	width: 20px; /* Align icons */
	text-align: center;
}

.social-links {
	margin-top: 1rem;
}

.social-links a {
	color: var(--text-dark);
	font-size: 1.5rem;
	margin-right: 1rem;
	transition: color 0.3s ease;
}

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

.footer-bottom {
	text-align: center;
	margin-top: 2rem;
	padding-top: 1rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
	.hero .container {
		flex-direction: column;
		text-align: center;
	}
	.hero-content {
		text-align: center;
	}
	.hero-visual {
		margin-top: 3rem;
	}
}

@media (max-width: 768px) {
	h1 {
		font-size: 2.5rem;
	}
	h2 {
		font-size: 2rem;
	}
	h3 {
		font-size: 1.5rem;
	}

	.menu-toggle {
		display: block;
	}

	.navbar .container {
		position: relative; /* Needed for absolute positioning of nav-links */
	}

	.nav-links {
		display: none; /* Hide by default */
		flex-direction: column;
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background-color: rgba(10, 15, 46, 0.95);
		padding: 1rem 0;
		box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
		border-top: 1px solid var(--accent-color-1);
	}

	.nav-links.active {
		display: flex; /* Show when active */
	}

	.nav-links li {
		margin: 1rem 0;
		text-align: center;
	}

	.nav-links a::after {
		display: none; /* Remove underline effect on mobile */
	}

	.footer-content {
		grid-template-columns: 1fr; /* Stack footer columns */
		text-align: center;
	}

	.footer-links h4::after,
	.footer-contact h4::after {
		left: 50%;
		transform: translateX(-50%);
	}

	.footer-contact p {
		justify-content: center;
	}

	.social-links {
		text-align: center;
	}

	.social-links a {
		margin: 0 0.5rem;
	}
}

@media (max-width: 576px) {
	.hero {
		padding: 4rem 0;
	}
	.pulsating-orb {
		width: 100px;
		height: 100px;
	}
	.btn {
		padding: 0.7rem 1.5rem;
		font-size: 0.9rem;
	}
}

/* --- Page Title Section (Common for subpages) --- */
.page-title {
	padding: 4rem 0;
	background: linear-gradient(rgba(10, 15, 46, 0.8), rgba(10, 15, 46, 0.9)), url("../images/page-header-bg.jpg") no-repeat center center/cover; /* Optional: Add a subtle background image */
	/* Fallback background if image is not used */
	background-color: var(--secondary-color);
	text-align: center;
	border-bottom: 2px solid var(--accent-color-1);
}

.page-title h1 {
	font-size: 3rem;
	margin-bottom: 0.5rem;
	text-shadow: 0 0 8px var(--glow-color-1);
}

.page-title p {
	font-size: 1.2rem;
	color: var(--text-dark);
	max-width: 600px;
	margin: 0 auto;
}

/* --- General Content Sections --- */
.content-section {
	padding: 4rem 0;
}

.content-section.alternate-bg {
	background-color: var(--secondary-color);
}

.content-section h2 {
	text-align: center; /* Center section titles */
	margin-bottom: 3rem; /* More space below section titles */
}

/* --- Service Details (Services Page) --- */
.service-detail {
	background-color: rgba(26, 31, 63, 0.5); /* Slightly transparent background */
	padding: 2rem;
	margin-bottom: 2rem;
	border-radius: 8px;
	border-left: 4px solid var(--accent-color-1);
	transition: background-color 0.3s ease, border-color 0.3s ease;
}

.service-detail:hover {
	background-color: rgba(26, 31, 63, 0.8);
	border-left-color: var(--accent-color-2);
}

.service-detail h3 {
	margin-bottom: 0.8rem;
}

.service-detail p {
	margin-bottom: 1rem;
	color: var(--text-color);
}

/* --- Product Cards (Products Page) --- */
.product-card {
	display: flex;
	gap: 2rem;
	background-color: var(--secondary-color);
	padding: 2rem;
	margin-bottom: 3rem;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border: 1px solid transparent; /* Prepare for hover effect */
}

.product-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 208, 255, 0.15);
	border-color: var(--accent-color-2);
}

.product-image-placeholder {
	flex-shrink: 0;
	width: 200px;
	height: 200px;
	background-color: var(--primary-color);
	border: 1px dashed var(--accent-color-2);
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--text-dark);
	font-family: var(--font-primary);
	border-radius: 5px;
}

.product-info h3 {
	margin-bottom: 0.8rem;
}

.product-info h4 {
	font-size: 1.1rem;
	color: #fff;
	margin-top: 1.5rem;
	margin-bottom: 0.5rem;
	font-family: var(--font-secondary);
	font-weight: bold;
	text-shadow: none;
}

.product-info ul {
	list-style: disc;
	margin-left: 20px;
	color: var(--text-dark);
}

.product-info ul li {
	margin-bottom: 0.3rem;
}

.product-info .btn {
	margin-top: 1.5rem;
}

/* --- About Us Section --- */
#company-story h3 {
	margin-top: 2rem;
	border-bottom: 1px solid var(--accent-color-2);
	padding-bottom: 0.3rem;
	display: inline-block;
}

/* --- Team Section (About Page) --- */
.team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

.team-member-card {
	background-color: var(--primary-color);
	padding: 1.5rem;
	text-align: center;
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border-bottom: 3px solid var(--accent-color-2);
}

.team-member-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 8px 25px rgba(224, 60, 255, 0.15);
	border-bottom-color: var(--accent-color-1);
}

.team-member-photo-placeholder {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background-color: var(--secondary-color);
	margin: 0 auto 1rem auto;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--text-dark);
	font-size: 0.8rem;
	border: 2px solid var(--accent-color-1);
}

.team-member-card h4 {
	font-size: 1.3rem;
	margin-bottom: 0.2rem;
	color: #fff;
	text-shadow: none;
}

.team-member-card span {
	display: block;
	color: var(--accent-color-2);
	font-weight: bold;
	margin-bottom: 0.8rem;
	font-size: 0.9rem;
}

.team-member-card p {
	font-size: 0.9rem;
	color: var(--text-dark);
}

/* --- Portfolio Section (Portfolio Page) --- */
.portfolio-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2rem;
}

.portfolio-item {
	background-color: var(--secondary-color);
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0, 208, 255, 0.1);
}

.portfolio-image-placeholder {
	height: 200px;
	background-color: var(--primary-color);
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--text-dark);
	font-family: var(--font-primary);
	border-bottom: 3px solid var(--accent-color-1);
}

.portfolio-info {
	padding: 1.5rem;
}

.portfolio-info h3 {
	margin-bottom: 0.8rem;
}

.portfolio-info p {
	color: var(--text-dark);
	margin-bottom: 1rem;
}

/* --- Testimonials (Portfolio Page) --- */
.testimonial-card {
	background-color: rgba(10, 15, 46, 0.7);
	padding: 2rem;
	margin: 2rem auto;
	border-radius: 8px;
	max-width: 800px;
	border-left: 5px solid var(--accent-color-1);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-card blockquote {
	font-size: 1.1rem;
	font-style: italic;
	margin-bottom: 1rem;
	color: var(--text-color);
	position: relative;
	padding-left: 2rem;
}

.testimonial-card blockquote::before {
	content: "\201C"; /* Left double quotation mark */
	font-family: Georgia, serif;
	font-size: 3rem;
	color: var(--accent-color-1);
	position: absolute;
	left: -0.5rem;
	top: -0.5rem;
	opacity: 0.8;
}

.testimonial-card cite {
	display: block;
	text-align: right;
	color: var(--text-dark);
	font-weight: bold;
}

/* --- Contact Page Layout --- */
.contact-layout .container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
}

.contact-form-container h2,
.contact-details-container h2 {
	text-align: left;
	border-bottom: none;
	margin-bottom: 1.5rem;
}

/* --- Contact Form --- */
#contact-form .form-group {
	margin-bottom: 1.5rem;
}

#contact-form label {
	display: block;
	margin-bottom: 0.5rem;
	color: var(--text-color);
	font-weight: bold;
}

#contact-form input[type="text"],
#contact-form input[type="email"],
#contact-form textarea {
	width: 100%;
	padding: 0.8rem 1rem;
	border: 1px solid var(--secondary-color);
	background-color: rgba(10, 15, 46, 0.8); /* Darker input background */
	color: var(--text-color);
	border-radius: 5px;
	font-family: var(--font-secondary);
	font-size: 1rem;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#contact-form input:focus,
#contact-form textarea:focus {
	outline: none;
	border-color: var(--accent-color-1);
	box-shadow: 0 0 8px var(--glow-color-1);
}

#contact-form textarea {
	resize: vertical;
}

#contact-form button {
	width: 100%;
	margin-top: 1rem;
}

#form-status {
	margin-top: 1rem;
	font-weight: bold;
}

/* --- Contact Details --- */
.contact-details-container .contact-info-item {
	display: flex;
	align-items: center;
	margin-bottom: 1.5rem;
	background-color: rgba(26, 31, 63, 0.3);
	padding: 1rem;
	border-radius: 5px;
}

.contact-details-container .contact-info-item i {
	font-size: 1.8rem;
	color: var(--accent-color-1);
	margin-right: 1.5rem;
	width: 40px; /* Consistent icon alignment */
	text-align: center;
}

.contact-details-container .contact-info-item h4 {
	font-size: 1.1rem;
	margin-bottom: 0.2rem;
	color: #fff;
	text-shadow: none;
}

.contact-details-container .contact-info-item p {
	margin: 0;
	color: var(--text-dark);
}

.contact-details-container .contact-info-item p a {
	color: var(--text-dark);
}

.contact-details-container .contact-info-item p a:hover {
	color: var(--accent-color-2);
}

#map-placeholder {
	height: 300px;
	background-color: var(--secondary-color);
	border: 1px dashed var(--accent-color-1);
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--text-dark);
	border-radius: 8px;
	margin-top: 1rem;
}

/* --- FAQ Page --- */
.faq-list {
	max-width: 900px;
	margin: 0 auto;
}

.faq-item {
	background-color: var(--secondary-color);
	margin-bottom: 1rem;
	border-radius: 5px;
	border: 1px solid rgba(0, 208, 255, 0.2);
	overflow: hidden; /* Ensures contained border-radius */
}

.faq-item summary {
	padding: 1rem 1.5rem;
	font-weight: bold;
	font-size: 1.1rem;
	color: #fff;
	cursor: pointer;
	position: relative;
	list-style: none; /* Remove default marker */
	font-family: var(--font-primary);
	transition: background-color 0.3s ease;
}

.faq-item summary::-webkit-details-marker {
	display: none;
} /* Hide default marker for Webkit */

.faq-item summary::after {
	/* Custom marker */
	content: "+";
	position: absolute;
	right: 1.5rem;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.5rem;
	color: var(--accent-color-2);
	transition: transform 0.3s ease;
}

.faq-item[open] summary {
	background-color: rgba(224, 60, 255, 0.1);
}

.faq-item[open] summary::after {
	transform: translateY(-50%) rotate(45deg);
}

.faq-item p {
	padding: 1rem 1.5rem 1.5rem 1.5rem;
	color: var(--text-dark);
	border-top: 1px solid rgba(0, 208, 255, 0.2);
	margin: 0; /* Reset default paragraph margins */
}

/* --- Policy Section (FAQ Page) --- */
.policy-links div {
	margin-bottom: 1.5rem;
	background: rgba(10, 15, 46, 0.5);
	padding: 1.5rem;
	border-radius: 5px;
}

.policy-links h3 {
	color: var(--accent-color-1);
	margin-bottom: 0.5rem;
	font-size: 1.4rem;
}

.policy-links p {
	color: var(--text-dark);
}

/* --- Responsive Design Adjustments --- */
@media (max-width: 992px) {
	/* Adjust grid for contact page */
	.contact-layout .container {
		grid-template-columns: 1fr;
	}
	.contact-details-container {
		margin-top: 2rem;
	}

	/* Adjust product card layout */
	.product-card {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
	.product-image-placeholder {
		width: 150px;
		height: 150px;
		margin-bottom: 1rem;
	}
	.product-info h4 {
		text-align: center;
	}
	.product-info ul {
		text-align: left; /* Keep list items aligned left */
		display: inline-block; /* Center the list block */
	}
}

@media (max-width: 768px) {
	/* Further stack contact details */
	.contact-details-container .contact-info-item {
		flex-direction: column;
		text-align: center;
	}
	.contact-details-container .contact-info-item i {
		margin-bottom: 0.5rem;
		margin-right: 0;
	}

	.page-title h1 {
		font-size: 2.5rem;
	}
	.page-title p {
		font-size: 1.1rem;
	}

	/* (Existing responsive styles for nav, etc. remain) */
}

@media (max-width: 576px) {
	/* Further reduce font sizes if needed */
	h1 {
		font-size: 2.2rem;
	}
	h2 {
		font-size: 1.8rem;
	}
	h3 {
		font-size: 1.4rem;
	}

	.page-title {
		padding: 3rem 0;
	}

	.content-section {
		padding: 3rem 0;
	}

	.service-detail,
	.product-card,
	.team-member-card,
	.portfolio-item,
	.testimonial-card,
	.contact-form-container,
	.contact-details-container .contact-info-item,
	.faq-item summary,
	.faq-item p,
	.policy-links div {
		padding: 1.5rem;
	}

	.portfolio-grid {
		grid-template-columns: 1fr; /* Stack portfolio items */
	}
}
