/* Full CSS with horizontally scrollable images for dental services */
.dr1019services {
	padding: 100px 20px;
	background: linear-gradient(to bottom right, #f0ffff, #e0f7fa);
	font-family: 'Segoe UI', sans-serif;
}

.dr1019services .services-heading {
	text-align: center;
	margin-bottom: 50px;
}

.dr1019services .services-heading h2 {
	font-size: 2.8rem;
	color: #00796b;
	margin-bottom: 10px;
	line-height: 1.4;
}

.dr1019services .services-heading p {
	font-size: 1.2rem;
	color: #004d40;
	line-height: 1.6;
}

/* Telugu styling */
.dr1019services .telugu-title {
	display: block;
	font-size: 1.8rem;
	font-weight: 600;
	color: #ff6f00;
	margin-top: 8px;
	font-family: 'Noto Sans Telugu', 'Segoe UI', sans-serif;
}

.dr1019services .telugu-subtitle {
	display: block;
	font-size: 1.05rem;
	color: #00695c;
	margin-top: 6px;
	font-family: 'Noto Sans Telugu', 'Segoe UI', sans-serif;
}

/* Services Grid */
.dr1019services .services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 40px;
	max-width: 1200px;
	margin: auto;
}

/* Service Card */
.dr1019services .service-card {
	background: #ffffff;
	border-radius: 20px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	padding: 20px;
	text-align: center;
	transition: transform 0.3s ease;
}

.dr1019services .service-card:hover {
	transform: translateY(-6px);
}

/* Scrollable Images */
.dr1019services .service-images {
	display: flex;
	gap: 15px;
	margin-bottom: 20px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	padding-bottom: 10px;
}

.dr1019services .service-images img {
	flex: 0 0 auto;
	max-width: 280px;
	width: 100%;
	height: auto;
	border-radius: 18px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
	object-fit: contain;
	scroll-snap-align: start;
}

/* Optional scrollbar style */
.dr1019services .service-images::-webkit-scrollbar {
	height: 6px;
}

.dr1019services .service-images::-webkit-scrollbar-thumb {
	background: #00acc1;
	border-radius: 10px;
}

.dr1019services .service-images::-webkit-scrollbar-track {
	background: transparent;
}

.dr1019services .service-card h3 {
	font-size: 1.6rem;
	color: #00796b;
	margin: 15px 0 10px;
}

.dr1019services .service-card p {
	font-size: 1rem;
	color: #444;
	margin-bottom: 20px;
}

.dr1019services .service-actions {
	display: flex;
	justify-content: center;
	gap: 15px;
	flex-wrap: wrap;
}

/* Buttons */
.dr1019services .whatsapp-btn {
	background: #25d366;
	color: white;
	padding: 10px 16px;
	border-radius: 30px;
	text-decoration: none;
	font-weight: 600;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.dr1019services .whatsapp-btn:hover {
	background: #1ebe5b;
}

.dr1019services .share-btn {
	background: #00796b;
	color: white;
	padding: 10px 16px;
	border-radius: 30px;
	border: none;
	cursor: pointer;
	font-weight: 600;
}

.dr1019services .share-btn:hover {
	background: #005f56;
}

/* Fade on scroll */
.dr1019services .fade-on-scroll {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.dr1019services .fade-on-scroll.visible {
	opacity: 1;
	transform: translateY(0);
}

/* Responsive */
@media ( max-width : 768px) {
	.dr1019services .service-images img {
		max-width: 220px;
	}
	.dr1019services .services-heading h2 {
		font-size: 2rem;
	}
	.dr1019services .services-heading p {
		font-size: 1rem;
	}
	.dr1019services .telugu-title {
		font-size: 1.4rem;
	}
	.dr1019services .telugu-subtitle {
		font-size: 0.95rem;
	}
	.dr1019services .service-card h3 {
		font-size: 1.3rem;
	}
	.dr1019services .service-card p {
		font-size: 0.95rem;
	}
}