@charset "utf-8";
/* CSS Document 

TemplateMo 603 Nexaverse

https://templatemo.com/tm-603-nexaverse

*/

* {
	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, 0, 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;
}

.orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	animation: float 20s ease-in-out infinite;
}

.orb-1 {
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, var(--glow-cyan) 0%, transparent 70%);
	top: -200px;
	left: -200px;
	animation-delay: 0s;
}

.orb-2 {
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, var(--glow-magenta) 0%, transparent 70%);
	bottom: -150px;
	right: -150px;
	animation-delay: -7s;
}

.orb-3 {
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(157, 78, 221, 0.3) 0%, transparent 70%);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	animation-delay: -14s;
}

@keyframes float {

	0%,
	100% {
		transform: translate(0, 0) scale(1);
	}

	25% {
		transform: translate(50px, -30px) scale(1.05);
	}

	50% {
		transform: translate(-30px, 50px) scale(0.95);
	}

	75% {
		transform: translate(-50px, -20px) scale(1.02);
	}
}

/* The Background Grid Pattern 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:
		radial-gradient(circle at 30% 30%, rgba(0, 240, 255, 0.12), transparent 34%),
		radial-gradient(circle at 72% 64%, rgba(255, 0, 212, 0.1), transparent 32%),
		linear-gradient(180deg, rgba(10, 10, 18, 0.98) 0%, rgba(10, 10, 18, 1) 100%);
	z-index: 10000;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	transition: opacity 0.8s ease, visibility 0.8s ease;
	overflow: hidden;
}

.loading-screen::before,
.loading-screen::after {
	content: '';
	position: absolute;
	width: 320px;
	height: 320px;
	border-radius: 58% 42% 65% 35% / 40% 60% 40% 60%;
	filter: blur(70px);
	opacity: 0.18;
	pointer-events: none;
}

.loading-screen::before {
	background: rgba(0, 240, 255, 0.65);
	left: -90px;
	top: 16%;
	animation: liquidAura 9s ease-in-out infinite alternate;
}

.loading-screen::after {
	background: rgba(255, 0, 212, 0.45);
	right: -110px;
	bottom: 12%;
	animation: liquidAura 11s ease-in-out infinite alternate-reverse;
}

.loading-screen.hidden {
	opacity: 0;
	visibility: hidden;
}

.loader-ring {
	width: 118px;
	height: 118px;
	position: relative;
	border-radius: 58% 42% 63% 37% / 43% 58% 42% 57%;
	background:
		radial-gradient(circle at 32% 30%, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.26) 16%, transparent 33%),
		radial-gradient(circle at 68% 70%, rgba(255, 255, 255, 0.18) 0%, transparent 28%),
		linear-gradient(145deg, rgba(38, 52, 115, 0.98) 0%, rgba(0, 240, 255, 0.85) 42%, rgba(255, 0, 212, 0.72) 100%);
	box-shadow:
		0 0 0 1px rgba(255, 255, 255, 0.08) inset,
		0 18px 40px rgba(0, 0, 0, 0.36),
		0 0 42px rgba(0, 240, 255, 0.22);
	filter: saturate(115%);
	animation: liquidMorph 3.4s ease-in-out infinite, liquidFloat 5s ease-in-out infinite;
}

.loader-ring::before,
.loader-ring::after {
	content: '';
	position: absolute;
	border-radius: inherit;
}

.loader-ring::before {
	inset: 12px;
	background:
		radial-gradient(circle at 38% 34%, rgba(255, 255, 255, 0.62) 0%, rgba(255, 255, 255, 0.18) 18%, transparent 34%),
		linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.03));
	backdrop-filter: blur(4px);
	animation: liquidMorph 2.8s ease-in-out infinite reverse, liquidPulse 2.4s ease-in-out infinite;
}

.loader-ring::after {
	inset: -16px;
	background: radial-gradient(circle, rgba(0, 240, 255, 0.22) 0%, rgba(255, 0, 212, 0.12) 45%, transparent 72%);
	filter: blur(12px);
	opacity: 0.95;
	animation: liquidHalo 3.6s ease-in-out infinite;
	z-index: -1;
}

@keyframes liquidMorph {
	0%, 100% {
		border-radius: 58% 42% 63% 37% / 43% 58% 42% 57%;
		transform: rotate(0deg) scale(1);
	}
	25% {
		border-radius: 44% 56% 38% 62% / 58% 37% 63% 42%;
		transform: rotate(6deg) scale(1.03, 0.98);
	}
	50% {
		border-radius: 63% 37% 56% 44% / 40% 52% 48% 60%;
		transform: rotate(-7deg) scale(0.97, 1.04);
	}
	75% {
		border-radius: 38% 62% 48% 52% / 50% 44% 56% 50%;
		transform: rotate(4deg) scale(1.02, 0.99);
	}
}

@keyframes liquidFloat {
	0%, 100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-10px);
	}
}

@keyframes liquidPulse {
	0%, 100% {
		opacity: 0.9;
		transform: scale(1);
	}
	50% {
		opacity: 0.65;
		transform: scale(0.94);
	}
}

@keyframes liquidHalo {
	0%, 100% {
		transform: scale(0.92);
		opacity: 0.78;
	}
	50% {
		transform: scale(1.08);
		opacity: 1;
	}
}

@keyframes liquidAura {
	0% {
		transform: translate3d(0, 0, 0) scale(1);
	}
	100% {
		transform: translate3d(24px, -18px, 0) scale(1.18);
	}
}

.loading-text {
	margin-top: 34px;
	font-family: 'Syne', sans-serif;
	font-size: 12px;
	letter-spacing: 4px;
	color: rgba(255, 255, 255, 0.88);
	text-transform: uppercase;
	text-align: center;
	max-width: min(88vw, 540px);
}

/* Main Container */
.container {
	position: relative;
	z-index: 10;
	padding: 40px 20px;
	max-width: 1200px;
	margin: 0 auto;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

/* Header */
.header {
	text-align: center;
	margin-bottom: 60px;
	opacity: 0;
	animation: fadeUp 0.8s ease-out 1s forwards;
}

@keyframes fadeUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}

	from {
		transform: translateY(30px);
	}
}

.logo {
	width: 90px;
	height: 90px;
	margin: 0 auto 25px;
	position: relative;
}

.logo svg {
	width: 100%;
	height: 100%;
	filter: drop-shadow(0 0 20px var(--glow-cyan));
}

