.mamba-service-section-f47a71dc {
	padding: 80px 20px;
	font-family: 'Inter', sans-serif; /* fallback modern sans-serif */
}

.mamba-header-f47a71dc {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 60px auto;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mamba-header-f47a71dc h2 {
	font-size: 36px;
	font-weight: 700;
	margin-bottom: 20px;
	line-height: 1.2;
}

.mamba-header-f47a71dc p {
	font-size: 18px;
	line-height: 1.6;
}

.mamba-grid-f47a71dc {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	max-width: 1200px;
	margin: 0 auto;
}

.mamba-card-f47a71dc {
	display: block;
	position: relative;
	background: #12172B;
	border-radius: 16px;
	padding: 40px 30px;
	text-decoration: none !important;
	transition: all 0.3s ease;
	border: 1px solid rgba(255, 255, 255, 0.05);
	overflow: hidden;
	height: 100%;
}

.mamba-card-f47a71dc::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 16px;
	padding: 2px;
	background: linear-gradient(90deg, #ff2d55, #b3125d);
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
}

.mamba-card-f47a71dc:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.mamba-card-f47a71dc:hover::before {
	opacity: 1;
}

.mamba-card-inner-f47a71dc {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.mamba-card-icon-f47a71dc {
	margin-bottom: 24px;
	font-size: 32px;
	color: #ff2d55;
	background: linear-gradient(90deg, #ff2d55, #b3125d);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	display: inline-block;
}

.mamba-card-icon-f47a71dc svg {
	width: 32px;
	height: 32px;
	fill: url(#mamba-gradient-f47a71dc) #ff2d55; /* fallback if SVG fill requires solid color */
}

.mamba-card-f47a71dc h3 {
	font-size: 22px;
	font-weight: 600;
	color: #FFFFFF;
	margin: 0 0 15px 0;
	line-height: 1.3;
}

.mamba-card-f47a71dc p {
	font-size: 15px;
	color: #AEB4C2;
	line-height: 1.6;
	margin: 0 0 25px 0;
	flex-grow: 1;
}

.mamba-card-cta-f47a71dc {
	font-size: 15px;
	font-weight: 600;
	color: #ff2d55;
	transition: color 0.3s ease;
	display: inline-block;
}

.mamba-card-f47a71dc:hover .mamba-card-cta-f47a71dc {
	color: #ff5475; /* Lighter shade on hover */
}

/* Responsive */
@media (max-width: 1024px) {
	.mamba-grid-f47a71dc {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 767px) {
	.mamba-grid-f47a71dc {
		grid-template-columns: 1fr;
	}
	.mamba-header-f47a71dc h2 {
		font-size: 28px;
	}
}
