.dr1048aboutushome {
	padding: 80px 20px;
	background: linear-gradient(to right, #1a1a1a, #2b2b2b),
		url('https://www.transparenttextures.com/patterns/dark-mosaic.png');
	background-blend-mode: overlay;
	color: #f9f5ef;
	font-family: 'Poppins', 'Noto Serif Telugu', sans-serif;
	position: relative;
	overflow: hidden;
}

.dr1048aboutushome::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at center, rgba(255, 255, 255, 0.04),
		transparent 70%);
	pointer-events: none;
}

.dr1048aboutushome .about-container {
	max-width: 1200px;
	margin: auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: center;
	position: relative;
	z-index: 2;
}

.dr1048aboutushome .about-text h2 {
	font-size: 2.6rem;
	font-weight: 800;
	margin-bottom: 10px;
	color: #f3c97a;
	text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5);
}

.dr1048aboutushome .english-heading {
	font-size: 1.1rem;
	color: #d6ac5b;
	font-weight: 500;
	margin-bottom: 18px;
	display: block;
}

.dr1048aboutushome .about-text h3 {
	font-size: 1.5rem;
	font-weight: 700;
	color: #f3bd52;
	margin-top: 30px;
}

.dr1048aboutushome .about-text p {
	font-size: 1.1rem;
	line-height: 1.7;
	color: #f1e4c8;
	margin-bottom: 18px;
}

.dr1048aboutushome .english-desc {
	font-size: 1rem;
	color: #d8ba87;
	margin-top: 6px;
	display: block;
}

.dr1048aboutushome .highlight-box {
	background: #292929;
	border-left: 6px solid #c59b3b;
	color: #f8e7cb;
	padding: 16px 24px;
	font-size: 1.1rem;
	font-weight: bold;
	border-radius: 10px;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
	margin-top: 24px;
}

/* WhatsApp Button */
.dr1048aboutushome .whatsapp-button {
	background: linear-gradient(to right, #f1c373, #a5711c);
	color: #2b1b00;
	padding: 12px 30px;
	border-radius: 30px;
	font-size: 1.1rem;
	font-weight: 600;
	text-decoration: none;
	box-shadow: 0 6px 14px rgba(218, 165, 32, 0.4);
	transition: background 0.3s ease, transform 0.2s ease;
	display: inline-block;
	margin-top: 20px;
}

.dr1048aboutushome .whatsapp-button:hover {
	background: linear-gradient(to right, #e3a72a, #8a6311);
	transform: scale(1.05);
}

/* Image Styling */
.dr1048aboutushome .about-main-image {
	text-align: center;
}

.dr1048aboutushome .about-main-image img {
	max-width: 520px;
	width: 100%;
	border-radius: 14px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.45);
	background: #111;
	padding: 6px;
	transition: transform 0.4s ease;
}

.dr1048aboutushome .about-main-image img:hover {
	transform: scale(1.03);
}

/* Updated Gallery */
.dr1048aboutushome .about-gallery {
	display: flex;
	gap: 16px;
	margin-top: 26px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	padding-bottom: 8px;
}

.dr1048aboutushome .about-gallery img {
	flex: 0 0 auto;
	width: 180px;
	height: 180px;
	border-radius: 12px;
	object-fit: cover;
	background: #000;
	padding: 5px;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
	scroll-snap-align: start;
	transition: transform 0.3s ease;
}

.dr1048aboutushome .about-gallery img:hover {
	transform: scale(1.1);
}

/* Animation */
.dr1048aboutushome .fade-in-up {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 1s ease, transform 1s ease;
}

.dr1048aboutushome .fade-in-up.animate {
	opacity: 1;
	transform: translateY(0);
}

/* Responsive */
@media ( max-width : 992px) {
	.dr1048aboutushome .about-container {
		grid-template-columns: 1fr;
		text-align: center;
	}
	.dr1048aboutushome .about-main-image img {
		max-width: 90%;
	}
	.dr1048aboutushome .about-gallery img {
		width: 140px;
		height: 140px;
	}
	.dr1048aboutushome .whatsapp-button {
		margin: 20px auto 0;
		display: block;
	}
}