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

		:root {
			--neon-blue: #00d4ff;
			--neon-purple: #9945ff;
			--neon-pink: #ff006e;
			--dark-bg: #0a0a0a;
			--dark-surface: #1a1a1a;
			--text-primary: #ffffff;
			--text-secondary: #b0b0b0;
			--accent: #00ff88;
			--linkedin-blue: #0077b5;
		}

		body {
			font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
			background: var(--dark-bg);
			color: var(--text-primary);
			overflow-x: hidden;
		}

		/* Particles Background */
		#particles-canvas {
			position: fixed;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			z-index: -1;
		}

		/* Navigation */
		nav {
			position: fixed;
			top: 0;
			width: 100%;
			background: rgba(10, 10, 10, 0.9);
			backdrop-filter: blur(20px);
			border-bottom: 1px solid rgba(255, 255, 255, 0.1);
			z-index: 1000;
		}

		.nav-container {
			max-width: 1400px;
			margin: 0 auto;
			padding: 1.5rem 2rem;
			display: flex;
			justify-content: space-between;
			align-items: center;
		}

		.logo {
			display: inline-block;
			font-size: 2rem;
			font-weight: 900;
			letter-spacing: -1px;
			background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
			-webkit-background-clip: text;
			-webkit-text-fill-color: transparent;
			cursor: pointer;
			position: relative;
			text-decoration: none;
		}

		.logo::after {
			content: '';
			position: absolute;
			bottom: -5px;
			left: 0;
			width: 100%;
			height: 2px;
			background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
			filter: blur(4px);
		}

		.nav-menu {
			display: flex;
			gap: 2rem;
			align-items: center;
		}

		.nav-menu a {
			color: var(--text-secondary);
			text-decoration: none;
			font-weight: 500;
			transition: all 0.3s ease;
			position: relative;
			cursor: pointer;
		}

		.nav-menu a::before {
			content: '';
			position: absolute;
			bottom: -5px;
			left: 0;
			width: 0;
			height: 2px;
			background: var(--neon-blue);
			transition: width 0.3s ease;
		}

		.nav-menu a:hover {
			color: var(--text-primary);
		}

		.nav-menu a:hover::before {
			width: 100%;
		}

		.nav-cta {
			background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
			padding: 0.8rem 2rem;
			border-radius: 50px;
			color: white;
			text-decoration: none;
			font-weight: 600;
			position: relative;
			overflow: hidden;
			transition: all 0.3s ease;
		}

		.nav-cta::before {
			content: '';
			position: absolute;
			top: 0;
			left: -100%;
			width: 100%;
			height: 100%;
			background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
			transition: left 0.5s ease;
		}

		.nav-cta:hover::before {
			left: 100%;
		}

		.nav-cta:hover {
			transform: translateY(-2px);
			box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
		}

		/* Language Switcher */
		.lang-switcher {
			position: fixed;
			top: 20px;
			right: 20px;
			z-index: 1001;
			background: rgba(255, 255, 255, 0.1);
			border: 1px solid rgba(255, 255, 255, 0.2);
			border-radius: 50px;
			padding: 0.5rem 1rem;
			display: flex;
			gap: 0.5rem;
			backdrop-filter: blur(10px);
		}

		.lang-btn {
			background: transparent;
			border: none;
			color: var(--text-secondary);
			cursor: pointer;
			padding: 0.2rem 0.5rem;
			border-radius: 20px;
			transition: all 0.3s ease;
		}

		.lang-btn.active {
			background: var(--neon-blue);
			color: white;
		}

		.lang-btn:hover:not(.active) {
			color: var(--text-primary);
			background: rgba(255, 255, 255, 0.1);
		}

		/* Pages Container */
		.page {
			display: none;
			min-height: 100vh;
			padding-top: 80px;
		}

		.page.active {
			display: block;
		}

		/* Hero Section */
		.hero {
			min-height: 100vh;
			display: flex;
			align-items: center;
			position: relative;
			overflow: hidden;
		}

		.hero-bg {
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			background: radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
						radial-gradient(circle at 80% 50%, rgba(153, 69, 255, 0.1) 0%, transparent 50%);
			animation: breathe 10s ease-in-out infinite;
		}

		@keyframes breathe {
			0%, 100% { transform: scale(1); }
			50% { transform: scale(1.1); }
		}

		.hero-content {
			max-width: 1400px;
			margin: 0 auto;
			padding: 0 2rem;
			position: relative;
			z-index: 1;
			display: grid;
			grid-template-columns: 1fr 1fr;
			gap: 4rem;
			align-items: center;
		}

		.hero-main {
			animation: fadeInUp 1s ease-out;
		}

		.hero-title {
			font-size: clamp(3rem, 8vw, 5rem);
			font-weight: 900;
			line-height: 1;
			margin-bottom: 2rem;
			position: relative;
		}

		.hero-title span {
			display: block;
			overflow: hidden;
		}

		.hero-title .line1 {
			color: var(--text-primary);
			animation: slideInFromLeft 1s ease-out;
		}

		.hero-title .line2 {
			background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple), var(--neon-pink));
			-webkit-background-clip: text;
			-webkit-text-fill-color: transparent;
			animation: slideInFromRight 1s ease-out 0.2s both;
		}

		.hero-title .line3 {
			color: var(--text-secondary);
			font-size: 0.5em;
			font-weight: 400;
			animation: fadeInUp 1s ease-out 0.4s both;
		}

		@keyframes slideInFromLeft {
			from {
				transform: translateX(-100%);
				opacity: 0;
			}
			to {
				transform: translateX(0);
				opacity: 1;
			}
		}

		@keyframes slideInFromRight {
			from {
				transform: translateX(100%);
				opacity: 0;
			}
			to {
				transform: translateX(0);
				opacity: 1;
			}
		}

		@keyframes fadeInUp {
			from {
				transform: translateY(30px);
				opacity: 0;
			}
			to {
				transform: translateY(0);
				opacity: 1;
			}
		}

		.hero-description {
			font-size: 1.25rem;
			color: var(--text-secondary);
			margin-bottom: 3rem;
			animation: fadeInUp 1s ease-out 0.6s both;
		}

		.hero-actions {
			display: flex;
			gap: 1.5rem;
			animation: fadeInUp 1s ease-out 0.8s both;
		}

		/* Founder Card in Hero */
		.hero-founder {
			animation: fadeInUp 1s ease-out 1s both;
		}

		.founder-card {
			background: var(--dark-surface);
			border: 1px solid rgba(255, 255, 255, 0.1);
			border-radius: 20px;
			padding: 2.5rem;
			position: relative;
			overflow: hidden;
			transition: all 0.3s ease;
		}

		.founder-card::before {
			content: '';
			position: absolute;
			top: -50%;
			left: -50%;
			width: 200%;
			height: 200%;
			background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
			animation: rotate 20s linear infinite;
		}

		@keyframes rotate {
			0% { transform: rotate(0deg); }
			100% { transform: rotate(360deg); }
		}

		.founder-card:hover {
			transform: translateY(-5px);
			box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
			border-color: var(--neon-blue);
		}

		.founder-header {
			position: relative;
			z-index: 1;
			text-align: center;
			margin-bottom: 2rem;
		}

		.founder-avatar {
			width: 120px;
			height: 120px;
			background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
			border-radius: 50%;
			display: flex;
			align-items: center;
			justify-content: center;
			font-size: 4rem;
			position: relative;
			margin: 0 auto 1.5rem;
			animation: pulse 2s ease-in-out infinite;
		}

		@keyframes pulse {
			0%, 100% { transform: scale(1); }
			50% { transform: scale(1.05); }
		}

		.founder-avatar::after {
			content: '';
			position: absolute;
			inset: -3px;
			background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
			border-radius: 50%;
			filter: blur(15px);
			opacity: 0.5;
			z-index: -1;
		}

		.founder-info h3 {
			font-size: 2rem;
			margin-bottom: 0.5rem;
			color: var(--text-primary);
		}

		.founder-info .role {
			color: var(--neon-blue);
			font-size: 1.2rem;
			margin-bottom: 1rem;
		}

		.founder-bio {
			color: var(--text-secondary);
			line-height: 1.6;
			text-align: center;
			margin-bottom: 2rem;
		}

		.founder-links {
			display: flex;
			justify-content: center;
			gap: 1rem;
		}

		.linkedin-button {
			display: inline-flex;
			align-items: center;
			gap: 0.5rem;
			background: var(--linkedin-blue);
			color: white;
			padding: 0.8rem 1.5rem;
			border-radius: 50px;
			text-decoration: none;
			font-weight: 600;
			transition: all 0.3s ease;
			position: relative;
			overflow: hidden;
		}

		.linkedin-button::before {
			content: '';
			position: absolute;
			top: 0;
			left: -100%;
			width: 100%;
			height: 100%;
			background: rgba(255, 255, 255, 0.2);
			transition: left 0.5s ease;
		}

		.linkedin-button:hover::before {
			left: 100%;
		}

		.linkedin-button:hover {
			transform: translateY(-2px);
			box-shadow: 0 10px 30px rgba(0, 119, 181, 0.4);
		}

		.linkedin-button svg {
			width: 20px;
			height: 20px;
		}

		.btn-primary {
			background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
			color: white;
			padding: 1rem 3rem;
			border-radius: 50px;
			text-decoration: none;
			font-weight: 600;
			position: relative;
			overflow: hidden;
			transition: all 0.3s ease;
			display: inline-block;
		}

		.btn-primary::before {
			content: '';
			position: absolute;
			top: 0;
			left: -100%;
			width: 100%;
			height: 100%;
			background: rgba(255,255,255,0.2);
			transition: left 0.5s ease;
		}

		.btn-primary:hover::before {
			left: 100%;
		}

		.btn-primary:hover {
			transform: translateY(-3px);
			box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
		}

		.btn-secondary {
			background: transparent;
			color: var(--text-primary);
			padding: 1rem 3rem;
			border-radius: 50px;
			text-decoration: none;
			font-weight: 600;
			border: 2px solid rgba(255, 255, 255, 0.2);
			transition: all 0.3s ease;
			display: inline-block;
			position: relative;
			overflow: hidden;
		}

		.btn-secondary::before {
			content: '';
			position: absolute;
			top: 0;
			left: -100%;
			width: 100%;
			height: 100%;
			background: rgba(255, 255, 255, 0.1);
			transition: left 0.5s ease;
		}

		.btn-secondary:hover {
			border-color: var(--neon-blue);
			color: var(--neon-blue);
			transform: translateY(-3px);
			box-shadow: 0 15px 40px rgba(0, 212, 255, 0.2);
		}

		.btn-secondary:hover::before {
			left: 100%;
		}

		/* Floating Elements */
		.floating-element {
			position: absolute;
			animation: float 6s ease-in-out infinite;
		}

		.floating-element:nth-child(1) {
			top: 20%;
			right: 10%;
			width: 100px;
			height: 100px;
			background: linear-gradient(45deg, var(--neon-blue), transparent);
			border-radius: 50%;
			filter: blur(40px);
			animation-delay: 0s;
		}

		.floating-element:nth-child(2) {
			bottom: 20%;
			left: 10%;
			width: 150px;
			height: 150px;
			background: linear-gradient(45deg, var(--neon-purple), transparent);
			border-radius: 50%;
			filter: blur(60px);
			animation-delay: 2s;
		}

		@keyframes float {
			0%, 100% {
				transform: translateY(0) rotate(0deg);
			}
			50% {
				transform: translateY(-30px) rotate(180deg);
			}
		}

		/* Services Page */
		.services-section {
			padding: 5rem 2rem;
		}

		.section-title {
			text-align: center;
			font-size: 3rem;
			font-weight: 900;
			margin-bottom: 1rem;
			background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
			-webkit-background-clip: text;
			-webkit-text-fill-color: transparent;
		}

		.section-subtitle {
			text-align: center;
			font-size: 1.25rem;
			color: var(--text-secondary);
			max-width: 600px;
			margin: 0 auto 4rem;
		}

		.services-grid {
			max-width: 1200px;
			margin: 0 auto;
			display: grid;
			grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
			gap: 2rem;
		}

		.service-card {
			background: var(--dark-surface);
			border: 1px solid rgba(255, 255, 255, 0.1);
			border-radius: 20px;
			padding: 3rem;
			position: relative;
			overflow: hidden;
			transition: all 0.3s ease;
			cursor: pointer;
		}

		.service-card::before {
			content: '';
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			background: linear-gradient(45deg, rgba(0, 212, 255, 0.1), rgba(153, 69, 255, 0.1));
			opacity: 0;
			transition: opacity 0.3s ease;
		}

		.service-card:hover::before {
			opacity: 1;
		}

		.service-card:hover {
			transform: translateY(-10px);
			border-color: var(--neon-blue);
			box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
		}

		.service-icon {
			width: 80px;
			height: 80px;
			background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
			border-radius: 20px;
			display: flex;
			align-items: center;
			justify-content: center;
			font-size: 2.5rem;
			margin-bottom: 2rem;
			position: relative;
		}

		.service-icon::after {
			content: '';
			position: absolute;
			inset: -2px;
			background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
			border-radius: 20px;
			filter: blur(10px);
			opacity: 0.5;
			z-index: -1;
		}

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

		.service-card p {
			color: var(--text-secondary);
			line-height: 1.6;
			margin-bottom: 1.5rem;
		}

		.service-features {
			list-style: none;
		}

		.service-features li {
			color: var(--text-secondary);
			padding: 0.5rem 0;
			padding-left: 1.5rem;
			position: relative;
		}

		.service-features li::before {
			content: '▸';
			position: absolute;
			left: 0;
			color: var(--neon-blue);
		}

		/* Technologies Section */
		.tech-section {
			padding: 5rem 2rem;
			background: var(--dark-surface);
		}

		.tech-grid {
			max-width: 1200px;
			margin: 0 auto;
			display: grid;
			grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
			gap: 2rem;
		}

		.tech-item {
			background: var(--dark-bg);
			border: 1px solid rgba(255, 255, 255, 0.1);
			border-radius: 15px;
			padding: 2rem;
			text-align: center;
			transition: all 0.3s ease;
			position: relative;
			overflow: hidden;
		}

		.tech-item::before {
			content: '';
			position: absolute;
			top: 50%;
			left: 50%;
			width: 0;
			height: 0;
			background: radial-gradient(circle, var(--neon-blue) 0%, transparent 70%);
			transform: translate(-50%, -50%);
			transition: all 0.5s ease;
		}

		.tech-item:hover::before {
			width: 200%;
			height: 200%;
		}

		.tech-item:hover {
			transform: translateY(-5px);
			border-color: var(--neon-blue);
		}

		.tech-item i {
			font-size: 3rem;
			margin-bottom: 1rem;
			display: block;
			background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
			-webkit-background-clip: text;
			-webkit-text-fill-color: transparent;
		}

		.tech-item h4 {
			color: var(--text-primary);
			font-size: 1.1rem;
			position: relative;
			z-index: 1;
		}

		/* Process Section */
		.process-section {
			padding: 5rem 2rem;
		}

		.process-timeline {
			max-width: 1000px;
			margin: 0 auto;
			position: relative;
		}

		.process-timeline::before {
			content: '';
			position: absolute;
			top: 0;
			left: 50%;
			width: 2px;
			height: 100%;
			background: linear-gradient(180deg, var(--neon-blue), var(--neon-purple));
			transform: translateX(-50%);
		}

		.process-item {
			display: flex;
			align-items: center;
			margin-bottom: 4rem;
			position: relative;
		}

		.process-item:nth-child(even) {
			flex-direction: row-reverse;
		}

		.process-content {
			flex: 1;
			padding: 2rem;
			background: var(--dark-surface);
			border: 1px solid rgba(255, 255, 255, 0.1);
			border-radius: 20px;
			position: relative;
			transition: all 0.3s ease;
		}

		.process-content:hover {
			transform: scale(1.02);
			border-color: var(--neon-blue);
			box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
		}

		.process-number {
			position: absolute;
			top: 50%;
			left: 50%;
			transform: translate(-50%, -50%);
			width: 60px;
			height: 60px;
			background: var(--dark-bg);
			border: 3px solid var(--neon-blue);
			border-radius: 50%;
			display: flex;
			align-items: center;
			justify-content: center;
			font-size: 1.5rem;
			font-weight: 900;
			color: var(--neon-blue);
			z-index: 2;
		}

		.process-content h3 {
			font-size: 1.5rem;
			margin-bottom: 1rem;
			color: var(--text-primary);
		}

		.process-content p {
			color: var(--text-secondary);
			line-height: 1.6;
		}

		/* About Page */
		.about-hero {
			padding: 5rem 2rem;
			text-align: center;
			background: linear-gradient(180deg, transparent, var(--dark-surface));
		}

		.about-hero h1 {
			font-size: 4rem;
			font-weight: 900;
			margin-bottom: 2rem;
			background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple), var(--neon-pink));
			-webkit-background-clip: text;
			-webkit-text-fill-color: transparent;
			animation: gradient 3s ease infinite;
			background-size: 200% 200%;
		}

		@keyframes gradient {
			0% { background-position: 0% 50%; }
			50% { background-position: 100% 50%; }
			100% { background-position: 0% 50%; }
		}

		.about-stats {
			padding: 5rem 2rem;
		}

		.stats-grid {
			max-width: 1200px;
			margin: 0 auto;
			display: grid;
			grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
			gap: 2rem;
		}

		.stat-card {
			text-align: center;
			padding: 2rem;
			background: var(--dark-surface);
			border-radius: 20px;
			position: relative;
			overflow: hidden;
		}

		.stat-card::before {
			content: '';
			position: absolute;
			top: -50%;
			left: -50%;
			width: 200%;
			height: 200%;
			background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
			animation: rotate 10s linear infinite;
		}

		.stat-number {
			font-size: 4rem;
			font-weight: 900;
			background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
			-webkit-background-clip: text;
			-webkit-text-fill-color: transparent;
			position: relative;
			z-index: 1;
		}

		.stat-label {
			font-size: 1.2rem;
			color: var(--text-secondary);
			position: relative;
			z-index: 1;
		}

		/* Team Section */
		.team-section {
			padding: 5rem 2rem;
			background: var(--dark-surface);
		}

		.team-grid {
			max-width: 1200px;
			margin: 0 auto;
			display: grid;
			grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
			gap: 2rem;
		}

		.team-member {
			background: var(--dark-bg);
			border-radius: 20px;
			overflow: hidden;
			position: relative;
			transition: all 0.3s ease;
			cursor: pointer;
		}

		.team-member:hover {
			transform: translateY(-10px);
			box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
		}

		.team-member-image {
			height: 300px;
			background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
			position: relative;
			overflow: hidden;
		}

		.team-member-image::after {
			content: '👤';
			position: absolute;
			top: 50%;
			left: 50%;
			transform: translate(-50%, -50%);
			font-size: 5rem;
			opacity: 0.5;
		}

		.team-member-info {
			padding: 2rem;
		}

		.team-member-info h3 {
			font-size: 1.5rem;
			margin-bottom: 0.5rem;
			color: var(--text-primary);
		}

		.team-member-info p {
			color: var(--neon-blue);
			margin-bottom: 1rem;
		}

		.team-member-bio {
			color: var(--text-secondary);
			line-height: 1.6;
		}

		/* Contact Page Enhanced */
		.contact-section {
			padding: 5rem 2rem;
			position: relative;
		}

		.contact-section::before {
			content: '';
			position: absolute;
			top: 0;
			left: 0;
			right: 0;
			height: 400px;
			background: radial-gradient(ellipse at center top, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
			pointer-events: none;
		}

		.contact-container {
			max-width: 1400px;
			margin: 0 auto;
			display: grid;
			grid-template-columns: 1fr 1fr;
			gap: 4rem;
			position: relative;
			z-index: 1;
		}

		.contact-info {
			padding: 2rem 0;
		}

		.contact-info h2 {
			font-size: 3rem;
			font-weight: 900;
			margin-bottom: 2rem;
			background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
			-webkit-background-clip: text;
			-webkit-text-fill-color: transparent;
			line-height: 1.2;
		}

		.contact-info > p {
			color: var(--text-secondary);
			line-height: 1.8;
			margin-bottom: 2rem;
			font-size: 1.1rem;
		}

		/* Contact Methods */
		.contact-methods {
			margin-top: 3rem;
			display: grid;
			gap: 1.5rem;
		}

		.contact-method {
			background: rgba(255, 255, 255, 0.02);
			border: 1px solid rgba(255, 255, 255, 0.05);
			border-radius: 15px;
			padding: 1.5rem;
			display: flex;
			align-items: center;
			gap: 1.5rem;
			transition: all 0.3s ease;
			position: relative;
			overflow: hidden;
		}

		.contact-method::before {
			content: '';
			position: absolute;
			top: 0;
			left: -100%;
			width: 100%;
			height: 100%;
			background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
			transition: left 0.8s ease;
		}

		.contact-method:hover::before {
			left: 100%;
		}

		.contact-method:hover {
			transform: translateX(10px);
			border-color: var(--neon-blue);
			background: rgba(0, 212, 255, 0.05);
		}

		.contact-icon {
			width: 50px;
			height: 50px;
			background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
			border-radius: 12px;
			display: flex;
			align-items: center;
			justify-content: center;
			font-size: 1.5rem;
			flex-shrink: 0;
		}

		.contact-method-info h4 {
			color: var(--text-primary);
			margin-bottom: 0.3rem;
			font-size: 1.1rem;
		}

		.contact-method-info p {
			color: var(--text-secondary);
			font-size: 0.95rem;
		}

		.contact-method-info a {
			color: var(--neon-blue);
			text-decoration: none;
			transition: all 0.3s ease;
		}

		.contact-method-info a:hover {
			color: var(--neon-purple);
			text-decoration: underline;
		}

		/* Office Locations */
		.locations-grid {
			margin-top: 3rem;
			display: grid;
			grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
			gap: 1rem;
		}

		.location-tag {
			background: rgba(153, 69, 255, 0.1);
			border: 1px solid rgba(153, 69, 255, 0.3);
			border-radius: 50px;
			padding: 0.8rem 1.5rem;
			text-align: center;
			font-size: 0.9rem;
			color: var(--text-primary);
			transition: all 0.3s ease;
			position: relative;
			overflow: hidden;
		}

		.location-tag::before {
			content: '🌍';
			position: absolute;
			top: 50%;
			left: 50%;
			transform: translate(-50%, -50%);
			font-size: 3rem;
			opacity: 0;
			transition: all 0.3s ease;
		}

		.location-tag:hover::before {
			opacity: 0.1;
		}

		.location-tag:hover {
			transform: translateY(-3px);
			background: rgba(153, 69, 255, 0.2);
			box-shadow: 0 10px 20px rgba(153, 69, 255, 0.2);
		}

		/* Enhanced Form */
		.contact-form {
			background: var(--dark-surface);
			padding: 3rem;
			border-radius: 20px;
			border: 1px solid rgba(255, 255, 255, 0.1);
			position: relative;
			overflow: hidden;
		}

		.contact-form::before {
			content: '';
			position: absolute;
			top: -50%;
			right: -50%;
			width: 100px;
			height: 100px;
			background: radial-gradient(circle, var(--neon-purple) 0%, transparent 70%);
			filter: blur(80px);
			animation: float 10s ease-in-out infinite;
		}

		.form-header {
			text-align: center;
			margin-bottom: 2rem;
		}

		.form-header h3 {
			font-size: 1.8rem;
			margin-bottom: 0.5rem;
			background: linear-gradient(45deg, var(--neon-purple), var(--neon-pink));
			-webkit-background-clip: text;
			-webkit-text-fill-color: transparent;
		}

		.form-header p {
			color: var(--text-secondary);
		}

		.form-group {
			margin-bottom: 1.5rem;
			position: relative;
		}

		.form-group label {
			display: block;
			margin-bottom: 0.5rem;
			color: var(--text-primary);
			font-weight: 500;
			transition: all 0.3s ease;
		}

		.form-group input,
		.form-group textarea {
			width: 100%;
			padding: 1rem;
			background: var(--dark-bg);
			border: 1px solid rgba(255, 255, 255, 0.1);
			border-radius: 10px;
			color: var(--text-primary);
			font-size: 1rem;
			transition: all 0.3s ease;
			position: relative;
		}

		.form-group input:focus,
		.form-group textarea:focus {
			outline: none;
			border-color: var(--neon-blue);
			box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
			background: rgba(0, 212, 255, 0.02);
		}

		.form-group textarea {
			resize: vertical;
			min-height: 150px;
		}

		.form-submit {
			width: 100%;
			padding: 1.2rem 2rem;
			background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
			color: white;
			border: none;
			border-radius: 50px;
			font-size: 1.1rem;
			font-weight: 600;
			cursor: pointer;
			transition: all 0.3s ease;
			position: relative;
			overflow: hidden;
		}

		.form-submit::before {
			content: '';
			position: absolute;
			top: 50%;
			left: 50%;
			width: 0;
			height: 0;
			background: rgba(255, 255, 255, 0.3);
			border-radius: 50%;
			transform: translate(-50%, -50%);
			transition: all 0.6s ease;
		}

		.form-submit:hover::before {
			width: 300%;
			height: 300%;
		}

		.form-submit:hover {
			transform: translateY(-3px);
			box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
		}

		/* Success Message */
		.success-message {
			text-align: center;
			padding: 3rem;
			animation: fadeInUp 0.5s ease;
		}

		.success-message h3 {
			color: var(--accent);
			font-size: 2rem;
			margin-bottom: 1rem;
		}

		.success-message p {
			color: var(--text-secondary);
			font-size: 1.1rem;
		}

		/* Footer */
		footer {
			background: var(--dark-surface);
			padding: 4rem 2rem 2rem;
			border-top: 1px solid rgba(255, 255, 255, 0.1);
		}

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

		.footer-section h4 {
			margin-bottom: 1.5rem;
			color: var(--text-primary);
			font-size: 1.2rem;
		}

		.footer-section p {
			color: var(--text-secondary);
			line-height: 1.6;
			margin-bottom: 1rem;
		}

		.footer-section ul {
			list-style: none;
		}

		.footer-section ul li {
			margin-bottom: 0.8rem;
		}

		.footer-section ul li a {
			color: var(--text-secondary);
			text-decoration: none;
			transition: all 0.3s ease;
			position: relative;
		}

		.footer-section ul li a:hover {
			color: var(--neon-blue);
			padding-left: 10px;
		}

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

		.social-links a {
			width: 40px;
			height: 40px;
			background: rgba(255, 255, 255, 0.1);
			border-radius: 50%;
			display: flex;
			align-items: center;
			justify-content: center;
			color: var(--text-secondary);
			transition: all 0.3s ease;
		}

		.social-links a:hover {
			background: var(--neon-blue);
			color: white;
			transform: translateY(-3px);
		}

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

		/* Loading Animation */
		.loader-wrapper {
			position: fixed;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			background: var(--dark-bg);
			display: flex;
			justify-content: center;
			align-items: center;
			z-index: 10000;
			transition: all 0.5s ease;
		}

		.loader-wrapper.hidden {
			opacity: 0;
			pointer-events: none;
		}

		.loader-content {
			text-align: center;
		}

		.loader-logo {
			font-size: 3rem;
			font-weight: 900;
			background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
			-webkit-background-clip: text;
			-webkit-text-fill-color: transparent;
			margin-bottom: 2rem;
			animation: pulse 1.5s ease infinite;
		}

		.loader-bar {
			width: 200px;
			height: 4px;
			background: rgba(255, 255, 255, 0.1);
			border-radius: 2px;
			overflow: hidden;
			position: relative;
		}

		.loader-bar::after {
			content: '';
			position: absolute;
			top: 0;
			left: -100%;
			width: 100%;
			height: 100%;
			background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
			animation: loading 1.5s ease infinite;
		}

		@keyframes loading {
			0% { left: -100%; }
			100% { left: 100%; }
		}

		/* Responsive */
		@media (max-width: 1024px) {
			.hero-content {
				grid-template-columns: 1fr;
				gap: 3rem;
			}

			.contact-container {
				grid-template-columns: 1fr;
				gap: 3rem;
			}

			.locations-grid {
				grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
			}
		}

		@media (max-width: 768px) {
			.nav-menu {
				display: none;
			}

			.hero-title {
				font-size: clamp(2rem, 6vw, 4rem);
			}

			.services-grid,
			.tech-grid,
			.team-grid,
			.stats-grid {
				grid-template-columns: 1fr;
			}

			.contact-info h2 {
				font-size: 2rem;
			}

			.contact-form {
				padding: 2rem;
			}

			.contact-method {
				flex-direction: column;
				text-align: center;
			}

			.process-timeline::before {
				left: 20px;
			}

			.process-item,
			.process-item:nth-child(even) {
				flex-direction: column;
				text-align: center;
			}

			.process-number {
				position: relative;
				margin: 2rem auto;
			}
		}
