/* About page specific styles */

.tc-light .service-box p,
.section-feature-alt .service-box p,
.service-box p.text-dark,
.force-text-black {
	color: #0e1340 !important;
}



/* Override tc-light class for enhanced cards */
.tc-light .card-title,
.tc-light .card-description,
.section-feature-alt .card-title,
.section-feature-alt .card-description {
	color: #0e1340 !important;
}


/* Video Background Styles */
.video-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	overflow: hidden;
}

.video-background video {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	transform: translate(-50%, -50%);
	object-fit: cover;
}

.section.notre-approche {
	position: relative;
	z-index: 1;
}

/* Ensure overlay covers video properly */
.video-background.overlay-dark1::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(30, 32, 47, 0.83);
	z-index: 1;
}

.video-background video {
	z-index: 0;
}



.process-container {
	width: 100%;
	margin-top: 32px;
	/* padding: 60px 0; */
	/* max-width: 1200px; */
	/* margin: 0 auto; */
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

/* Flex wrapper for process steps - single row with wrapping */
.process-steps-flex-wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	justify-content: center;
	align-items: stretch;
	width: 100%;
	/* max-width: 1200px; */
	/* margin: 0 auto;
	padding: 0 20px; */
}

.process-step-wrapper {
	flex: 1;
	min-width: 280px;
	max-width: 320px;
}

.process-step {
	background: white;
	padding: 0;
	box-shadow: 0 10px 30px rgba(244, 24, 35, 0.1);
	transition: all 0.4s ease;
	border: none;
	height: 100%;
	display: flex;
	flex-direction: column;
	position: relative;
	overflow: hidden;
	/* cursor: pointer; */
	/* border-radius: 8px; */
}

.process-step:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 60px rgba(244, 24, 35, 0.2);
}

.step-image {
	position: relative;
	height: 150px;
	overflow: hidden;
}

.step-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.process-step:hover .step-image img {
	transform: scale(1.1);
}

.step-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: rgba(138, 7, 7, 0.8);
	mix-blend-mode: multiply;
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: 1;
}

.process-step:hover .step-overlay {
	opacity: 1;
}

.step-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0.5);
	transition: all 0.4s ease;
	z-index: 2;
	font-size: 3rem;
	color: white !important;
	opacity: 0;
}

.step-icon em {
	color: white !important;
	font-size: 3rem !important;
}

.process-step:hover .step-icon {
	transform: translate(-50%, -50%) scale(1);
	opacity: 1;
}

.step-content {
	padding: 12px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.step-title {
	color: #0e1340 !important;
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 8px;
	line-height: 1.3;
}

.step-description {
	color: #0e1340 !important;
	font-size: 0.9rem;
	line-height: 1.4;
	margin-bottom: 8px;
	flex: 1;
}

.step-stats {
	border-top: 1px solid #f0f0f0;
	padding-top: 10px;
	margin-top: auto;
	text-align: center;
}

.step-number-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	background: #f41823;
	color: white;
	font-size: 1rem;
	font-weight: bold;
}

.step-label {
	color: #0e1340 !important;
	font-size: 0.95rem;
	margin-left: 10px;
}

/* Engagement Section - Minimal Clean Design */
.section-engagement {
	/* margin-top: 48px; */
	padding: 80px 36px;
}

.engagement-wrapper {
	margin-top: 48px;
	display: flex;
	align-items: center;
	gap: 60px;
	/* margin-bottom: 60px; */
}

.engagement-image {
	flex: 1;
}

.engagement-image img {
	width: 100%;
	/* max-width: 500px; */
	width: 100%;
	/* border-radius: 15px; */
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.engagement-cards {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.engagement-cards .card {
	background: white;
	padding: 16px;
	/* border-radius: 15px; */
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	border-left: 4px solid #f41823;
	transition: all 0.3s ease;
	/* cursor: pointer; */
}

.engagement-cards .card:hover {
	transform: translateX(10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
	border-left: 4px solid #0e1340 ;
	transition: all 0.3s ease;
}

.engagement-cards .card .card-header {
	background: white;
	display: flex;
	align-items: center;
	margin-bottom: 15px;
	padding-left: 0;
}

.engagement-cards .card .card-header i {
	color: #f41823;
	font-size: 2rem;
	margin-right: 8px;
	flex-shrink: 0;
}

.engagement-cards .card .card-header h4 {
	color: #0e1340;
	font-size: 1.3rem;
	font-weight: 600;
	margin: 0;
}

.engagement-cards .card p {
	/* color: #666; */
	font-size: 0.95rem;
	line-height: 1.6;
	margin: 0;
}

.engagement-stats {
	display: flex;
	justify-content: center;
	align-items: center;
	padding-top: 40px;
	background: transparent;
	gap: 64px;
	/* border-radius: 15px; */
}

.engagement-stats .stat {
	text-align: center;
	/* flex: 1; */
}

.engagement-stats .number {
	display: block;
	font-size: 2.5rem;
	font-weight: 700;
	color: #f41823;
	margin-bottom: 8px;
}

.engagement-stats .label {
	font-size: 0.9rem;
	color: #0e1340;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 991px) {
	.engagement-wrapper {
		flex-direction: column;
		gap: 40px;
	}
	
	
	.engagement-image {
		text-align: center;
	}
	
	.engagement-stats {
		flex-direction: column;
		gap: 20px;
		padding: 25px;
	}
}

/* Mobile Responsive */
@media (max-width: 768px) {
	.process-container {
		padding: 40px 0;
	}

	.process-steps-flex-wrapper {
		flex-direction: column;
		gap: 20px;
	}

	.process-step-wrapper {
		min-width: unset;
		max-width: unset;
		width: 100%;
	}

	.step-image {
		height: 160px;
	}

	.step-content {
		padding: 20px 15px;
	}

	.step-title {
		font-size: 1.3rem;
	}

	.step-description {
		font-size: 0.9rem;
	}

	.step-number-badge {
		width: 35px;
		height: 35px;
		font-size: 1rem;
	}
}

@media (max-width: 576px) {
	.process-steps-flex-wrapper {
		gap: 16px;
	}
	.section-engagement {
	/* margin-top: 48px; */
	padding: 80px 12px;
}
}

/* Tablet responsive adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
	.process-step-wrapper {
		min-width: 240px;
		max-width: 280px;
	}

	.process-steps-flex-wrapper {
		gap: 20px;
	}
}