@charset "utf-8";

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--primary: #00f0ff;
	--secondary: #ff00d4;
	--accent: #9d4edd;
	--dark-1: #0a0a12;
	--dark-2: #12121f;
	--dark-3: #1a1a2e;
	--glass-bg: rgba(255, 255, 255, 0.03);
	--glass-border: rgba(255, 255, 255, 0.08);
	--glow-cyan: rgba(0, 240, 255, 0.4);
	--glow-magenta: rgba(255, 0, 212, 0.4);
}

body {
	font-family: 'Outfit', sans-serif;
	background: var(--dark-1);
	color: #ffffff;
	overflow-x: hidden;
	min-height: 100vh;
}

/* Ambient Background */
.ambient-bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 0;
	overflow: hidden;
	background: url('images/sbvs-logo.png') no-repeat center center;
	background-size: 80% auto;
	opacity: 0.12;
	filter: blur(3px);
}

/* Grid Overlay */
.grid-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
	background-size: 80px 80px;
	pointer-events: none;
	z-index: 1;
}

/* Loading Screen */
.loading-screen {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--dark-1);
	z-index: 10000;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loading-screen.hidden {
	opacity: 0;
	visibility: hidden;
}

.loader-ring {
	width: 80px;
	height: 80px;
	position: relative;
}

.loader-ring::before,
.loader-ring::after {
	content: '';
	position: absolute;
	border-radius: 50%;
	border: 2px solid transparent;
}

.loader-ring::before {
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-top-color: var(--primary);
	border-right-color: var(--primary);
	animation: spin 1.2s linear infinite;
}

