:root {
	/* Skema Warna Hijau */
	--bs-primary: #10b981; /* Hijau Emerald - warna utama */
	--bs-white: #ffffff; /* Putih murni */
	--bs-dark: #065f46; /* Hijau hutan gelap */
	--bs-light: #d1fae5; /* Hijau mint muda */
	--bs-body: #6b7280; /* Abu-abu untuk teks body */
	--bs-effect: rgb(68 246 160 / 40%);
	--primary: #355efc;
	--secondary: #e93c05;
	--tertiary: #555555;
	--light: #dfe4fd;
	--dark: #011a41;
}

.bg-join,
.bg-primary {
	background: linear-gradient(135deg, var(--bs-primary), #0a4730);
	color: var(--bs-white);
}
.text-primary {
	color: var(--bs-primary) !important;
}
/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
	z-index: 99999;
}

#spinner.show {
	transition: opacity 0.5s ease-out, visibility 0s linear 0s;
	visibility: visible;
	opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
	position: fixed;
	right: 30px;
	bottom: 30px;
	display: flex;
	width: 45px;
	height: 45px;
	align-items: center;
	justify-content: center;
	transition: 0.5s;
	z-index: 99;
	font-size: 1.4rem;
}
.whatsapp-redirect {
	position: fixed;
	right: 100px;
	bottom: 30px;
	display: flex;
	width: 45px;
	height: 45px;
	align-items: center;
	justify-content: center;
	transition: 0.5s;
	z-index: 99;
	font-size: 1.8rem;
}

/*** Button Start ***/
.btn {
	font-weight: 600;
	transition: 0.5s;
}

.btn-square {
	width: 32px;
	height: 32px;
}

.btn-sm-square {
	width: 34px;
	height: 34px;
}

.btn-md-square {
	width: 44px;
	height: 44px;
}

.btn-lg-square {
	width: 56px;
	height: 56px;
}

.btn-xl-square {
	width: 66px;
	height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: normal;
	border-radius: 50%;
}

.btn.btn-primary {
	background: var(--bs-primary) !important;
	color: var(--bs-white) !important;
	font-family: "Roboto", sans-serif;
	border: none;
	font-weight: 400;
	transition: 0.5s;
}

.btn.btn-primary:hover {
	background: var(--bs-dark) !important;
	color: var(--bs-light) !important;
}

.btn.btn-dark {
	background: var(--bs-dark) !important;
	color: var(--bs-white) !important;
	font-family: "Roboto", sans-serif;
	border: none;
	font-weight: 400;
	transition: 0.5s;
}

.btn.btn-dark:hover {
	background: var(--bs-white) !important;
	color: var(--bs-dark) !important;
}

.btn.btn-light {
	background: var(--bs-primary) !important;
	color: var(--bs-white) !important;
	font-family: "Roboto", sans-serif;
	border: none;
	font-weight: 400;
	transition: 0.5s;
}

.btn.btn-light:hover {
	background: var(--bs-white) !important;
	color: var(--bs-dark) !important;
}
/*** Topbar Start ***/
.topbar {
	padding: 2px 10px 2px 20px;
	background: var(--bs-dark) !important;
}

@media (max-width: 768px) {
	.topbar {
		display: none;
	}
}
/*** Topbar End ***/

/*** Navbar ***/
/* Enhanced Modern Navbar */
/* .fixed-top {
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	background: linear-gradient(
		135deg,
		rgba(255, 255, 255, 0.95) 0%,
		rgba(255, 255, 255, 0.98) 100%
	);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	border-bottom: 1px solid rgba(16, 185, 129, 0.1);
} */

.fixed-top {
	background: transparent !important;
	backdrop-filter: none !important;
	-webkit-backdrop-filter: none !important;
	border-bottom: 1px solid transparent !important;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 1030;
}

