.dr1028aboutushome {
	padding: 80px 20px;
	background: linear-gradient(to right, #33691e, #558b2f);
	/* Garden Green */
	color: #ffffff;
	font-family: 'Noto Serif Telugu', 'Segoe UI', sans-serif;
}

.dr1028aboutushome .about-container {
	max-width: 1200px;
	margin: auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: center;
}

.dr1028aboutushome .about-text h2 {
	font-size: 2.6rem;
	font-weight: 800;
	margin-bottom: 10px;
	color: #ffffff;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.dr1028aboutushome .english-heading {
	font-size: 1.2rem;
	color: #c5e1a5;
	font-weight: 500;
	margin-bottom: 20px;
}

.dr1028aboutushome .about-text h3 {
	font-size: 1.6rem;
	font-weight: 700;
	color: #dcedc8;
	margin-top: 30px;
}

.dr1028aboutushome .about-text p {
	font-size: 1.15rem;
	line-height: 1.7;
	color: #f1f8e9;
	margin-bottom: 16px;
}

.dr1028aboutushome .english-desc {
	font-size: 1rem;
	color: #c8e6c9;
	margin-top: 6px;
	display: block;
}

/* WhatsApp button */
.dr1028aboutushome .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;
}

.dr1028aboutushome .whatsapp-button:hover {
	background-color: #1ebe5d;
}

/* Gallery styling */
.dr1028aboutushome .about-gallery {
	display: flex;
	gap: 16px;
	overflow-x: auto;
	padding-bottom: 10px;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
}

.dr1028aboutushome .about-gallery img {
	flex: 0 0 auto;
	width: 110px;
	height: 110px;
	border-radius: 10px;
	object-fit: cover;
	background: #fff;
	padding: 6px;
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
	transition: transform 0.3s ease;
	scroll-snap-align: start;
}

.dr1028aboutushome .about-gallery img:hover {
	transform: scale(1.1);
}

/* Fade-in animation */
.dr1028aboutushome .fade-in-up {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 1s ease, transform 1s ease;
}

.dr1028aboutushome .fade-in-up.animate {
	opacity: 1;
	transform: translateY(0);
}

/* Responsive */
@media ( max-width : 992px) {
	.dr1028aboutushome .about-container {
		grid-template-columns: 1fr;
	}
	.dr1028aboutushome .about-text, .about-text h2, .about-text h3, .about-text p {
		text-align: center;
	}
	.dr1028aboutushome .about-gallery {
		justify-content: flex-start;
	}
	.dr1028aboutushome .about-gallery img {
		width: 90px;
		height: 90px;
	}
	.dr1028aboutushome .whatsapp-button {
		display: block;
		margin: 0 auto;
	}
}