.loader-ring::after {
	top: 10px;
	left: 10px;
	right: 10px;
	bottom: 10px;
	border-bottom-color: var(--secondary);
	border-left-color: var(--secondary);
	animation: spin 0.8s linear infinite reverse;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

.loading-text {
	margin-top: 30px;
	font-family: 'Syne', sans-serif;
	font-size: 12px;
	letter-spacing: 4px;
	color: var(--primary);
	text-transform: uppercase;
}

/* Main Container */
.container {
	position: relative;
	z-index: 10;
	padding: 0 20px;
	max-width: 1200px;
	margin: 0 auto;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

/* Dashboard Theme Styles */

/* Navigation Bar */
.main-navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 35px;
	background: rgba(18, 18, 31, 0.7);
	backdrop-filter: blur(25px);
	-webkit-backdrop-filter: blur(25px);
	border: 1px solid var(--glass-border);
	border-radius: 60px;
	margin-bottom: 50px;
	position: sticky;
	top: 25px;
	z-index: 2000;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.nav-logo {
	display: flex;
	align-items: center;
	gap: 15px;
}

.nav-logo svg {
	width: 45px;
	height: 45px;
	filter: drop-shadow(0 0 12px var(--glow-cyan));
}

.nav-brand h3 {
	font-family: 'Syne', sans-serif;
	font-size: 22px;
	font-weight: 700;
	letter-spacing: 2px;
	background: linear-gradient(135deg, var(--primary), #ffffff, var(--secondary));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	text-transform: uppercase;
}

.nav-links {
	display: flex;
	gap: 35px;
	margin-left: auto;
	margin-right: 40px;
}

.nav-link {
	text-decoration: none;
	color: rgba(255, 255, 255, 0.65);
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
	color: #ffffff;
}

.arrow-symbol {
	font-size: 10px;
	opacity: 0.8;
	margin-left: 2px;
	display: inline-block;
	transition: transform 0.3s ease;
}

.nav-dropdown:hover .arrow-symbol {
	transform: rotate(180deg);
}

/* Dropdown Menu Styles */
.nav-dropdown {
	position: relative;
	display: inline-block;
}

.arrow-down {
	display: inline-block;
	margin-left: 6px;
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 6px solid rgba(255, 255, 255, 0.8);
	transition: transform 0.3s ease;
	vertical-align: middle;
}

.nav-dropdown:hover .arrow-down {
	transform: rotate(180deg);
	border-top-color: #ffffff;
}

.dropdown-content {
	display: block;
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 240px;
	background: rgba(18, 18, 31, 0.9);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: 15px;
	padding: 15px 0;
	margin-top: 15px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
	z-index: 1000;
}

.nav-dropdown:hover .dropdown-content {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

/* Invisible bridge to prevent menu from closing when moving mouse */
.dropdown-content::before {
	content: '';
	position: absolute;
	top: -15px;
	left: 0;
	width: 100%;
	height: 15px;
}

.dropdown-item {
	display: block;
	padding: 12px 25px;
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 1px;
	transition: all 0.3s ease;
}

.dropdown-item:hover {
	color: var(--primary);
	background: rgba(255, 255, 255, 0.05);
	padding-left: 30px;
}

/* Vertical Scrollable Tech Dropdown */
.tech-dropdown {
	min-width: 280px;
	display: flex;
	flex-direction: column;
	max-height: 350px;
	overflow-y: auto;
	padding: 20px 0 !important;
	gap: 15px;
	scrollbar-width: thin;
	scrollbar-color: var(--primary) transparent;
}

/* Custom Scrollbar for Chrome/Safari */
.tech-dropdown::-webkit-scrollbar {
	width: 4px;
}

.tech-dropdown::-webkit-scrollbar-track {
	background: transparent;
}

.tech-dropdown::-webkit-scrollbar-thumb {
	background: var(--primary);
	border-radius: 10px;
}

.tech-group {
	display: flex;
	flex-direction: column;
	margin-bottom: 5px;
}

.tech-group-title {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--primary);
	letter-spacing: 1.5px;
	margin-bottom: 8px;
	padding: 0 25px 5px;
	opacity: 0.6;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tech-list .dropdown-item {
	padding: 10px 25px;
	font-size: 13px;
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: -6px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 3px;
	background: var(--primary);
	border-radius: 10px;
	transition: width 0.3s ease;
	box-shadow: 0 0 15px var(--glow-cyan);
}

.nav-link:hover::after,
.nav-link.active::after {
	width: 100%;
}

.nav-cta button {
	padding: 12px 28px;
	background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(157, 78, 221, 0.1));
	border: 1px solid var(--primary);
	border-radius: 40px;
	color: var(--primary);
	font-family: 'Outfit', sans-serif;
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 1px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.nav-cta button:hover {
	background: var(--primary);
	color: var(--dark-1);
	box-shadow: 0 0 25px var(--glow-cyan);
	transform: scale(1.05);
}

/* Dashboard Hero */
.intro-hero {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 60px;
	align-items: center;
	margin-bottom: 70px;
}

.intro-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 18px;
	background: rgba(0, 240, 255, 0.08);
	border: 1px solid rgba(0, 240, 255, 0.2);
	border-radius: 100px;
	color: var(--primary);
	font-size: 12px;
	font-weight: 500;
	margin-bottom: 25px;
	letter-spacing: 1px;
}

.intro-badge::before {
	content: '';
	width: 8px;
	height: 8px;
	background: #00ff88;
	border-radius: 50%;
	box-shadow: 0 0 10px #00ff88;
	animation: blink 1.5s infinite;
}

@keyframes blink {

	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0.3;
	}
}

.intro-headline {
	font-family: 'Syne', sans-serif;
	font-size: 58px;
	font-weight: 700;
	line-height: 1.1;
	margin-bottom: 25px;
	letter-spacing: -1px;
}

.intro-headline span {
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.intro-subtext {
	font-size: 18px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.6);
	margin-bottom: 40px;
}

.intro-cta-group {
	display: flex;
	gap: 20px;
}

.intro-cta-primary {
	padding: 16px 36px;
	background: var(--primary);
	border: none;
	border-radius: 50px;
	color: var(--dark-1);
	font-family: 'Outfit', sans-serif;
	font-weight: 600;
	font-size: 15px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.intro-cta-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 30px rgba(0, 240, 255, 0.35);
}

.intro-cta-secondary {
	padding: 16px 36px;
	background: transparent;
	border: 1px solid var(--glass-border);
	border-radius: 50px;
	color: #ffffff;
	font-family: 'Outfit', sans-serif;
	font-weight: 500;
	font-size: 15px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.intro-cta-secondary:hover {
	background: rgba(255, 255, 255, 0.05);
	border-color: rgba(255, 255, 255, 0.2);
}

/* Hero Visual */
.intro-hero-visual {
	position: relative;
	height: 450px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.insight-orb {
	width: 320px;
	height: 320px;
	background: radial-gradient(circle at 30% 30%, rgba(0, 240, 255, 0.2), rgba(157, 78, 221, 0.15) 60%, transparent 80%);
	border-radius: 50%;
	filter: blur(50px);
	animation: orbit 10s linear infinite;
}

@keyframes orbit {
	from {
		transform: rotate(0deg) scale(1);
	}

	50% {
		transform: rotate(180deg) scale(1.1);
	}

	to {
		transform: rotate(360deg) scale(1);
	}
}

.floating-stat-card {
	position: absolute;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: 20px;
	padding: 20px;
	display: flex;
	align-items: center;
	gap: 15px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
	animation: floatItem 6s ease-in-out infinite;
}

.stat-1 {
	top: 15%;
	right: 0;
	animation-delay: 0s;
}

.stat-2 {
	bottom: 20%;
	left: 0;
	animation-delay: -3s;
}

@keyframes floatItem {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-20px);
	}
}

.stat-icon {
	font-size: 24px;
	width: 50px;
	height: 50px;
	background: rgba(0, 240, 255, 0.1);
	border-radius: 14px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.stat-info span {
	display: block;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.5);
	margin-bottom: 2px;
}

.stat-info strong {
	font-family: 'Syne', sans-serif;
	font-size: 18px;
	color: var(--primary);
}

/* Dashboard Highlights */
.dashboard-highlights {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	background: var(--glass-bg);
	backdrop-filter: blur(25px);
	-webkit-backdrop-filter: blur(25px);
	border: 1px solid var(--glass-border);
	border-radius: 30px;
	padding: 50px;
	margin-bottom: 70px;
	text-align: center;
}

.h-value {
	font-family: 'Syne', sans-serif;
	font-size: 52px;
	font-weight: 700;
	background: linear-gradient(135deg, var(--primary), #ffffff);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 10px;
}

.h-suffix {
	font-size: 30px;
	font-weight: 700;
	color: #ffffff;
	margin-left: 2px;
}

.h-label {
	font-size: 14px;
	letter-spacing: 2px;
	color: rgba(255, 255, 255, 0.4);
	text-transform: uppercase;
}

.h-divider {
	width: 1px;
	height: 70px;
	background: linear-gradient(180deg, transparent, var(--glass-border), transparent);
	justify-self: center;
	align-self: center;
}

/* Insights Grid */
.insights-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.insight-card {
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	border-radius: 24px;
	padding: 40px 35px;
	transition: all 0.4s ease;
	cursor: default;
}

.insight-card:hover {
	transform: perspective(1000px) rotateX(10deg) translateY(-10px);
	background: rgba(255, 255, 255, 0.06);
	border-color: var(--primary);
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.i-icon {
	font-size: 32px;
	margin-bottom: 25px;
	display: inline-block;
}

.insight-card h3 {
	font-family: 'Syne', sans-serif;
	font-size: 20px;
	font-weight: 600;
	color: #ffffff;
	margin-bottom: 15px;
}

.insight-card p {
	font-size: 14px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.55);
}

/* Responsive Dashboard */
@media (max-width: 1100px) {
	.intro-headline {
		font-size: 48px;
	}

	.intro-hero {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.intro-cta-group {
		justify-content: center;
	}

	.intro-hero-visual {
		height: 350px;
		margin-top: 40px;
	}
}

@media (max-width: 768px) {
	.main-navbar {
		padding: 10px 20px;
		border-radius: 30px;
		top: 15px;
	}

	.nav-links {
		display: none;
	}

	.intro-headline {
		font-size: 38px;
	}

	.dashboard-highlights {
		grid-template-columns: 1fr;
		padding: 40px 20px;
		gap: 30px;
	}

	.h-divider {
		display: none;
	}

	.insights-grid {
		grid-template-columns: 1fr;
	}
}

/* Original Styles Backup/Integration */
.content-section {
	display: none;
	opacity: 0;
	padding: 120px 0 80px;
}

.section-header {
	margin-bottom: 50px;
	text-align: left;
}

.section-title {
	font-family: 'Syne', sans-serif;
	font-size: clamp(32px, 5vw, 48px);
	font-weight: 700;
	margin-bottom: 25px;
	color: #ffffff;
	position: relative;
	display: inline-block;
}

.section-title::after {
	content: '';
	display: block;
	width: 50px;
	height: 4px;
	background: var(--primary);
	margin-top: 15px;
	border-radius: 2px;
}

.section-subtitle {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.6);
	max-width: 600px;
	line-height: 1.6;
}

.content-section.active {
	display: block;
	animation: sectionIn 0.6s ease-out forwards;
}

@keyframes sectionIn {
	from {
		opacity: 0;
		transform: translateY(40px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Services Row Layout */
.services-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin-top: 30px;
}

.service-row {
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: 20px;
	padding: 20px;
	display: flex;
	align-items: center;
	gap: 20px;
	position: relative;
	overflow: hidden;
	transition: all 0.4s ease;
}

.service-row::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.service-row::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background: linear-gradient(180deg, var(--primary), var(--accent));
	border-radius: 20px 0 0 20px;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.service-row:hover {
	transform: translateY(-5px);
	background: rgba(255, 255, 255, 0.05);
	border-color: rgba(0, 240, 255, 0.2);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.service-row:hover::after {
	opacity: 1;
}

.service-row-icon {
	width: 240px;
	height: 180px;
	min-width: 140px;
	border-radius: 16px;
	background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(157, 78, 221, 0.1));
	border: 1px solid rgba(255, 255, 255, 0.08);
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	overflow: hidden;
}

.service-row-icon::before {
	content: '';
	position: absolute;
	top: 2px;
	left: 10%;
	right: 10%;
	height: 40%;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
	border-radius: 12px 12px 50% 50%;
}

.service-row-icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 14px;
}

.service-row-content {
	flex: 1;
}

.service-row-content h4 {
	font-family: 'Syne', sans-serif;
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 8px;
	color: var(--primary);
}

.service-row-content p {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.6;
}

.service-row-arrow {
	display: none;
}

/* Tabs */
.tabs-container {
	margin-bottom: 30px;
}

.tab-buttons {
	display: flex;
	justify-content: center;
	gap: 10px;
	flex-wrap: wrap;
	margin-bottom: 30px;
}

.tab-btn {
	padding: 12px 28px;
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: 50px;
	color: rgba(255, 255, 255, 0.6);
	font-family: 'Outfit', sans-serif;
	font-size: 13px;
	letter-spacing: 1px;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.tab-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 50%;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 100%);
	border-radius: 50px 50px 0 0;
}

.tab-btn:hover {
	background: rgba(255, 255, 255, 0.05);
	color: #ffffff;
}

.tab-btn.active {
	background: linear-gradient(135deg, rgba(0, 240, 255, 0.2), rgba(255, 0, 212, 0.2));
	border-color: var(--primary);
	color: var(--primary);
	box-shadow: 0 0 20px var(--glow-cyan);
}

.tab-pane {
	display: none;
}

.tab-pane.active {
	display: block;
	animation: tabFade 0.4s ease-out;
}

@keyframes tabFade {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Gallery */
.gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.gallery-item {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	aspect-ratio: 1;
	cursor: pointer;
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	transition: all 0.4s ease;
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.gallery-item:hover {
	transform: scale(1.02);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
	border-color: var(--primary);
}

.gallery-item:hover img {
	transform: scale(1.1);
}

.gallery-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(transparent 40%, rgba(10, 10, 18, 0.9) 100%);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 20px;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
	opacity: 1;
}

.gallery-overlay h4 {
	font-family: 'Syne', sans-serif;
	font-size: 16px;
	color: var(--primary);
	margin-bottom: 5px;
}

.gallery-overlay p {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.6);
}

/* Filter Buttons */
.filter-buttons {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-bottom: 30px;
	flex-wrap: wrap;
}

.filter-btn {
	padding: 10px 20px;
	background: transparent;
	border: 1px solid var(--glass-border);
	border-radius: 30px;
	color: rgba(255, 255, 255, 0.6);
	font-family: 'Outfit', sans-serif;
	font-size: 12px;
	letter-spacing: 1px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
	background: rgba(0, 240, 255, 0.1);
	border-color: var(--primary);
	color: var(--primary);
}

/* Testimonials */
.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 25px;
}

.testimonial-card {
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: 20px;
	padding: 30px;
	position: relative;
	overflow: hidden;
}

.testimonial-card::before {
	content: '"';
	position: absolute;
	top: 20px;
	right: 30px;
	font-family: 'Syne', sans-serif;
	font-size: 80px;
	color: rgba(0, 240, 255, 0.1);
	line-height: 1;
}

.testimonial-text {
	font-size: 15px;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 20px;
	font-style: italic;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 15px;
}

.author-avatar {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	overflow: hidden;
	border: 2px solid var(--primary);
	box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
}

.author-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.author-info h5 {
	font-family: 'Syne', sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: var(--primary);
}

.author-info p {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.5);
}

/* About Section */
.about-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
}

