/* ===================== Dental-Themed Carousel Gallery ===================== */
.dr1019carouselhome {
	padding: 60px 20px;
	background: linear-gradient(135deg, #e0f7fa, #ffffff);
	/* dental clean look */
	color: #004d40;
	font-family: 'Poppins', 'Noto Sans Telugu', sans-serif;
	overflow: hidden;
	user-select: none;
}

.dr1019carouselhome .carousel-title {
	text-align: center;
	font-size: 36px;
	color: #00796b;
	font-weight: 800;
	text-transform: uppercase;
	margin: 0 auto 40px;
	letter-spacing: 1px;
	position: relative;
}

.dr1019carouselhome .carousel-title::after {
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: -10px;
	width: 60px;
	height: 4px;
	background: linear-gradient(to right, #26c6da, #00acc1);
	border-radius: 2px;
}

/* Carousel Wrapper */
.dr1019carouselhome .carousel {
	position: relative;
	overflow: hidden;
	width: 100%;
	max-width: 960px;
	margin: 0 auto;
	border-radius: 18px;
	box-shadow: 0 12px 32px rgba(0, 188, 212, 0.1);
	background: #ffffff;
	border: 2px solid #b2ebf2;
}

/* Carousel Track */
.dr1019carouselhome .carousel-track {
	display: flex;
	transition: transform 0.5s ease-in-out;
	width: 100%;
	flex-wrap: nowrap;
	will-change: transform;
}

/* Slides */
.dr1019carouselhome .carousel-slide {
	flex: 0 0 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #e0f2f1;
	padding: 24px;
	position: relative;
	border-radius: 16px;
	box-sizing: border-box;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.5s ease;
}

.dr1019carouselhome .carousel-slide.active {
	opacity: 1;
	pointer-events: auto;
	z-index: 1;
}

/* Slide Image */
.dr1019carouselhome .carousel-slide img {
	max-width: 90%;
	max-height: 460px;
	display: block;
	border-radius: 12px;
	box-shadow: 0 6px 30px rgba(0, 188, 212, 0.2);
	transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.dr1019carouselhome .carousel-slide img:hover {
	transform: scale(1.05);
	box-shadow: 0 0 40px rgba(0, 188, 212, 0.3);
}

/* Navigation Buttons */
.dr1019carouselhome .carousel-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: #00acc1;
	border: none;
	color: #ffffff;
	font-size: 2rem;
	padding: 14px 18px;
	cursor: pointer;
	z-index: 2;
	border-radius: 50%;
	box-shadow: 0 6px 20px rgba(0, 188, 212, 0.4);
	transition: background 0.3s ease, box-shadow 0.3s ease;
}

.dr1019carouselhome .carousel-btn.left {
	left: 18px;
}

.dr1019carouselhome .carousel-btn.right {
	right: 18px;
}

.dr1019carouselhome .carousel-btn:hover {
	background: #00838f;
	box-shadow: 0 8px 30px rgba(0, 131, 143, 0.5);
}

/* Responsive Styles */
@media ( max-width : 768px) {
	.dr1019carouselhome .carousel-title {
		font-size: 28px;
	}
	.dr1019carouselhome .carousel-slide img {
		max-height: 300px;
	}
	.dr1019carouselhome .carousel-btn {
		font-size: 1.6rem;
		padding: 10px 14px;
	}
}

@media ( max-width : 480px) {
	.dr1019carouselhome {
		padding: 40px 15px;
	}
	.dr1019carouselhome .carousel-title {
		font-size: 22px;
		margin-bottom: 20px;
	}
	.dr1019carouselhome .carousel-slide img {
		max-height: 220px;
	}
	.dr1019carouselhome .carousel-btn {
		font-size: 1.3rem;
		padding: 8px 12px;
	}
}