.dr1048aboutushome2 {
	padding: 100px 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;
}

.dr1048aboutushome2::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;
	z-index: 1;
}

.dr1048aboutushome2 .about-container {
	max-width: 1300px;
	margin: auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	position: relative;
	z-index: 2;
}

.dr1048aboutushome2 .about-text h2 {
	font-size: 2.8rem;
	font-weight: 800;
	margin-bottom: 12px;
	color: #f3c97a;
	text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5);
}

.dr1048aboutushome2 .english-heading {
	font-size: 1.1rem;
	color: #d6ac5b;
	font-weight: 500;
	margin-bottom: 18px;
	display: block;
}

.dr1048aboutushome2 .about-text h3 {
	font-size: 1.6rem;
	font-weight: 700;
	color: #f3bd52;
	margin-top: 30px;
}

.dr1048aboutushome2 .about-text p {
	font-size: 1.15rem;
	line-height: 1.8;
	color: #f1e4c8;
	margin-bottom: 18px;
}

.dr1048aboutushome2 .english-desc {
	font-size: 1rem;
	color: #d8ba87;
	margin-top: 6px;
	display: block;
}

.dr1048aboutushome2 .highlight-box {
	background: #292929;
	border-left: 6px solid #c59b3b;
	color: #f8e7cb;
	padding: 18px 26px;
	font-size: 1.2rem;
	font-weight: bold;
	border-radius: 12px;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
	margin-top: 24px;
}

.dr1048aboutushome2 .call-button {
	background: linear-gradient(to right, #f1c373, #a5711c);
	color: #2b1b00;
	padding: 14px 36px;
	border-radius: 35px;
	font-size: 1.15rem;
	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: 26px;
}

.dr1048aboutushome2 .call-button:hover {
	background: linear-gradient(to right, #e3a72a, #8a6311);
	transform: scale(1.05);
}

.dr1048aboutushome2 .about-main-image {
	text-align: center;
}

.dr1048aboutushome2 .about-main-image img {
	max-width: 600px;
	width: 100%;
	border-radius: 16px;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.5);
	background: #111;
	padding: 6px;
	transition: transform 0.4s ease;
}

.dr1048aboutushome2 .about-main-image img:hover {
	transform: scale(1.03);
}

.dr1048aboutushome2 .about-gallery {
	display: flex;
	gap: 16px;
	margin-top: 30px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	padding-bottom: 10px;
}

.dr1048aboutushome2 .about-gallery img {
	flex: 0 0 auto;
	width: 140px;
	height: 140px;
	border-radius: 12px;
	object-fit: cover;
	background: #000;
	padding: 5px;
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
	scroll-snap-align: start;
	transition: transform 0.3s ease;
}

.dr1048aboutushome2 .about-gallery img:hover {
	transform: scale(1.1);
}

/* Fade-in animation */
.dr1048aboutushome2 .fade-in-up {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 1s ease, transform 1s ease;
}

.dr1048aboutushome2 .fade-in-up.animate {
	opacity: 1;
	transform: translateY(0);
}

/* Responsive */
@media ( max-width : 992px) {
	.dr1048aboutushome2 .about-container {
		grid-template-columns: 1fr;
		text-align: center;
	}
	.dr1048aboutushome2 .about-main-image img {
		max-width: 90%;
	}
	.dr1048aboutushome2 .about-gallery img {
		width: 120px;
		height: 120px;
	}
	.dr1048aboutushome2 .call-button {
		margin: 20px auto 0;
		display: block;
	}
}