/* =========================
   ABOUT US SECTION
========================= */
.dr1051aboutushome {
	background: linear-gradient(135deg, #052e25, #0b1f17);
	padding: 90px 20px;
	color: #ecfdf5;
	box-sizing: border-box;
}

.dr1051aboutushome *, .dr1051aboutushome *::before, .dr1051aboutushome *::after
	{
	box-sizing: border-box;
}

/* =========================
   INNER
========================= */
.dr1051aboutushome .about-inner {
	max-width: 1200px;
	margin: auto;
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 60px;
	align-items: start;
}

/* =========================
   LEFT CONTENT
========================= */
.dr1051aboutushome .about-tag {
	display: inline-block;
	padding: 6px 16px;
	background: rgba(52, 211, 153, 0.15);
	color: #34d399;
	border-radius: 20px;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 14px;
}

.dr1051aboutushome .about-content h2 {
	font-size: 36px;
	margin-bottom: 18px;
	color: #ffffff;
	line-height: 1.3;
}

.dr1051aboutushome .about-description {
	font-size: 15.5px;
	line-height: 1.7;
	color: #d1fae5;
	margin-bottom: 30px;
}

/* =========================
   MISSION & VISION
========================= */
.dr1051aboutushome .about-mv {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

.dr1051aboutushome .mv-box h4 {
	font-size: 16px;
	margin-bottom: 6px;
	color: #ffffff;
}

.dr1051aboutushome .mv-box p {
	font-size: 14.5px;
	color: #a7f3d0;
	line-height: 1.6;
	margin: 0;
}

/* =========================
   RIGHT CONTENT
========================= */
.dr1051aboutushome .about-features {
	background: rgba(255, 255, 255, 0.05);
	padding: 34px;
	border-radius: 22px;
	border: 1px solid rgba(52, 211, 153, 0.2);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.dr1051aboutushome .about-features h4 {
	font-size: 20px;
	margin-bottom: 20px;
	color: #ffffff;
}

/* =========================
   FEATURES LIST
========================= */
.dr1051aboutushome .features-list {
	list-style: none;
	padding: 0;
	margin: 0 0 30px;
}

.dr1051aboutushome .features-list li {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 14px;
	font-size: 14.5px;
	color: #d1fae5;
}

.dr1051aboutushome .features-list i {
	color: #34d399;
	font-size: 16px;
	flex-shrink: 0;
}

/* =========================
   CTA
========================= */
.dr1051aboutushome .about-cta {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}

.dr1051aboutushome .about-cta a {
	padding: 11px 20px;
	border-radius: 30px;
	font-size: 14px;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	text-decoration: none;
	white-space: nowrap;
}

.dr1051aboutushome .btn-whatsapp {
	background: #25d366;
	color: #003b1d;
}

.dr1051aboutushome .btn-call {
	background: #34d399;
	color: #0b1f17;
}

/* =========================
   RESPONSIVE
========================= */
@media ( max-width : 900px) {
	.dr1051aboutushome .about-inner {
		grid-template-columns: 1fr;
		gap: 40px;
	}
}

@media ( max-width : 600px) {
	.dr1051aboutushome {
		padding: 60px 16px;
	}
	.dr1051aboutushome .about-content h2 {
		font-size: 28px;
	}
	.dr1051aboutushome .about-mv {
		grid-template-columns: 1fr;
	}
	.dr1051aboutushome .about-features {
		padding: 26px;
	}
	.dr1051aboutushome .about-cta a {
		width: 100%;
	}
}