/* Global Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	line-height: 1.6;
	color: #fff;
	background-color: #000;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Header Styles */
.header {
	background-color: rgba(0, 0, 0, 0.9);
	backdrop-filter: blur(10px);
	box-shadow: 0 1px 3px rgba(255, 255, 255, 0.1);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
}

.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 0;
}

.logo h1 {
	font-size: 24px;
	font-weight: 600;
	color: #00aaff;
	width: 120px;
}

.logo img {
	width: 100%;
}

.nav-links {
	display: flex;
	list-style: none;
}

.nav-links li {
	margin-left: 30px;
}

.nav-links a {
	text-decoration: none;
	color: #ccc;
	font-weight: 400;
	transition: color 0.3s ease;
}

.nav-links a:hover {
	color: #00aaff;
}

.cta-button {
	background-color: #00aaff;
	color: #000;
	border: none;
	padding: 10px 20px;
	border-radius: 4px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.cta-button:hover {
	background-color: #0088cc;
	transform: translateY(-2px);
}

/* Fullscreen Slider */
.slider {
	position: relative;
	height: 100vh;
	overflow: hidden;
}

.slider-container {
	position: relative;
	width: 100%;
	height: 100%;
}

.slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	transition: all 0.6s ease-in-out;
}

.slide.active {
	opacity: 1;
	visibility: visible;
}

.slide-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.slide-background img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.slide-content {
	position: relative;
	z-index: 2;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 0 10%;
	background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.slide-content h2 {
	font-size: 48px;
	font-weight: 700;
	margin-bottom: 20px;
	color: #fff;
	line-height: 1.2;
}

.slide-content p {
	font-size: 20px;
	margin-bottom: 30px;
	color: #ddd;
	max-width: 600px;
}

.slide-button {
	background-color: #00aaff;
	color: #000;
	border: none;
	padding: 15px 30px;
	border-radius: 4px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	align-self: flex-start;
}

.slide-button:hover {
	background-color: #0088cc;
	transform: translateY(-2px);
}

.slider-controls {
	position: absolute;
	bottom: 50px;
	right: 50px;
	z-index: 10;
	display: flex;
	gap: 15px;
}

.control {
	background-color: rgba(0, 0, 0, 0.5);
	color: #fff;
	border: 1px solid #fff;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 20px;
}

.control:hover {
	background-color: #00aaff;
	transform: scale(1.1);
}

.slider-indicators {
	position: absolute;
	bottom: 50px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	display: flex;
	gap: 10px;
}

.indicator {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.3);
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
}

.indicator.active {
	background-color: #00aaff;
	transform: scale(1.2);
}

/* Products Section */
.products {
	padding: 100px 0;
	background-color: #000;
}

.products h2 {
	text-align: center;
	font-size: 36px;
	font-weight: 600;
	margin-bottom: 60px;
	color: #fff;
}

.products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 40px;
}

.product-card {
	background-color: #111;
	border-radius: 8px;
	overflow: hidden;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.product-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 8px 24px rgba(0, 170, 255, 0.2);
}

.product-image {
	height: 250px;
	overflow: hidden;
}

.product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
	transform: scale(1.05);
}

.product-info {
	padding: 30px;
}

.product-info h3 {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 15px;
	color: #00aaff;
}

.product-info p {
	color: #ccc;
	margin-bottom: 20px;
	font-size: 14px;
	line-height: 1.5;
}

.product-button {
	background-color: transparent;
	color: #00aaff;
	border: 1px solid #00aaff;
	padding: 10px 20px;
	border-radius: 4px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	width: 100%;
}

.product-button:hover {
	background-color: #00aaff;
	color: #000;
}

/* Technology Section */
.technology {
	padding: 100px 0;
	background-color: #0a0a0a;
	display: flex;
	align-items: center;
}

.tech-content {
	flex: 1;
	padding-right: 60px;
}

.tech-content h2 {
	font-size: 32px;
	font-weight: 600;
	margin-bottom: 30px;
	color: #00aaff;
}

.tech-content p {
	font-size: 16px;
	margin-bottom: 40px;
	color: #ccc;
	line-height: 1.6;
}

.tech-features {
	margin-bottom: 40px;
}

.tech-features li {
	font-size: 16px;
	margin-bottom: 15px;
	color: #fff;
	list-style: none;
	position: relative;
	padding-left: 25px;
}

.tech-features li:before {
	content: '•';
	color: #00aaff;
	font-weight: bold;
	position: absolute;
	left: 0;
	font-size: 20px;
}

.tech-image {
	flex: 1;
}

.tech-image img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

/* About Section */
.about {
	padding: 100px 0;
	background-color: #000;
}

.about h2 {
	text-align: center;
	font-size: 32px;
	font-weight: 600;
	margin-bottom: 40px;
	color: #00aaff;
}

.about p {
	text-align: center;
	font-size: 16px;
	margin-bottom: 80px;
	color: #ccc;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.6;
}

.about-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 40px;
	text-align: center;
}

.stat-item {
	background-color: #111;
	padding: 40px;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
	transition: all 0.3s ease;
}

.stat-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 24px rgba(0, 170, 255, 0.2);
}

