.dr1048carouselhome2 {
	padding: 40px 20px;
	max-width: 1000px;
	margin: auto;
	background: #f0fdf7;
	color: #145c4a;
	font-family: 'Segoe UI', 'Poppins', sans-serif;
	border-radius: 18px;
	box-shadow: 0 10px 25px rgba(0, 128, 96, 0.1);
}

.dr1048carouselhome2 .carousel-title {
	text-align: center;
	font-size: 36px;
	font-weight: 700;
	text-transform: uppercase;
	color: #0e8c75;
	background: linear-gradient(135deg, #0bbf9a, #1abc9c);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-shadow: 1px 1px 4px rgba(0, 128, 96, 0.2);
	margin-bottom: 30px;
}

.dr1048carouselhome2 .carousel {
	position: relative;
	overflow: hidden;
	border-radius: 15px;
	background: #ffffff;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.dr1048carouselhome2 .carousel-track {
	display: flex;
	transition: transform 0.9s ease-in-out;
	width: 100%;
	flex-wrap: nowrap;
}

.dr1048carouselhome2 .carousel-slide {
	flex: 0 0 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px;
	background: #e7fff6;
}

.dr1048carouselhome2 .carousel-slide img {
	max-width: 75%;
	max-height: 400px;
	border-radius: 16px;
	object-fit: cover;
	box-shadow: 0 8px 20px rgba(0, 128, 96, 0.15);
	transition: transform 0.4s ease, filter 0.4s ease;
}

.dr1048carouselhome2 .carousel-slide img:hover {
	transform: scale(1.05);
	filter: brightness(1.05);
}

.dr1048carouselhome2 .carousel-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: #0bbf9a;
	border: none;
	color: #fff;
	font-size: 2rem;
	padding: 10px 16px;
	cursor: pointer;
	border-radius: 50%;
	box-shadow: 0 4px 10px rgba(0, 128, 96, 0.3);
	z-index: 10;
	user-select: none;
	transition: background 0.3s, box-shadow 0.3s;
}

.dr1048carouselhome2 .carousel-btn.left {
	left: 12px;
}

.dr1048carouselhome2 .carousel-btn.right {
	right: 12px;
}

.dr1048carouselhome2 .carousel-btn:hover {
	background: #088c72;
	box-shadow: 0 0 15px rgba(11, 191, 154, 0.5);
}

/* Responsive */
@media ( max-width : 768px) {
	.dr1048carouselhome2 .carousel-title {
		font-size: 28px;
	}
	.dr1048carouselhome2 .carousel-slide img {
		max-width: 90%;
		max-height: 260px;
	}
	.dr1048carouselhome2 .carousel-btn {
		font-size: 1.8rem;
		padding: 8px 12px;
	}
}

@media ( max-width : 480px) {
	.dr1048carouselhome2 {
		padding: 20px 10px;
	}
	.dr1048carouselhome2 .carousel-title {
		font-size: 24px;
	}
	.dr1048carouselhome2 .carousel-slide img {
		max-width: 95%;
		max-height: 200px;
	}
	.dr1048carouselhome2 .carousel-btn {
		font-size: 1.5rem;
	}
}