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

body {
	font-family: "Inter", sans-serif;
	overflow-x: hidden;
}

.mt-64{
	margin-top: 64px !important;
}

/* Header Styles */
.site-header {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
}

.nav-link {
	color: #374151;
	font-weight: 500;
	transition: color 0.3s ease;
	position: relative;
}

.nav-link:hover {
	color: #3b82f6;
}

.nav-link::after {
	content: "";
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 0;
	height: 2px;
	background: #3b82f6;
	transition: width 0.3s ease;
}

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

.mobile-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: white;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

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

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

.hamburger span {
	width: 24px;
	height: 2px;
	background: #374151;
	transition: all 0.3s ease;
}

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

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

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

@media (max-width: 1024px) {
	.nav-links {
		display: none;
	}

	.hamburger {
		display: flex;
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

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

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

@keyframes float {
	0%,
	100% {
		transform: translateY(0px);
	}

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

.nav-link {
	position: relative;
}

.nav-link::after {
	content: "";
	position: absolute;
	width: 0;
	height: 2px;
	bottom: -5px;
	left: 0;
	background-color: #10b981;
	transition: width 0.3s;
}

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

.hero-section {
	background: linear-gradient(180deg, #0a1628 0%, #111827 100%);
	position: relative;
	overflow: hidden;
}

.hero-section::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 50%;
	height: 100%;
	background: radial-gradient(
		circle at center,
		rgba(59, 130, 246, 0.1) 0%,
		transparent 70%
	);
	pointer-events: none;
}

.grid-pattern {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
	background-size: 50px 50px;
	pointer-events: none;
}

.badge {
	backdrop-filter: blur(12px);
	background: rgba(59, 130, 246, 0.1);
	border: 1px solid rgba(59, 130, 246, 0.2);
	transition: all 0.3s ease;
}

.badge:hover {
	background: rgba(59, 130, 246, 0.15);
	border-color: rgba(59, 130, 246, 0.3);
	transform: translateY(-2px);
}

.primary-btn {
	background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.primary-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.secondary-btn {
	background: rgba(255, 255, 255, 0.05);
	border: 1.5px solid rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
}

.secondary-btn:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.25);
	transform: translateY(-2px);
}

.dashboard-card {
	background: linear-gradient(
		135deg,
		rgba(15, 23, 42, 0.8) 0%,
		rgba(30, 41, 59, 0.6) 100%
	);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(148, 163, 184, 0.1);
	transition: all 0.4s ease;
}

.metric-card {
	background: linear-gradient(
		135deg,
		rgba(30, 41, 59, 0.5) 0%,
		rgba(51, 65, 85, 0.3) 100%
	);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(148, 163, 184, 0.1);
	transition: all 0.3s ease;
}

.metric-card:hover {
	transform: translateY(-4px);
	border-color: rgba(148, 163, 184, 0.2);
}

.stat-highlight {
	background: linear-gradient(135deg, #3b82f6 0%, #10b981 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

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

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

	50% {
		opacity: 0.5;
	}
}

.float-subtle {
	animation: floatSubtle 6s ease-in-out infinite;
}

@keyframes floatSubtle {
	0%,
	100% {
		transform: translateY(0px);
	}

	50% {
		transform: translateY(-10px);
	}
}

.chart-bar {
	transition: all 0.3s ease;
}

.chart-bar:hover {
	transform: scaleY(1.1);
	filter: brightness(1.2);
}
