.dr1042carouselhome {
	padding: 60px 20px;
	background: linear-gradient(to bottom, #f0f9ff, #e6f7ff);
	/* Light professional blue gradient */
	color: #0f172a; /* Deep slate text */
	font-family: 'Poppins', sans-serif;
	overflow: hidden;
	user-select: none;
	background-image:
		url('https://www.transparenttextures.com/patterns/asfalt-light.png');
}

/* Title */
.dr1042carouselhome .carousel-title {
	text-align: center;
	font-size: 36px;
	font-weight: 700;
	background: linear-gradient(to right, #0ea5e9, #1e3a8a);
	/* Light Blue → Deep Blue */
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin: 0 auto 40px;
	position: relative;
	letter-spacing: 0.6px;
}

.dr1042carouselhome .carousel-title::after {
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: -10px;
	width: 70px;
	height: 4px;
	background: #f97316; /* Bright orange underline for energy */
	border-radius: 4px;
	box-shadow: 0 0 12px rgba(249, 115, 22, 0.4);
}

.dr1042carouselhome .tagline-sub {
	display: block;
	font-size: 1.1rem;
	color: #0ea5e9; /* Professional blue */
	margin-top: 6px;
	font-style: italic;
	font-weight: 500;
}

/* Carousel Box */
.dr1042carouselhome .carousel {
	position: relative;
	overflow: hidden;
	width: 100%;
	max-width: 980px;
	margin: 0 auto;
	border-radius: 20px;
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.15);
	background: #ffffff;
	border: 1.5px solid #e2e8f0;
}

.dr1042carouselhome .carousel-track {
	display: flex;
	transition: transform 0.5s ease-in-out;
	flex-wrap: nowrap;
	will-change: transform;
}

.dr1042carouselhome .carousel-slide {
	flex: 0 0 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.5s ease;
}

.dr1042carouselhome .carousel-slide.active {
	opacity: 1;
	pointer-events: auto;
	z-index: 1;
}

.dr1042carouselhome .carousel-slide img {
	max-width: 90%;
	max-height: 460px;
	border-radius: 16px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
	transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.dr1042carouselhome .carousel-slide img:hover {
	transform: scale(1.05);
	box-shadow: 0 0 40px rgba(14, 165, 233, 0.35); /* Blue glow */
}

/* Buttons */
.dr1042carouselhome .carousel-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: #0ea5e9; /* Talent Trail primary blue */
	border: none;
	color: #fff;
	font-size: 2rem;
	padding: 14px 18px;
	cursor: pointer;
	z-index: 2;
	border-radius: 50%;
	box-shadow: 0 8px 20px rgba(14, 165, 233, 0.3);
	transition: background 0.3s ease, transform 0.3s ease;
}

.dr1042carouselhome .carousel-btn.left {
	left: 16px;
}

.dr1042carouselhome .carousel-btn.right {
	right: 16px;
}

.dr1042carouselhome .carousel-btn:hover {
	background: #1e3a8a; /* Deep corporate blue hover */
	transform: scale(1.1);
	box-shadow: 0 12px 26px rgba(14, 165, 233, 0.4);
}

/* Responsive */
@media ( max-width : 768px) {
	.dr1042carouselhome .carousel-title {
		font-size: 28px;
	}
	.dr1042carouselhome .carousel-slide img {
		max-height: 300px;
	}
	.dr1042carouselhome .carousel-btn {
		font-size: 1.6rem;
		padding: 10px 14px;
	}
}

@media ( max-width : 480px) {
	.dr1042carouselhome {
		padding: 40px 15px;
	}
	.dr1042carouselhome .carousel-title {
		font-size: 22px;
		margin-bottom: 20px;
	}
	.dr1042carouselhome .carousel-slide img {
		max-height: 220px;
	}
	.dr1042carouselhome .carousel-btn {
		font-size: 1.3rem;
		padding: 8px 12px;
	}
}