/* Industry Styles */
.industry-card {
	background-color: var(--white);
	border-radius: 0.5rem;
	padding: 2rem;
	text-align: center;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	transition: all 0.3s ease;
}

.industry-card:hover, .client-stat:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.industry-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 4rem;
	height: 4rem;
	margin: 0 auto 1.5rem;
	border-radius: 50%;
	background-color: var(--slate-100);
	color: var(--blue-600);
}

.industry-icon svg {
	width: 2rem;
	height: 2rem;
}

.industry-name {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.industry-description {
	color: var(--slate-500);
	font-size: 0.875rem;
}

.testimonial {
	background-color: var(--white);
	border-radius: 0.5rem;
	padding: 2rem;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	position: relative;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.testimonial-quote {
	position: absolute;
	top: 1.5rem;
	right: 1.5rem;
	color: var(--blue-600);
	opacity: 0.3;
	font-size: 3rem;
}

.testimonial-content {
	font-style: italic;
	margin-bottom: 1.5rem;
	position: relative;
	z-index: 1;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.testimonial-author-industry {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	background-color: var(--slate-100);
	color: var(--blue-600);
	flex-shrink: 0;
}

.testimonial-author-industry svg {
	width: 1.5rem;
	height: 1.5rem;
}

.testimonial-author-details {
	flex-grow: 1;
}

.testimonial-author-role {
	font-weight: 600;
	margin-bottom: 0.25rem;
}

.testimonial-author-company {
	font-size: 0.875rem;
	color: var(--slate-500);
}

.case-study-category {
	display: inline-block;
	background-color: var(--slate-100);
	color: var(--slate-700);
	font-size: 1rem;
	font-weight: 500;
	padding: 0.25rem 0.5rem;
	border-radius: 0.25rem;
	margin-bottom: 1rem;
}

.case-study-stats {
	display: flex;
	gap: 1.5rem;
	margin-bottom: 1.5rem;
}

.case-study-stat {
	flex: 1;
}

.case-study-stat-number {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--blue-600);
	margin-bottom: 0.25rem;
}

.case-study-stat-label {
	font-size: 0.75rem;
	color: var(--slate-500);
}

.client-stats {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.5rem;
	margin-bottom: 3rem;
}

@media (min-width: 768px) {
	.client-stats {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

.client-stat {
	background-color: var(--white);
	border-radius: 0.5rem;
	padding: 1.5rem;
	text-align: center;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	transition: all 0.3s ease;
}

.client-stat-number {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--blue-600);
	margin-bottom: 0.5rem;
}

.client-stat-label {
	color: var(--slate-500);
	font-size: 0.875rem;
}

.industry-badge {
	display: inline-block;
	background-color: var(--slate-100);
	color: var(--slate-700);
	font-size: 0.75rem;
	font-weight: 500;
	padding: 0.25rem 0.5rem;
	border-radius: 0.25rem;
	margin-right: 0.5rem;
	margin-bottom: 0.5rem;
}
