.dr1057conditionstreated {
	padding: 80px 20px;
	background: radial-gradient(circle at top, #020617, #0f172a);
	color: #fff;
	position: relative;
	overflow: hidden;
	font-family: "Segoe UI", sans-serif;
}

/* Glow background */
.dr1057conditionstreated::before {
	content: "";
	position: absolute;
	width: 600px;
	height: 600px;
	background: linear-gradient(135deg, #00c6ff, #7f00ff);
	filter: blur(180px);
	opacity: 0.2;
	top: -200px;
	left: -200px;
}

/* Container */
.dr1057conditionstreated-container {
	max-width: 1200px;
	margin: auto;
	position: relative;
	z-index: 1;
}

/* Header */
.dr1057conditionstreated-header {
	text-align: center;
	margin-bottom: 50px;
}

.dr1057conditionstreated-header h2 {
	font-size: 2.5rem;
	background: linear-gradient(90deg, #00c6ff, #7f00ff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.dr1057conditionstreated-header p {
	opacity: 0.7;
	margin-top: 10px;
}

/* Grid */
.dr1057conditionstreated-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 25px;
}

/* Card */
.dr1057conditionstreated-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);
	position: relative;
	overflow: hidden;
}

/* Glossy shine */
.dr1057conditionstreated-card::before {
	content: "";
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.1),
		transparent);
	transform: rotate(25deg);
	transition: 0.6s;
}

.dr1057conditionstreated-card:hover::before {
	left: 100%;
}

/* 3D hover */
.dr1057conditionstreated-card:hover {
	transform: translateY(-10px) rotateX(6deg) rotateY(-6deg);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* Icon */
.dr1057conditionstreated-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);
}

/* Text */
.dr1057conditionstreated-card h3 {
	margin-bottom: 10px;
}

.dr1057conditionstreated-card p {
	font-size: 0.95rem;
	opacity: 0.8;
	line-height: 1.5;
}

/* Active animation */
.dr1057conditionstreated.active .dr1057conditionstreated-card {
	opacity: 1;
	transform: translateY(0);
	transition: all 0.6s ease;
}

/* Stagger animation */
.dr1057conditionstreated.active .dr1057conditionstreated-card:nth-child(1)
	{
	transition-delay: 0.1s;
}

.dr1057conditionstreated.active .dr1057conditionstreated-card:nth-child(2)
	{
	transition-delay: 0.2s;
}

.dr1057conditionstreated.active .dr1057conditionstreated-card:nth-child(3)
	{
	transition-delay: 0.3s;
}

.dr1057conditionstreated.active .dr1057conditionstreated-card:nth-child(4)
	{
	transition-delay: 0.4s;
}

.dr1057conditionstreated.active .dr1057conditionstreated-card:nth-child(5)
	{
	transition-delay: 0.5s;
}

.dr1057conditionstreated.active .dr1057conditionstreated-card:nth-child(6)
	{
	transition-delay: 0.6s;
}

/* Mobile */
@media ( max-width : 768px) {
	.dr1057conditionstreated-header h2 {
		font-size: 2rem;
	}
	.dr1057conditionstreated-card {
		padding: 20px;
	}
}