.about-text h3 {
	font-family: 'Syne', sans-serif;
	font-size: 28px;
	font-weight: 500;
	margin-bottom: 20px;
	color: var(--primary);
}

.about-text p {
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.8;
	margin-bottom: 15px;
}

.about-text a {
	color: var(--primary);
	text-decoration: none;
	position: relative;
	padding-bottom: 2px;
	transition: all 0.3s ease;
}

.about-text a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 1px;
	background: linear-gradient(90deg, var(--primary), var(--accent));
	transition: width 0.3s ease;
}

.about-text a:hover {
	color: #ffffff;
	text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

.about-text a:hover::after {
	width: 100%;
}

.about-image {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
}

.about-image img {
	width: 100%;
	height: auto;
	display: block;
}

.about-image::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(157, 78, 221, 0.1));
}

/* Contact Form */
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.form-group {
	position: relative;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 16px 20px;
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: 12px;
	color: #ffffff;
	font-family: 'Outfit', sans-serif;
	font-size: 14px;
	transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
	color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 20px var(--glow-cyan);
}

.form-group textarea {
	min-height: 150px;
	resize: vertical;
}

.submit-btn {
	padding: 16px 40px;
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: 50px;
	color: var(--primary);
	font-family: 'Syne', sans-serif;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 2px;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.submit-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 50%;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
	border-radius: 50px 50px 0 0;
}

