.dr1030aboutushome {
	padding: 80px 20px;
	background: linear-gradient(to right, #faf3f0, #e5c9a8);
	/* Light rose to champagne gold */
	color: #3b1e14;
	font-family: 'Noto Serif Telugu', 'Segoe UI', sans-serif;
}

.dr1030aboutushome .about-container {
	max-width: 1200px;
	margin: auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: center;
}

.dr1030aboutushome .about-text h2 {
	font-size: 2.6rem;
	font-weight: 800;
	margin-bottom: 10px;
	color: #5c1a1a; /* Deep maroon */
	text-shadow: 1px 1px 4px rgba(255, 255, 255, 0.4);
}

.dr1030aboutushome .english-heading {
	font-size: 1.2rem;
	color: #a47148; /* Antique bronze */
	font-weight: 500;
	margin-bottom: 20px;
	display: block;
}

.dr1030aboutushome .about-text h3 {
	font-size: 1.6rem;
	font-weight: 700;
	color: #884c24; /* Rich copper */
	margin-top: 30px;
}

.dr1030aboutushome .about-text p {
	font-size: 1.15rem;
	line-height: 1.7;
	color: #402218;
	margin-bottom: 16px;
}

.dr1030aboutushome .english-desc {
	font-size: 1rem;
	color: #b27744;
	margin-top: 6px;
	display: block;
}

/* Highlight Box */
.dr1030aboutushome .highlight-box {
	background-color: #fff1e5;
	color: #4b2e1f;
	font-weight: bold;
	font-size: 1.15rem;
	padding: 16px 20px;
	border-left: 6px solid #d49d6a;
	border-radius: 10px;
	margin: 20px 0;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* WhatsApp button */
.dr1030aboutushome .whatsapp-button {
	display: inline-block;
	background-color: #25d366;
	color: white;
	padding: 12px 26px;
	border-radius: 30px;
	font-size: 1.1rem;
	font-weight: 600;
	text-decoration: none;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	transition: background-color 0.3s ease;
}

.dr1030aboutushome .whatsapp-button:hover {
	background-color: #1ebe5d;
}

/* Main image styling */
.dr1030aboutushome .about-main-image {
	width: 100%;
	text-align: center;
}

.dr1030aboutushome .about-main-image img {
	width: 100%;
	height: auto;
	max-width: 500px;
	border-radius: 12px;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
	object-fit: contain;
	transition: transform 0.3s ease;
}

.dr1030aboutushome .about-main-image img:hover {
	transform: scale(1.03);
}

/* Gallery styling */
.dr1030aboutushome .about-gallery {
	display: flex;
	gap: 16px;
	overflow-x: auto;
	padding-bottom: 10px;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	margin-top: 20px;
}

.dr1030aboutushome .about-gallery img {
	flex: 0 0 auto;
	width: 110px;
	height: 110px;
	border-radius: 10px;
	object-fit: cover;
	background: #fff7f2;
	padding: 6px;
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
	transition: transform 0.3s ease;
	scroll-snap-align: start;
}

.dr1030aboutushome .about-gallery img:hover {
	transform: scale(1.1);
}

/* Fade-in animation */
.dr1030aboutushome .fade-in-up {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 1s ease, transform 1s ease;
}

.dr1030aboutushome .fade-in-up.animate {
	opacity: 1;
	transform: translateY(0);
}

/* Responsive */
@media ( max-width : 992px) {
	.dr1030aboutushome .about-container {
		grid-template-columns: 1fr;
	}
	.dr1030aboutushome .about-text, .dr1030aboutushome .about-text h2,
		.dr1030aboutushome .about-text h3, .dr1030aboutushome .about-text p {
		text-align: center;
	}
	.dr1030aboutushome .about-main-image img {
		max-width: 90%;
	}
	.dr1030aboutushome .about-gallery img {
		width: 90px;
		height: 90px;
	}
	.dr1030aboutushome .whatsapp-button {
		display: block;
		margin: 20px auto 0;
	}
}