/* Hub Sections */
.hubs-showcase {
	padding: 60px 40px;
}

.section-header {
	text-align: center;
	margin-bottom: 4rem;
}

.section-title {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color: #333;
	position: relative;
	display: inline-block;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 3px;
	background: linear-gradient(45deg, #3D1D4F, #FFD700);
	border-radius: 2px;
}

.section-subtitle {
	font-size: 1.2rem;
	color: #666;
	max-width: 600px;
	margin: 0 auto;
}

.hub-card {
	background: linear-gradient(135deg, #f8f4ff 0%, #fff8e1 100%);
	border-radius: 20px;
	padding: 40px 30px;
	transition: all 0.3s ease;
	border: 2px solid transparent;
	position: relative;
	overflow: hidden;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.hub-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(45deg, #3D1D4F, #FFD700);
}

.hub-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.hub-header {
	text-align: center;
	margin-bottom: 30px;
}

.hub-header .hub-icon {
	font-size: 3rem;
	margin-bottom: 15px;
	background: linear-gradient(45deg, #3D1D4F, #FFD700);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	display: inline-block;
	animation: pulse 2s infinite;
}

.hub-header .hub-title {
	font-size: 2rem;
	margin-bottom: 15px;
	color: #333;
	font-weight: 700;
}

.hub-intro {
	text-align: left;
	margin-bottom: 8px;
	padding: 0 10px;
}

.hub-intro p {
	color: #666;
	line-height: 1.7;
	margin-bottom: 8px;
	text-align: justify;
}

.hub-features {
	list-style: none;
	margin-bottom: 30px;
	flex-grow: 1;
}

.hub-features li {
	padding: 8px 0;
	color: #555;
	position: relative;
	padding-left: 25px;
	margin-bottom: 5px;
}

.hub-features li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #733373;
	font-weight: bold;
	font-size: 1.1rem;
}

.hub-footer {
	text-align: center;
	margin-top: auto;
}

.hub-button {
	background: linear-gradient(45deg, #3D1D4F, #FFD700);
	color: white;
	padding: 15px 35px;
	text-decoration: none;
	border-radius: 25px;
	font-weight: 600;
	transition: all 0.3s ease;
	display: inline-block;
	font-size: 1.1rem;
	position: relative;
	overflow: hidden;
}

.hub-button::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	transition: all 0.5s ease;
}

.hub-button:hover::before {
	width: 300px;
	height: 300px;
}

.hub-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 35px rgba(61, 29, 79, 0.3);
}

/* Three Column Layout */
.three-column-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-bottom: 0;
}

/* Responsive */
@media ( max-width : 768px) {
	.hubs-showcase {
		padding: 40px 20px;
	}
	.three-column-grid {
		grid-template-columns: 1fr !important;
		gap: 40px !important;
	}
	.contact-grid {
		grid-template-columns: 1fr;
		gap: 15px;
	}
	.contact-item {
		font-size: 0.9rem;
	}
}