body {
	background-image: url('assets/media/auth/bg10.jpeg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

/* LEFT SECTION */
.left-section {
	background: linear-gradient(63.1deg, rgba(5, 23, 111, 1) 16.4%, rgba(24, 95, 240, 1) 64.5%);
	color: #fff;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

/* TOMBOL CUSTOM */
.btn-orange {
	background: linear-gradient(63.1deg, rgba(5, 23, 111, 1) 16.4%, rgba(24, 95, 240, 1) 64.5%);
	border: none;
	color: #fff;
	font-weight: 600;
	transition: all 0.3s ease;
}

.btn-orange:hover {
	filter: brightness(1.05);
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(24, 95, 240, 0.35);
}

/* TEKS & LINK WARNA */
.text-orange,
.link-orange {
	color: rgba(24, 95, 240, 1) !important;
}

.link-orange:hover {
	color: rgba(5, 23, 111, 1) !important;
	text-decoration: underline;
}

/* NAVIGATION */
.nav-wrapper {
	background: transparent;
	z-index: 2;
}

.nav-wrapper .nav-link {
	color: rgba(255, 255, 255, 0.8);
	font-weight: 600;
}

.nav-wrapper .nav-link.active,
.nav-wrapper .nav-link:hover {
	color: #fff;
	border-bottom: 2px solid #fff;
}

/* CAROUSEL TEXT */
.left-section .carousel-item p,
.left-section .carousel-item h4,
.left-section .carousel-item h3,
.left-section .carousel-item li {
	color: #eaf0ff;
}

/* CARD STYLE */
.card {
	box-shadow: 0 4px 20px rgba(24, 95, 240, 0.15);
	border: none;
}

/* CAROUSEL LAYOUT */
.carousel-inner {
	min-height: 260px;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

/* RESPONSIVE */
@media (max-width: 768px) {
	.d-flex.flex-column.flex-lg-row {
		flex-direction: column !important;
	}

	.carousel-inner {
		min-height: 200px;
	}
}

/* SCROLL DOWN BUTTON */
.scroll-down-btn {
	position: absolute;
	bottom: 60px;
	left: 50%;
	transform: translateX(-50%);
	background: linear-gradient(63.1deg, rgba(5, 23, 111, 1) 16.4%, rgba(24, 95, 240, 1) 64.5%);
	color: #fff;
	border-radius: 30px;
	padding: 10px 18px;
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
	animation: bounce 1.5s infinite;
	z-index: 10;
	transition: all 0.3s ease;
}

.scroll-down-btn:hover {
	transform: translateX(-50%) scale(1.05);
	box-shadow: 0 8px 20px rgba(24, 95, 240, 0.3);
}

.scroll-down-btn .icon {
	display: flex;
	align-items: center;
	justify-content: center;
}

.scroll-down-btn .label {
	font-size: 0.95rem;
	letter-spacing: 0.5px;
}

/* ANIMASI BOUNCE */
@keyframes bounce {

	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateX(-50%) translateY(0);
	}

	40% {
		transform: translateX(-50%) translateY(-10px);
	}

	60% {
		transform: translateX(-50%) translateY(-5px);
	}
}