/* ===================== About Us Section ===================== */
.dr1016aboutushome {
	background: #f7f9fc;
	padding: 60px 20px;
}

.dr1016aboutushome .about-us-section .about-wrapper {
	display: flex;
	align-items: center;
	gap: 40px;
	max-width: 1200px;
	margin: 0 auto;
	flex-wrap: wrap;
}

/* Image Column */
.dr1016aboutushome .about-image {
	flex: 1 1 400px;
	min-width: 300px;
}

.dr1016aboutushome .about-image img {
	width: 100%;
	height: auto;
	border-radius: 16px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
	display: block;
}

/* Content Column */
.dr1016aboutushome .about-content {
	flex: 1 1 400px;
	min-width: 300px;
}

.dr1016aboutushome .about-content h2 {
	font-size: 2.5rem;
	color: #004d40;
	margin-bottom: 20px;
	position: relative;
}

.dr1016aboutushome .about-content h2::after {
	content: "";
	display: block;
	width: 60px;
	height: 4px;
	background: #007bff;
	margin-top: 8px;
	border-radius: 2px;
}

.dr1016aboutushome .about-content p {
	font-size: 1rem;
	color: #555555;
	line-height: 1.6;
	margin-bottom: 30px;
}

/* Features Grid */
.dr1016aboutushome .features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
}

.dr1016aboutushome .feature {
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
	text-align: center;
	padding: 20px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.dr1016aboutushome .feature:hover {
	transform: translateY(-6px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.dr1016aboutushome .feature img {
	width: 50px;
	height: 50px;
	object-fit: contain;
	margin-bottom: 15px;
}

.dr1016aboutushome .feature h3 {
	font-size: 1.1rem;
	color: #007bff;
	margin-bottom: 10px;
}

.dr1016aboutushome .feature p {
	font-size: 0.95rem;
	color: #555555;
	line-height: 1.4;
	flex-grow: 1;
}

/* Responsive Adjustments */
@media ( max-width : 768px) {
	.dr1016aboutushome .about-us-section .about-wrapper {
		flex-direction: column-reverse;
		gap: 30px;
	}
	.dr1016aboutushome .about-content h2 {
		font-size: 2rem;
	}
	.dr1016aboutushome .about-content p {
		font-size: 0.95rem;
	}
	.dr1016aboutushome .feature h3 {
		font-size: 1rem;
	}
	.dr1016aboutushome .feature p {
		font-size: 0.9rem;
	}
}

@media ( max-width : 480px) {
	.dr1016aboutushome {
		padding: 40px 15px;
	}
	.dr1016aboutushome .about-content h2 {
		font-size: 1.8rem;
	}
	.dr1016aboutushome .about-content p {
		font-size: 0.9rem;
	}
	.dr1016aboutushome .feature {
		padding: 16px;
	}
	.dr1016aboutushome .feature h3 {
		font-size: 0.95rem;
	}
	.dr1016aboutushome .feature p {
		font-size: 0.85rem;
	}
}