/* ============================= */
/* GALLERY SECTION               */
/* ============================= */
.dr1007carouselhome {
	padding: 110px 24px;
	background: linear-gradient(180deg, #fffaf3, #fff1dc);
	font-family: 'Noto Sans Telugu', 'Poppins', sans-serif;
	text-align: center;
}

/* ============================= */
/* TITLE & SUBTITLE              */
/* ============================= */
.dr1007carouselhome .carousel-title {
	font-size: 42px;
	font-weight: 800;
	margin-bottom: 12px;
	background: linear-gradient(90deg, #ff6f00, #ffb74d);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.dr1007carouselhome .carousel-subtitle {
	font-size: 18px;
	color: #6d4c41;
	margin-bottom: 50px;
	line-height: 1.6;
}

/* ============================= */
/* CAROUSEL FRAME                */
/* ============================= */
.dr1007carouselhome .carousel {
	position: relative;
	max-width: 900px;
	margin: auto;
	overflow: hidden;
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.85);
	box-shadow:
		0 30px 70px rgba(0, 0, 0, 0.15),
		inset 0 0 0 1px rgba(255, 224, 178, 0.6);
	backdrop-filter: blur(12px);
}

/* ============================= */
/* TRACK                         */
/* ============================= */
.dr1007carouselhome .carousel-track {
	display: flex;
	transition: transform 1s cubic-bezier(.4, .0, .2, 1);
}

/* ============================= */
/* SLIDE                         */
/* ============================= */
.dr1007carouselhome .carousel-slide {
	min-width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 30px;
	background: linear-gradient(
		135deg,
		rgba(255, 248, 235, 0.8),
		rgba(255, 236, 210, 0.8)
	);
}

/* ============================= */
/* IMAGE                         */
/* ============================= */
.dr1007carouselhome .carousel-slide img {
	max-width: 100%;
	max-height: 420px;
	object-fit: contain;
	border-radius: 22px;
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
	background: #ffffff;
	padding: 14px;
	transition: transform 0.4s ease;
}

.dr1007carouselhome .carousel-slide img:hover {
	transform: scale(1.03);
}

/* ============================= */
/* NAV BUTTONS                   */
/* ============================= */
.dr1007carouselhome .carousel-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 54px;
	height: 54px;
	border-radius: 50%;
	border: none;
	cursor: pointer;
	font-size: 22px;
	color: #ffffff;
	background: linear-gradient(135deg, #ff6f00, #ffa726);
	box-shadow: 0 12px 30px rgba(255, 152, 0, 0.5);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	z-index: 10;
}

.dr1007carouselhome .carousel-btn:hover {
	transform: translateY(-50%) scale(1.1);
	box-shadow: 0 18px 40px rgba(255, 152, 0, 0.6);
}

.dr1007carouselhome .carousel-btn.left {
	left: 18px;
}

.dr1007carouselhome .carousel-btn.right {
	right: 18px;
}

/* ============================= */
/* RESPONSIVE                    */
/* ============================= */
@media (max-width: 768px) {
	.dr1007carouselhome .carousel-title {
		font-size: 32px;
	}

	.dr1007carouselhome .carousel-subtitle {
		font-size: 16px;
		margin-bottom: 35px;
	}

	.dr1007carouselhome .carousel-slide img {
		max-height: 320px;
	}

	.dr1007carouselhome .carousel-btn {
		width: 46px;
		height: 46px;
		font-size: 20px;
	}
}

@media (max-width: 480px) {
	.dr1007carouselhome {
		padding: 80px 16px;
	}

	.dr1007carouselhome .carousel-title {
		font-size: 26px;
	}

	.dr1007carouselhome .carousel-btn {
		width: 42px;
		height: 42px;
		font-size: 18px;
	}
}