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

:root {
	--primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #f5576c 75%, #fda085 100%);
	--dark-bg: #0a0a0f;
	--glass-bg: rgba(255, 255, 255, 0.05);
	--glass-border: rgba(255, 255, 255, 0.1);
	--text-primary: #ffffff;
	--text-secondary: #a0a0b8;
	--accent-purple: #8b5cf6;
	--accent-pink: #ec4899;
	--accent-cyan: #06b6d4;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	background: var(--dark-bg);
	color: var(--text-primary);
	overflow-x: hidden;
	position: relative;
}

/* Animated Background */
.bg-animation {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
	background: linear-gradient(45deg, #0a0a0f, #1a1a2e, #16213e);
	overflow: hidden;
}

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

.orb1 {
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, #8b5cf6, transparent);
	top: -200px;
	left: -200px;
	animation-duration: 25s;
}

.orb2 {
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, #ec4899, transparent);
	bottom: -200px;
	right: -200px;
	animation-duration: 30s;
	animation-delay: 5s;
}

.orb3 {
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, #06b6d4, transparent);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	animation-duration: 35s;
	animation-delay: 10s;
}

@keyframes float {
	0%, 100% { transform: translate(0, 0) scale(1); }
	25% { transform: translate(100px, -100px) scale(1.1); }
	50% { transform: translate(-100px, 100px) scale(0.9); }
	75% { transform: translate(50px, 50px) scale(1.05); }
}

/* Navigation */
nav {
	position: fixed;
	top: 0;
	width: 100%;
	padding: 1rem 2rem;
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid var(--glass-border);
	z-index: 1000;
	transition: all 0.3s ease;
}

nav.scrolled {
	padding: 0.75rem 2rem;
	background: rgba(10, 10, 15, 0.95);
}

.nav-container {
	max-width: 1000px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-size: 1.8rem;
	font-weight: bold;
	background: var(--primary-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

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

.nav-links a {
	color: var(--text-secondary);
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
	padding: 0.5rem 0;
}

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

.nav-links a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--primary-gradient);
	transition: width 0.3s ease;
}

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

.nav-cta {
	background: var(--primary-gradient);
	padding: 0.75rem 1.5rem;
	border-radius: 50px;
	text-decoration: none;
	color: white;
	font-weight: 600;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.nav-cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 25px rgba(139, 92, 246, 0.5);
}

.mobile-menu-toggle {
	display: none;
	flex-direction: column;
	gap: 4px;
	cursor: pointer;
}

.mobile-menu-toggle span {
	width: 25px;
	height: 2px;
	background: var(--text-primary);
	transition: all 0.3s ease;
}

/* Hero Section */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 6rem 2rem 4rem;
	position: relative;
}

.hero-content {
	max-width: 1000px;
	width: 100%;
	display: grid;
	
	gap: 2rem;
	align-items: center;
}

.hero-text {
	animation: slideInLeft 1s ease;
}

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

.hero-badge {
	display: inline-block;
	padding: 0.5rem 1rem;
	background: var(--glass-bg);
	backdrop-filter: blur(10px);
	border: 1px solid var(--glass-border);
	border-radius: 50px;
	font-size: 0.875rem;
	margin-bottom: 1.5rem;
	animation: pulse 2s infinite;
}

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