.brand-name {
	font-family: 'Syne', sans-serif;
	font-size: 50px;
	font-weight: 600;
	letter-spacing: 6px;
	margin-bottom: 12px;
	background: linear-gradient(135deg, var(--primary) 0%, #ffffff 50%, var(--secondary) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-transform: uppercase;
}

.tagline {
	font-size: 13px;
	letter-spacing: 5px;
	color: rgba(255, 255, 255, 0.5);
	text-transform: uppercase;
	font-weight: 300;
}

/* Menu Grid */
.menu-grid {
	display: grid;
	grid-template-columns: repeat(5, 204px);
	gap: 25px;
	margin: 0 auto 40px;
	justify-content: center;
}

.menu-item {
	height: 170px;
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: 24px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	opacity: 0;
	transform: translateY(30px) scale(0.9);
	transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Glossy effect overlay */
.menu-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 50%;
	background: linear-gradient(180deg,
			rgba(255, 255, 255, 0.12) 0%,
			rgba(255, 255, 255, 0.05) 40%,
			transparent 100%);
	border-radius: 24px 24px 0 0;
	pointer-events: none;
}

/* Glow ring on hover - removed, using cleaner border style */
.menu-item::after {
	display: none;
}

.menu-item:hover {
	transform: translateY(-10px) scale(1.02);
	background: rgba(0, 240, 255, 0.08);
	border-color: var(--primary);
	box-shadow:
		0 20px 40px rgba(0, 0, 0, 0.4),
		0 0 30px rgba(0, 200, 220, 0.2);
}

.menu-item.visible {
	opacity: 1;
	transform: translateY(0) scale(1);
}

.menu-item.initial-load {
	animation: menuAppear 0.5s ease-out forwards;
}

.menu-item.initial-load:nth-child(1) {
	animation-delay: 1.1s;
}

.menu-item.initial-load:nth-child(2) {
	animation-delay: 1.2s;
}

.menu-item.initial-load:nth-child(3) {
	animation-delay: 1.3s;
}

.menu-item.initial-load:nth-child(4) {
	animation-delay: 1.4s;
}

.menu-item.initial-load:nth-child(5) {
	animation-delay: 1.5s;
}

.menu-item.initial-load:nth-child(6) {
	animation-delay: 1.6s;
}

@keyframes menuAppear {
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

/* Menu Badge - Replaces Icons */
.menu-badge {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: 'Syne', sans-serif;
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 15px;
	position: relative;
	background: linear-gradient(135deg,
			rgba(0, 240, 255, 0.15) 0%,
			rgba(255, 0, 212, 0.15) 100%);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: var(--primary);
	text-shadow: 0 0 20px var(--glow-cyan);
	transition: all 0.4s ease;
	overflow: hidden;
}

/* Inner glossy shine */
.menu-badge::before {
	content: '';
	position: absolute;
	top: 2px;
	left: 10%;
	right: 10%;
	height: 45%;
	background: linear-gradient(180deg,
			rgba(255, 255, 255, 0.3) 0%,
			transparent 100%);
	border-radius: 50%;
	pointer-events: none;
}

/* Animated ring */
.menu-badge::after {
	content: '';
	position: absolute;
	inset: -3px;
	border-radius: 50%;
	border: 2px solid transparent;
	border-top-color: var(--primary);
	border-right-color: rgba(0, 200, 220, 0.5);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.menu-item:hover .menu-badge {
	background: linear-gradient(135deg,
			rgba(0, 240, 255, 0.2) 0%,
			rgba(0, 200, 220, 0.15) 100%);
	transform: scale(1.1);
	box-shadow: 0 0 25px rgba(0, 200, 220, 0.25);
}

.menu-item:hover .menu-badge::after {
	opacity: 1;
	animation: badgeSpin 2s linear infinite;
}

@keyframes badgeSpin {
	to {
		transform: rotate(360deg);
	}
}

.menu-title {
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.7);
	transition: all 0.3s ease;
}

.menu-item:hover .menu-title {
	color: #ffffff;
	letter-spacing: 4px;
}

/* Content Sections */
.content-section {
	display: none;
	opacity: 0;
	padding: 80px 20px;
	position: relative;
}

.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);
	}
}

/* Section Header Small */
.section-header-small {
	position: fixed;
	top: 20px;
	left: 20px;
	display: flex;
	align-items: center;
	gap: 12px;
	z-index: 100;
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	padding: 12px 20px;
	border-radius: 50px;
	border: 1px solid var(--glass-border);
}

.small-logo {
	width: 40px;
	height: 32px;
	transition: transform 0.25s ease, filter 0.25s ease;
}