.fixed-top.scrolled {
	background: linear-gradient(
		135deg,
		rgba(255, 255, 255, 0.95) 0%,
		rgba(255, 255, 255, 0.98) 100%
	) !important;
	backdrop-filter: blur(15px) !important;
	-webkit-backdrop-filter: blur(15px) !important;
	border-bottom: 1px solid rgba(16, 185, 129, 0.1) !important;
	box-shadow: 0 10px 40px rgba(6, 95, 70, 0.1);
}
.fixed-top.scrolled + .top-bar-modern {
	transform: translateY(-100%);
	opacity: 0;
	visibility: hidden;
	height: 0;
	padding: 0;
	margin: 0;
	overflow: hidden;
}
/* Top Bar Modern */
.top-bar-modern {
	background: linear-gradient(135deg, var(--bs-dark) 0%, #0a4730 100%);
	padding: 8px 0;
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
	transform: translateY(0);
	z-index: 1029;
}

.top-bar-modern::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.1),
		transparent
	);
	animation: shimmer 3s infinite;
}

@keyframes shimmer {
	0% {
		transform: translateX(-100%);
	}
	100% {
		transform: translateX(100%);
	}
}

.top-bar-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: white;
}

.top-bar-left,
.top-bar-right {
	display: flex;
	align-items: center;
	gap: 30px;
}

.top-bar-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.9rem;
	transition: all 0.3s ease;
}

.top-bar-item i {
	color: var(--bs-primary);
	font-size: 1rem;
	transition: transform 0.3s ease;
}

.top-bar-item:hover i {
	transform: scale(1.2);
}

.quote-btn {
	background: var(--bs-primary);
	color: white;
	padding: 6px 20px;
	border-radius: 25px;
	font-weight: 600;
	font-size: 0.9rem;
	border: 2px solid var(--bs-primary);
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.quote-btn:hover {
	background: transparent;
	color: var(--bs-primary);
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
}


/* Navbar Main */
.header-carousel {
	position: relative;
	z-index: 1;
}

.navbar-brand {
	transition: all 0.3s ease;
	padding: 15px 0;
	position: relative;
}

.navbar-brand h1 {
	font-weight: 800;
	font-size: 2.2rem;
	letter-spacing: -0.5px;
	background: linear-gradient(45deg, var(--bs-dark), var(--bs-primary));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	position: relative;
	display: inline-block;
}

.navbar-brand h1::after {
	content: "";
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, var(--bs-primary), transparent);
	border-radius: 2px;
}

/* Navigation Links */
.navbar-nav {
	gap: 5px;
	margin-left: auto;
	margin-right: auto;
}

.nav-item {
	position: relative;
	margin: 0 2px !important;
}

.nav-link {
	padding: 25px 20px !important;
	font-weight: 600;
	font-size: 1.05rem;
	color: var(--bs-dark) !important;
	position: relative;
	transition: all 0.3s ease;
	letter-spacing: 0.3px;
}

.nav-link:hover::before,
.nav-link.active::before {
	transform: scaleX(1);
}

.nav-link:hover,
.nav-link.active {
	color: var(--bs-primary) !important;
	transform: translateY(-2px);
}

/* Dropdown Enhancement */
.dropdown-toggle::after {
	border: none;
	content: "\f107";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	vertical-align: middle;
	margin-left: 8px;
	transition: transform 0.3s ease;
}

/* Regular Dropdown Menu */
.dropdown-menu:not(.mega-menu) {
	border: none;
	border-radius: 12px;
	padding: 15px 0;
	box-shadow: 0 15px 50px rgba(6, 95, 70, 0.15);
	border-top: 3px solid var(--bs-primary);
	animation: dropdownSlide 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	min-width: 220px;
}