.submit-btn:hover {
	background: rgba(0, 240, 255, 0.1);
	border-color: var(--primary);
	transform: translateY(-3px);
	box-shadow:
		0 15px 30px rgba(0, 0, 0, 0.3),
		0 0 30px rgba(0, 200, 220, 0.25);
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.contact-item {
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: 16px;
	padding: 25px;
	display: flex;
	align-items: center;
	gap: 20px;
	transition: all 0.3s ease;
}

.contact-item:hover {
	border-color: var(--primary);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-icon {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: linear-gradient(135deg, rgba(0, 240, 255, 0.2), rgba(157, 78, 221, 0.2));
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 20px;
	color: var(--primary);
	position: relative;
	overflow: hidden;
}

.contact-icon::before {
	content: '';
	position: absolute;
	top: 2px;
	left: 10%;
	right: 10%;
	height: 40%;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, transparent 100%);
	border-radius: 50%;
}

.contact-details h4 {
	font-family: 'Syne', sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.5);
	margin-bottom: 5px;
}

.contact-details p {
	color: #ffffff;
	font-size: 15px;
}

/* Exit animations */
.menu-item.exit-up {
	animation: exitDown 0.5s ease-out forwards !important;
	pointer-events: none;
}

@keyframes exitDown {
	to {
		transform: translateY(50px);
		opacity: 0;
	}
}

