/* ================= TRUST ROOT ================= */
.dr1057trust {
	position: relative;
	padding: 90px 0;
	background: radial-gradient(circle at top, #0f1c3f, #050814);
	overflow: hidden;
}

/* GLOW BACKGROUND */
.dr1057trust::before {
	content: "";
	position: absolute;
	width: 500px;
	height: 500px;
	background: #00D4FF;
	filter: blur(180px);
	opacity: 0.15;
	top: -100px;
	left: 50%;
	transform: translateX(-50%);
}

/* ================= CONTAINER ================= */
.dr1057trust .trust-container {
	width: 90%;
	max-width: 1200px;
	margin: auto;
	text-align: center;
	position: relative;
	z-index: 2;
}

/* ================= HEADING ================= */
.dr1057trust h2 {
	font-size: 34px;
	margin-bottom: 50px;
	background: linear-gradient(90deg, #00D4FF, #4facfe);
	-webkit-background-clip: text;
	color: transparent;
}

/* ================= CARDS GRID ================= */
.dr1057trust .trust-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 25px;
}

/* ================= CARD ================= */
.dr1057trust .trust-card {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.08);
	padding: 30px 20px;
	border-radius: 18px;
	backdrop-filter: blur(12px);
	transition: 0.4s;
	position: relative;
	overflow: hidden;
}

/* GLOSS SHINE EFFECT */
.dr1057trust .trust-card::after {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.2),
		transparent);
	transition: 0.6s;
}

.dr1057trust .trust-card:hover::after {
	left: 100%;
}

/* HOVER EFFECT */
.dr1057trust .trust-card:hover {
	transform: translateY(-10px) scale(1.03);
	box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
}

/* ================= ICON ================= */
.dr1057trust .icon {
	font-size: 34px;
	margin-bottom: 15px;
}

/* ================= TEXT ================= */
.dr1057trust h3 {
	font-size: 18px;
	margin-bottom: 10px;
	color: #fff;
}

.dr1057trust p {
	font-size: 14px;
	color: #aaa;
	line-height: 1.5;
}

/* ================= MOBILE ================= */
@media ( max-width : 900px) {
	.dr1057trust {
		padding: 60px 0;
	}
	.dr1057trust h2 {
		font-size: 26px;
	}
	.dr1057trust .trust-card {
		padding: 25px 15px;
	}
}