@keyframes dropdownSlide {
	from {
		opacity: 0;
		transform: translateY(-15px) scale(0.95);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.dropdown-item {
	padding: 12px 25px;
	font-weight: 500;
	color: var(--bs-dark);
	transition: all 0.3s ease;
	position: relative;
	display: flex;
	align-items: center;
	gap: 10px;
}

.dropdown-item i {
	color: var(--bs-primary);
	font-size: 0.9rem;
	width: 20px;
	transition: transform 0.3s ease;
}

.dropdown-item:hover {
	background: linear-gradient(90deg, rgba(16, 185, 129, 0.1), transparent);
	color: var(--bs-primary);
	padding-left: 30px;
}

.dropdown-item:hover i {
	transform: translateX(5px);
}

/* =================================================== */
/* MEGA MENU CENTER SCREEN - TEKNIK BARU YANG BENAR */
/* =================================================== */
@media (min-width: 992px) {
	/* HAPUS SEMUA POSITIONING YANG LAMA */
	.nav-item.mega-menu-parent {
		position: static !important; /* Gunakan static agar referensi ke viewport */
	}

	/* OVERRIDE BOOTSTRAP COMPLETELY */
	.mega-menu.dropdown-menu {
		/* OVERRIDE BOOTSTRAP DEFAULT */
		position: fixed !important; /* Gunakan fixed bukan absolute */
		top: auto !important;
		bottom: auto !important;
		left: 50% !important;
		right: auto !important;
		transform: translateX(-50%) !important;

		/* Calculate vertical position */
		margin-top: 60px !important; /* Adjust sesuai tinggi navbar */

		/* Dimensions */
		width: 90vw !important;
		max-width: 1200px !important;
		min-width: 800px !important;

		/* Reset Bootstrap animation */
		animation: none !important;
		transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;

		/* Styling */
		padding: 30px !important;
		background: white !important;
		box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15) !important;
		border: 1px solid rgba(16, 185, 129, 0.2) !important;
		border-top: 3px solid var(--bs-primary) !important;
		border-radius: 15px !important;

		/* Animation states */
		opacity: 0 !important;
		visibility: hidden !important;
		pointer-events: none !important;
		display: block !important;
	}

	/* SHOW STATE */
	.nav-item.mega-menu-parent:hover .mega-menu,
	.nav-item.mega-menu-parent.show .mega-menu {
		opacity: 1 !important;
		visibility: visible !important;
		pointer-events: auto !important;
		transform: translateX(-50%) translateY(0) !important;
	}

	/* Container fix */
	.mega-menu .container {
		padding: 0 !important;
		max-width: 100% !important;
	}

	/* Grid layout */
	.mega-grid {
		display: grid !important;
		grid-template-columns: repeat(4, 1fr) !important;
		gap: 30px !important;
		padding: 10px 0 !important;
	}

	/* Navbar content adjustment */
	.navbar-main {
		padding: 10px 0 !important;
		transition: padding 0.3s ease;
	}

	.fixed-top.scrolled .navbar-main {
		padding: 0 !important;
	}

	/* Nav links adjustment */
	.nav-link {
		padding: 25px 20px !important;
		color: white !important; /* Warna putih saat transparan */
		transition: all 0.3s ease;
	}

	/* Warna nav link saat scrolled */
	.fixed-top.scrolled .nav-link {
		color: var(--bs-dark) !important;
	}

	.fixed-top.scrolled .nav-link:hover,
	.fixed-top.scrolled .nav-link.active {
		color: var(--bs-primary) !important;
	}

	/* Search icon color saat transparan */
	.fixed-top:not(.scrolled) .search-btn {
		background: rgba(255, 255, 255, 0.2);
		border-color: rgba(255, 255, 255, 0.3);
		color: white !important;
	}

	.fixed-top:not(.scrolled) .search-btn:hover {
		background: rgba(255, 255, 255, 0.3);
		border-color: white;
	}

	/* Social icons color saat transparan */
	.fixed-top:not(.scrolled) .social-btn {
		background: rgba(255, 255, 255, 0.2);
		border-color: rgba(255, 255, 255, 0.3);
		color: white !important;
	}

	.fixed-top:not(.scrolled) .social-btn:hover {
		background: rgba(255, 255, 255, 0.3);
		border-color: white;
	}

	/* Dropdown menu styling saat transparan */
	.fixed-top:not(.scrolled) .dropdown-menu {
		background: rgba(255, 255, 255, 0.95);
		backdrop-filter: blur(10px);
		-webkit-backdrop-filter: blur(10px);
	}
}

/* Responsive adjustments */
@media (min-width: 1200px) {
	.mega-menu.dropdown-menu {
		width: 85vw !important;
		max-width: 1400px !important;
	}
}

@media (min-width: 1400px) {
	.mega-menu.dropdown-menu {
		width: 80vw !important;
		max-width: 1600px !important;
	}
}
/* Grid untuk mega menu */
.mega-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
	padding: 20px 0;
}

.mega-column {
	padding-right: 20px;
}

