.dr1031carouselhome {
	padding: 60px 20px;
	background: linear-gradient(to bottom, #FBF6ED, #FFFDF9);
	/* Subtle ivory to cream gradient */
	color: #3B1F1F; /* Rich cocoa for text */
	font-family: 'Poppins', 'Noto Sans Telugu', serif;
	overflow: hidden;
	user-select: none;
	background-image:
		url('https://www.transparenttextures.com/patterns/paper-fibers.png');
}

.dr1031carouselhome .carousel-title {
	text-align: center;
	font-size: 36px;
	color: #7A0026; /* Deep Royal Maroon */
	font-weight: 700;
	margin: 0 auto 40px;
	position: relative;
	letter-spacing: 0.6px;
}

.dr1031carouselhome .telugu-sub {
	display: block;
	font-size: 1.1rem;
	color: #D4AF37; /* Classic Gold */
	margin-top: 6px;
	font-family: 'Noto Sans Telugu', serif;
}

.dr1031carouselhome .carousel-title::after {
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: -10px;
	width: 60px;
	height: 4px;
	background: #D4AF37; /* Classic Gold */
	border-radius: 4px;
}

.dr1031carouselhome .carousel {
	position: relative;
	overflow: hidden;
	width: 100%;
	max-width: 960px;
	margin: 0 auto;
	border-radius: 18px;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
	background: #FFFDF9;
	border: 2px solid #EADBC2; /* Elegant soft gold border */
}

.dr1031carouselhome .carousel-track {
	display: flex;
	transition: transform 0.5s ease-in-out;
	flex-wrap: nowrap;
	will-change: transform;
}

.dr1031carouselhome .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;
}

.dr1031carouselhome .carousel-slide.active {
	opacity: 1;
	pointer-events: auto;
	z-index: 1;
}

.dr1031carouselhome .carousel-slide img {
	max-width: 90%;
	max-height: 460px;
	border-radius: 14px;
	box-shadow: 0 6px 24px rgba(122, 0, 38, 0.2); /* Maroon glow */
	transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.dr1031carouselhome .carousel-slide img:hover {
	transform: scale(1.05);
	box-shadow: 0 0 40px rgba(212, 175, 55, 0.4); /* Gold glow */
}

.dr1031carouselhome .carousel-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: #7A0026; /* Deep Maroon */
	border: none;
	color: #fff;
	font-size: 2rem;
	padding: 14px 18px;
	cursor: pointer;
	z-index: 2;
	border-radius: 50%;
	box-shadow: 0 8px 20px rgba(122, 0, 38, 0.3);
	transition: background 0.3s ease;
}

.dr1031carouselhome .carousel-btn.left {
	left: 16px;
}

.dr1031carouselhome .carousel-btn.right {
	right: 16px;
}

.dr1031carouselhome .carousel-btn:hover {
	background: #5A001A;
	box-shadow: 0 10px 26px rgba(212, 175, 55, 0.4);
	/* Gold glow on hover */
}

/* Tablet */
@media ( max-width : 768px) {
	.dr1031carouselhome .carousel-title {
		font-size: 28px;
	}
	.dr1031carouselhome .carousel-slide img {
		max-height: 300px;
	}
	.dr1031carouselhome .carousel-btn {
		font-size: 1.6rem;
		padding: 10px 14px;
	}
}

/* Mobile */
@media ( max-width : 480px) {
	.dr1031carouselhome {
		padding: 40px 15px;
	}
	.dr1031carouselhome .carousel-title {
		font-size: 22px;
		margin-bottom: 20px;
	}
	.dr1031carouselhome .carousel-slide img {
		max-height: 220px;
	}
	.dr1031carouselhome .carousel-btn {
		font-size: 1.3rem;
		padding: 8px 12px;
	}
}