

.bloom-industries-title {
    font-family: ProximaNova-Bold;
    margin-bottom: 30px;
}

.bloom-industries-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
}

.bloom-indu-container {
	text-align: center;
	width: 1000px;
	margin: 0 auto;
	max-width: 100%;
}

.bloom-industry-pill {
	background: #fff;
	padding: 12px 20px;
	border-radius: 999px;
	box-shadow: 0px 4px 4px 0px #0000000F;
	font-weight: 600;
	font-size: 22px;
	line-height: 100%;
	letter-spacing: 0%;
	text-align: center;
	font-family: ProximaNova-semibold;
}
.bloom-indu-container h2 {
	margin-bottom: 60px;
}
.bloom-industries {
	padding: 80px 20px;
	background: #f6f9fc;
	text-align: center;
	margin-bottom: 40px;
}


.bloom-industry-pill {
    box-shadow: 0 6px 16px rgba(0,0,0,0.06);
    cursor: pointer;
    transition: 
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}

/* Hover effect */
.bloom-industry-pill:hover {
    transform: translateY(-4px);
    background: #2563eb;        /* subtle brand blue */
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.35);
}