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


		:root {
			--primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
			--secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
			--dark-gradient: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
			--glass-bg: rgba(255, 255, 255, 0.1);
			--glass-border: rgba(255, 255, 255, 0.2);
		}

		body {
			font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
			line-height: 1.6;
			color: #333;
			overflow-x: hidden;
		}

		/* Header */
		.header {
			position: fixed;
			top: 0;
			width: 100%;
			background: rgba(15, 23, 42, 0.95);
			-webkit-backdrop-filter: blur(20px);
			/* Safari */
			backdrop-filter: blur(20px);
			/* Other browsers */
			z-index: 1000;
			transition: all 0.3s ease;
		}

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

		.logo {
			display: flex;
			align-items: center;
			justify-content: center;
			gap: 0.5rem;
			font-size: 1.8rem;
			font-weight: 800;
			cursor: pointer;
		}

		.logo-text {
			font-family: 'Space Grotesk', sans-serif;
			font-size: 48px;
			font-weight: 700;
			position: relative;
			display: flex;
			flex-direction: column;
			line-height: 0.9;
		}

		.logo-img {
			width: 64px;
			height: 64px;
			animation: float 6s ease-in-out infinite;
		}

		.word-business {
			background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
			-webkit-background-clip: text;
			-webkit-text-fill-color: transparent;
			background-clip: text;
			font-weight: 500;
			font-size: 24px;
			letter-spacing: 8px;
			text-transform: uppercase;
			margin-bottom: 5px;
			animation: slideInLeft 1s ease-out;
		}

		.word-connector {
			background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
			-webkit-background-clip: text;
			-webkit-text-fill-color: transparent;
			background-clip: text;
			font-weight: 700;
			font-size: 40px;
			letter-spacing: -2px;
			text-transform: lowercase;
			font-style: italic;
			animation: slideInRight 1s ease-out 0.3s both;
		}

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

		.nav-links a {
			color: white;
			text-decoration: none;
			font-weight: 500;
			transition: all 0.3s ease;
			position: relative;
		}

		.nav-links a:hover {
			color: #667eea;
			transform: translateY(-2px);
		}

		.nav-links a::after {
			content: '';
			position: absolute;
			bottom: -5px;
			left: 0;
			width: 0;
			height: 2px;
			background: linear-gradient(135deg, #667eea, #764ba2);
			transition: width 0.3s ease;
		}

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

		.cta-button {
			background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
			color: white;
			padding: 0.8rem 2rem;
			border: none;
			border-radius: 50px;
			font-weight: 600;
			cursor: pointer;
			transition: all 0.3s ease;
			text-decoration: none;
			display: inline-block;
		}

		.cta-button:hover {
			transform: translateY(-3px);
			box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
		}

		/* Hamburger Menu */
		.hamburger {
			display: none;
			flex-direction: column;
			cursor: pointer;
			z-index: 1001;
		}

		.hamburger span {
			width: 25px;
			height: 3px;
			background: white;
			margin: 3px 0;
			transition: 0.3s;
		}

		.hamburger.active span:nth-child(1) {
			transform: rotate(-45deg) translate(-5px, 6px);
		}

		.hamburger.active span:nth-child(2) {
			opacity: 0;
		}

		.hamburger.active span:nth-child(3) {
			transform: rotate(45deg) translate(-5px, -6px);
		}

		/* ✅ Blur effect on background content */
		body.menu-open #pageContent {
			filter: blur(5px);
			pointer-events: none;
			-webkit-user-select: none;
			/* Safari and older iOS */
			-moz-user-select: none;
			/* Firefox */
			-ms-user-select: none;
			/* Internet Explorer/Edge Legacy */
			user-select: none;
			transition: filter 0.3s ease;
		}

		/* ✅ Improve mobile menu appearance */
		.mobile-menu {
			position: fixed;
			top: 70;
			right: 0;
			width: 320px;
			/* height: 100vh; */
			background: rgba(15, 23, 42, 0.96);
			-webkit-backdrop-filter: blur(10px);
			backdrop-filter: blur(10px);
			padding: 3rem 1.5rem;
			display: flex;
			flex-direction: column;
			align-items: flex-start;
			justify-content: flex-start;
			transform: translateX(100%);
			transition: transform 0.3s ease;
			z-index: 999;
			box-shadow: -4px 0 15px rgba(0, 0, 0, 0.3);
		}

		/* ✅ Active (Visible) */
		.mobile-menu.active {
			transform: translateX(0);
		}

		.mobile-menu ul {
			list-style: none;
			padding: 0;
			margin: 0;
			width: 100%;
		}

		.mobile-menu ul li {
			width: 100%;
			margin-bottom: 1.5rem;
		}

		.mobile-menu ul li a {
			display: block;
			width: 100%;
			color: white;
			text-decoration: none;
			font-size: 1.1rem;
			font-weight: 500;
			padding: 0.5rem 0;
			transition: color 0.3s ease;
		}

		.mobile-menu ul li a:hover {
			color: #667eea;
		}

		.mobile-cta {
			margin-top: 2rem;
			width: 100%;
		}

		.menu-overlay {
			position: fixed;
			top: 0;
			left: 0;
			width: 100%;
			height: 100vh;
			background: rgba(0, 0, 0, 0.3);
			z-index: 998;
			opacity: 0;
			visibility: hidden;
			transition: opacity 0.3s ease;
		}

		.menu-overlay.active {
			opacity: 1;
			visibility: visible;
		}

		/* Hero Section */
		.hero {
			min-height: 100vh;
			background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
			display: flex;
			align-items: center;
			justify-content: center;
			text-align: center;
			color: white;
			position: relative;
			overflow: hidden;
		}

		.hero::before {
			content: '';
			position: absolute;
			top: 0;
			left: 0;
			right: 0;
			bottom: 0;
			background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23334155' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
			animation: backgroundMove 20s linear infinite;
		}

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

			100% {
				transform: translateX(-60px) translateY(-60px);
			}
		}

		/* Floating Geometric Shapes */
		.geometric-shapes {
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			overflow: hidden;
			z-index: 1;
		}

		.shape {
			position: absolute;
			opacity: 0.1;
		}

		.shape-1 {
			top: 10%;
			left: 10%;
			width: 80px;
			height: 80px;
			background: var(--primary-gradient);
			border-radius: 50%;
			animation: float1 6s ease-in-out infinite;
		}

		.shape-2 {
			top: 20%;
			right: 15%;
			width: 60px;
			height: 60px;
			background: var(--secondary-gradient);
			transform: rotate(45deg);
			animation: float2 8s ease-in-out infinite;
		}

		.shape-3 {
			bottom: 20%;
			left: 20%;
			width: 100px;
			height: 100px;
			border: 3px solid #667eea;
			border-radius: 50%;
			animation: float3 7s ease-in-out infinite;
		}

		.shape-4 {
			bottom: 30%;
			right: 10%;
			width: 0;
			height: 0;
			border-left: 40px solid transparent;
			border-right: 40px solid transparent;
			border-bottom: 70px solid #764ba2;
			animation: float4 9s ease-in-out infinite;
		}

		@keyframes float1 {

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

			50% {
				transform: translateY(-30px) rotate(180deg);
			}
		}

		@keyframes float2 {

			0%,
			100% {
				transform: translateY(0px) rotate(45deg);
			}

			50% {
				transform: translateY(-40px) rotate(225deg);
			}
		}

		@keyframes float3 {

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

			50% {
				transform: translateY(-20px) scale(1.1);
			}
		}

		@keyframes float4 {

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

			50% {
				transform: translateY(-35px) rotate(180deg);
			}
		}

		/* Particle System */
		.particles {
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			overflow: hidden;
		}

		.particle {
			position: absolute;
			width: 4px;
			height: 4px;
			background: #667eea;
			border-radius: 50%;
			animation: particleFloat 15s linear infinite;
		}

		@keyframes particleFloat {
			0% {
				transform: translateY(100vh) translateX(0);
				opacity: 0;
			}

			10% {
				opacity: 1;
			}

			90% {
				opacity: 1;
			}

			100% {
				transform: translateY(-100px) translateX(100px);
				opacity: 0;
			}
		}

		.hero-content {
			z-index: 2;
			max-width: 800px;
			padding: 0 1rem;
			animation: fadeInUp 1s ease-out;
		}

		@keyframes fadeInUp {
			from {
				opacity: 0;
				transform: translateY(50px);
			}

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

		.hero h1 {
			font-size: 3.5rem;
			font-weight: 800;
			margin-bottom: 1.5rem;
			background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
			-webkit-background-clip: text;
			-webkit-text-fill-color: transparent;
			background-clip: text;
			animation: slideInLeft 1s ease-out 0.3s both;
		}

		@keyframes slideInLeft {
			from {
				opacity: 0;
				transform: translateX(-100px);
			}

			to {
				opacity: 1;
				transform: translateX(0);
			}
		}

		.hero p {
			font-size: 1.3rem;
			margin-bottom: 2rem;
			color: #cbd5e1;
			animation: slideInRight 1s ease-out 0.6s both;
		}

		@keyframes slideInRight {
			from {
				opacity: 0;
				transform: translateX(100px);
			}

			to {
				opacity: 1;
				transform: translateX(0);
			}
		}

		.hero-buttons {
			display: flex;
			gap: 1rem;
			justify-content: center;
			flex-wrap: wrap;
			animation: fadeIn 1s ease-out 0.9s both;
		}

		@keyframes fadeIn {
			from {
				opacity: 0;
			}

			to {
				opacity: 1;
			}
		}

		.btn-primary {
			background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
			color: white;
			padding: 1rem 2.5rem;
			border: none;
			border-radius: 50px;
			font-size: 1.1rem;
			font-weight: 600;
			cursor: pointer;
			transition: all 0.3s ease;
			text-decoration: none;
			display: inline-block;
		}

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

		.btn-secondary {
			background: transparent;
			color: white;
			padding: 1rem 2.5rem;
			border: 2px solid #667eea;
			border-radius: 50px;
			font-size: 1.1rem;
			font-weight: 600;
			cursor: pointer;
			transition: all 0.3s ease;
			text-decoration: none;
			display: inline-block;
		}

		.btn-secondary:hover {
			background: #667eea;
			transform: translateY(-3px);
			box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
		}

		/* Services Section */
		.services {
			padding: 5rem 5%;
			background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
		}

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

		.section-title {
			text-align: center;
			font-size: 2.5rem;
			font-weight: 800;
			margin-bottom: 1rem;
			background: linear-gradient(135deg, #334155 0%, #475569 100%);
			-webkit-background-clip: text;
			-webkit-text-fill-color: transparent;
			background-clip: text;
		}

		.section-subtitle {
			text-align: center;
			font-size: 1.2rem;
			color: #64748b;
			margin-bottom: 4rem;
			max-width: 600px;
			margin-left: auto;
			margin-right: auto;
		}

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

		.service-card {
			background: white;
			padding: 2.5rem;
			border-radius: 20px;
			box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
			transition: all 0.3s ease;
			border: 1px solid #e2e8f0;
			position: relative;
			overflow: hidden;
			display: flex;
			flex-direction: column;
			min-height: 320px;
		}

		.service-card::before {
			content: '';
			position: absolute;
			top: 0;
			left: 0;
			right: 0;
			height: 4px;
			background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
			transform: scaleX(0);
			transition: transform 0.3s ease;
		}

		.service-card:hover::before {
			transform: scaleX(1);
		}

		.service-card:hover {
			transform: translateY(-10px);
			box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
		}

		.service-icon {
			width: 60px;
			height: 60px;
			background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
			border-radius: 15px;
			display: flex;
			align-items: center;
			justify-content: center;
			margin-bottom: 1.5rem;
			font-size: 1.5rem;
			color: white;
			flex-shrink: 0;
		}

		.service-content {
			flex-grow: 1;
			display: flex;
			flex-direction: column;
		}

		.service-card h3 {
			font-size: 1.5rem;
			font-weight: 700;
			margin-bottom: 1rem;
			color: #1e293b;
			flex-shrink: 0;
		}

		.service-card p {
			color: #64748b;
			line-height: 1.7;
			margin-bottom: 1.5rem;
			flex-grow: 1;
		}

		.learn-more {
			color: #667eea;
			text-decoration: none;
			font-weight: 600;
			display: inline-flex;
			align-items: center;
			gap: 0.5rem;
			transition: all 0.3s ease;
			margin-top: auto;
			align-self: flex-start;
		}

		.learn-more:hover {
			gap: 1rem;
			color: #764ba2;
		}

		/* Features Section */
		.features {
			padding: 5rem 5%;
			background: white;
		}

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

		.feature-item {
			text-align: center;
			padding: 2rem;
			transition: all 0.3s ease;
		}

		.feature-item:hover {
			transform: translateY(-5px);
		}

		.feature-icon {
			width: 80px;
			height: 80px;
			background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
			border-radius: 50%;
			display: flex;
			align-items: center;
			justify-content: center;
			margin: 0 auto 1.5rem;
			font-size: 2rem;
			color: white;
		}

		.feature-item h4 {
			font-size: 1.3rem;
			font-weight: 700;
			margin-bottom: 1rem;
			color: #1e293b;
		}

		.feature-item p {
			color: #64748b;
			line-height: 1.6;
		}

		/* CTA Section */
		.cta-section {
			padding: 5rem 5%;
			background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
			color: white;
			text-align: center;
		}

		.cta-section h2 {
			font-size: 2.5rem;
			font-weight: 800;
			margin-bottom: 1rem;
		}

		.cta-section p {
			font-size: 1.2rem;
			margin-bottom: 2rem;
			opacity: 0.9;
		}

		.btn-white {
			background: white;
			color: #667eea;
			padding: 1rem 2.5rem;
			border: none;
			border-radius: 50px;
			font-size: 1.1rem;
			font-weight: 600;
			cursor: pointer;
			transition: all 0.3s ease;
			text-decoration: none;
			display: inline-block;
		}

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

		/* Footer */
		.footer {
			background: #1e293b;
			color: white;
			padding: 3rem 5% 1rem;
		}

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

		.footer-section h4 {
			margin-bottom: 1rem;
			color: #667eea;
		}

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

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

		.footer-section a {
			color: #cbd5e1;
			text-decoration: none;
			transition: color 0.3s ease;
		}

		.footer-section a:hover {
			color: #667eea;
		}

		.footer-bottom {
			text-align: center;
			padding-top: 2rem;
			border-top: 1px solid #334155;
			margin-top: 2rem;
		}

		/* Responsive Design */
		@media (max-width: 768px) {

			.nav-links,
			.cta-button {
				display: none;
			}

			.hamburger {
				display: flex;
			}

			.mobile-menu {
				display: flex;
			}

			.mobile-menu ul li a:hover {
				color: #667eea;
			}

			.logo {
				font-size: 1.2rem;
			}

			.logo-img {
				height: 40px;
				width: 40px;
			}

			.hero h1 {
				font-size: 2.2rem;
			}
			            
			.word-business {
				font-size: 16px;
				letter-spacing: 4px;
			}
			
			.word-connector {
				font-size: 24px;
			}

			.hero p {
				font-size: 1rem;
			}

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

			.btn-primary,
			.btn-secondary {
				width: 100%;
				max-width: 280px;
			}

			.services-grid {
				grid-template-columns: 1fr;
				gap: 1.5rem;
			}

			.service-card {
				min-height: 280px;
				padding: 2rem;
			}

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

			.section-title {
				font-size: 2rem;
			}

			.nav {
				padding: 1rem;
			}

			.services,
			.features,
			.cta-section {
				padding: 3rem 1rem;
			}

			.cta-section h2 {
				font-size: 2rem;
			}

			.footer {
				padding: 2rem 1rem 1rem;
			}
		}

		@media (max-width: 480px) {
			.hero h1 {
				font-size: 1.8rem;
			}

			.hero p {
				font-size: 0.9rem;
			}

			.section-title {
				font-size: 1.8rem;
			}

			.service-card {
				padding: 1.5rem;
			}

			.feature-item {
				padding: 1.5rem;
			}

			.cta-section h2 {
				font-size: 1.8rem;
			}

			.mobile-menu ul li a:hover {
				color: #667eea;
			}
		}

		@media (min-width: 768px) and (max-width: 1024px) {
			.nav {
				padding: 0.8rem 3%;
			}

			.logo {
				font-size: 1.3rem;
			}

			.logo-img {
				height: 40px;
				width: 40px;
			}

			.cta-button {
				padding: 0.6rem 1.2rem;
				font-size: 0.9rem;
				border-radius: 30px;
			}

			.nav-links {
				gap: 1.2rem;
			}

			.nav-links a {
				font-size: 0.95rem;
			}

			.hamburger span {
				width: 22px;
				height: 2px;
			}

			.mobile-menu ul li a:hover {
				color: #667eea;
			}
		}

		/* Scroll Animations */
		.scroll-animate {
			opacity: 0;
			transform: translateY(50px);
			transition: all 0.6s ease;
		}

		.scroll-animate.active {
			opacity: 1;
			transform: translateY(0);
		}

		.feature-item.scroll-animate {
			opacity: 0;
			transform: translateY(50px) scale(0.9);
			transition: all 0.6s ease-out;
		}

		.feature-item.scroll-animate.animate {
			opacity: 1;
			transform: translateY(0) scale(1);
		}


		.services-grid .feature-item:nth-child(1) {
			transition-delay: 0.1s;
		}

		.services-grid .feature-item:nth-child(2) {
			transition-delay: 0.2s;
		}

		.services-grid .feature-item:nth-child(3) {
			transition-delay: 0.3s;
		}

		.services-grid .feature-item:nth-child(4) {
			transition-delay: 0.4s;
		}

		.services-grid .feature-item:nth-child(5) {
			transition-delay: 0.5s;
		}

		.services-grid .feature-item:nth-child(6) {
			transition-delay: 0.6s;
		}

		.process-steps .process-step:nth-child(1) {
			transition-delay: 0.1s;
		}

		.process-steps .process-step:nth-child(2) {
			transition-delay: 0.3s;
		}

		.process-steps .process-step:nth-child(3) {
			transition-delay: 0.5s;
		}

		.process-steps .process-step:nth-child(4) {
			transition-delay: 0.7s;
		}