.dr1057services {
	padding: 80px 20px;
	background: radial-gradient(circle at top, #020617, #0f172a);
	color: #fff;
	position: relative;
	overflow: hidden;
	font-family: "Segoe UI", sans-serif;
}

/* Background glow */
.dr1057services::before {
	content: "";
	position: absolute;
	width: 600px;
	height: 600px;
	background: linear-gradient(135deg, #00c6ff, #7f00ff);
	filter: blur(180px);
	opacity: 0.2;
	top: -200px;
	right: -200px;
}

/* Container */
.dr1057services-container {
	max-width: 1200px;
	margin: auto;
	position: relative;
	z-index: 1;
}

/* Header */
.dr1057services-header {
	text-align: center;
	margin-bottom: 50px;
}

.dr1057services-header h2 {
	font-size: 2.5rem;
	background: linear-gradient(90deg, #00c6ff, #7f00ff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.dr1057services-header p {
	opacity: 0.7;
	margin-top: 10px;
}

/* Grid */
.dr1057services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 25px;
}

/* Card */
.dr1057services-card {
	background: rgba(255, 255, 255, 0.06);
	backdrop-filter: blur(18px);
	border-radius: 18px;
	padding: 25px;
	text-align: center;
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	transform-style: preserve-3d;
	opacity: 0;
	transform: translateY(40px);
}

/* 3D hover */
.dr1057services-card:hover {
	transform: translateY(-10px) rotateX(6deg) rotateY(-6deg);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Icon */
.dr1057services-card .icon {
	font-size: 2.5rem;
	margin-bottom: 15px;
	display: inline-block;
	padding: 15px;
	border-radius: 50%;
	background: linear-gradient(135deg, #00c6ff, #7f00ff);
	box-shadow: 0 0 20px rgba(0, 198, 255, 0.3);
}

/* Title */
.dr1057services-card h3 {
	margin-bottom: 10px;
}

/* Text */
.dr1057services-card p {
	font-size: 0.95rem;
	opacity: 0.8;
	line-height: 1.5;
}

/* Active animation */
.dr1057services.active .dr1057services-card {
	opacity: 1;
	transform: translateY(0);
	transition: all 0.6s ease;
}

/* Stagger effect */
.dr1057services.active .dr1057services-card:nth-child(1) {
	transition-delay: 0.1s;
}

.dr1057services.active .dr1057services-card:nth-child(2) {
	transition-delay: 0.2s;
}

.dr1057services.active .dr1057services-card:nth-child(3) {
	transition-delay: 0.3s;
}

.dr1057services.active .dr1057services-card:nth-child(4) {
	transition-delay: 0.4s;
}

.dr1057services.active .dr1057services-card:nth-child(5) {
	transition-delay: 0.5s;
}

.dr1057services.active .dr1057services-card:nth-child(6) {
	transition-delay: 0.6s;
}

/* Mobile */
@media ( max-width : 768px) {
	.dr1057services-header h2 {
		font-size: 2rem;
	}
	.dr1057services-card {
		padding: 20px;
	}
}