/* Cards-heading */
.cards_heading{
	width: 100%;
	height: auto;
	color: var(--white);
	text-align: center;
	padding-top: 50px;
	display: flex;
	flex-direction: column;
}

.cards_heading_line{
	width: 35px;
	height: 3px;
	background-color: var(--orange);
	margin-top: 25px;
}

/* Cards */
.cards_section {
	width: 100%;
	padding: 50px 2rem;
	display: flex;
	justify-content: center;
	background-color: #0e0f13;
}

.cards_container {
	width: 100%;
	max-width: 1200px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 3rem;
}

.card_item {
	background-color: #141622;
	padding: 3.2rem;
	border-radius: 1.6rem;
	display: flex;
	flex-direction: column;
	gap: 1.6rem;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card_item:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.card_icon {
	width: 4.8rem;
	height: 4.8rem;
	border-radius: 50%;
	background-color: var(--orange);
	color: #0e0f13;
	font-size: 1.6rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
}

.card_title {
	font-size: 1.8rem;
	font-weight: 600;
	color: var(--white);
}

.card_description {
	font-size: 1.4rem;
	line-height: 1.6;
	color: var(--light-text);
}

/* Responsive */
@media screen and (max-width: 700px){
	.cards_heading{
		padding-top: 25px;
	}
	
	.cards_heading_line{
		height: 2px;
	}
	
	.cards_container {
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem;
	}
}

@media screen and (max-width: 700px){
	.cards_container {
		grid-template-columns: repeat(1, 1fr);
	}
}

/* Higlight card */
.cards_section_second {
	display: flex;
	justify-content: center;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 25px 20px 50px 20px;
}

.cards_container_second {
	display: flex;
	gap: 20px;
	width: 100%;
}

.card_item_second {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: var(--card_bg);
	border-radius: 12px;
	padding: 30px;
	backdrop-filter: blur(10px);
	transition: transform 0.2s ease;
	cursor: pointer;
	border: 2px solid var(--text-color);
}

.card_item_second:hover {
	transform: translateY(-5px);
	border-color: var(--orange);
}

.card_label {
	display: block;
	color: var(--orange);
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 8px;
	font-weight: 700;
}

.card_title_second {
	color: var(--white);
	font-size: 17px;
	margin: 0;
	line-height: 1.2;
	font-weight: 700;
}

.card_icon_box {
	width: 40px;
	height: 40px;
	border: 1px solid var(--card_border);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	margin-left: 20px;
}

.card_icon_box svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
}

@media screen and (max-width: 768px) {
	.cards_container_second {
		flex-direction: column;
	}
}