.dr1057research {
	position: relative;
	padding: 80px 20px;
	overflow: hidden;
	color: #fff;
	background: linear-gradient(135deg, #0b0f1a, #111a2e, #0a0f1f);
	font-family: 'Segoe UI', sans-serif;
}

/* Background glow */
.dr1057research::before, .dr1057research::after {
	content: "";
	position: absolute;
	width: 500px;
	height: 500px;
	border-radius: 50%;
	filter: blur(120px);
	z-index: 0;
}

.dr1057research::before {
	background: rgba(0, 255, 213, 0.15);
	top: -100px;
	left: -100px;
}

.dr1057research::after {
	background: rgba(255, 78, 205, 0.12);
	bottom: -120px;
	right: -120px;
}

.dr1057research__container {
	max-width: 1200px;
	margin: auto;
	position: relative;
	z-index: 2;
}

.dr1057research__header {
	text-align: center;
	margin-bottom: 50px;
}

.dr1057research__header h2 {
	font-size: 36px;
	background: linear-gradient(90deg, #00ffd5, #ff4ecd);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.dr1057research__header p {
	opacity: 0.7;
}

/* Grid */
.dr1057research__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 25px;
}

/* Cards */
.dr1057research__card {
	position: relative;
	padding: 25px;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(14px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
	transition: transform 0.4s ease, box-shadow 0.4s ease;
	opacity: 0;
	transform: translateY(40px);
}

/* Hover 3D */
.dr1057research__card:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
}

/* Glow */
.dr1057research__card-glow {
	position: absolute;
	inset: 0;
	border-radius: 20px;
	background: radial-gradient(circle at 30% 30%, rgba(0, 255, 213, 0.2),
		transparent 60%);
	opacity: 0;
	transition: opacity 0.4s;
}

.dr1057research__card:hover .dr1057research__card-glow {
	opacity: 1;
}

/* Titles */
.dr1057research__card h3 {
	margin-bottom: 15px;
	color: #00ffd5;
}

/* List */
.dr1057research__card ul {
	list-style: none;
	padding: 0;
}

.dr1057research__card li {
	margin-bottom: 10px;
	padding-left: 18px;
	position: relative;
	font-size: 14px;
	opacity: 0.9;
}

.dr1057research__card li::before {
	content: "✦";
	position: absolute;
	left: 0;
	color: #ff4ecd;
}

/* Link */
.dr1057research__link {
	color: #00ffd5;
	text-decoration: none;
	font-weight: 600;
}

.dr1057research__link:hover {
	color: #ff4ecd;
}

/* Show animation */
.dr1057research__card.show {
	opacity: 1;
	transform: translateY(0);
}

/* Responsive */
@media ( max-width : 768px) {
	.dr1057research__grid {
		grid-template-columns: 1fr;
	}
	.dr1057research__header h2 {
		font-size: 26px;
	}
}