.mega-column:not(:last-child) {
	border-right: 1px solid rgba(16, 185, 129, 0.1);
}

.mega-title {
	color: var(--bs-dark);
	font-weight: 700;
	font-size: 1.1rem;
	margin-bottom: 20px;
	padding-bottom: 10px;
	position: relative;
	display: flex;
	align-items: center;
	gap: 10px;
}

.mega-title::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 40px;
	height: 2px;
	background: var(--bs-primary);
}

.mega-title i {
	color: var(--bs-primary);
	font-size: 1.2rem;
}

.mega-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.mega-list li {
	margin-bottom: 12px;
}

.mega-list a {
	color: var(--bs-body-color);
	text-decoration: none;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 8px 0;
	border-radius: 6px;
	padding-left: 10px;
}

.mega-list a:hover {
	color: var(--bs-primary);
	background: rgba(16, 185, 129, 0.05);
	padding-left: 15px;
	transform: translateX(5px);
}

.mega-list a i {
	color: var(--bs-primary);
	font-size: 0.9rem;
	transition: transform 0.3s ease;
}

.mega-list a:hover i {
	transform: scale(1.2);
}

/* Search Box Modern */
.search-container {
	margin-left: 20px;
	position: relative;
}

.search-btn {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: white;
	border: 2px solid rgba(16, 185, 129, 0.1);
	color: var(--bs-primary);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	cursor: pointer;
}

.search-btn::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--bs-primary), #0a4730);
	transform: scale(0);
	transition: transform 0.3s ease;
	border-radius: 50%;
	z-index: 0;
}

.search-btn i {
	position: relative;
	z-index: 1;
	transition: all 0.3s ease;
	font-size: 1rem;
}

.search-btn:hover {
	border-color: var(--bs-primary);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
}

.search-btn:hover::before {
	transform: scale(1);
}

.search-btn:hover i {
	color: white !important;
	transform: scale(1.05);
}

.search-input {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 0 20px 0 45px;
	border: 2px solid rgba(16, 185, 129, 0.1);
	border-radius: 30px;
	background: white;
	font-size: 0.95rem;
	color: #333;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	z-index: 2;
	outline: none;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.search-btn:focus-within {
	width: 280px;
	border-radius: 30px;
	border-color: var(--bs-primary);
}

.search-btn:focus-within .search-input {
	opacity: 1;
	visibility: visible;
}

.search-btn:focus-within i {
	left: 15px;
	position: absolute;
	transform: translateY(-50%);
	top: 50%;
	z-index: 3;
	color: var(--bs-primary);
}

.search-btn:focus-within i {
	color: var(--bs-primary) !important;
}

.search-input:focus {
	border-color: var(--bs-primary);
	box-shadow: 0 2px 12px rgba(16, 185, 129, 0.1);
}

.search-input::placeholder {
	color: rgba(0, 0, 0, 0.4);
	font-weight: 400;
}

.img-navbar {
	max-height: 60px;
}

/* Social Icons Modern */
.social-container {
	display: flex;
	gap: 10px;
	margin-left: 20px;
}

.social-btn {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: white;
	border: 2px solid rgba(16, 185, 129, 0.1);
	color: var(--bs-primary);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.social-btn::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--bs-primary), #0a4730);
	transform: scale(0);
	transition: transform 0.3s ease;
	border-radius: 50%;
}

.social-btn i {
	position: relative;
	z-index: 1;
	transition: all 0.3s ease;
}

.social-btn:hover {
	border-color: var(--bs-primary);
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(16, 185, 129, 0.2);
}

.social-btn:hover::before {
	transform: scale(1);
}

.social-btn:hover i {
	color: white !important;
	transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 1199px) and (min-width: 992px) {
	.navbar-nav {
		gap: 2px;
	}

	.nav-link {
		padding: 25px 12px !important;
		font-size: 1rem;
	}

	.search-box {
		width: 200px;
	}

	.mega-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 30px;
	}
}

@media (max-width: 1399px) and (min-width: 1200px) {
	.navbar-nav {
		gap: 3px;
	}

	.nav-link {
		padding: 25px 15px !important;
	}

	.search-box {
		width: 250px;
	}
}

