/* =========================
   About Section with Image
========================= */
.dr1055aboutushome {
	width: 100%;
	padding: 80px 20px;
	background: #ffffff;
	color: #222222;
	position: relative;
	overflow: hidden;
}

.dr1055aboutushome .section-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 60px;
	flex-wrap: wrap;
	text-align: left;
	position: relative;
}

/* About Text */
.dr1055aboutushome .about-content {
	flex: 1 1 500px;
	max-width: 600px;
	opacity: 0;
	transform: translateY(30px);
	animation: fadeUp 1s forwards;
	animation-delay: 0.3s;
}

.dr1055aboutushome h2 {
	font-size: 34px;
	font-weight: 700;
	margin-bottom: 25px;
	color: #0f2027;
}

.dr1055aboutushome p {
	font-size: 17px;
	line-height: 1.7;
	margin-bottom: 20px;
	color: #444444;
}

.dr1055aboutushome strong {
	color: #0f2027;
	font-weight: 600;
}

/* About Image */
.dr1055aboutushome .about-image {
	flex: 1 1 400px;
	max-width: 500px;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 20px 50px rgba(0,0,0,0.1);
	opacity: 0;
	transform: translateY(30px);
	animation: fadeUp 1s forwards;
	animation-delay: 0.6s;
}

.dr1055aboutushome .about-image img {
	width: 100%;
	height: auto;
	object-fit: cover;
	display: block;
}

/* Fade-up animation */
@keyframes fadeUp {
	0% {opacity: 0; transform: translateY(30px);}
	100% {opacity: 1; transform: translateY(0);}
}

/* Responsive */
@media (max-width: 992px) {
	.dr1055aboutushome .section-container {
		gap: 40px;
	}
	.dr1055aboutushome h2 {
		font-size: 30px;
	}
}

@media (max-width: 768px) {
	.dr1055aboutushome {
		padding: 60px 16px;
	}
	.dr1055aboutushome .section-container {
		flex-direction: column-reverse;
		text-align: center;
	}
	.dr1055aboutushome .about-content,
	.dr1055aboutushome .about-image {
		max-width: 100%;
	}
	.dr1055aboutushome h2 {
		font-size: 28px;
	}
	.dr1055aboutushome p {
		font-size: 16px;
	}
}

@media (max-width: 480px) {
	.dr1055aboutushome h2 {
		font-size: 24px;
	}
	.dr1055aboutushome p {
		font-size: 15px;
	}
}