.dr1007carouselhome {
	padding: 40px 20px;
	background: #fff8f1;
}

.dr1007carouselhome .carousel-title {
	display: block;
	margin: 0 auto 15px auto;
	text-align: center;
	font-size: 36px;
	color: #ff5722;
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	background: linear-gradient(135deg, #ff5722, #ff9800);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
}

.dr1007carouselhome .carousel-subtitle {
	text-align: center;
	font-size: 18px;
	color: #804000;
	margin-bottom: 25px;
	font-family: 'Noto Sans Telugu', sans-serif;
}

.dr1007carouselhome .carousel {
	position: relative;
	overflow: hidden;
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
	border-radius: 15px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	background: #ffffff;
}

.dr1007carouselhome .carousel-track {
	display: flex;
	transition: transform 1s ease;
}

.dr1007carouselhome .carousel-slide {
	background: linear-gradient(135deg, rgba(255, 130, 103, 0.6),
		rgba(255, 200, 120, 0.6));
	min-width: 100%;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.dr1007carouselhome .carousel-slide img {
	max-width: 100%;
	max-height: 400px;
	object-fit: contain;
	display: block;
	padding: 10px;
}

.dr1007carouselhome .carousel-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(0, 0, 0, 0.4);
	border: none;
	color: #fff;
	font-size: 2rem;
	padding: 10px 15px;
	cursor: pointer;
	z-index: 10;
	border-radius: 50%;
	transition: background 0.3s ease;
}

.dr1007carouselhome .carousel-btn.left {
	left: 10px;
}

.dr1007carouselhome .carousel-btn.right {
	right: 10px;
}

.dr1007carouselhome .carousel-btn:hover {
	background: rgba(0, 0, 0, 0.7);
}

/* Responsive Design */
@media ( max-width : 768px) {
	.dr1007carouselhome .carousel-title {
		font-size: 28px;
	}
	.dr1007carouselhome .carousel-slide img {
		max-height: 300px;
	}
	.dr1007carouselhome .carousel-btn {
		font-size: 1.8rem;
		padding: 8px 12px;
	}
}

@media ( max-width : 480px) {
	.dr1007carouselhome {
		padding: 20px 10px;
	}
	.dr1007carouselhome .carousel-title {
		font-size: 24px;
	}
	.dr1007carouselhome .carousel-btn {
		font-size: 1.5rem;
	}
}