/* Mobile styles */
@media (max-width: 991.98px) {
	 .navbar-collapse {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        height: 100vh;
        background: white;
        padding: 80px 20px 20px 20px;
        overflow-y: auto;
        transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 10px 0 40px rgba(0, 0, 0, 0.1);
        z-index: 1050;
        display: block !important; /* Override Bootstrap */
    }
    
    .navbar-collapse.show {
        left: 0;
    }
    
    /* Overlay background */
    .navbar-collapse.show::before {
        content: '';
        position: fixed;
        top: 0;
        right: 0;
        width: 15%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }
    
    /* Close button styling */
    .close-menu {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        background: var(--bs-primary);
        color: white;
        border: none;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        cursor: pointer;
        z-index: 1060;
        transition: all 0.3s ease;
    }
    
    .close-menu:hover {
        background: var(--bs-dark);
        transform: rotate(90deg);
    }

	.navbar-nav {
		margin: 0;
		padding: 0;
	}

	.nav-item {
		margin: 0 !important;
		border-bottom: 1px solid rgba(16, 185, 129, 0.1);
	}

	.nav-link {
		padding: 18px 0 !important;
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 100%;
		text-align: left;
	}

	/* Mobile dropdown arrow */
	.nav-link.dropdown-toggle::after {
		transition: transform 0.3s ease;
		float: right;
	}

	.nav-link.dropdown-toggle[aria-expanded="true"]::after {
		transform: rotate(180deg);
	}

	/* Mobile dropdown menu */
	.dropdown-menu {
		position: static !important;
		float: none !important;
		width: 100% !important;
		margin: 0 !important;
		padding: 0 !important;
		border: none !important;
		box-shadow: none !important;
		background: rgba(16, 185, 129, 0.05) !important;
		display: none;
		transition: all 0.4s ease;
	}

	.dropdown-menu.show {
		display: block !important;
		padding: 10px 0 !important;
	}

	.dropdown-item {
		padding: 12px 0 12px 25px !important;
		border-bottom: 1px solid rgba(16, 185, 129, 0.05);
	}

	/* Mobile mega menu */
	.mega-menu {
		padding: 15px !important;
		background: rgba(16, 185, 129, 0.03) !important;
	}

	.mega-grid {
		grid-template-columns: 1fr !important;
		gap: 20px !important;
	}

	.mega-column {
		border-right: none !important;
		border-bottom: 1px solid rgba(16, 185, 129, 0.1);
		padding-bottom: 20px;
		margin-bottom: 20px;
	}

	.mega-column:last-child {
		border-bottom: none;
		margin-bottom: 0;
		padding-bottom: 0;
	}

	.mega-title {
		margin-bottom: 15px;
		font-size: 1rem;
		padding-left: 10px;
	}

	.mega-list {
		padding-left: 10px;
	}

	/* Mobile search and social */
	.search-container,
	.social-container {
		width: 100%;
		margin: 20px 0;
	}

	.search-box {
		width: 100%;
	}

	.social-container {
		justify-content: center;
	}

	/* Hide mega menu animation on mobile */
	.mega-menu {
		opacity: 1 !important;
		visibility: visible !important;
		transform: none !important;
	}

	.fixed-top {
		background: linear-gradient(
			135deg,
			rgba(255, 255, 255, 0.95) 0%,
			rgba(255, 255, 255, 0.98) 100%
		) !important;
		backdrop-filter: blur(15px) !important;
		-webkit-backdrop-filter: blur(15px) !important;
	}

	.header-carousel {
		margin-top: 107px;
	}

	.nav-link {
		color: var(--bs-dark) !important;
	}
}

/* Navbar Toggler */
.navbar-toggler {
    border: none;
    background: transparent;
    padding: 10px;
    position: relative;
    z-index: 1060;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

/* Three lines hamburger */
.navbar-toggler-icon {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--bs-primary);
    position: relative;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--bs-primary);
    left: 0;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    bottom: -8px;
}

/* Active state (X icon) */
.navbar-toggler.active .navbar-toggler-icon {
    background: transparent;
}