.section-header-small {
	cursor: pointer;
	transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.section-header-small:hover {
	transform: translateY(-2px);
	border-color: rgba(255, 0, 212, 0.4);;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.section-header-small:hover .small-logo {
	transform: scale(1.06);
	filter: drop-shadow(0 0 12px rgba(255, 0, 212, 0.4));
}

.small-logo svg {
	width: 70%;
	height: 70%;
	filter: drop-shadow(0 0 10px var(--glow-cyan));
}

.small-brand h3 {
	font-family: 'Syne', sans-serif;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 2px;
	color: var(--primary);
}

.small-brand p {
	font-size: 9px;
	letter-spacing: 1px;
	color: rgba(255, 255, 255, 0.5);
	margin-top: 2px;
}

/* Back Button */
.back-btn {
	position: fixed;
	top: 20px;
	right: 20px;
	padding: 12px 24px;
	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.8);
	font-family: 'Outfit', sans-serif;
	font-size: 13px;
	letter-spacing: 2px;
	cursor: pointer;
	transition: all 0.3s ease;
	z-index: 100;
}

.back-btn:hover {
	background: rgba(0, 240, 255, 0.1);
	border-color: var(--primary);
	color: var(--primary);
	box-shadow: 0 0 20px var(--glow-cyan);
}

/* Section Content */
.section-header {
	text-align: center;
	margin-bottom: 50px;
}

.section-title {
	font-family: 'Syne', sans-serif;
	font-size: 42px;
	font-weight: 600;
	margin-bottom: 15px;
	background: linear-gradient(135deg, var(--primary) 0%, #ffffff 50%, var(--secondary) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.section-subtitle {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.5);
	letter-spacing: 2px;
}

/* Glass Cards */
.glass-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;
	transition: all 0.4s ease;
}

.glass-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.glass-card:hover {
	background: rgba(255, 255, 255, 0.05);
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* ===== NEW INTRODUCTION SECTION STYLES ===== */

/* Hero Banner */
.intro-hero {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	margin-bottom: 60px;
	padding: 40px 0;
}

.intro-hero-content {
	max-width: 550px;
}

.intro-badge {
	display: inline-block;
	padding: 8px 18px;
	background: rgba(0, 240, 255, 0.1);
	border: 1px solid rgba(0, 240, 255, 0.3);
	border-radius: 50px;
	font-size: 12px;
	letter-spacing: 2px;
	color: var(--primary);
	margin-bottom: 25px;
}

.intro-headline {
	font-family: 'Syne', sans-serif;
	font-size: 52px;
	font-weight: 700;
	line-height: 1.15;
	margin-bottom: 25px;
	color: #ffffff;
}

.intro-headline span {
	background: linear-gradient(135deg, var(--primary), var(--accent));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.intro-subtext {
	font-size: 17px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.6);
	margin-bottom: 35px;
}

.intro-cta-group {
	display: flex;
	gap: 15px;
}

.intro-cta-primary {
	padding: 14px 32px;
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--primary);
	border-radius: 50px;
	color: var(--primary);
	font-family: 'Outfit', sans-serif;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 1px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.intro-cta-primary:hover {
	background: rgba(0, 240, 255, 0.15);
	box-shadow: 0 0 25px rgba(0, 200, 220, 0.3);
	transform: translateY(-2px);
}

.intro-cta-secondary {
	padding: 14px 32px;
	background: transparent;
	border: 1px solid var(--glass-border);
	border-radius: 50px;
	color: rgba(255, 255, 255, 0.7);
	font-family: 'Outfit', sans-serif;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 1px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.intro-cta-secondary:hover {
	border-color: rgba(255, 255, 255, 0.3);
	color: #ffffff;
}

/* Hero Visual */
.intro-hero-visual {
	position: relative;
	height: 400px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.intro-orb {
	width: 280px;
	height: 280px;
	border-radius: 50%;
	background: radial-gradient(circle at 30% 30%, rgba(0, 240, 255, 0.3), rgba(157, 78, 221, 0.2) 50%, transparent 70%);
	filter: blur(40px);
	animation: orbPulse 4s ease-in-out infinite;
}

@keyframes orbPulse {

	0%,
	100% {
		transform: scale(1);
		opacity: 0.7;
	}

	50% {
		transform: scale(1.1);
		opacity: 1;
	}
}

.intro-floating-card {
	position: absolute;
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: 14px;
	padding: 16px 22px;
	display: flex;
	align-items: center;
	gap: 12px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
	animation: floatCard 6s ease-in-out infinite;
}

.intro-floating-card::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: 14px 14px 0 0;
	pointer-events: none;
}

.card-icon {
	font-size: 20px;
}

.card-text {
	font-size: 13px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.9);
	letter-spacing: 0.5px;
}

.card-1 {
	top: 20px;
	left: 10%;
	animation-delay: 0s;
}

.card-2 {
	top: 33%;
	right: 5%;
	transform: translateY(-50%);
	animation-delay: -2s;
}

.card-3 {
	top: 45%;
	left: 10%;
	animation-delay: -4s;
}
.card-4 {
	top: 65%;
	left: 40%;
	animation-delay: 0s;
}

.card-5 {
	top: 85%;
	right: 5%;
	transform: translateY(-50%);
	animation-delay: -2s;
}

.card-6 {
	top: 110%;
	left: 15%;
	animation-delay: -4s;
}

@keyframes floatCard {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-15px);
	}
}

.card-2 {
	animation-name: floatCardAlt;
}

@keyframes floatCardAlt {

	0%,
	100% {
		transform: translateY(-50%);
	}

	50% {
		transform: translateY(calc(-50% - 15px));
	}
}

/* Metrics Strip */
.intro-metrics {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 50px;
	padding: 40px 50px;
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: 20px;
	margin-bottom: 60px;
	position: relative;
	overflow: hidden;
}

.intro-metrics::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.metric-item {
	text-align: center;
}

.metric-value {
	font-family: 'Syne', sans-serif;
	font-size: 42px;
	font-weight: 700;
	background: linear-gradient(135deg, var(--primary), var(--accent));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	display: inline;
}

.metric-suffix {
	font-family: 'Syne', sans-serif;
	font-size: 28px;
	font-weight: 700;
	background: linear-gradient(135deg, var(--primary), var(--accent));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.metric-label {
	display: block;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.5);
	margin-top: 8px;
	letter-spacing: 1px;
}

.metric-divider {
	width: 1px;
	height: 50px;
	background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

/* Core Values */
.intro-values {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
	margin-bottom: 60px;
}

.value-card {
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: 20px;
	padding: 35px 30px;
	position: relative;
	overflow: hidden;
	transition: all 0.4s ease;
}

.value-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
}

.value-card:hover {
	transform: translateY(-8px);
	border-color: rgba(0, 240, 255, 0.2);
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.value-number {
	font-family: 'Syne', sans-serif;
	font-size: 48px;
	font-weight: 700;
	color: rgba(0, 240, 255, 0.15);
	margin-bottom: 15px;
	line-height: 1;
}

.value-card h3 {
	font-family: 'Syne', sans-serif;
	font-size: 20px;
	font-weight: 600;
	color: var(--primary);
	margin-bottom: 12px;
}

.value-card p {
	font-size: 14px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.6);
}

/* Tech Stack */
.intro-tech {
	text-align: center;
}

.tech-label {
	font-size: 12px;
	letter-spacing: 3px;
	color: rgba(255, 255, 255, 0.4);
	text-transform: uppercase;
	margin-bottom: 10px;
}

.tech-marquee {
	overflow: hidden;
	position: relative;
	padding: 20px 0;
}

.tech-marquee::before,
.tech-marquee::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	width: 100px;
	z-index: 2;
	pointer-events: none;
}

.tech-marquee::before {
	left: 0;
	background: linear-gradient(90deg, var(--dark-1), transparent);
}

.tech-marquee::after {
	right: 0;
	background: linear-gradient(-90deg, var(--dark-1), transparent);
}

.tech-track {
	display: flex;
	width: max-content;
	gap: 40px;
	will-change: transform;
	animation: marquee 18s linear infinite;
}

@keyframes marquee {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}

.tech-item {
	font-family: 'Syne', sans-serif;
	font-size: 18px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.3);
	white-space: nowrap;
	transition: color 0.3s ease;
}

.tech-item:hover {
	color: var(--primary);
}

