@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Exo+2:wght@300;400;600&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Exo 2', sans-serif;
	background: linear-gradient(135deg, #0a0a0f 0%, #151520 50%, #1a1a2e 100%);
	color: #8892b0;
	overflow-x: hidden;
	line-height: 1.6;
}

/* Animated starfield background */
.starfield {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	opacity: 0.3;
}

.star {
	position: absolute;
	background: #fff;
	border-radius: 50%;
	animation: twinkle 3s infinite alternate;
}

@keyframes twinkle {
	0% { opacity: 0.3; transform: scale(0.8); }
	100% { opacity: 1; transform: scale(1.2); }
}

/* Hero Section */
.hero {
	position: relative;
	overflow: hidden;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 2rem;
	
	background-image: url('../images/hero.png');
	background-size: 110%;
	background-repeat:no-repeat;
    background-position: center center;
	background-color: rgba(0,0,0,0.8);
	background-blend-mode: multiply;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(circle at 20% 30%, rgba(57, 255, 20, 0.05) 0%, transparent 30%),
		radial-gradient(circle at 80% 70%, rgba(255, 176, 0, 0.05) 0%, transparent 30%);
	animation: backgroundShift 20s ease-in-out infinite;

}

@keyframes backgroundShift {
	0%, 100% { opacity: 0.5; }
	50% { opacity: 0.8; }
}

.hero-content {
	position: relative;
	z-index: 10;
	max-width: 1000px;
	animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(50px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero h1 {
	font-family: 'Orbitron', monospace;
	font-size: clamp(2.5rem, 5vw, 4.5rem);
	font-weight: 900;
	color: #ffffff;
	text-shadow: 
		0 0 10px #00d4ff,
		0 0 20px rgba(0, 212, 255, 0.5),
		0 0 40px rgba(0, 212, 255, 0.3);
	margin-bottom: 1.5rem;
	line-height: 1.2;
}

.hero p {
	font-size: clamp(1.1rem, 2.5vw, 1.5rem);
	color: #c9d1d9;
	margin-bottom: 2.5rem;
	font-weight: 300;
}

/* CTA Button */
.cta-button {
	display: inline-block;
	padding: 1rem 2.5rem;
	background: linear-gradient(145deg, rgba(0, 212, 255, 0.2), rgba(0, 212, 255, 0.4));
	border: 2px solid #00d4ff;
	border-radius: 8px;
	color: #00d4ff;
	font-family: 'Orbitron', monospace;
	font-weight: 700;
	font-size: 1.1rem;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.cta-button::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.5s;
}

.cta-button:hover::before {
	left: 100%;
}

.cta-button:hover {
	background: rgba(0, 212, 255, 0.3);
	box-shadow: 
		0 0 30px rgba(0, 212, 255, 0.5),
		inset 0 0 20px rgba(0, 212, 255, 0.1);
	transform: translateY(-3px);
	text-shadow: 0 0 10px #00d4ff;
}

/* Sections */
.section {
	padding: 5rem 2rem;
	position: relative;
}

.section-alt {
	background: 
		linear-gradient(135deg, rgba(30, 30, 46, 0.3) 0%, rgba(42, 42, 58, 0.2) 100%),
		linear-gradient(135deg, #0a0a0f 0%, #151520 50%, #1a1a2e 100%);
}

.container {
	max-width: 1200px;
	margin: 0 auto;
}

.section h2 {
	font-family: 'Orbitron', monospace;
	font-size: clamp(1.8rem, 4vw, 2.5rem);
	font-weight: 700;
	color: #00d4ff;
	text-align: center;
	margin-bottom: 2rem;
	text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.section p {
	font-size: 1.1rem;
	color: #c9d1d9;
	text-align: center;
	max-width: 800px;
	margin: 0 auto 1.5rem;
	line-height: 1.7;
}

/* Problem Section */
.problems-list {
	max-width: 600px;
	margin: 2rem auto;
	text-align: left;
}

.problems-list p {
	color: #ff2a6d;
	font-size: 1.1rem;
	margin-bottom: 1rem;
	padding: 0.5rem 1rem;
	background: rgba(255, 42, 109, 0.1);
	border-left: 3px solid #ff2a6d;
	border-radius: 4px;
	text-align: left;
}

/* Features Grid */
.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.feature-card {
	background: linear-gradient(145deg, rgba(30, 30, 46, 0.8), rgba(42, 42, 58, 0.6));
	border: 1px solid rgba(0, 212, 255, 0.3);
	border-radius: 12px;
	padding: 2rem;
	text-align: center;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.feature-card::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.5s;
}

.feature-card:hover::before {
	left: 100%;
}

.feature-card:hover {
	transform: translateY(-10px);
	border-color: #00d4ff;
	box-shadow: 0 15px 40px rgba(0, 212, 255, 0.2);
}

.feature-card h3 {
	font-family: 'Orbitron', monospace;
	font-size: 1.3rem;
	font-weight: 600;
	color: #00d4ff;
	margin-bottom: 1rem;
}

.feature-card p {
	color: #8892b0;
	font-size: 1rem;
	text-align: left;
}

/* Testimonials */
.testimonials {
	display: grid;
	gap: 2rem;
	margin-top: 3rem;
}

.testimonial {
	background: rgba(0, 0, 0, 0.4);
	border: 1px solid rgba(57, 255, 20, 0.3);
	border-radius: 8px;
	padding: 1.5rem;
	font-style: italic;
	color: #c9d1d9;
	position: relative;
}

.testimonial::before {
	content: '"';
	position: absolute;
	top: -10px;
	left: 20px;
	font-size: 3rem;
	color: #39ff14;
	font-family: 'Orbitron', monospace;
}

/* FAQ Section */
.faq-container {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	background: linear-gradient(145deg, rgba(30, 30, 46, 0.6), rgba(42, 42, 58, 0.4));
	border: 1px solid rgba(0, 212, 255, 0.2);
	border-radius: 8px;
	margin-bottom: 1.5rem;
	overflow: hidden;
	transition: all 0.3s ease;
}

.faq-item:hover {
	border-color: rgba(0, 212, 255, 0.5);
	box-shadow: 0 5px 20px rgba(0, 212, 255, 0.1);
}

.faq-question {
	font-family: 'Orbitron', monospace;
	font-size: 1.2rem;
	font-weight: 600;
	color: #00d4ff;
	padding: 1.5rem;
	margin-bottom: 0.5rem;
}

.faq-answer {
	color: #8892b0;
	padding: 0 1.5rem 1.5rem;
	font-size: 1rem;
	line-height: 1.6;
}

/* Footer */
.footer {
	background: rgba(10, 10, 15, 0.9);
	border-top: 1px solid #00d4ff;
	padding: 2rem;
	text-align: center;
	color: #8892b0;
	font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
	.section {
		padding: 3rem 1rem;
	}
	
	.features-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	
	.feature-card {
		padding: 1.5rem;
	}
}

/* Scroll animations */
.fade-in {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s ease;
}

.fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}