body {
	font-family: 'Poppins', sans-serif;
	background-color: #000000;
	background: linear-gradient(140deg, #000000 0%, #222222 50%, #1e201e 100%);
	color: #f0f4f8;
	overflow-x: hidden;
}

.gradient-bg {
	background: linear-gradient(140deg, #000000 0%, #222222 50%, #1e201e 100%);
}

.card-hover {
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 20px -5px rgba(0, 0, 0, 0.3),
		0 5px 5px -5px rgba(0, 0, 0, 0.2);
}

.text-gradient {
	background: linear-gradient(90deg, #46c3db, #8d99ae);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.section-divider {
	margin-top: 1.25rem;
	height: 1px;
	background: linear-gradient(90deg, transparent, #ececec, transparent);
}

.stats-card {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.18);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.37);
	overflow: hidden;
	transition: all 0.3s ease;
	position: relative;
}

.product-card {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.18);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.37);
	overflow: hidden;
	transition: all 0.3s ease;
	position: relative;
}

.nav-link {
	position: relative;
	transition: color 0.3s ease;
	color: #ececec;
}

.nav-link::after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	bottom: -5px;
	left: 0;
	background: #ececec;
	transition: width 0.3s ease;
}

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

.nav-link:hover {
	color: #ececec;
}

.floating {
	animation: floating 3s ease-in-out infinite;
}

.main-logo {
	width: 150px;
}

@media (max-width: 600px) {
	.main-logo {
		width: 115px;
		padding-top: 0;
	}
}

.footer-logo {
	width: 150px;
}

@keyframes floating {
	0% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-10px);
	}
	100% {
		transform: translateY(0px);
	}
}

.pulse {
	animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0.5;
	}
}

.electric-accent {
	color: #46c3db;
}

.electric-border {
	border: 1px solid #46c3db;
}

.electric-bg {
	background-color: rgba(70, 195, 219, 0.1);
}

.video-overlay {
	background: rgba(0, 0, 0, 0.125);
}

.fade-in {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.appear {
	opacity: 1;
	transform: translateY(0);
}

.video-container {
	position: relative;
	width: 100%;
	height: 100vh;
	overflow: hidden;
}

.hero-video {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	transform: translate(-50%, -50%);
	z-index: -1;
	object-fit: cover;
}

.contact-card {
	background: rgba(255, 255, 255, 0.125);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.18);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
	position: relative;
	overflow: hidden;
}

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

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

.form-input {
	background: #222;
	opacity: 80%;
	border: 1px solid rgba(255, 255, 255, 0.18);
	transition: all 0.3s ease;
}

.form-input:focus {
	border-color: #a3a3a3;
	box-shadow: 0 0 0 3px rgba(245, 245, 245, 0.18);
}

.submit-btn {
	background: linear-gradient(90deg, #46c3db, #3aa8bc);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.submit-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(70, 195, 219, 0.4);
}

.submit-btn::after {
	content: '';
	position: absolute;
	top: -50%;
	left: -60%;
	width: 20%;
	height: 200%;
	background: rgba(255, 255, 255, 0.3);
	transform: rotate(25deg);
	transition: all 0.6s;
}

.submit-btn:hover::after {
	left: 120%;
}

/* Mobile menu */
.mobile-menu {
	display: none;
	position: fixed;
	top: 64px;
	right: 0;
	width: 100%;
	background: rgba(0, 0, 0, 0.75);
	backdrop-filter: blur(10px);
	z-index: 40;
	padding: 1rem;
	border-bottom: 1px solid rgba(70, 195, 219, 0.2);
}

.mobile-menu.active {
	display: block;
}

/* Product section - card image sliders */
.image-slider {
	display: flex;
	width: 300%; /* 3 images * 100% */
	animation: slide 9s infinite;
}

.image-slider img {
	min-width: 33.333%; /* 100% / 3 images */
}

@keyframes slide {
	0%,
	30% {
		transform: translateX(0);
	}
	35%,
	65% {
		transform: translateX(-33.333%);
	}
	70%,
	100% {
		transform: translateX(-66.666%);
	}
}
