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

@keyframes glow {
	0% { opacity: 0.1; }
	100% { opacity: 0.2; }
}

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

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

@keyframes statsSlide {
	from { opacity: 0; transform: translateY(20px); }
	to { opacity: 1; transform: translateY(0); }
}

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

.card:hover .position-absolute div[style*="background: rgba(255,255,255,0.15)"] {
	transform: translateY(-2px);
	background: rgba(255,255,255,0.2) !important;
}

.btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
}

.ls-1 {
	letter-spacing: 0.1em;
}

@media (max-width: 768px) {
	.card-body {
		flex-direction: column !important;
		text-align: center;
	}
	
	.card-body .ms-4 {
		margin-left: 0 !important;
		margin-top: 1.5rem;
	}
	
	.display-6 {
		font-size: 2rem !important;
	}
	
	.d-flex.gap-4 {
		justify-content: center;
	}
	
	.d-flex.flex-column {
		flex-direction: row !important;
	}
}

	.scroll-map-btn {
		position: fixed;
		top: 100px;
		right: 30px;
		width: 40px;
		height: 40px;
		border-radius: 50%;
		background-color: #4299e1;
		color: white;
		border: none;
		box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
		font-size: 20px;
		z-index: 9999;
		display: flex;
		justify-content: center;
		align-items: center;
		transition: all 0.3s ease;
	}

	.scroll-map-btn:hover {
		background-color: #2b6cb0;
		transform: scale(1.1);
		cursor: pointer;
	}


	.header p {
		font-size: 1.1rem;
		opacity: 0.9;
	}

	.stat-value {
		font-size: 2.2rem;
		font-weight: bold;
		color: #2d3748;
		margin-bottom: 5px;
	}

	.stat-label {
		color: #718096;
		font-size: 0.9rem;
		text-transform: uppercase;
		letter-spacing: 0.5px;
	}

	.stat-change {
		font-size: 0.8rem;
		margin-top: 8px;
		padding: 3px 8px;
		border-radius: 12px;
	}

	.positive {
		background: #c6f6d5;
		color: #22543d;
	}

	.negative {
		background: #fed7d7;
		color: #742a2a;
	}

	.charts-grid {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
		gap: 25px;
	}

	.chart-container {
		background: rgba(255, 255, 255, 0.95);
		backdrop-filter: blur(10px);
		border-radius: 15px;
		padding: 25px;
		box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
	}

	.chart-title {
		font-size: 1.3rem;
		font-weight: 600;
		color: #2d3748;
		margin-bottom: 20px;
		text-align: center;
	}

	.chart-wrapper {
		position: relative;
		height: 300px;
	}
	canvas {
		width: 100% !important;
		height: 100% !important;
	}