/* 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: 16px;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.7;
}

.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 {
	font-size: 17px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.6);
	margin-bottom: 15px;
	text-align: justify !important;
	text-justify: inter-word;
	hyphens: auto;
}
.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));
}




.values-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.value-feature-card {
	display: flex;
	align-items: flex-start;
	gap: 18px;
	padding: 28px 26px;
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: 22px;
	transition: all 0.35s ease;
	position: relative;
	overflow: hidden;
}

.value-feature-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.16), transparent);
}

.value-feature-card:hover {
	transform: translateY(-6px);
	border-color: rgba(0, 240, 255, 0.22);
	box-shadow: 0 20px 45px rgba(0,0,0,0.28);
}

.value-feature-icon {
	width: 72px;
	height: 72px;
	min-width: 72px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 22px;
	background: linear-gradient(135deg, rgba(0,240,255,0.08), rgba(255,0,212,0.08));
	border: 1px solid rgba(255,255,255,0.09);
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.10), 0 12px 35px rgba(0,0,0,0.18);
	overflow: visible;
	isolation: isolate;
}

.value-icon-core {
	position: relative;
	z-index: 3;
	width: 52px;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 18px;
	background: linear-gradient(135deg, rgba(8, 12, 22, 0.88), rgba(20, 25, 38, 0.82));
	border: 1px solid rgba(255,255,255,0.08);
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.value-icon-core i {
	font-size: 22px;
	line-height: 1;
	background: linear-gradient(135deg, rgba(0,240,255,0.98), rgba(157,78,221,0.98), rgba(255,0,212,0.92));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	animation: valueIconFloat 4.5s ease-in-out infinite;
}

.value-icon-ring,
.value-icon-pulse {
	position: absolute;
	inset: -3px;
	border-radius: 24px;
	pointer-events: none;
}

.value-icon-ring.ring-one {
	border: 1px solid rgba(0,240,255,0.24);
	clip-path: polygon(0 0, 58% 0, 58% 18%, 100% 18%, 100% 100%, 42% 100%, 42% 82%, 0 82%);
	animation: valueRingSpin 9s linear infinite;
}

.value-icon-ring.ring-two {
	inset: -8px;
	border: 1px dashed rgba(255,255,255,0.18);
	border-radius: 28px;
	animation: valueRingSpinReverse 12s linear infinite;
	opacity: 0.9;
}

.value-icon-pulse {
	background: radial-gradient(circle, rgba(0,240,255,0.18) 0%, rgba(157,78,221,0.12) 35%, rgba(255,0,212,0) 70%);
	animation: valuePulse 3.6s ease-in-out infinite;
	z-index: 1;
}

.value-icon-people .value-icon-core i {
	animation-delay: -0.2s;
}

.value-icon-communication .value-icon-core i {
	animation-duration: 4s;
}

.value-icon-speed .value-icon-core i {
	animation-duration: 3.4s;
}

.value-icon-mindset .value-icon-core i {
	animation-duration: 5s;
}

.value-icon-commitment .value-icon-core i {
	animation-duration: 4.7s;
}

.value-icon-ownership .value-icon-core i {
	animation-duration: 3.8s;
}

.value-feature-card:hover .value-icon-ring.ring-one {
	animation-duration: 5.5s;
	border-color: rgba(0,240,255,0.36);
}

.value-feature-card:hover .value-icon-ring.ring-two {
	animation-duration: 8s;
	border-color: rgba(255,255,255,0.24);
}

.value-feature-card:hover .value-icon-pulse {
	animation-duration: 2.2s;
}

.value-feature-card:hover .value-icon-core i {
	transform: scale(1.08);
}

@keyframes valueIconFloat {
	0%, 100% {
		transform: translateY(0px) scale(1);
		filter: drop-shadow(0 0 0 rgba(0,240,255,0.0));
	}
	50% {
		transform: translateY(-4px) scale(1.04);
		filter: drop-shadow(0 0 10px rgba(0,240,255,0.16));
	}
}

@keyframes valueRingSpin {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

@keyframes valueRingSpinReverse {
	from {
		transform: rotate(360deg);
	}
	to {
		transform: rotate(0deg);
	}
}

@keyframes valuePulse {
	0%, 100% {
		transform: scale(0.92);
		opacity: 0.45;
	}
	50% {
		transform: scale(1.12);
		opacity: 0.95;
	}
}

.value-feature-body h3 {
	font-family: 'Syne', sans-serif;
	font-size: 22px;
	color: var(--primary);
	margin-bottom: 10px;
}

.value-feature-body p {
	margin: 0;
	font-size: 14px;
	line-height: 1.8;
	color: rgba(255,255,255,0.68);

}

/* 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 {
	align-content: center;
	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;
}

.form-group select {
	align-content: center;
	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: rgba(255, 255, 255, 0.7);
	font-family: 'Outfit', sans-serif;
	font-size: 14px;
	transition: all 0.3s ease;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	cursor: pointer;
	
}

.form-group select:focus {
	outline: none;
	border-color: var(--secondary);
	box-shadow: 0 0 20px var(--glow-magenta);
}

.form-group select option {
	background: #111;
	color: #fff;
	
}

.select-arrow {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	color: rgba(255, 255, 255, 0.5);
	font-size: 12px;
	pointer-events: none;
	transition: all 0.3s ease;
}

.select-group select:focus + .select-arrow {
	color: var(--primary);
}
.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);
}

.form-status {
	display: none;
	padding: 14px 16px;
	border-radius: 12px;
	font-size: 14px;
	line-height: 1.5;
	border: 1px solid transparent;
}

.form-status.success {
	display: block;
	background: rgba(0, 240, 255, 0.08);
	border-color: rgba(0, 240, 255, 0.25);
	color: #bffbff;
}

.form-status.error {
	display: block;
	background: rgba(255, 70, 70, 0.08);
	border-color: rgba(255, 70, 70, 0.25);
	color: #ffd0d0;
}

.submit-btn:disabled {
	opacity: 0.7;
	cursor: not-allowed;
	transform: none;
}

    .hidden {
      display: none;
    }

.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 {
	position: relative;
	width: 56px;
	height: 56px;
	min-width: 56px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0) 42%),
		linear-gradient(135deg, rgba(0, 240, 255, 0.16), rgba(157, 78, 221, 0.2));
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.08);
	overflow: hidden;
	isolation: isolate;
}

.contact-icon-core,
.contact-icon-ring,
.contact-icon-pulse {
	position: absolute;
	border-radius: 50%;
}

.contact-icon-core {
	width: 40px;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(10, 10, 18, 0.55);
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
	z-index: 2;
}

.contact-icon-core i {
	font-size: 18px;
	color: #ffffff;
	animation: contactIconFloat 4.4s ease-in-out infinite;
}

.contact-icon-ring {
	inset: 4px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	opacity: 0.6;
	pointer-events: none;
}

.contact-icon-ring.ring-one {
	animation: contactRingDrift 7s linear infinite;
}

.contact-icon-ring.ring-two {
	inset: 9px;
	border-style: dashed;
	opacity: 0.38;
	animation: contactRingReverse 9s linear infinite;
}

.contact-icon-pulse {
	inset: 10px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0) 72%);
	animation: contactPulse 3.2s ease-in-out infinite;
	z-index: 1;
	pointer-events: none;
}

.contact-item:hover .contact-icon {
	border-color: rgba(0, 240, 255, 0.34);
	box-shadow: 0 18px 36px rgba(0, 0, 0, 0.3), 0 0 22px rgba(0, 240, 255, 0.12);
}

.contact-item:hover .contact-icon-core i {
	transform: scale(1.08);
}

.contact-icon-location .contact-icon-core i {
	color: #9ee7ff;
}

.contact-icon-hours .contact-icon-core i {
	color: #d4b3ff;
}

.contact-icon-socials .contact-icon-core i {
	color: #ffffff;
}

@keyframes contactIconFloat {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-2px);
	}
}

@keyframes contactRingDrift {
	from {
		transform: rotate(0deg) scale(1);
	}
	50% {
		transform: rotate(180deg) scale(1.03);
	}
	to {
		transform: rotate(360deg) scale(1);
	}
}

@keyframes contactRingReverse {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(-360deg);
	}
}

@keyframes contactPulse {
	0%,
	100% {
		transform: scale(0.86);
		opacity: 0.25;
	}
	50% {
		transform: scale(1.08);
		opacity: 0.55;
	}
}

.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;
}


.contact-social {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px;
	margin: 10px 0 0;
	padding: 0;
}

.contact-social li {
	margin: 0;
	padding: 0;
	list-style: none;
	animation: socialFloat 4.8s ease-in-out infinite;
}

.contact-social li:nth-child(2) {
	animation-delay: -2.4s;
}

.social-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-width: 170px;
	padding: 12px 18px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: linear-gradient(135deg, rgba(0, 240, 255, 0.08), rgba(255, 0, 212, 0.08));
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
	color: #ffffff;
	text-decoration: none;
	overflow: hidden;
	isolation: isolate;
	transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}


.social-btn:hover,
.social-btn:focus-visible {
	transform: translateY(-4px) scale(1.03);
	border-color: rgba(0, 240, 255, 0.45);
	box-shadow: 0 16px 38px rgba(0, 0, 0, 0.3), 0 0 24px rgba(0, 240, 255, 0.16);
	outline: none;
}

.social-btn:active {
	transform: translateY(-1px) scale(0.99);
}

.social-btn-glow {
	position: absolute;
	inset: auto;
	width: 88px;
	height: 88px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0) 68%);
	top: -34px;
	right: -18px;
	opacity: 0.7;
	z-index: 0;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-btn::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, transparent 15%, rgba(255, 255, 255, 0.18) 32%, transparent 50%);
	transform: translateX(-135%);
	transition: transform 0.65s ease;
	z-index: 0;
}

.social-btn:hover::before,
.social-btn:focus-visible::before {
	transform: translateX(135%);
}

.social-btn:hover .social-btn-glow,
.social-btn:focus-visible .social-btn-glow {
	transform: scale(1.15);
	opacity: 1;
}

.social-btn-icon,
.social-btn-text {
	position: relative;
	z-index: 1;
}

.social-btn-icon {
	width: 38px;
	height: 38px;
	min-width: 38px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.18);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.social-btn-icon i {
	font-size: 16px;
	line-height: 1;
}

.social-btn-text {
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.04em;
}

.social-facebook:hover,
.social-facebook:focus-visible {
	border-color: rgba(24, 119, 242, 0.55);
	box-shadow: 0 16px 38px rgba(0, 0, 0, 0.3), 0 0 26px rgba(24, 119, 242, 0.2);
}

.social-linkedin:hover,
.social-linkedin:focus-visible {
	border-color: rgba(10, 102, 194, 0.55);
	box-shadow: 0 16px 38px rgba(0, 0, 0, 0.3), 0 0 26px rgba(10, 102, 194, 0.2);
}

@keyframes socialFloat {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-5px);
	}
}

	

/* 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);
	}
}

/* Footer */
.footer {
	margin-top: auto;
	padding: 30px 0;
	text-align: center;
	opacity: 0;
	animation: fadeUp 0.5s ease-out 1.7s forwards;
}

