@keyframes fade-in-up {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes fade-in-left {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}
@keyframes fade-in-right {
	from {
		opacity: 0;
		transform: translateX(30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}
@keyframes pulse-glow {
	0%, 100% {
		box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
	}
	50% {
		box-shadow: 0 0 40px rgba(59, 130, 246, 0.7);
	}
}
@keyframes float {
	0%, 100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-10px);
	}
}
@keyframes bounce-slow {
	0%, 20%, 50%, 80%, 100% {
		transform: translateY(0);
	}
	40% {
		transform: translateY(-10px);
	}
	60% {
		transform: translateY(-5px);
	}
}
.gradient-bg {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.hero-pattern {
	background-image: 
		radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
		radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}
.glass-effect {
	backdrop-filter: blur(16px) saturate(180%);
	background-color: rgba(255, 255, 255, 0.85);
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
.card-hover {
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
	overflow: hidden;
}
.card-hover::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;
}
.card-hover:hover::before {
	left: 100%;
}
.card-hover:hover {
	transform: translateY(-12px) scale(1.02);
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}
.stat-counter {
	background: linear-gradient(45deg, #1f2937, #374151);
	position: relative;
	overflow: hidden;
}
.stat-counter::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, #f59e0b, #d97706);
}
.nav-link {
	position: relative;
	overflow: hidden;
}
.nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, #3b82f6, #8b5cf6);
	transition: width 0.3s ease;
}
.nav-link:hover::after {
	width: 100%;
}
.assessment-card {
	background: linear-gradient(145deg, #ffffff, #f8fafc);
	border: 1px solid rgba(0, 0, 0, 0.05);
}
.mobile-menu {
	transform: translateX(-100%);
	transition: transform 0.3s ease-in-out;
}
.mobile-menu.active {
	transform: translateX(0);
}
.ripple {
	position: absolute;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.4);
	transform: scale(0);
	animation: ripple-animation 0.6s linear;
	pointer-events: none;
}
@keyframes ripple-animation {
	to {
		transform: scale(4);
		opacity: 0;
	}
}
.animate-bounce-slow {
	animation: bounce-slow 2s infinite;
}
.form-input {
	transition: all 0.3s ease;
	border: 2px solid #e5e7eb;
}
.form-input:focus {
	border-color: #3b82f6;
	box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
	transform: translateY(-2px);
}
.modal-backdrop {
	backdrop-filter: blur(12px);
	background: rgba(0, 0, 0, 0.4);
}

/* Modal scrolling fixes */
.modal-content {
	max-height: 90vh;
	overflow-y: auto;
	scrollbar-width: none; /* Firefox */
	-ms-overflow-style: none; /* Internet Explorer 10+ */
}

.modal-content::-webkit-scrollbar {
	display: none; /* Chrome, Safari, Opera */
}

/* Ensure modal container allows scrolling */
.modal-container {
	align-items: flex-start;
	padding-top: 2rem;
	padding-bottom: 2rem;
}

/* Custom Scrollbar Styling */
::-webkit-scrollbar {
	width: 8px;
	height: 8px;
}

::-webkit-scrollbar-track {
	background: #f1f5f9;
	border-radius: 4px;
}

::-webkit-scrollbar-thumb {
	background: #E8F0FE;
	border-radius: 4px;
	border: 1px solid #e2e8f0;
}

::-webkit-scrollbar-thumb:hover {
	background: #d1e7ff;
}

::-webkit-scrollbar-corner {
	background: #f1f5f9;
}

/* Firefox scrollbar styling */
* {
	scrollbar-width: thin;
	scrollbar-color: #E8F0FE #f1f5f9;
}