.navbar-toggler.active .navbar-toggler-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.navbar-toggler.active .navbar-toggler-icon::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* Animation for navbar items */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.nav-item {
	animation: fadeInUp 0.5s ease forwards;
	opacity: 0;
}

.nav-item:nth-child(1) {
	animation-delay: 0.1s;
}
.nav-item:nth-child(2) {
	animation-delay: 0.2s;
}
.nav-item:nth-child(3) {
	animation-delay: 0.3s;
}
.nav-item:nth-child(4) {
	animation-delay: 0.4s;
}
.nav-item:nth-child(5) {
	animation-delay: 0.5s;
}

/* Dropdown arrow fix */
.dropdown-toggle::after {
	margin-left: 8px;
	vertical-align: middle;
	border: none;
	content: "\f107";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
}

/*** Navbar End ***/

/*** Carousel Header Start ***/
.hero-section {
    position: relative;
    z-index: 1;
}

.header-carousel .header-carousel-item {
    height: 100vh;
    min-height: 700px;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.header-carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.owl-prev,
.owl-next {
	position: absolute;
	width: 60px;
	height: 60px;
	top: 50%;
	transform: translateY(-50%);
	padding: 20px 20px;
	border-radius: 40px;
	background: var(--bs-primary);
	color: var(--bs-white);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.5s;
}

.owl-prev {
	left: 30px;
}

.owl-next {
	right: 30px;
}

.owl-prev:hover,
.owl-next:hover {
	background: var(--bs-dark) !important;
	color: var(--bs-white) !important;
}

.header-carousel .header-carousel-item-img-1,
.header-carousel .header-carousel-item-img-2,
.header-carousel .header-carousel-item-img-3 {
	position: relative;
	overflow: hidden;
}

.header-carousel .header-carousel-item-img-1::before,
.header-carousel .header-carousel-item-img-2::before,
.header-carousel .header-carousel-item-img-3::before {
	 content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    top: -300px;
    right: -300px;
    border-radius: 300px;
    border: 100px solid rgba(16, 185, 129, 0.1); /* Sesuai warna primary */
    animation: RotateMoveCircle 10s linear infinite;
    background: transparent;
    z-index: 3 !important;
}

@keyframes RotateMoveCircle {
	0% {
		top: -400px;
	}
	50% {
		right: -200px;
	}
	75% {
		top: -200px;
	}
	100% {
		top: -400px;
	}
}

.header-carousel .header-carousel-item-img-1::after,
.header-carousel .header-carousel-item-img-2::after,
.header-carousel .header-carousel-item-img-3::after {
	  content: "";
    position: absolute;
    width: 150px;
    height: 1200px;
    top: -150px;
    left: 70px;
    transform: rotate(-30deg);
    background: rgba(16, 185, 129, 0.1);
    animation: RotateMoveRight 5s linear infinite;
    z-index: 3 !important;
}

@keyframes RotateMoveRight {
	0% {
		left: 0px;
	}
	50% {
		left: 70px;
	}
	100% {
		left: 0px;
	}
}

.header-carousel .header-carousel-item::before {
	content: "";
	position: absolute;
	width: 300px;
	height: 1200px;
	top: -150px;
	left: -265px;
	transform: rotate(-30deg);
	background: var(--bs-dark);
	animation: RotateMoveLeft 5s linear infinite;
	opacity: 0.7;
	z-index: 2 !important;
}

@keyframes RotateMoveLeft {
	0% {
		left: -240px;
	}
	50% {
		left: -300px;
	}
	100% {
		left: -240px;
	}
}

.header-carousel .header-carousel-item::after {
	 content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
    z-index: 2;
}

.header-carousel .header-carousel-item .carousel-caption {
	 position: absolute;
    width: 80%;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 9;
    padding-top: 120px; 
}

@media (max-width: 992px) {
	.header-carousel .header-carousel-item .carousel-caption {
		width: 100% !important;
		margin-left: 0 !important;
		padding: 0 10px;
	}
	.header-carousel-item img {
		height: 700px;
		object-fit: cover;
	}

	.owl-prev,
	.owl-next {
		top: 40px !important;
	}

	.owl-prev {
		left: 65%;
	}

    .header-carousel-item {
        height: 90vh;
        min-height: 600px;
    }
}

@media (max-width: 991.98px) {
    .hero-section {
        margin-top: 0;
    }
    
    .header-carousel-item {
        height: 80vh;
        min-height: 500px;
    }
    
    .header-carousel .header-carousel-item .carousel-caption {
        width: 100% !important;
        padding: 0 15px;
        padding-top: 100px;
    }
    
    .carousel-caption-inner h1 {
        font-size: 3rem !important;
    }
}

@media (max-width: 767.98px) {
    .header-carousel-item {
        height: 70vh;
        min-height: 400px;
    }
    
    .carousel-caption-inner h1 {
        font-size: 2.5rem !important;
    }
    
    .carousel-caption-inner p {
        font-size: 1rem !important;
    }
}

/*** Header Carousel End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
	position: relative;
	overflow: hidden;
	background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
		url(../img/carousel-1.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 60px 0 60px 0;
}

.bg-breadcrumb .breadcrumb-item a {
	color: var(--bs-white) !important;
}

.bg-breadcrumb .bg-breadcrumb-single {
	position: absolute;
	width: 500px;
	height: 1200px;
	top: 0px;
	left: 0;
	margin-left: 30px;
	transform: rotate(-30deg);
	background: var(--bs-dark);
	animation: RotateMoveLeft 5s linear infinite;
	opacity: 0.7;
	z-index: 2 !important;
}

.bg-breadcrumb::before {
	content: "";
	position: absolute;
	width: 400px;
	height: 400px;
	top: -150px;
	right: -150px;
	border-radius: 200px;
	border: 80px solid rgba(68, 210, 246, 0.2);
	animation: RotateMoveCircle 10s linear infinite;
	background: transparent;
	z-index: 2 !important;
}

@keyframes RotateMoveCircle {
	0% {
		top: -200px;
	}
	50% {
		right: -100px;
	}
	75% {
		top: -100px;
	}
	100% {
		top: -200px;
	}
}

.bg-breadcrumb::after {
	content: "";
	position: absolute;
	width: 150px;
	height: 1200px;
	top: -150px;
	left: 0;
	margin-left: 160px;
	transform: rotate(-30deg);
	background: rgba(68, 210, 246, 0.2);
	animation: RotateMoveRight 5s linear infinite;
	z-index: 2 !important;
}
/*** Single Page Hero Header End ***/

/*** About Start ***/
.about .text {
	position: relative;
}

.about .text::after {
	content: "";
	width: 4px;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: var(--bs-primary);
}
/*** About End ***/

/*** Service Start ***/
.service .service-item {
	box-shadow: 0 0 45px rgba(0, 0, 0, 0.3);
}

.service .service-item .service-img {
	position: relative;
	overflow: hidden;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}

.service .service-item .service-img img {
	transition: 0.5s;
}

.service .service-item:hover .service-img img {
	transform: scale(1.2);
}

.service .service-item .service-img::after {
	content: "";
	width: 0;
	height: 0;
	position: absolute;
	top: 0;
	right: 0;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	background: var(--bs-effect);
	transition: 0.5s;
}

.service .service-item:hover .service-img::after {
	width: 100% !important;
	height: 100% !important;
}

.service .service-item .service-content {
	position: relative;
}

.service .service-item .service-content::after {
	content: "";
	width: 0;
	height: 0;
	position: absolute;
	bottom: 0;
	left: 0;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	background: var(--bs-dark);
	transition: 0.5s;
	z-index: 1;
}

.service .service-item:hover .service-content::after {
	width: 100% !important;
	height: 100% !important;
}

.service .service-item .service-content .service-content-inner {
	transition: 0.5s;
}

.service .service-item:hover .service-content .service-content-inner {
	position: relative;
	color: var(--bs-white) !important;
	transition: 0.5s;
	z-index: 2;
}

.service .service-item:hover .service-content .service-content-inner a.h4 {
	color: var(--bs-white) !important;
	transition: 0.5s;
}

.service
	.service-item:hover
	.service-content
	.service-content-inner
	a.h4:hover {
	color: var(--bs-primary) !important;
}
/*** Service End ***/

/*** Project Start ***/
.project .project-carousel.owl-carousel {
	height: 100%;
}

.project .project-carousel .project-item {
	position: relative;
	overflow: hidden;
}

.project .project-carousel .project-item .project-img {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
}

.project .project-carousel .project-item .project-img::after {
	content: "";
	width: 100%;
	height: 0;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 10px;
	background: var(--bs-effect);
	transition: 0.5s;
}

.project .project-carousel .project-item:hover .project-img::after {
	height: 100%;
}

.project .project-carousel .project-item .project-img img {
	transition: 0.5s;
}

.project .project-carousel .project-item:hover .project-img img {
	transform: scale(1.2);
}

.project .project-carousel .project-item .project-content {
	position: relative;
	width: 75%;
	height: 100%;
	bottom: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
}

.project .project-carousel .project-item .project-content::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 0;
	bottom: 0;
	left: 0;
	border-radius: 10px !important;
	background: var(--bs-dark);
	transition: 0.5s;
}

