/* =========================
   ROOT (CRITICAL FIX)
========================= */
.dr1051aboutus {
	font-family: 'Poppins', sans-serif;
	background: #f8fafc;
	color: #0f172a;
	box-sizing: border-box;
	width: 100%;
}

.dr1051aboutus *, .dr1051aboutus *::before, .dr1051aboutus *::after {
	box-sizing: inherit;
	max-width: 100%;
}

/* Prevent hidden text overflow */
.dr1051aboutus h1, .dr1051aboutus h2, .dr1051aboutus h3, .dr1051aboutus p,
	.dr1051aboutus li, .dr1051aboutus span {
	word-wrap: break-word;
	overflow-wrap: anywhere;
}

/* =========================
   HERO
========================= */
.dr1051aboutus .au-hero {
	background: linear-gradient(135deg, #020617, #0f172a);
	color: #ffffff;
	text-align: center;
	padding: 90px 20px;
}

.dr1051aboutus .au-hero h1 {
	font-size: 42px;
	font-weight: 800;
	margin-bottom: 10px;
	line-height: 1.2;
}

.dr1051aboutus .au-hero p {
	font-size: 16px;
	color: #c7d2fe;
}

/* =========================
   CONTAINER (NO NEGATIVE MARGIN)
========================= */
.dr1051aboutus .au-container {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto 80px;
	padding: 0 20px;
	display: grid;
	gap: 28px;
	transform: translateY(-50px); /* visual overlap without overflow */
}

/* =========================
   CARD
========================= */
.dr1051aboutus .au-card {
	background: #ffffff;
	border-radius: 22px;
	padding: 30px 28px;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.dr1051aboutus .au-card h2 {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 14px;
	color: #020617;
}

.dr1051aboutus .au-card p {
	font-size: 15px;
	line-height: 1.8;
	color: #334155;
	margin-bottom: 10px;
}

/* =========================
   LISTS
========================= */
.dr1051aboutus .au-list, .dr1051aboutus .au-facilities {
	list-style: none;
	padding: 0;
	margin: 0;
}

.dr1051aboutus .au-list li, .dr1051aboutus .au-facilities li {
	font-size: 15px;
	padding-left: 22px;
	margin-bottom: 8px;
	position: relative;
	color: #334155;
}

.dr1051aboutus .au-list li::before, .dr1051aboutus .au-facilities li::before
	{
	content: "✔";
	position: absolute;
	left: 0;
	top: 0;
	color: #22c55e;
	font-weight: 700;
}

/* =========================
   STATS (REAL MOBILE SAFE)
========================= */
.dr1051aboutus .au-stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
	text-align: center;
}

.dr1051aboutus .au-stats div {
	background: #020617;
	color: #ffffff;
	border-radius: 20px;
	padding: 26px;
}

.dr1051aboutus .au-stats h3 {
	font-size: 36px;
	font-weight: 800;
	color: #34d399;
	line-height: 1.1;
	white-space: normal;
}

.dr1051aboutus .au-stats span {
	font-size: 14px;
	color: #c7d2fe;
}

/* =========================
   CONTENT GRID
========================= */
.dr1051aboutus .au-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 28px;
}

/* =========================
   CONTACT
========================= */
.dr1051aboutus .au-contact a {
	color: #2563eb;
	font-weight: 600;
	text-decoration: none;
}

.dr1051aboutus .au-contact a:hover {
	text-decoration: underline;
}

/* =========================
   MAP (SAFE)
========================= */
.dr1051aboutus .au-map iframe {
	width: 100%;
	height: 350px;
	border: 0;
	border-radius: 16px;
	display: block;
}

/* =========================
   RESPONSIVE
========================= */
@media ( max-width : 768px) {
	.dr1051aboutus .au-hero h1 {
		font-size: 32px;
	}
	.dr1051aboutus .au-container {
		transform: translateY(-40px);
	}
	.dr1051aboutus .au-stats {
		grid-template-columns: 1fr;
	}
	.dr1051aboutus .au-grid {
		grid-template-columns: 1fr;
	}
	.dr1051aboutus .au-card {
		padding: 22px 20px;
	}
}