/* ===== Icon Badges - Pure CSS/SVG Icons ===== */
/* Replaces scimg1.jpg with scalable vector icons */

.icon-badge-row {
	display: flex;
	justify-content: center;
	gap: 40px;
	flex-wrap: wrap;
	margin: 24px 0;
}

.icon-badge {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.icon-badge-circle {
	width: 80px;
	height: 80px;
	background: #b81c22;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 10px;
	transition: transform 0.2s, box-shadow 0.2s;
}

.icon-badge-circle:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 14px rgba(184, 28, 34, 0.25);
}

.icon-badge-circle svg {
	width: 38px;
	height: 38px;
	fill: none;
	stroke: #fff;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.icon-badge-label {
	font-size: 13px;
	font-weight: 600;
	color: #b81c22;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* Dark background variant */
.icon-badge-circle.dark {
	background: #1a1a2e;
}

.icon-badge-circle.dark:hover {
	box-shadow: 0 6px 20px rgba(26, 26, 46, 0.4);
}

/* Smaller size for mobile */
@media (max-width: 768px) {
	.icon-badge-circle {
		width: 64px;
		height: 64px;
	}
	.icon-badge-circle svg {
		width: 30px;
		height: 30px;
	}
	.icon-badge-label {
		font-size: 11px;
	}
	.icon-badge-row {
		gap: 18px;
	}
}
