/* ================= GALLERY 2 – HIGHLIGHTS THEME ================= */
.dr1051carouselhome2 {
	padding: 90px 20px;
	background: linear-gradient(180deg, #ecfdf5 0%, #ffffff 100%);
	font-family: 'Poppins', sans-serif;
	user-select: none;
	overflow: hidden;
}

/* ---------- TITLE ---------- */
.dr1051carouselhome2 .carousel-title {
	text-align: center;
	font-size: 34px;
	font-weight: 800;
	color: #064e3b; /* Emerald dark */
	margin-bottom: 50px;
	line-height: 1.3;
}

.dr1051carouselhome2 .english-sub {
	display: block;
	font-size: 16px;
	font-weight: 600;
	color: #047857; /* Emerald */
	margin-top: 6px;
}

.dr1051carouselhome2 .tagline {
	display: block;
	font-size: 15px;
	color: #065f46;
	margin-top: 4px;
}

/* ---------- CAROUSEL ---------- */
.dr1051carouselhome2 .carousel {
	position: relative;
	max-width: 1050px;
	margin: auto;
	overflow: hidden;
	border-radius: 24px;
	background: linear-gradient(180deg, #ffffff, #f0fdfa);
	box-shadow: 0 28px 60px rgba(4, 120, 87, 0.18);
}

/* ---------- TRACK ---------- */
.dr1051carouselhome2 .carousel-track {
	display: flex;
	transition: transform 0.6s ease;
	will-change: transform;
}

/* ---------- SLIDE ---------- */
.dr1051carouselhome2 .carousel-slide {
	flex: 0 0 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 28px;
	opacity: 0;
	transition: opacity 0.5s ease;
}

.dr1051carouselhome2 .carousel-slide.active {
	opacity: 1;
}

/* ---------- IMAGE ---------- */
.dr1051carouselhome2 .carousel-slide img {
	max-width: 92%;
	max-height: 460px;
	object-fit: contain;
	border-radius: 20px;
	box-shadow: 0 18px 42px rgba(6, 95, 70, 0.35);
	transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.dr1051carouselhome2 .carousel-slide img:hover {
	transform: scale(1.05);
	box-shadow: 0 28px 65px rgba(6, 95, 70, 0.5);
}

/* ---------- NAV BUTTONS ---------- */
.dr1051carouselhome2 .carousel-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: linear-gradient(135deg, #047857, #064e3b);
	color: #ecfdf5;
	border: none;
	font-size: 2rem;
	padding: 14px 18px;
	border-radius: 50%;
	cursor: pointer;
	z-index: 2;
	box-shadow: 0 14px 32px rgba(4, 120, 87, 0.6);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.dr1051carouselhome2 .carousel-btn.left {
	left: 16px;
}

.dr1051carouselhome2 .carousel-btn.right {
	right: 16px;
}

.dr1051carouselhome2 .carousel-btn:hover {
	transform: translateY(-50%) scale(1.15);
	box-shadow: 0 22px 48px rgba(4, 120, 87, 0.8);
}

/* ---------- RESPONSIVE ---------- */
@media ( max-width : 768px) {
	.dr1051carouselhome2 {
		padding: 70px 16px;
	}
	.dr1051carouselhome2 .carousel-title {
		font-size: 28px;
	}
	.dr1051carouselhome2 .carousel-slide img {
		max-height: 320px;
	}
	.dr1051carouselhome2 .carousel-btn {
		font-size: 1.6rem;
		padding: 10px 14px;
	}
}

@media ( max-width : 480px) {
	.dr1051carouselhome2 {
		padding: 60px 14px;
	}
	.dr1051carouselhome2 .carousel-title {
		font-size: 24px;
		margin-bottom: 30px;
	}
	.dr1051carouselhome2 .carousel-slide img {
		max-height: 240px;
		border-radius: 16px;
	}
}