.stat-item h3 {
	font-size: 48px;
	font-weight: 700;
	color: #00aaff;
	margin-bottom: 10px;
}

.stat-item p {
	color: #ccc;
	font-size: 14px;
	margin: 0;
}

/* Contact Section */
.contact {
	padding: 100px 0;
	background-color: #0a0a0a;
}

.contact h2 {
	text-align: center;
	font-size: 32px;
	font-weight: 600;
	margin-bottom: 60px;
	color: #00aaff;
}

.contact-form {
	max-width: 600px;
	margin: 0 auto;
	background-color: #111;
	padding: 40px;
	border-radius: 8px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	padding: 15px;
	margin-bottom: 20px;
	border: 1px solid #333;
	border-radius: 4px;
	font-size: 14px;
	font-family: inherit;
	background-color: #222;
	color: #fff;
	transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
	outline: none;
	border-color: #00aaff;
}

.contact-form textarea {
	height: 150px;
	resize: vertical;
}

.submit-button {
	background-color: #00aaff;
	color: #000;
	border: none;
	padding: 15px 30px;
	border-radius: 4px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	width: 100%;
}

.submit-button:hover {
	background-color: #0088cc;
	transform: translateY(-2px);
}

/* Footer */
.footer {
	background-color: #000;
	color: #fff;
	padding: 80px 0 40px;
	border-top: 1px solid #333;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	margin-bottom: 40px;
}

.footer-logo h2 {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 20px;
	color: #00aaff;
}

.footer-logo p {
	color: #999;
	font-size: 14px;
	line-height: 1.6;
}

.footer-links h3 {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 20px;
	color: #fff;
}

.footer-links ul {
	list-style: none;
}

.footer-links li {
	margin-bottom: 12px;
}

.footer-links a {
	color: #999;
	text-decoration: none;
	font-size: 14px;
	transition: color 0.3s ease;
}

.footer-links a:hover {
	color: #00aaff;
}

.footer-contact h3 {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 20px;
	color: #fff;
}

.footer-contact p {
	color: #999;
	font-size: 14px;
	margin-bottom: 12px;
}

.footer-bottom {
	border-top: 1px solid #333;
	padding-top: 30px;
	text-align: center;
	color: #666;
	font-size: 14px;
}

.footer-legal {
	margin-top: 15px;
}

.footer-legal a {
	color: #666;
	text-decoration: none;
	margin: 0 12px;
	font-size: 12px;
	transition: color 0.3s ease;
}

.footer-legal a:hover {
	color: #00aaff;
}

/* Responsive Design */
@media (max-width: 768px) {
	.navbar {
		flex-direction: column;
		align-items: flex-start;
		padding: 15px 0;
	}

	.logo {
		margin-bottom: 15px;
	}

	.nav-links {
		flex-wrap: wrap;
		gap: 10px;
		margin-bottom: 15px;
	}

	.nav-links li {
		margin-left: 0;
	}

	.slide-content h2 {
		font-size: 32px;
	}

	.slide-content p {
		font-size: 16px;
	}

	.slider-controls {
		bottom: 30px;
		right: 30px;
	}

	.slider-indicators {
		bottom: 30px;
	}

	.technology {
		flex-direction: column;
		text-align: left;
	}

	.tech-content {
		padding-right: 0;
		margin-bottom: 40px;
	}

	.products-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.about-stats {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}

	.stat-item h3 {
		font-size: 32px;
	}

	.footer-content {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.contact-form {
		padding: 30px 20px;
	}
}

@media (min-width: 769px) {
	.tech-content {
		flex: 1;
	}

	.tech-image {
		flex: 1;
	}
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInRight {
	from {
		opacity: 0;
		transform: translateX(30px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.tech-content,
.about p {
	animation: fadeInUp 0.8s ease-out;
}

.tech-image {
	animation: fadeInRight 0.8s ease-out;
}

.product-card,
.stat-item {
	animation: fadeInUp 0.6s ease-out;
}

.product-card:nth-child(2) {
	animation-delay: 0.2s;
}

.product-card:nth-child(3) {
	animation-delay: 0.4s;
}

.stat-item:nth-child(2) {
	animation-delay: 0.2s;
}

.stat-item:nth-child(3) {
	animation-delay: 0.4s;
}

.stat-item:nth-child(4) {
	animation-delay: 0.6s;
}

/* Smooth scrolling */
html {
	scroll-behavior: smooth;
}

/* Focus styles */
:focus {
	outline: 2px solid #00aaff;
	outline-offset: 2px;
}

/* Selection styles */
::selection {
	background-color: #00aaff;
	color: #000;
}

/* Mobile menu */
.mobile-menu-button {
	display: none;
	background-color: #00aaff;
	color: #000;
	border: none;
	padding: 10px 15px;
	border-radius: 4px;
	font-weight: 600;
	cursor: pointer;
	margin-top: 10px;
}

@media (max-width: 768px) {
	.mobile-menu-button {
		display: block;
	}

	.nav-links {
		display: none;
		flex-direction: column;
		margin-top: 15px;
		width: 100%;
	}

	.nav-links.mobile-menu {
		display: flex;
	}

	.nav-links li {
		margin-left: 0;
		margin-bottom: 10px;
	}

	.cta-button {
		margin-top: 15px;
	}
}