/* ===== About Us Section Styling ===== */
.dr1019aboutushome {
	position: relative;
	background: linear-gradient(to bottom right, #e0f7fa, #b2ebf2);
	padding: 100px 20px;
	font-family: 'Poppins', 'Noto Sans Telugu', sans-serif;
	overflow: hidden;
}

/* Overlay */
.aboutus-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.04);
	z-index: 1;
}

/* Content Layout */
.aboutus-content {
	position: relative;
	z-index: 2;
	max-width: 1100px;
	margin: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 50px;
	text-align: center;
}

/* Text Block */
.aboutus-text {
	max-width: 700px;
}

.aboutus-text h2 {
	font-size: 2.8rem;
	font-weight: 700;
	margin-bottom: 20px;
	color: #00796b;
	font-family: 'Poppins', 'Noto Sans Telugu', sans-serif;
}

.aboutus-text p {
	font-size: 1.2rem;
	line-height: 1.7;
	margin-bottom: 20px;
	color: #004d40;
}

/* Bullet List Styling */
.aboutus-text ul {
	list-style: none;
	padding: 0;
	margin-bottom: 30px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: flex-start;
}

.aboutus-text ul li {
	font-size: 1.1rem;
	color: #00695c;
	position: relative;
	padding-left: 32px;
	line-height: 1.6;
}

.aboutus-text ul li::before {
	content: "✔";
	position: absolute;
	left: 0;
	top: 2px;
	color: #00796b;
	font-weight: bold;
	font-size: 1.1rem;
}

/* Button Styling */
.aboutus-btn {
	background: #00796b;
	color: #ffffff;
	padding: 14px 28px;
	border-radius: 30px;
	text-decoration: none;
	font-weight: bold;
	font-size: 1rem;
	transition: all 0.3s ease;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
	display: inline-block;
}

.aboutus-btn:hover {
	background: #004d40;
	transform: scale(1.05);
}

/* Image Styling */
.aboutus-image img {
	width: 500px;
	max-width: 100%;
	border-radius: 24px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
	transition: transform 0.3s ease;
}

.aboutus-image img:hover {
	transform: scale(1.04);
}

/* Scroll Animation */
.fade-on-scroll {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-on-scroll.visible {
	opacity: 1;
	transform: translateY(0);
}

/* Responsive Design */
@media ( max-width : 768px) {
	.aboutus-text h2 {
		font-size: 2rem;
	}
	.aboutus-text p, .aboutus-text ul li {
		font-size: 1rem;
	}
	.aboutus-image img {
		width: 320px;
	}
	.aboutus-text ul {
		align-items: center;
	}
	.aboutus-text ul li {
		text-align: left;
		padding-left: 28px;
	}
}