.exam-card {
	display: block;
	background: #fff;
	border: 1px solid #e6ecf2;
	padding: 25px 20px;
	border-radius: 6px;
	text-align: center;
	transition: all 0.25s ease;
	margin-bottom: 30px;
	min-height: 180px;
}

.exam-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 20px rgba(0,0,0,0.06);
	border-color: #d8e2ec;
	text-decoration: none;
}

.exam-card i {
	font-size: 30px;
	color: #0d2b4d;
	margin-bottom: 12px;
}

.exam-card h4 {
	font-size: 17px;
	font-weight: 700;
	margin-bottom: 8px;
	color: #0d2b4d;
}

.exam-card p {
	font-size: 14px;
	color: #6c7a89;
	margin: 0;
}