.dr1031aboutushome {
	padding: 80px 20px;
	background: linear-gradient(to right, #1a1a1a, #2b2b2b);
	/* Charcoal gradient */
	color: #f7f2e8; /* Soft light ivory */
	font-family: 'Noto Serif Telugu', 'Segoe UI', sans-serif;
}

.dr1031aboutushome .about-container {
	max-width: 1200px;
	margin: auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: center;
}

.dr1031aboutushome .about-text h2 {
	font-size: 2.6rem;
	font-weight: 800;
	margin-bottom: 10px;
	color: #f3c97a; /* Antique gold */
	text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.6);
}

.dr1031aboutushome .english-heading {
	font-size: 1.2rem;
	color: #d6ac5b; /* Dull gold */
	font-weight: 500;
	margin-bottom: 20px;
	display: block;
}

.dr1031aboutushome .about-text h3 {
	font-size: 1.6rem;
	font-weight: 700;
	color: #e3b35a; /* Golden bronze */
	margin-top: 30px;
}

.dr1031aboutushome .about-text p {
	font-size: 1.15rem;
	line-height: 1.7;
	color: #e7dac3;
	margin-bottom: 16px;
}

.dr1031aboutushome .english-desc {
	font-size: 1rem;
	color: #cfae7e;
	margin-top: 6px;
	display: block;
}

/* Highlight Box */
.dr1031aboutushome .highlight-box {
	background-color: #2e2e2e;
	color: #f5e9d4;
	font-weight: bold;
	font-size: 1.15rem;
	padding: 16px 20px;
	border-left: 6px solid #c59b3b;
	border-radius: 10px;
	margin: 20px 0;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

/* WhatsApp button */
.dr1031aboutushome .whatsapp-button {
	display: inline-block;
	background: linear-gradient(to right, #daa520, #a97c11);
	/* Gold gradient */
	color: #1a1a1a;
	padding: 12px 26px;
	border-radius: 30px;
	font-size: 1.1rem;
	font-weight: 600;
	text-decoration: none;
	box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
	transition: background 0.3s ease, transform 0.2s ease;
}

.dr1031aboutushome .whatsapp-button:hover {
	background: linear-gradient(to right, #a97c11, #8a6311);
	transform: scale(1.05);
}

/* Main image styling */
.dr1031aboutushome .about-main-image {
	width: 100%;
	text-align: center;
}

.dr1031aboutushome .about-main-image img {
	width: 100%;
	height: auto;
	max-width: 500px;
	border-radius: 12px;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.45);
	object-fit: contain;
	transition: transform 0.3s ease;
	background: #111;
	padding: 6px;
}

.dr1031aboutushome .about-main-image img:hover {
	transform: scale(1.03);
}

/* Gallery styling */
.dr1031aboutushome .about-gallery {
	display: flex;
	gap: 16px;
	overflow-x: auto;
	padding-bottom: 10px;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	margin-top: 20px;
}

.dr1031aboutushome .about-gallery img {
	flex: 0 0 auto;
	width: 110px;
	height: 110px;
	border-radius: 10px;
	object-fit: cover;
	background: #1a1a1a;
	padding: 6px;
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.45);
	transition: transform 0.3s ease;
	scroll-snap-align: start;
}

.dr1031aboutushome .about-gallery img:hover {
	transform: scale(1.1);
}

/* Fade-in animation */
.dr1031aboutushome .fade-in-up {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 1s ease, transform 1s ease;
}

.dr1031aboutushome .fade-in-up.animate {
	opacity: 1;
	transform: translateY(0);
}

/* Responsive */
@media ( max-width : 992px) {
	.dr1031aboutushome .about-container {
		grid-template-columns: 1fr;
	}
	.dr1031aboutushome .about-text, .dr1031aboutushome .about-text h2,
		.dr1031aboutushome .about-text h3, .dr1031aboutushome .about-text p {
		text-align: center;
	}
	.dr1031aboutushome .about-main-image img {
		max-width: 90%;
	}
	.dr1031aboutushome .about-gallery img {
		width: 90px;
		height: 90px;
	}
	.dr1031aboutushome .whatsapp-button {
		display: block;
		margin: 20px auto 0;
	}
}