
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
}

:root {
	--bg-techno: #eef2f7;
	--text-primary: #0f172a;
	--text-muted: #475569;
	--tech-blue: #0266e3;
	--tech-cyan: #00f2fe;
	--tech-glow: rgba(2, 102, 227, 0.15);
	--glass-bg: rgba(255, 255, 255, 0.7);
	--glass-border: rgba(255, 255, 255, 0.6);
	--circuit-line: #cbd5e1;
}

body {
	background-color: var(--bg-techno);
	color: var(--text-primary);
	overflow-x: hidden;
	line-height: 1.5;
	/* Structural Circuit / Isometric Grid Grid Background */
	background-image: 
		linear-gradient(var(--circuit-line) 1px, transparent 1px),
		linear-gradient(90deg, var(--circuit-line) 1px, transparent 1px);
	background-size: 40px 40px;
	background-position: center;
}

.container {
	width: 92%;
	max-width: 1400px;
	margin: 0 auto;
}

/* --- Header Navigation --- */
header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(238, 242, 247, 0.8);
	backdrop-filter: blur(16px);
	border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.nav-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.25rem 0;
}

.logo {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	font-size: 1.6rem;
	font-weight: 800;
	letter-spacing: -0.5px;
	color: var(--text-primary);
}

.logo span {
	color: var(--tech-blue);
	font-weight: 400;
}

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

.nav-links a {
	color: var(--text-muted);
	text-decoration: none;
	font-size: 0.95rem;
	font-weight: 600;
	transition: color 0.2s;
}

.nav-links a:hover {
	color: var(--tech-blue);
}

/* --- Buttons --- */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	padding: 0.8rem 1.8rem;
	border-radius: 8px;
	font-weight: 700;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 0.85rem;
	letter-spacing: 0.5px;
	transition: all 0.3s ease;
	cursor: pointer;
}

.btn-glow {
	background: linear-gradient(135deg, var(--tech-blue), #004cb3);
	color: #fff;
	box-shadow: 0 0 20px rgba(2, 102, 227, 0.4);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-glow:hover {
	transform: translateY(-2px);
	box-shadow: 0 0 30px rgba(2, 102, 227, 0.6);
}

.btn-outline {
	background: rgba(255, 255, 255, 0.4);
	color: var(--text-primary);
	border: 1px solid rgba(15, 23, 42, 0.15);
	backdrop-filter: blur(4px);
}

.btn-outline:hover {
	background: rgba(255, 255, 255, 0.8);
	border-color: var(--tech-blue);
}

/* --- Main Interactive Split Layout --- */
.hero-split {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 4rem;
	padding: 6rem 0 4rem 0;
	align-items: center;
	position: relative;
}

/* Artistic Neon Circuit Traces Overlaying Background */
.hero-split::before {
	content: '';
	position: absolute;
	top: 20%;
	left: -5%;
	width: 400px;
	height: 3px;
	background: linear-gradient(90deg, transparent, var(--tech-blue), var(--tech-cyan), transparent);
	transform: rotate(-15deg);
	z-index: -1;
	filter: blur(1px);
}

.hero-text h1 {
	font-size: 3.85rem;
	line-height: 1.1;
	font-weight: 800;
	letter-spacing: -1.5px;
	margin-bottom: 1.5rem;
}

.hero-text h1 span {
	color: var(--tech-blue);
	position: relative;
}

.hero-text .subtitle {
	font-size: 1.1rem;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 2px;
	color: var(--text-muted);
	margin-bottom: 0.5rem;
}

.hero-text p {
	font-size: 1.2rem;
	color: var(--text-muted);
	margin-bottom: 2.5rem;
	max-width: 600px;
}

.hero-actions {
	display: flex;
	gap: 1.2rem;
	margin-bottom: 4rem;
}

/* --- Techno Graphics 3D Cluster Frame (Right Column) --- */
.artistic-graphic-container {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.isometric-cube-shield {
	width: 100%;
	max-width: 480px;
	height: 400px;
	background: linear-gradient(135deg, rgba(255,255,255,0.6), rgba(255,255,255,0.2));
	border: 2px solid var(--glass-border);
	border-radius: 24px;
	box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
	backdrop-filter: blur(20px);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
	overflow: hidden;
}

/* Animated Circuit Mesh Graphics Inside the Box */
.isometric-cube-shield::before {
	content: '';
	position: absolute;
	width: 200%;
	height: 200%;
	background-image: radial-gradient(var(--tech-blue) 1.5px, transparent 1.5px);
	background-size: 20px 20px;
	opacity: 0.15;
	transform: rotate(30deg);
}

.core-processor-emulation {
	position: relative;
	z-index: 2;
	width: 120px;
	height: 120px;
	background: #fff;
	border: 4px solid var(--tech-blue);
	box-shadow: 0 0 40px rgba(2, 102, 227, 0.3);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	animation: pulse-glow 3s infinite alternate;
}

@keyframes pulse-glow {
	0% { box-shadow: 0 0 20px rgba(2, 102, 227, 0.2); transform: scale(1); }
	100% { box-shadow: 0 0 50px rgba(0, 242, 254, 0.6); transform: scale(1.03); }
}

.tech-label-float {
	position: absolute;
	background: #0f172a;
	color: #fff;
	padding: 0.5rem 1rem;
	border-radius: 6px;
	font-size: 0.75rem;
	font-weight: 700;
	font-family: monospace;
	box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.lbl-1 { top: 15%; left: 10%; border-left: 3px solid var(--tech-cyan); }
.lbl-2 { bottom: 20%; right: 8%; border-left: 3px solid #38ef7d; }

/* --- Glassmorphic Matrix Section (Bottom Architecture) --- */
.matrix-section {
	padding: 4rem 0 8rem 0;
}

.matrix-headline {
	font-size: 1.4rem;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	font-weight: 800;
	margin-bottom: 2rem;
	color: var(--text-primary);
	border-left: 4px solid var(--tech-blue);
	padding-left: 0.75rem;
}

.matrix-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1.5rem;
}

/* Elegant translucent Glass Cards from references */
.glass-card {
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	border-top: 3px solid var(--tech-blue);
	border-radius: 16px;
	padding: 2rem 1.5rem;
	box-shadow: 0 8px 32px rgba(15, 23, 42, 0.04);
	backdrop-filter: blur(12px);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
	transform: translateY(-8px);
	background: #ffffff;
	box-shadow: 0 20px 40px rgba(2, 102, 227, 0.1);
	border-top-color: var(--tech-cyan);
}

.card-graphic-icon {
	width: 48px;
	height: 48px;
	background: rgba(2, 102, 227, 0.08);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--tech-blue);
	margin-bottom: 1.5rem;
}

.glass-card h3 {
	font-size: 1.1rem;
	font-weight: 800;
	margin-bottom: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.glass-card p {
	font-size: 0.88rem;
	color: var(--text-muted);
	line-height: 1.5;
}

/* --- Footer --- */
footer {
	background: #0f172a;
	color: #94a3b8;
	padding: 2.5rem 0;
	text-align: center;
	font-size: 0.9rem;
	border-top: 1px solid rgba(255,255,255,0.05);
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
	.hero-split { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
	.hero-text h1 { font-size: 2.85rem; }
	.hero-actions { justify-content: center; }
	.nav-links { display: none; }
}


#about .glass-card {
	transition: all .35s ease;
}

#about .glass-card:hover {
	transform: translateY(-6px);
}

#about h3 {
	font-weight: 800;
	letter-spacing: -.5px;
}

#about p {
	line-height: 1.8;
}

@media (max-width:768px){
	#about .glass-card > div{
		flex-direction:column;
	}
}

