.dr1048carouselhome {
	padding: 60px 20px;
	background: linear-gradient(to bottom, #f0f4f5, #ffffff);
	color: #1F2F32;
	font-family: 'Poppins', 'Noto Sans Telugu', serif;
	overflow: hidden;
	user-select: none;
	background-image:
		url('https://www.transparenttextures.com/patterns/concrete-wall.png');
}

.dr1048carouselhome .carousel-title {
	text-align: center;
	font-size: 36px;
	color: #00475D; /* Deep Teal */
	font-weight: 700;
	margin: 0 auto 40px;
	position: relative;
	letter-spacing: 0.6px;
}

.dr1048carouselhome .telugu-sub {
	display: block;
	font-size: 1.1rem;
	color: #00A3AD; /* Aqua Blue */
	margin-top: 6px;
	font-family: 'Noto Sans Telugu', serif;
}

.dr1048carouselhome .carousel-title::after {
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: -10px;
	width: 60px;
	height: 4px;
	background: #00A3AD;
	border-radius: 4px;
}

.dr1048carouselhome .carousel {
	position: relative;
	overflow: hidden;
	width: 100%;
	max-width: 960px;
	margin: 0 auto;
	border-radius: 18px;
	box-shadow: 0 12px 32px rgba(0, 71, 93, 0.1);
	background: #ffffff;
	border: 2px solid #d0e4e6; /* Soft teal border */
}

.dr1048carouselhome .carousel-track {
	display: flex;
	transition: transform 0.5s ease-in-out;
	flex-wrap: nowrap;
	will-change: transform;
}

.dr1048carouselhome .carousel-slide {
	flex: 0 0 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #ffffff;
	padding: 24px;
	border-radius: 16px;
	box-sizing: border-box;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.5s ease;
}

.dr1048carouselhome .carousel-slide.active {
	opacity: 1;
	pointer-events: auto;
	z-index: 1;
}

.dr1048carouselhome .carousel-slide img {
	max-width: 90%;
	max-height: 460px;
	border-radius: 14px;
	box-shadow: 0 6px 24px rgba(0, 71, 93, 0.2);
	transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.dr1048carouselhome .carousel-slide img:hover {
	transform: scale(1.05);
	box-shadow: 0 0 40px rgba(0, 163, 173, 0.4); /* Aqua Glow */
}

.dr1048carouselhome .carousel-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: #00475D;
	border: none;
	color: #fff;
	font-size: 2rem;
	padding: 14px 18px;
	cursor: pointer;
	z-index: 2;
	border-radius: 50%;
	box-shadow: 0 8px 20px rgba(0, 71, 93, 0.3);
	transition: background 0.3s ease;
}

.dr1048carouselhome .carousel-btn.left {
	left: 16px;
}

.dr1048carouselhome .carousel-btn.right {
	right: 16px;
}

.dr1048carouselhome .carousel-btn:hover {
	background: #003643;
	box-shadow: 0 10px 26px rgba(0, 163, 173, 0.4);
}

@media ( max-width : 768px) {
	.dr1048carouselhome .carousel-title {
		font-size: 28px;
	}
	.dr1048carouselhome .carousel-slide img {
		max-height: 300px;
	}
	.dr1048carouselhome .carousel-btn {
		font-size: 1.6rem;
		padding: 10px 14px;
	}
}

@media ( max-width : 480px) {
	.dr1048carouselhome {
		padding: 40px 15px;
	}
	.dr1048carouselhome .carousel-title {
		font-size: 22px;
		margin-bottom: 20px;
	}
	.dr1048carouselhome .carousel-slide img {
		max-height: 220px;
	}
	.dr1048carouselhome .carousel-btn {
		font-size: 1.3rem;
		padding: 8px 12px;
	}
}