/* =========================
   HIGHLIGHTS SECTION
========================= */
.dr1051highlights {
	background: linear-gradient(135deg, #0b1f17, #052e25);
	padding: 80px 20px;
	color: #ecfdf5;
}

/* =========================
   INNER WRAPPER
========================= */
.dr1051highlights .highlights-inner {
	max-width: 1200px;
	margin: auto;
	text-align: center;
}

/* =========================
   TITLE
========================= */
.dr1051highlights .highlights-title {
	font-size: 34px;
	font-weight: 700;
	margin-bottom: 10px;
	color: #ffffff;
}

.dr1051highlights .highlights-subtitle {
	font-size: 16px;
	color: #a7f3d0;
	max-width: 650px;
	margin: 0 auto 50px;
	line-height: 1.6;
}

/* =========================
   GRID
========================= */
.dr1051highlights .highlights-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 30px;
}

/* =========================
   CARD
========================= */
.dr1051highlights .highlight-card {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 22px;
	padding: 35px 20px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
	border: 1px solid rgba(52, 211, 153, 0.2);
	position: relative;
	overflow: hidden;
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Hover Glow Layer */
.dr1051highlights .highlight-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at top, rgba(52, 211, 153, 0.25),
		transparent 70%);
	opacity: 0;
	transition: opacity 0.35s ease;
}

.dr1051highlights .highlight-card:hover::before {
	opacity: 1;
}

.dr1051highlights .highlight-card:hover {
	transform: translateY(-10px) scale(1.03);
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}

/* =========================
   ICON
========================= */
.dr1051highlights .highlight-card i {
	font-size: 38px;
	color: #34d399;
	margin-bottom: 18px;
}

/* =========================
   COUNT
========================= */
.dr1051highlights .highlight-card h3 {
	font-size: 36px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 6px;
}

/* =========================
   LABEL
========================= */
.dr1051highlights .highlight-card p {
	font-size: 15px;
	color: #a7f3d0;
	margin: 0;
}

/* =========================
   TABLET VIEW
========================= */
@media ( max-width : 900px) {
	.dr1051highlights .highlights-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* =========================
   MOBILE VIEW – 2 CARDS
========================= */
@media ( max-width : 600px) {
	.dr1051highlights {
		padding: 60px 16px;
	}
	.dr1051highlights .highlights-title {
		font-size: 28px;
	}
	.dr1051highlights .highlights-subtitle {
		font-size: 15px;
		margin-bottom: 40px;
	}
	.dr1051highlights .highlights-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}
	.dr1051highlights .highlight-card {
		padding: 26px 14px;
		border-radius: 18px;
	}
	.dr1051highlights .highlight-card i {
		font-size: 30px;
		margin-bottom: 12px;
	}
	.dr1051highlights .highlight-card h3 {
		font-size: 28px;
	}
	.dr1051highlights .highlight-card p {
		font-size: 14px;
	}
}