.hero h1 {
	font-size: clamp(2.5rem, 5vw, 3rem);
	line-height: 1.2;
	margin-bottom: 1.5rem;
	background: linear-gradient(135deg, #fff 0%, #a0a0b8 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.hero h1 span{
display: inline-block;
}
.gradient-text {
	background: var(--primary-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero p {
	font-size: 1.25rem;
	color: var(--text-secondary);
	margin-bottom: 2rem;
	line-height: 1.6;
}



.btn-primary {
	background: var(--primary-gradient);
	padding: 1rem 2rem;
	border-radius: 50px;
	text-decoration: none;
	color: white;
	font-weight: 600;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 30px rgba(139, 92, 246, 0.5);
}

.btn-secondary {
	background: var(--glass-bg);
	backdrop-filter: blur(10px);
	border: 1px solid var(--glass-border);
	padding: 1rem 2rem;
	border-radius: 50px;
	text-decoration: none;
	color: var(--text-primary);
	font-weight: 600;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.btn-secondary:hover {
	background: rgba(255, 255, 255, 0.1);
	transform: translateY(-3px);
}

.hero-visual {
	position: relative;
	animation: slideInRight 1s ease;
}

@keyframes slideInRight {
	from {
		opacity: 0;
		transform: translateX(50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.glass-card {
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: 20px;
	padding: 2rem;
	position: relative;
	overflow: hidden;
}

.glass-card::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
	transform: rotate(45deg);
	animation: shimmer 3s infinite;
}

@keyframes shimmer {
	0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
	100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.tech-grid {
	display: grid;
	
	gap: 1rem;
	margin-top: 15px;
}

.tech-item, .tech-legend {
	background: rgba(255, 255, 255, 0.03);
	padding: 1rem;
	border-radius: 10px;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	transition: all 0.3s ease;
}
.tech-legend{
	font-size: 13px;
	padding: .5rem 1rem;
}
.tech-item .bbk{
	display: flex;
	align-items: center;
	gap: 10px;
}
.tech-item .btt{
	align-items: center;
	justify-content: end;
	display: flex;
}
.flex-4{
	flex: 4;
}
.flex-3{
	flex: 3;
}
.flex-2{
	flex: 2;
}
.flex-1{
	flex: 1;
}

.tech-item:hover {
	background: rgba(255, 255, 255, 0.08);
	transform: translateY(-2px);
}

.tech-icon {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
}

.icon-ai { background: linear-gradient(135deg, #8b5cf6, #4391e7); }
.icon-cloud { background: linear-gradient(135deg, #f68105, #eeaf0e); }
.icon-quantum { background: linear-gradient(135deg, #085da5, #1f99ff); }
.icon-blockchain { background: linear-gradient(135deg, #04b554, #33ed87); }
.icon-blockchain-black{background: linear-gradient(135deg, #181c1f, #181c1f);}

/* Features Section */
.features {
	padding: 5rem 2rem;
	position: relative;
}

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

.section-header {
	text-align: center;
	margin-bottom: 4rem;
}

.section-header h2 {
	font-size: clamp(2rem, 4vw, 3rem);
	margin-bottom: 1rem;
	background: linear-gradient(135deg, #fff 0%, #a0a0b8 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.section-header p {
	font-size: 1.125rem;
	color: var(--text-secondary);
	max-width: 600px;
	margin: 0 auto;
}

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

.feature-card {
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: 20px;
	padding: 2rem;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}
.feature-card:after{
	content: "\f061";
	font-family: 'FontAwesome';
	position: absolute;
	right: 25px;
	top: 30px;
	font-size: 20px;
}

.feature-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--primary-gradient);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

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

.feature-card:hover {
	transform: translateY(-5px);
	border-color: rgba(139, 92, 246, 0.3);
	box-shadow: 0 10px 40px rgba(139, 92, 246, 0.2);
	cursor: pointer;
}

.feature-icon {
	width: 60px;
	height: 60px;
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	margin-bottom: 1.5rem;
	background: var(--primary-gradient);
}

.feature-card h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
}

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

/* Stats Section */
.stats {
	padding: 5rem 2rem;
	background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
	border-radius: 30px;
	margin: 2rem;
}

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

.stat-card {
	text-align: center;
	padding: 2rem;
}

.stat-number {
	font-size: 3rem;
	font-weight: bold;
	background: var(--primary-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 0.5rem;
}

.stat-label {
	color: var(--text-secondary);
	font-size: 1.125rem;
}

/* Testimonials */
.testimonials {
	padding: 5rem 2rem;
}

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

.testimonial-card {
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: 20px;
	padding: 2rem;
	transition: all 0.3s ease;
}

.testimonial-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 40px rgba(139, 92, 246, 0.2);
}

.testimonial-content {
	font-style: italic;
	color: var(--text-secondary);
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.author-avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: var(--primary-gradient);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	color: white;
}

.author-info h4 {
	margin-bottom: 0.25rem;
}

.author-info p {
	color: var(--text-secondary);
	font-size: 0.875rem;
}

.rating {
	display: flex;
	gap: 0.25rem;
	margin-bottom: 1rem;
}

.rating i {
	color: #fbbf24;
}

/* CTA Section */
.cta {
	padding: 5rem 2rem;
	text-align: center;
}

.cta-content {
	max-width: 1000px;
	margin: 0 auto;
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: 30px;
	padding: 4rem 2rem;
	position: relative;
	overflow: hidden;
}

.cta-content::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(139, 92, 246, 0.1), transparent);
	animation: rotate 20s linear infinite;
}
.cta-content ul{
	list-style: none;
	max-width: 850px;
	margin: 0 auto;
}
.cta-content ul li{
	padding: 10px 0px;
	padding-left: 25px;
	position: relative;
	font-size: 18px;
	text-align: left;
	border-bottom: 1px solid #504d78;
}
.cta-content ul li:before{
	content: '';
	width: 10px;
	height: 10px;
	position: absolute;
	border-radius: 50%;
	background: #6f61c1;
	left: 0;
	top: 50%;
	transform: translate(0, -50%);
}
.cta-content ul li:last-child{
	border-bottom: 0px;
}
@keyframes rotate {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

.cta h2 {
	font-size: clamp(2rem, 4vw, 2.5rem);
	margin-bottom: 1.3rem;
	position: relative;
	z-index: 1;
}

.cta p {

	color: var(--text-secondary);
	margin-bottom: 2rem;
	position: relative;
	z-index: 1;
	margin-top: 10px;
	line-height: 1.6;
}
.features-detail {
	display: none;
}

.features-detail.is-active {
	display: block;
}

.features-grid.is-hidden {
	display: none;
}

.features-back {
	
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	margin-bottom: 1.5rem;
	border: none;

	cursor: pointer;
	font-weight: 600;
}

.feature-category {
	display: none;
}

.feature-category.is-active {
	display: block;
}

.faq-list {
	display: grid;
	gap: 1rem;
	margin-top: 20px;
}

.faq-item {
	border-radius: .75rem;
	padding: 1rem 1.25rem;
	background: rgba(255,255,255,.03);
	backdrop-filter: blur(8px);
}

.faq-question {
	color: #fff;
	width: 100%;
	text-align: left;
	border: none;
	background: none;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height .25s ease;
	line-height: 1.6;
}
.faq-answer a{
	color: #ff9475;
}
.faq-item.is-open .faq-answer {
	max-height: 300px;
	margin-top: .5rem;
	padding-top: 10px;
}
.faq-answer {
	position: relative;
}

.faq-typing-loader {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: .25rem 0;
}

.faq-typing-loader span {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #fff;
	animation: faqTyping 0.9s infinite ease-in-out;
	opacity: .4;
}

.faq-typing-loader span:nth-child(2) {
	animation-delay: .15s;
}

.faq-typing-loader span:nth-child(3) {
	animation-delay: .3s;
}

@keyframes faqTyping {
	0%, 80%, 100% {
		transform: translateY(0);
		opacity: .4;
	}
	40% {
		transform: translateY(-4px);
		opacity: 1;
	}
}
/* Footer */
footer {
	padding: 3rem 2rem 2rem;
	background: rgba(0, 0, 0, 0.5);
	border-top: 1px solid var(--glass-border);
}

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

.footer-section h3 {
	margin-bottom: 1rem;
	color: var(--text-primary);
}

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

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

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

.footer-section a:hover {
	color: var(--accent-purple);
}

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

.social-links a {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.social-links a:hover {
	background: var(--accent-purple);
	transform: translateY(-3px);
}

.footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid var(--glass-border);
	color: var(--text-secondary);
	line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
	.hero{
		padding: 6rem 1rem 4rem;
	}
	.features{
		padding: 5rem 1rem;
	}
	.cta{
		padding: 4rem 1rem;
	}
	.cta-content{
		padding: 3rem 1rem;
	}
	.features-grid{
		gap: 1rem;
	}
	.hero h1{
		font-size: 28px;
		line-height: 1.3
	}
	.cta h2{
		font-size: clamp(1.3rem, 4vw, 2.5rem);
	}
	.cta-content ul li{
		line-height: 1.4;
		font-size: 17px;
	}
	.glass-card{
		padding: 1rem;
	}
	.nav-cta{
		padding: 0.45rem .8rem;
		font-size: 14px;
	}
	.feature-icon{
		width: 50px;
		height: 50px;
	}
	.feature-card h3{
		font-size: 1.2rem;
	}
	.tech-item{
		font-size: 13px;
	}
	.feature-card{
		padding: 1rem;
	}
	.tech-item, .tech-legend{
		padding: 13px;
	}
	.nav-links {
		display: none;
	}

	.mobile-menu-toggle {
		display: flex;
	}

	.hero-content {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.hero-visual {
		margin-top: 2rem;
	}

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

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

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

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

	.footer-content {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.social-links {
		justify-content: center;
	}
	.footer-bottom{
		font-size: 14px;
	}
}

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

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

.loader-circle {
	width: 50px;
	height: 50px;
	border: 3px solid var(--glass-border);
	border-top-color: var(--accent-purple);
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

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

/* Scroll Progress Bar */
.scroll-progress {
	position: fixed;
	top: 0;
	left: 0;
	height: 3px;
	background: var(--primary-gradient);
	z-index: 10000;
	transition: width 0.1s ease;
}

/* Notification Toast */
.toast {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: 10px;
	padding: 1rem 1.5rem;
	display: flex;
	align-items: center;
	gap: 1rem;
	transform: translateX(400px);
	transition: transform 0.3s ease;
	z-index: 1000;
}

.toast.show {
	transform: translateX(0);
}

.toast-icon {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--primary-gradient);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
}