.dr1057whyus {
	position: relative;
	padding: 110px 20px;
	background: radial-gradient(circle at top, #050b18, #02040a);
	color: #fff;
	overflow: hidden;
}

/* container */
.whyus-container {
	max-width: 1200px;
	margin: auto;
	text-align: center;
	position: relative;
	z-index: 2;
}

/* heading */
.whyus-title {
	font-size: 38px;
	color: #00D4FF;
	margin-bottom: 10px;
	letter-spacing: 0.5px;
}

.whyus-subtitle {
	font-size: 15px;
	color: #aaa;
	margin-bottom: 60px;
}

/* GRID */
.whyus-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}

/* PREMIUM CARD */
.why-card {
	position: relative;
	background: rgba(255,255,255,0.04);
	border-radius: 20px;
	padding: 26px;
	backdrop-filter: blur(14px);
	overflow: hidden;

	box-shadow: 0 30px 80px rgba(0,0,0,0.5);

	transform: translateY(40px);
	opacity: 0;
	transition: all 0.6s ease;

	cursor: pointer;
}

/* animated border glow */
.why-card::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 20px;
	padding: 1px;

	background: linear-gradient(
		135deg,
		rgba(0,212,255,0.6),
		transparent,
		rgba(0,212,255,0.3)
	);

	-webkit-mask:
		linear-gradient(#000 0 0) content-box,
		linear-gradient(#000 0 0);

	-webkit-mask-composite: xor;
	mask-composite: exclude;

	opacity: 0.4;
	transition: 0.4s ease;
}

/* hover effect */
.why-card:hover {
	transform: translateY(-10px) scale(1.03);
	box-shadow: 0 50px 120px rgba(0,212,255,0.2);
}

.why-card:hover::before {
	opacity: 1;
}

/* ICON */
.why-icon {
	font-size: 26px;
	margin-bottom: 12px;

	width: 50px;
	height: 50px;
	line-height: 50px;

	border-radius: 14px;
	background: rgba(0,212,255,0.1);
	border: 1px solid rgba(0,212,255,0.25);

	margin-left: auto;
	margin-right: auto;

	transition: transform 0.4s ease;
}

/* icon hover lift */
.why-card:hover .why-icon {
	transform: scale(1.15) rotate(5deg);
	background: rgba(0,212,255,0.2);
}

/* text */
.why-card p {
	font-size: 14px;
	color: #d0d0d0;
	line-height: 1.5;
	margin: 0;
}

.nowrap {
  white-space: nowrap;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
	.whyus-grid {
		grid-template-columns: 1fr;
	}

	.why-card {
		text-align: center;
	}
}