/* Contact Section */
.contact-wrapper{
	display:grid;
	grid-template-columns:1fr 1fr;
	gap:2rem;
}

.contact-card{
	padding:2.5rem;
}

.contact-card h3{
	margin-bottom:1rem;
	font-size:1.6rem;
	color:var(--text-primary);
}

.contact-card>p{
	margin-bottom:2rem;
	color:var(--text-muted);
}

.contact-item{
	display:flex;
	align-items:flex-start;
	gap:1rem;
	margin-bottom:1.5rem;
}

.contact-item i{
	width:22px;
	height:22px;
	color:var(--tech-blue);
	margin-top:3px;
}

.contact-item strong{
	display:block;
	margin-bottom:4px;
}

.contact-item p{
	color:var(--text-muted);
}

.contact-card form{
	display:flex;
	flex-direction:column;
	gap:1rem;
}

.contact-card input,
.contact-card textarea{
	width:100%;
	padding:1rem;
	border-radius:10px;
	border:1px solid rgba(15,23,42,.12);
	background:rgba(255,255,255,.75);
	backdrop-filter:blur(10px);
	font-size:.95rem;
	outline:none;
	transition:.3s;
}

.contact-card input:focus,
.contact-card textarea:focus{
	border-color:var(--tech-blue);
	box-shadow:0 0 15px rgba(2,102,227,.15);
}

.contact-card textarea{
	resize:vertical;
}

.contact-card button{
	width:max-content;
}

@media(max-width:900px){

.contact-wrapper{
	grid-template-columns:1fr;
}

}

.intro-text{
	margin-bottom:35px;
	line-height:1.9;
	font-size:1.05rem;
	color:var(--text-muted);
	max-width:90%;
}

.logo {
	display: flex;
	align-items: center;
}

.logo a {
	display: flex;
	align-items: center;
}

.company-logo {
	height: 60px;          /* Adjust as needed */
	width: auto;
	display: block;
	transition: transform .3s ease;
}

.company-logo:hover {
	transform: scale(1.05);
}

.company-highlight{
    display: flex;
    align-items: center;      /* Vertical alignment */
    justify-content: flex-start;
    gap: 12px;                /* Space between icon and text */
    margin: 12px 0;
}

.company-highlight .icon2{
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: block;
}

.company-highlight span{
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
}

@media (max-width:768px){
	.company-logo{
		height:45px;
	}
}
.icon{
    width:60px;
    height:60px;
}
.icon2{
    width:40px;
    height:40px;
}

.feature-list {
    margin: 0;
    padding-left: 20px;
    line-height: 1.8;
}

.feature-list li {
    margin-bottom: 8px;
    color: #333;
}
.map-section{
    padding: 80px 0;
}

.map-card{
    overflow: hidden;
    border-radius: 18px;
    padding: 0;
}

.map-card iframe{
    display: block;
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 18px;
}