.project
	.project-carousel
	.project-item
	.project-content
	.project-content-inner {
	position: relative;
	z-index: 2;
}

.project
	.project-carousel
	.project-item:hover
	.project-content
	.project-content-inner
	p,
.project
	.project-carousel
	.project-item:hover
	.project-content
	.project-content-inner
	a.h4,
.project
	.project-carousel
	.project-item:hover
	.project-content
	.project-content-inner
	.project-icon
	i {
	color: var(--bs-white) !important;
	transition: 0.5s;
}

.project
	.project-carousel
	.project-item:hover
	.project-content
	.project-content-inner
	a.h4:hover {
	color: var(--bs-primary) !important;
}

.project .project-carousel .project-item:hover .project-content::after {
	height: 100%;
}

.project-carousel .owl-dots {
	position: absolute;
	width: 100%;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: -120px;
	transition: 0.5s;
}

.project-carousel .owl-dots .owl-dot {
	width: 20px;
	height: 20px;
	border-radius: 20px;
	margin-right: 15px;
	background: var(--bs-dark);
	transition: 0.5s;
}

.project-carousel .owl-dots .owl-dot.active {
	width: 30px;
	height: 30px;
	border-radius: 40px;
	border: 8px solid var(--bs-primary);
}
/*** Project End ***/

