.features-technology-section {
	position: relative;
	background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
}

.features-technology-section .card {
	border: none;
	background: #ffffff;
	border-radius: 12px;
	padding: 25px 20px;
	margin-bottom: 20px !important;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	border-left: 4px solid transparent;
	position: relative;
	overflow: hidden;
}

.features-technology-section .card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 0;
	background: linear-gradient(180deg, #bc0000, #d32f2f);
	transition: height 0.4s ease;
}

.features-technology-section .card:hover::before {
	height: 100%;
}

.features-technology-section .card:hover {
	transform: translateX(8px);
	box-shadow: 0 8px 25px rgba(188, 0, 0, 0.15);
	border-left-color: #bc0000;
	background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
}

.features-technology-section .card-icon {
	font-size: 28px;
	color: #bc0000;
	margin-right: 20px;
	transition: all 0.3s ease;
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(188, 0, 0, 0.1) 0%, rgba(211, 47, 47, 0.1) 100%);
	border-radius: 50%;
}

.features-technology-section .card:hover .card-icon {
	transform: scale(1.15) rotate(5deg);
	background: linear-gradient(135deg, #bc0000 0%, #d32f2f 100%);
	color: #ffffff;
	box-shadow: 0 5px 15px rgba(188, 0, 0, 0.3);
}

.features-technology-section .card-block {
	padding: 0;
	flex: 1;
}

.features-text {
	font-size: 18px !important;
	font-weight: 500 !important;
	line-height: 1.7 !important;
	color: #2c3e50 !important;
	margin: 0 !important;
	letter-spacing: 0.01em;
	transition: color 0.3s ease;
}

.features-technology-section .card:hover .features-text {
	color: #1a1a1a;
	font-weight: 600;
}

.features-technology-section .card-row {
	display: flex;
	align-items: flex-start;
	flex-direction: row;
}

.features-technology-section h2 {
	font-size: 48px;
	font-weight: 700;
	background: linear-gradient(135deg, #2c3e50 0%, #1a1a1a 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 20px;
}

.features-technology-section h4 {
	font-size: 22px;
	font-weight: 500;
	color: #666;
	line-height: 1.5;
}

@media (max-width: 991px) {
	.features-technology-section h2 {
		font-size: 36px;
	}
	
	.features-technology-section h4 {
		font-size: 20px;
	}
	
	.features-text {
		font-size: 17px !important;
	}
	
	.features-technology-section .card {
		padding: 20px 15px;
	}
	
	.features-technology-section .card-icon {
		font-size: 24px;
		width: 35px;
		height: 35px;
		margin-right: 15px;
	}
}

@media (max-width: 767px) {
	.features-technology-section h2 {
		font-size: 28px;
	}
	
	.features-technology-section h4 {
		font-size: 18px;
	}
	
	.features-text {
		font-size: 16px !important;
		font-weight: 500 !important;
	}
	
	.features-technology-section .card {
		padding: 18px 12px;
		margin-bottom: 15px !important;
	}
	
	.features-technology-section .card-icon {
		font-size: 20px;
		width: 32px;
		height: 32px;
		margin-right: 12px;
	}
	
	.features-technology-section .card:hover {
		transform: translateX(5px);
	}
}
