.dr1057aboutbrief {
	position: relative;
	padding: 100px 20px;
	background: radial-gradient(circle at top, #050b18, #02040a);
	color: #fff;
	overflow: hidden;
}

/* ================= CONTAINER ================= */
.about-container {
	max-width: 1200px;
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 80px;
}

/* ================= IMAGE SECTION ================= */
.about-image {
	flex: 1.3;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	perspective: 1000px;
}

/* glowing aura behind image */
.about-image::before {
	content: "";
	position: absolute;
	width: 520px;
	height: 520px;
	background: radial-gradient(circle, rgba(0,212,255,0.25), transparent 70%);
	filter: blur(90px);
	z-index: 0;

	animation: glowBreathe 6s ease-in-out infinite;
}

/* doctor image */
.about-image img {
	width: 100%;
	max-width: 540px;   /* BIG IMAGE */
	border-radius: 28px;

	box-shadow: 0 60px 160px rgba(0,0,0,0.65);

	position: relative;
	z-index: 1;

	/* premium motion */
	animation: doctorFloat 6s ease-in-out infinite;

	transition: transform 0.5s ease, box-shadow 0.5s ease;
	will-change: transform;
}

/* hover effect */
.about-image:hover img {
	transform: translateY(-10px) scale(1.04);
	box-shadow: 0 80px 200px rgba(0,212,255,0.25);
}

/* ================= CONTENT CARD ================= */
.about-content {
	flex: 1.4;
	background: rgba(255,255,255,0.04);
	border: 1px solid rgba(255,255,255,0.08);
	padding: 32px;
	border-radius: 26px;
	backdrop-filter: blur(14px);
	box-shadow: 0 40px 100px rgba(0,0,0,0.55);

	/* scroll reveal start */
	transform: translateY(40px);
	opacity: 0;
	transition: all 0.8s ease;
}

/* JS activated */
.about-content.active {
	transform: translateY(0);
	opacity: 1;
}

/* ================= TEXT ================= */
.about-content h2 {
	font-size: 34px;
	color: #00D4FF;
	margin-bottom: 10px;
}

.about-content h3 {
	font-size: 20px;
	margin-bottom: 10px;
	line-height: 1.4;
}

.tagline {
	font-size: 14px;
	color: #aaa;
	margin-bottom: 16px;
}

.about-content p {
	line-height: 1.7;
	color: #d0d0d0;
	margin-bottom: 12px;
}

/* ================= BOXES ================= */
.about-box {
	margin-top: 18px;
	padding: 18px;
	border-radius: 18px;
	background: rgba(0,0,0,0.25);
	border: 1px solid rgba(0,212,255,0.15);
	transition: transform 0.3s ease;
}

.about-box:hover {
	transform: translateY(-6px);
}

.about-box h4 {
	color: #00D4FF;
	margin-bottom: 10px;
	font-size: 16px;
}

.about-box ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.about-box ul li {
	padding: 6px 0;
	color: #ccc;
	font-size: 14px;
	position: relative;
	padding-left: 18px;
}

.about-box ul li::before {
	content: "✔";
	position: absolute;
	left: 0;
	color: #00D4FF;
}

/* ================= ANIMATIONS ================= */

/* floating doctor */
@keyframes doctorFloat {
	0% {
		transform: translateY(0px) scale(1);
	}
	50% {
		transform: translateY(-14px) scale(1.02);
	}
	100% {
		transform: translateY(0px) scale(1);
	}
}

/* breathing glow */
@keyframes glowBreathe {
	0%, 100% {
		transform: scale(1);
		opacity: 0.35;
	}
	50% {
		transform: scale(1.25);
		opacity: 0.65;
	}
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {

	.about-container {
		flex-direction: column;
		text-align: center;
		gap: 40px;
	}

	.about-image img {
		max-width: 380px;
		animation: doctorFloatMobile 6s ease-in-out infinite;
	}

	.about-image::before {
		width: 340px;
		height: 340px;
	}

	.about-content {
		padding: 22px;
	}
}

/* mobile float */
@keyframes doctorFloatMobile {
	0% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-10px);
	}
	100% {
		transform: translateY(0px);
	}
}