/*** Footer Start ***/
.footer {
	background: var(--bs-dark);
}
.footer .footer-item a {
	line-height: 35px;
	color: var(--bs-body);
	transition: 0.5s;
}

.footer .footer-item p {
	line-height: 35px;
}

.footer .footer-item a:hover {
	letter-spacing: 1px;
	color: var(--bs-primary);
}

.footer .footer-item-post a {
	transition: 0.5s;
}

.footer .footer-item-post a:hover {
	color: var(--bs-primary) !important;
}

.footer .footer-item-post .footer-btn a {
	transition: 0.5s;
}

.footer .footer-item-post .footer-btn a:hover {
	color: var(--bs-dark);
}
/* Fix alignment for footer links with icons */
.footer-links {
	display: flex;
	flex-direction: column;
}

.footer-link {
	display: flex;
	align-items: center;
	text-decoration: none;
	transition: all 0.3s ease;
	line-height: 1.5;
	padding: 5px 0;
}

.footer-link i {
	width: 20px;
	text-align: center;
	font-size: 0.9rem;
}

.footer-link:hover {
	color: var(--bs-primary) !important;
	padding-left: 5px;
}

/* Alternative: Use grid for better alignment */
.footer-service-links a {
	display: grid;
	grid-template-columns: 20px auto;
	gap: 8px;
	align-items: center;
	text-decoration: none;
	padding: 4px 0;
}

.footer-service-links i {
	text-align: center;
	font-size: 0.9rem;
}
/*** Footer End ***/

/*** copyright Start ***/
.copyright {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	background: var(--bs-dark) !important;
}
/*** copyright end ***/

/* Mobile top bar dengan layout berbeda */
.top-bar-content-mobile {
    display: flex;
    flex-direction: column;
}

.mobile-top-bar-left,
.mobile-top-bar-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-top-bar-item {
    display: flex;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
}

.mobile-top-bar-item:last-child {
    border-bottom: none;
}

.mobile-top-bar-item i {
    width: 20px;
    font-size: 1rem;
}