.footer p {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.4);
	letter-spacing: 1px;
}

.footer a {
	color: var(--primary);
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer a:hover {
	color: var(--secondary);
}


/* Responsive Design */
@media (max-width: 992px) {
	.menu-grid {
		grid-template-columns: repeat(3, 170px);
	}

	.menu-item {
		height: 145px;
	}

	.intro-hero {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.intro-hero-content {
		text-align: center;
		max-width: 100%;
	}

	.intro-cta-group {
		justify-content: center;
	}

	.intro-hero-visual {
		height: 300px;
	}

	.intro-metrics {
		flex-wrap: wrap;
		gap: 30px;
	}

	.metric-divider {
		display: none;
	}

	.intro-values {
		grid-template-columns: 1fr;
	}

	.services-list {
		grid-template-columns: 1fr;
	}

	.gallery-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.about-content,
	.contact-grid,
	.values-grid {
		grid-template-columns: 1fr;
	}


}

@media (max-width: 768px) {
	.brand-name {
		font-size: 36px;
		letter-spacing: 4px;
	}

	.menu-grid {
		grid-template-columns: repeat(2, 155px);
		gap: 15px;
	}

	.menu-item {
		height: 135px;
	}

	.menu-badge {
		width: 50px;
		height: 50px;
		font-size: 18px;
	}

	.section-title {
		font-size: 28px;
	}

	.intro-headline {
		font-size: 36px;
	}

	.intro-hero-visual {
		display: none;
	}

	.intro-metrics {
		padding: 30px 25px;
	}

	.metric-value {
		font-size: 32px;
	}

	.service-row {
		flex-direction: column;
		text-align: center;
	}

	.service-row-icon {
		width: 200px;
		height: 150px;
		min-width: 120px;
	}

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

	.section-header-small {
		position: relative;
		top: auto;
		left: auto;
		margin-bottom: 20px;
		justify-content: center;
	}

	.back-btn {
		position: relative;
		top: auto;
		right: auto;
		display: block;
		width: fit-content;
		margin: 0 auto 30px;
	}

	.content-section {
		padding-top: 20px;
	}
}

@media (max-width: 480px) {
	.container {
		padding: 20px 15px;
	}

	.brand-name {
		font-size: 28px;
		letter-spacing: 3px;
	}

	.tagline {
		font-size: 10px;
		letter-spacing: 3px;
	}

	.menu-grid {
		grid-template-columns: repeat(2, 130px);
		gap: 12px;
	}

	.menu-item {
		height: 120px;
	}

	.menu-badge {
		width: 45px;
		height: 45px;
		font-size: 16px;
	}

	.menu-title {
		font-size: 10px;
		letter-spacing: 2px;
	}

	.intro-headline {
		font-size: 28px;
	}

	.intro-subtext {
		font-size: 15px;
	}

	.intro-cta-group {
		flex-direction: column;
		align-items: center;
	}

	.intro-cta-primary,
	.intro-cta-secondary {
		width: 100%;
		max-width: 250px;
		text-align: center;
	}

	.intro-metrics {
		flex-direction: column;
		gap: 25px;
	}

	.metric-value {
		font-size: 36px;
	}

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

	.tab-buttons {
		flex-direction: column;
		align-items: center;
	}

	.tab-btn {
		width: 100%;
		max-width: 250px;
	}
}
@media (max-width: 768px) {
	.value-feature-card {
		padding: 24px 20px;
	}

	
}

@media (max-width: 480px) {
	.value-feature-card {
		flex-direction: column;
	}

	.value-feature-icon {
		width: 52px;
		height: 52px;
		min-width: 52px;
	}

	
}
html,
body {
	overflow-x: hidden;
}

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

.container,
.content-section,
.intro-hero,
.intro-metrics,
.services-list,
.contact-grid,
.about-content,
.values-grid {
	min-width: 0;
}

.section-title,
.section-subtitle,
.intro-headline,
.intro-subtext,
.about-text p,
.service-row-content h4,
.service-row-content p,
.value-feature-body h3,
.value-feature-body p,
.contact-details p,
.contact-details h4 {
	word-wrap: break-word;
	overflow-wrap: break-word;
}

/* Büyük sabit navigasyonlar içerikle çakışmasın */
.content-section {
	padding-top: 110px;
	padding-left: 20px;
	padding-right: 20px;
}

/* Tablet */
@media (max-width: 991px) {
	.container {
		padding: 30px 16px;
	}

	.menu-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		width: 100%;
		max-width: 420px;
	}

	.menu-item {
		width: 100%;
	}

	.intro-hero {
		grid-template-columns: 1fr;
		gap: 30px;
		margin-bottom: 40px;
	}

	.intro-hero-content {
		max-width: 100%;
		text-align: center;
	}

	.intro-cta-group {
		justify-content: center;
		flex-wrap: wrap;
	}

	.intro-metrics {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 20px;
		padding: 28px 20px;
	}

	.metric-divider {
		display: none;
	}

	.about-content,
	.contact-grid,
	.values-grid,
	.services-list {
		grid-template-columns: 1fr;
	}

	.service-row {
		align-items: flex-start;
	}

	.service-row-icon {
	width: 240px;
	height: 180px;
	min-width: 140px;
}

	.section-header-small {
		max-width: calc(100% - 110px);
		padding: 10px 14px;
	}

	.small-brand h3 {
		font-size: 12px;
		letter-spacing: 1px;
	}

	.small-brand p {
		font-size: 8px;
	}

	.section-switcher {
		grid-template-columns: repeat(5, 44px) !important;
		padding: 8px 9px !important;
		gap: 6px !important;
		right: 14px !important;
		top: 14px !important;
	}

	.section-nav-btn {
		width: 44px !important;
		height: 44px !important;
		font-size: 13px !important;
	}
}

/* Mobil */
@media (max-width: 768px) {
	.container {
		padding: 22px 14px;
	}

	.header {
		margin-bottom: 35px;
	}

	.logo {
		width: 72px;
		height: 72px;
		margin-bottom: 18px;
	}

	.brand-name {
		font-size: 30px;
		letter-spacing: 2px;
	}

	.tagline {
		font-size: 10px;
		letter-spacing: 2px;
		line-height: 1.5;
	}

	.menu-grid {
		grid-template-columns: 1fr 1fr;
		gap: 12px;
		max-width: 100%;
	}

	.menu-item {
		height: 118px;
		border-radius: 18px;
	}

	.menu-badge {
		width: 44px;
		height: 44px;
		font-size: 16px;
		margin-bottom: 10px;
	}

	.menu-title {
		font-size: 10px;
		letter-spacing: 1.5px;
		text-align: center;
		padding: 0 6px;
	}

	.content-section {
		padding-top: 24px;
		padding-left: 0;
		padding-right: 0;
	}

	.section-header-small {
		position: relative;
		top: auto;
		left: auto;
		max-width: 100%;
		width: 100%;
		justify-content: center;
		margin-bottom: 18px;
		border-radius: 18px;
	}

	.section-switcher {
		position: sticky !important;
		top: 10px !important;
		right: auto !important;
		bottom: auto !important;
		left: 0;
		margin: 0 auto 20px;
		width: fit-content;
		grid-template-columns: repeat(5, 42px) !important;
		padding: 8px !important;
		z-index: 90;
	}

	.section-nav-btn {
		width: 42px !important;
		height: 42px !important;
		font-size: 12px !important;
	}

	.section-header {
		margin-bottom: 30px;
	}

	.section-title {
		font-size: 28px;
		line-height: 1.2;
	}

	.section-subtitle {
		font-size: 13px;
		letter-spacing: 0.5px;
		line-height: 1.6;
	}

	.intro-headline {
		font-size: 30px;
		line-height: 1.2;
	}

	.intro-subtext {
		font-size: 15px;
		line-height: 1.6;
	}

	.intro-cta-group {
		flex-direction: column;
		align-items: stretch;
	}

	.intro-cta-primary,
	.intro-cta-secondary {
		width: 100%;
	}

	.intro-hero-visual {
		display: none;
	}

	.intro-metrics {
		grid-template-columns: 1fr;
		padding: 24px 18px;
		border-radius: 18px;
	}

	.metric-item {
		padding: 4px 0;
	}

	.metric-value {
		font-size: 30px;
	}

	.metric-suffix {
		font-size: 22px;
	}

	.metric-label {
		font-size: 12px;
		line-height: 1.5;
	}

	.tab-buttons {
		display: grid;
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.tab-btn {
		width: 100%;
		padding: 12px 16px;
		font-size: 13px;
		text-align: center;
	}

	.service-row {
		flex-direction: column;
		align-items: stretch;
		text-align: left;
		padding: 16px;
		gap: 16px;
		border-radius: 16px;
	}

	.service-row-icon {
		width: 100%;
		height: 190px;
		min-width: 100%;
	}

	.service-row-content h4 {
		font-size: 17px;
		line-height: 1.4;
	}

	.service-row-content p {
		font-size: 13px;
		line-height: 1.6;
	}

	.values-grid {
		gap: 16px;
	}

	.value-feature-card {
		padding: 20px 16px;
		border-radius: 18px;
		gap: 14px;
	}

	.value-feature-icon {
		width: 64px;
		height: 64px;
		min-width: 64px;
		border-radius: 20px;
	}

	.value-icon-core {
		width: 46px;
		height: 46px;
		border-radius: 15px;
	}

	.value-icon-core i {
		font-size: 19px;
	}

	.value-feature-body h3 {
		font-size: 18px;
		line-height: 1.4;
	}

	.value-feature-body p {
		font-size: 13px;
		line-height: 1.7;
	}

	.about-content {
		gap: 24px;
	}

	

	.about-text h3 {
		font-size: 24px;
	}

	.about-text p {
		font-size: 14px;
		line-height: 1.8;
		text-align: left;
	}

	.contact-grid {
		gap: 22px;
	}

	.contact-form {
		gap: 14px;
	}

	.form-group input,
	.form-group textarea,
	.form-group select {
		padding: 15px 16px;
		font-size: 16px; /* iOS zoom engeller */
	}

	.form-group textarea {
		min-height: 130px;
	}

	.submit-btn {
		width: 100%;
		padding: 15px 18px;
	}

	.contact-item {
		padding: 18px 16px;
		gap: 14px;
		align-items: flex-start;
	}

	.contact-icon {
		width: 48px;
		height: 48px;
		min-width: 48px;
	}

	.contact-icon-core {
		width: 34px;
		height: 34px;
	}

	.contact-icon-core i {
		font-size: 15px;
	}

	.contact-details h4 {
		font-size: 13px;
	}

	.contact-details p {
		font-size: 14px;
		line-height: 1.6;
	}

	.contact-social {
		gap: 10px;
		margin-top: 10px;
	}

	.contact-social li {
		width: 100%;
	}

	.social-btn {
		width: 100%;
		min-width: 0;
		justify-content: flex-start;
		padding: 11px 14px;
		gap: 10px;
	}

	.social-btn-icon {
		width: 34px;
		height: 34px;
		min-width: 34px;
	}

	.social-btn-text {
		font-size: 13px;
	}

	.footer {
		padding: 24px 0 10px;
	}

	.tech-track {
		gap: 22px;
	}

	.tech-item {
		font-size: 15px;
	}
}

/* Küçük mobil */
@media (max-width: 480px) {
	.container {
		padding: 18px 12px;
	}

	.brand-name {
		font-size: 24px;
	}

	.tagline {
		font-size: 9px;
		letter-spacing: 1.5px;
	}

	.menu-grid {
		grid-template-columns: 1fr;
		max-width: 280px;
	}

	.menu-item {
		height: 108px;
	}

	.section-switcher {
		grid-template-columns: repeat(5, 38px) !important;
		gap: 5px !important;
		padding: 7px !important;
	}

	.section-nav-btn {
		width: 38px !important;
		height: 38px !important;
		font-size: 11px !important;
	}

	.intro-headline {
		font-size: 26px;
	}

	.section-title {
		font-size: 24px;
	}

	.service-row-icon {
		height: 170px;
	}

	.value-feature-card {
		flex-direction: column;
		align-items: flex-start;
	}

	.value-feature-icon {
		width: 50px;
		height: 50px;
		min-width: 50px;
		font-size: 22px;
	}

	.ai-vision-panel {
		min-height: 260px;
	}

	.ai-ring.ring-2,
	.beam-2,
	.beam-3 {
		display: none;
	}

	.orb-1 {
		width: 320px;
		height: 320px;
		top: -120px;
		left: -120px;
	}

	.orb-2 {
		width: 260px;
		height: 260px;
		right: -80px;
		bottom: -80px;
	}

	.orb-3 {
		width: 220px;
		height: 220px;
	}
	.menu-badge i {
	font-size: 22px;
	line-height: 1;
}

.section-nav-btn i {
	font-size: 16px;
	line-height: 1;
	pointer-events: none;
}

@media (max-width: 768px) {
	.menu-badge i {
		font-size: 18px;
	}

	.section-nav-btn i {
		font-size: 14px;
	}
}
}

/* ===== About Morph Animation ===== */
.about-vision-layout {
	display: grid;
	grid-template-columns: minmax(320px, 0.95fr) minmax(320px, 1.05fr);
	gap: 54px;
	align-items: center;
}

.about-visual {
	position: relative;
	width: 100%;
}

.ai-morph-showcase {
	position: relative;
	width: min(100%, 560px);
	aspect-ratio: 1 / 1;
	margin: 0 auto;
	isolation: isolate;
}

.ai-morph-showcase::before,
.ai-morph-showcase::after {
	content: '';
	position: absolute;
	inset: 16%;
	border-radius: 50%;
	pointer-events: none;
}

.ai-morph-showcase::before {
	background: radial-gradient(circle, rgba(0, 240, 255, 0.18) 0%, rgba(123, 125, 255, 0.1) 34%, rgba(255, 0, 212, 0.08) 58%, transparent 72%);
	filter: blur(30px);
	animation: auraPulse 8s ease-in-out infinite;
}

.ai-morph-showcase::after {
	inset: 4%;
	border: 1px solid rgba(255, 255, 255, 0.05);
	opacity: 0.45;
	transform: scale(0.92);
	animation: haloRotate 22s linear infinite;
}

.morph-particle {
	position: absolute;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	box-shadow: 0 0 18px rgba(0, 240, 255, 0.4);
	opacity: 0.85;
	z-index: 1;
	animation: particleFloat 9s ease-in-out infinite;
}

.particle-1 { top: 10%; left: 20%; animation-delay: -0.8s; }
.particle-2 { top: 18%; right: 16%; width: 8px; height: 8px; animation-delay: -2.2s; }
.particle-3 { bottom: 16%; left: 14%; width: 7px; height: 7px; animation-delay: -3.4s; }
.particle-4 { right: 22%; bottom: 18%; animation-delay: -1.4s; }
.particle-5 { top: 48%; left: 8%; width: 6px; height: 6px; animation-delay: -4.6s; }

.morph-scene {
	position: absolute;
	inset: 0;
	opacity: 0;
	transform: scale(0.82) rotate(-10deg);
	transform-origin: 50% 50%;
	animation: sceneCycle 20s cubic-bezier(0.22, 0.61, 0.36, 1) infinite;
	will-change: transform, opacity;
}

.scene-logo { animation-delay: 0s; }
.scene-neural { animation-delay: 5s; }
.scene-chip { animation-delay: 10s; }
.scene-wave { animation-delay: 15s; }

.scene-svg {
	width: 100%;
	height: 100%;
	overflow: visible;
}

.scene-lines path,
.chip-lines path,
.wave-line,
.wave-ring,
.orbit {
	fill: none;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.scene-lines path,
.chip-lines path {
	stroke: rgba(255, 255, 255, 0.7);
	stroke-width: 3;
	stroke-dasharray: 18 12;
	animation: dashTravel 8s linear infinite;
}

.scene-nodes circle,
.chip-pins circle,
.wave-dots circle,
.orbit-dots circle {
	fill: #ffffff;
	filter: drop-shadow(0 0 12px rgba(0, 240, 255, 0.5));
	animation: nodePulse 2.8s ease-in-out infinite;
}

.neural-nodes circle:nth-child(3),
.wave-dots circle:nth-child(3),
.chip-pins circle:nth-child(1),
.chip-pins circle:nth-child(2) {
	fill: var(--primary);
}

.neural-nodes circle:nth-child(5),
.neural-nodes circle:nth-child(9),
.wave-dots circle:nth-child(5),
.chip-pins circle:nth-child(4) {
	fill: var(--secondary);
}

.neural-lines path:nth-child(2),
.neural-lines path:nth-child(4),
.chip-lines path:nth-child(2),
.chip-lines path:nth-child(4) {
	animation-direction: reverse;
	animation-duration: 10s;
}

.chip-core,
.chip-inner {
	fill: rgba(255, 255, 255, 0.04);
	stroke: url(#aboutChipGradient);
	stroke-width: 4;
	filter: drop-shadow(0 0 26px rgba(123, 125, 255, 0.18));
}

.chip-inner {
	stroke-width: 3;
	stroke: rgba(255, 255, 255, 0.9);
	animation: corePulse 4.8s ease-in-out infinite;
}

.wave-ring {
	stroke: rgba(255, 255, 255, 0.26);
	stroke-width: 2.5;
	stroke-dasharray: 14 12;
	animation: waveRotate 18s linear infinite;
	transform-origin: 280px 280px;
}

.wave-line {
	stroke-width: 4;
	stroke: url(#aboutWaveGradient);
	filter: drop-shadow(0 0 18px rgba(0, 240, 255, 0.28));
}

.wave-line-a { animation: dashTravel 7s linear infinite; }
.wave-line-b { animation: dashTravel 9s linear infinite reverse; }
.wave-line-c { animation: dashTravel 11s linear infinite; }

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

.morph-core-glow {
	position: absolute;
	inset: 28%;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(0, 240, 255, 0.16) 26%, rgba(255, 0, 212, 0.12) 56%, transparent 72%);
	filter: blur(22px);
	animation: corePulse 4s ease-in-out infinite;
}

.morph-logo-shell {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: clamp(132px, 28vw, 176px);
	height: clamp(132px, 28vw, 176px);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 3;
	filter: drop-shadow(0 0 30px rgba(0, 240, 255, 0.18));
	animation: logoBreath 5s ease-in-out infinite;
}

.morph-logo {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.scene-logo-svg {
	position: absolute;
	inset: 0;
}

.orbit {
	stroke: rgba(255, 255, 255, 0.22);
	stroke-width: 2;
	stroke-dasharray: 10 12;
	transform-origin: 280px 280px;
}

.orbit-outer { animation: haloRotate 18s linear infinite; }
.orbit-mid { animation: haloRotate 14s linear infinite reverse; }
.orbit-inner { animation: haloRotate 10s linear infinite; }

.orbit-dots {
	transform-origin: 280px 280px;
}

.orbit-dots-a { animation: haloRotate 12s linear infinite; }
.orbit-dots-b { animation: haloRotate 18s linear infinite reverse; }

.about-text {
	position: relative;
	z-index: 2;
}

.about-text h3 {
	font-size: clamp(26px, 2.4vw, 34px);
	line-height: 1.16;
	margin-bottom: 18px;
}

@keyframes sceneCycle {
	0%, 4% {
		opacity: 0;
		transform: scale(0.8) rotate(-10deg);
	}
	8%, 22% {
		opacity: 1;
		transform: scale(1) rotate(0deg);
	}
	26%, 100% {
		opacity: 0;
		transform: scale(1.12) rotate(10deg);
	}
}

@keyframes dashTravel {
	from { stroke-dashoffset: 0; }
	to { stroke-dashoffset: -180; }
}

@keyframes nodePulse {
	0%, 100% { transform: scale(1); opacity: 0.88; }
	50% { transform: scale(1.18); opacity: 1; }
}

@keyframes logoBreath {
	0%, 100% { transform: translate(-50%, -50%) scale(0.96); }
	50% { transform: translate(-50%, -50%) scale(1.04); }
}

@keyframes corePulse {
	0%, 100% { opacity: 0.75; transform: scale(0.98); }
	50% { opacity: 1; transform: scale(1.05); }
}

@keyframes haloRotate {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

@keyframes waveRotate {
	from { transform: rotate(0deg); }
	to { transform: rotate(-360deg); }
}

@keyframes particleFloat {
	0%, 100% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.65; }
	33% { transform: translate3d(16px, -10px, 0) scale(1.18); opacity: 1; }
	66% { transform: translate3d(-12px, 14px, 0) scale(0.88); opacity: 0.8; }
}

@keyframes auraPulse {
	0%, 100% { transform: scale(0.96); opacity: 0.72; }
	50% { transform: scale(1.06); opacity: 1; }
}

@media (max-width: 1100px) {
	.about-vision-layout {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.about-visual {
		order: -1;
	}

	.ai-morph-showcase {
		width: min(100%, 500px);
	}
}

@media (max-width: 768px) {
	.ai-morph-showcase {
		width: min(100%, 420px);
	}

	.morph-logo-shell {
		width: 124px;
		height: 124px;
	}
}

@media (max-width: 480px) {
	.ai-morph-showcase {
		width: min(100%, 340px);
	}

	.morph-particle {
		width: 7px;
		height: 7px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.morph-scene,
	.ai-morph-showcase::before,
	.ai-morph-showcase::after,
	.morph-particle,
	.scene-lines path,
	.chip-lines path,
	.wave-line,
	.wave-ring,
	.scene-nodes circle,
	.chip-pins circle,
	.wave-dots circle,
	.orbit,
	.orbit-dots,
	.morph-core-glow,
	.morph-logo-shell {
		animation: none !important;
	}

	.scene-logo {
		opacity: 1;
		transform: none;
	}

	.scene-neural,
	.scene-chip,
	.scene-wave {
		display: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.value-icon-core i,
	.value-icon-ring,
	.value-icon-pulse {
		animation: none !important;
	}
}

/* ===== Final mobile alignment fix: intro headline + intro CTA + services tabs ===== */
@media (max-width: 768px) {
  .intro-hero-content {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .intro-headline,
  .intro-headline span,
  .loading-text {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .intro-headline {
    max-width: 22ch;
  }

  .intro-headline br {
    display: none;
  }

  .intro-subtext {
    max-width: 36ch;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }

  .intro-cta-group {
    width: 100%;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
  }

  .intro-cta-primary,
  .intro-cta-secondary {
    width: min(100%, 280px) !important;
    max-width: 280px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }

  .tabs-container {
    width: 100%;
  }

  .tab-buttons {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
  }

  .tab-btn {
    width: min(100%, 320px) !important;
    max-width: 320px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
    text-align: center !important;
  }
}

@media (max-width: 480px) {
  .intro-headline {
    max-width: 18ch;
  }

  .intro-cta-primary,
  .intro-cta-secondary,
  .tab-btn {
    width: min(100%, 290px) !important;
    max-width: 290px !important;
  }
}