.menu-item.return {
	animation: menuReturn 0.4s ease-out forwards !important;
}

@keyframes menuReturn {
	from {
		opacity: 0;
		transform: translateY(30px) scale(0.9);
	}

	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

/* --- About Section Enhanced Styles --- */
.about-content-wrapper {
	display: flex;
	flex-direction: column;
	gap: 50px;
	margin-top: 30px;
}

.about-card-large {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 24px;
	padding: 40px;
	backdrop-filter: blur(10px);
}

.about-card-large h3 {
	font-family: 'Syne', sans-serif;
	font-size: 24px;
	color: var(--primary);
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.about-card-large p {
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.8;
	font-size: 16px;
}

/* Join Our Team Section */
.recruitment-section {
	margin-top: 60px;
}

.mvv-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 25px;
}

.mvv-card {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 20px;
	padding: 30px;
	text-align: center;
	transition: transform 0.3s ease, background 0.3s ease;
}

.mvv-card:hover {
	transform: translateY(-8px);
	background: rgba(255, 255, 255, 0.06);
	border-color: var(--primary);
}

.mvv-icon {
	font-size: 32px;
	margin-bottom: 15px;
	display: block;
}

.mvv-card h4 {
	font-size: 18px;
	color: #fff;
	margin-bottom: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.mvv-card p {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.6;
}

.team-section-title {
	font-family: 'Syne', sans-serif;
	font-size: 28px;
	color: #fff;
	margin-bottom: 30px;
	text-align: center;
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.team-card {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 20px;
	overflow: hidden;
	transition: all 0.3s ease;
}

.team-card:hover {
	transform: scale(1.03);
	border-color: var(--accent);
}

.team-img-wrapper {
	width: 100%;
	height: 250px;
	overflow: hidden;
}

.team-img-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(0.5);
	transition: filter 0.3s ease;
}

.team-card:hover .team-img-wrapper img {
	filter: grayscale(0);
}

.team-info {
	padding: 20px;
	text-align: center;
}

.team-info h5 {
	color: #fff;
	font-size: 18px;
	margin-bottom: 5px;
}

.team-info span {
	color: var(--primary);
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

@media (max-width: 992px) {
	.mvv-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.team-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {

	.mvv-grid,
	.team-grid {
		grid-template-columns: 1fr;
	}
}

/* --- MAIN FOOTER --- */
.main-footer {
	margin-top: 40px;
	background-color: #061122 !important;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 50px 0 0;
	position: relative;
	color: #fff;
	z-index: 100;
	width: 100vw;
	margin-left: calc(-50vw + 50%);
	margin-right: calc(-50vw + 50%);
	border-radius: 0;
}

.footer-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 40px;
	display: grid;
	grid-template-columns: 1.5fr 1fr 1.2fr 1.2fr;
	gap: 40px;
	align-items: start;
}

.footer-brand h3 {
	color: #00d2ff !important;
	font-family: 'Syne', sans-serif;
	font-size: 24px;
	margin: 0 0 20px 0;
	letter-spacing: 0.5px;
	font-weight: 700;
	text-transform: none;
}

.footer-brand p {
	color: #e0e0e0;
	line-height: 1.6;
	font-size: 14px;
	max-width: 300px;
	margin: 0;
	opacity: 1;
}

.footer-heading {
	font-family: 'Syne', sans-serif;
	font-size: 20px;
	color: #00d2ff !important;
	margin-bottom: 25px;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

.footer-link-list {
	list-style: none !important;
	padding: 0 !important;
	margin: 0 !important;
}

.footer-link-list li {
	margin-bottom: 12px;
}

.footer-link-list a {
	color: #b0b0b0 !important;
	text-decoration: none !important;
	font-size: 15px;
	transition: all 0.2s ease;
	display: inline-block;
}

.footer-link-list a:hover {
	color: #00d2ff !important;
	padding-left: 5px;
	opacity: 1;
}

.footer-contact-info {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.footer-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 15px;
	line-height: 1.5;
	color: #ccc;
}

.footer-contact-item strong {
	color: #fff !important;
	font-weight: 700;
	min-width: 100px;
	white-space: nowrap;
}

.footer-contact-item p {
	margin: 0;
	color: #ccc;
}

/* --- Social Section --- */
.footer-social {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.social-icons-row {
	display: flex;
	gap: 12px;
}

.social-circle {
	width: 40px;
	height: 40px;
	background: #fff;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: transform 0.2s ease, background 0.2s ease;
	text-decoration: none !important;
}

.social-circle svg {
	width: 20px;
	height: 20px;
	fill: #061122;
}

.social-circle:hover {
	transform: translateY(-3px);
	background: #00d2ff;
}

.footer-bottom {
	width: 100% !important;
	max-width: none !important;
	margin: 50px 0 0 0 !important;
	padding: 25px 0 !important;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	display: flex !important;
	justify-content: center !important;
	align-items: center !important;
	text-align: center !important;
}

.copyright {
	color: rgba(255, 255, 255, 0.5);
	font-size: 14px;
	margin: 0 !important;
	text-align: center !important;
}

/* Responsive */
@media (max-width: 900px) {
	.footer-container {
		grid-template-columns: 1fr;
		text-align: left;
		gap: 40px;
	}

	.footer-brand {
		margin: 0;
		text-align: left;
	}

	.footer-brand p {
		margin: 0;
	}

	.social-icons-row {
		justify-content: flex-start;
	}

	.footer-contact-item {
		justify-content: flex-start;
	}
}

/* Mobile Menu Toggle */
.menu-toggle {
	display: none;
	flex-direction: column;
	gap: 6px;
	cursor: pointer;
	z-index: 2100;
	padding: 10px;
	transition: all 0.3s ease;
}

.menu-toggle span {
	display: block;
	width: 25px;
	height: 2px;
	background: var(--primary);
	transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.menu-toggle.active span:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
	opacity: 0;
	transform: scale(0);
}

.menu-toggle.active span:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 768px) {
	.menu-toggle {
		display: flex;
	}

	.nav-links {
		position: fixed;
		top: 0;
		left: 0;
		width: 100vw;
		height: 100vh;
		background: rgba(10, 10, 18, 0.98);
		backdrop-filter: blur(30px);
		-webkit-backdrop-filter: blur(30px);
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-start;
		padding: 100px 30px 80px;
		gap: 20px;
		display: none;
		opacity: 0;
		transform: translateX(100%);
		transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
		z-index: 1900;
		margin: 0;
		overflow-y: auto;
		border: none;
		border-radius: 0;
	}

	.nav-links.active {
		display: flex;
		opacity: 1;
		transform: translateX(0);
	}

	.nav-link {
		font-size: 18px;
		font-weight: 600;
		font-family: 'Syne', sans-serif;
		width: 100%;
		text-align: left;
		color: rgba(255, 255, 255, 0.8);
		letter-spacing: 1.5px;
	}

	.nav-dropdown {
		width: 100%;
		text-align: left;
	}

	.dropdown-content {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		background: transparent;
		border: none;
		box-shadow: none;
		padding: 20px 0;
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.5s ease;
	}

	.nav-dropdown.active .dropdown-content {
		max-height: 1500px;
	}

	.dropdown-item {
		font-size: 14px;
		padding: 8px 15px;
		color: rgba(255, 255, 255, 0.5);
		text-align: left;
	}

	.dropdown-item:hover {
		color: var(--primary);
		padding-left: 0;
	}

	.tech-dropdown {
		/* max-height: none; Remove this to allow toggle */
		/* overflow: visible; Remove this to allow toggle */
		padding: 0 !important;
	}

	.tech-group-title {
		text-align: left;
		padding: 15px 15px 5px;
		font-size: 11px;
	}
}

/* Force hide loading screen if it hangs */
.loading-screen.hidden {
	display: none !important;
	opacity: 0 !important;
	visibility: hidden !important;
}

/* Modal Styles */
.modal-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.85);
	backdrop-filter: blur(8px);
	z-index: 9999;
	justify-content: center;
	align-items: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.modal-overlay.active {
	display: flex;
	opacity: 1;
}

.modal-content {
	background: var(--glass-bg);
	backdrop-filter: blur(25px);
	-webkit-backdrop-filter: blur(25px);
	border: 1px solid var(--glass-border);
	border-radius: 24px;
	padding: 60px 40px 40px 40px;
	width: 90%;
	max-width: 500px;
	max-height: 80vh;
	overflow-y: auto;
	position: relative;
	transform: translateY(20px);
	transition: transform 0.3s ease;
	box-shadow: 0 0 50px rgba(0, 240, 255, 0.2);
	text-align: center;
	scrollbar-width: thin;
	scrollbar-color: var(--primary) rgba(255, 255, 255, 0.1);
}

.modal-overlay.active .modal-content {
	transform: translateY(0);
}

.close-modal {
	position: absolute;
	top: 20px;
	right: 25px;
	font-size: 30px;
	color: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	transition: all 0.3s ease;
	z-index: 1001;
}

.close-modal:hover {
	color: var(--primary);
	transform: scale(1.1);
}

.modern-form .form-group {
	margin-bottom: 20px;
	text-align: left;
}

.modern-form .form-group input,
.modern-form .form-group textarea {
	width: 100%;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid var(--glass-border);
	border-radius: 12px;
	padding: 15px 20px;
	color: #fff;
	font-family: inherit;
	transition: all 0.3s ease;
}

.modern-form .form-group input:focus,
.modern-form .form-group textarea:focus {
	outline: none;
	border-color: var(--primary);
	background: rgba(255, 255, 255, 0.08);
	box-shadow: 0 0 15px rgba(0, 240, 255, 0.1);
}

@media (max-width: 1100px) {
	.mvv-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
}

@media (max-width: 600px) {
	.mvv-grid {
		grid-template-columns: 1fr;
	}

	.main-navbar {
		padding: 10px 20px;
		margin-bottom: 30px;
	}

	.nav-brand h3 {
		font-size: 18px;
	}
}