/* ===== Services Section ===== */
.dr1021services {
	padding: 80px 20px;
	background: #1b1b2f; /* dark background */
	font-family: 'Poppins', 'Noto Sans Telugu', sans-serif;
	text-align: center;
	color: #ffffff;
}

/* Heading */
.services-heading h2 {
	font-size: 2.6rem;
	color: #ffc107; /* golden yellow */
	margin-bottom: 8px;
	line-height: 1.2;
}

.services-heading .telugu-title {
	display: block;
	font-size: 1.4rem;
	color: #ffcc80; /* soft orange */
	margin-bottom: 20px;
}

.services-heading p {
	max-width: 800px;
	margin: 0 auto 40px;
	font-size: 1.1rem;
	color: #d1c4e9;
	line-height: 1.6;
}

.services-heading .telugu-subtitle {
	display: block;
	font-size: 1rem;
	color: #ffe082;
	margin-top: 8px;
}

/* Grid */
.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	align-items: start;
}

/* Service Card */
.service-card {
	background: #292942;
	border-radius: 16px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
	overflow: hidden;
	display: grid;
	grid-template-rows: auto 1fr auto;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
}

/* Images Row */
.service-images {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 4px;
	background: #444;
	padding: 4px;
}

.service-images img {
	width: 100%;
	height: auto;
	object-fit: cover;
	border-radius: 4px;
	background: #ffffff;
}

/* Titles */
.service-card h3 {
	margin: 16px 20px 4px;
	font-size: 1.2rem;
	color: #fbc02d;
}

.service-card .telugu-subtitle {
	margin: 0 20px 16px;
	font-size: 1rem;
	color: #ffecb3;
}

/* Appointment Button */
.service-actions {
	padding: 0 20px 20px;
}

.whatsapp-btn {
	background: #25D366;
	color: #ffffff;
	padding: 10px 20px;
	border-radius: 30px;
	text-decoration: none;
	font-weight: 600;
	display: inline-block;
	transition: background 0.3s ease;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.whatsapp-btn:hover {
	background: #1DA851;
}

/* Scroll Fade-in Animation */
.fade-on-scroll {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-on-scroll.animate {
	opacity: 1;
	transform: translateY(0);
}

/* Mobile Responsive */
@media ( max-width : 768px) {
	.services-heading p {
		margin-bottom: 30px;
	}
	.service-images {
		grid-template-columns: repeat(2, 1fr);
	}
}