@import url("https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");

:root {
	/* color */
	--mainColor: #eaeaea;
	--secodColor: #e3ba59;
	--colorBlueDark: #213d75;
	/* font */
	--mainFont: "Work Sans", sans-serif;
}

html {
	scroll-padding-top: 5rem;
}

* {
	margin: 0;
	padding: 0;
	font-family: var(--mainFont);
}

/* hamburger Menu */
.navbar-toggler {
	border: 0;
}

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon {
	border: 0;
	box-shadow: none;
	outline: none;
}
.toggler-icon {
	width: 30px;
	height: 3px;
	background-color: var(--secodColor);
	border-radius: 12px;
	display: block;
	transition: all 1s ease-in-out;
}
.mid-bar {
	margin: 5px auto;
	background-color: var(--colorBlueDark);
}
.navbar-toggler .top-bar {
	transform: rotate(45deg);
	transform-origin: 10% 10%;
}
.navbar-toggler .mid-bar {
	opacity: 0;
	filter: alpha(opacity=0);
}
.navbar-toggler .bottom-bar {
	transform: rotate(-45deg);
	transform-origin: 10% 10%;
}
.navbar-toggler.collapsed .top-bar {
	transform: rotate(0);
}
.navbar-toggler.collapsed .mid-bar {
	opacity: 1;
	filter: alpha(opacity=100);
}
.navbar-toggler.collapsed .bottom-bar {
	transform: rotate(0);
}

/* menu */
nav,
nav * {
	font-size: 14px;
}

.navbar-nav {
	padding-left: 80px;
}

.navbar-nav .nav-item {
	margin-right: 50px;
}

.navbar-nav .nav-link {
	font-family: var(--mainFont);
	position: relative;
	color: #000;
}

.navbar-nav .nav-link::after {
	content: "";
	display: block;
	width: 0;
	height: 2px;
	background-color: var(--secodColor);
	position: absolute;
	bottom: -5px;
	left: 0;
	transition: width 0.3s;
}

.navbar-nav .nav-link:hover::after {
	width: 100%;
}

.navbar-nav .nav-link:hover {
	color: var(--secodColor);
}

.navbar-nav .nav-link.actived::after {
	content: "";
	display: block;
	width: 100%;
	height: 2px;
	background-color: var(--secodColor);
	position: absolute;
	bottom: -5px;
	left: 0;
}

/* dropdown-menu */
.nav-item.dropdown .dropdown-menu,
.dropdown-submenu .dropdown-menu {
	display: none;
	position: absolute;
	background-color: white;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
	z-index: 1000;
}

.nav-item.dropdown:hover > .dropdown-menu {
	display: block;
}

.dropdown-submenu {
	position: relative;
}

.dropdown-submenu:hover > .dropdown-menu {
	display: block;
}

/* Atur posisi submenu */
.dropdown-submenu .dropdown-menu {
	top: 0;
	left: 100%;
	margin-top: -1px;
}

/* Style item dropdown */
.dropdown-menu .dropdown-item {
	padding: 10px 20px;
	color: #000;
	text-decoration: none;
	display: block;
}

.dropdown-menu .dropdown-item:hover {
	background-color: var(--secodColor);
	color: white;
}

.dropdown-toggle {
	text-decoration: none;
	color: #000 !important;
}

/* top header */
.top-header {
	background-color: var(--colorBlueDark);
	padding: 10px 0;
	position: relative;
}

.top-header a {
	text-decoration: none;
	color: #ffffff;
	font-family: var(--mainFont);
	display: inline-block;
	padding: 0 15px;
}

.top-header p {
	font-size: 14px;
}

.top-header .search-box {
	display: none;
	position: absolute;
	top: 100%;
	right: 0;
	left: 0;
	width: 100%;
	background-color: var(--colorBlueDark);
	border: 0;
	padding: 10px;
	z-index: 9999;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.top-header .search-box form {
	display: flex;
}

.top-header .search-box input[type="search"] {
	flex: 1;
	padding: 5px;
	border: none;
	outline: none;
	border-radius: 10px;
}

.top-header .search-box input::placeholder {
	color: #000000;
}

.top-header .search-box .btn-search {
	background: none;
	border: none;
	color: #ffffff;
	cursor: pointer;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* hero section */
#hero {
	background-image: url("../../assets/img/bg-hero.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	height: 100vh;
	position: relative;
}

#hero h1 {
	color: #ffffff;
	font-size: 64px;
}

#hero h2 {
	color: #ffffff;
	font-size: 34px;
}

#hero p {
	color: #ffffff;
	font-size: 18px;
}

#hero .judul {
	position: absolute;
	top: 50%;
	left: 30%;
	transform: translate(-50%, -50%);
	width: 35%;
}

/* form-box */
#form-daftar {
	justify-content: flex-end;
	display: flex;
	text-align: baseline;
	margin: 80px 0;
}

#form-daftar .cards {
	width: 45%;
	border-radius: 20px;
	flex-direction: column;
	padding: 20px;
	font-size: 11px;
	z-index: 999;
}

#form-daftar .cards h4 {
	color: var(--colorBlueDark);
	font-family: var(--mainFont);
	font-size: 14px;
	font-style: normal;
	font-weight: 600;
	line-height: 120%;
	margin-bottom: 15px;
}

#form-daftar .cards form label {
	display: block;
	font-weight: 500;
	margin: 1px 1px;
}

.focus-form-input {
	outline: none;
	border: 0;
	background-color: #ebebeb;
	border-radius: 15px;
	padding: 6px;
	display: flex;
	width: 100%;
}

.active-form-input {
	outline: none;
	border: 1px solid var(--secodColor);
	background-color: #ffff;
	border-radius: 15px;
	display: flex;
	width: 100%;
}

.selected-option {
	border: 1px solid var(--secodColor);
	background-color: #ffff;
	border-radius: 15px;
	padding: 14px;
	display: flex;
	width: 100%;
}

.send-btn {
	outline: none;
	border: 1px solid var(--secodColor);
	border-radius: 15px;
	padding: 10px;
	display: flex;
	width: 100%;
	justify-content: center;
	background-color: #ffff;
	color: var(--colorBlueDark);
	text-transform: uppercase;
	font-weight: 700;
	margin-bottom: 15px;
	transition: 0.6s;
}

.send-btn:hover {
	background-color: var(--colorBlueDark);
	color: #ffffff;
	border: 1px solid #ffffff;
}

.loading-btn {
	outline: none;
	text-decoration: none;
	border: 1px solid var(--secodColor);
	border-radius: 15px;
	padding: 10px;
	display: flex;
	width: 100%;
	justify-content: center;
	background-color: var(--colorBlueDark);
	color: #ffffff;
	text-transform: uppercase;
	font-weight: 700;
	margin-bottom: 15px;
}

/* awards section */
#awards {
	background-color: var(--colorBlueDark) !important;
	padding: 20px 0;
}

#awards .col-lg-3 {
	border-right: 1px solid #ccc;
	padding-right: 18px;
	display: flex;
	align-items: center;
	min-height: 140px;
}

#awards .col-lg-3:last-child {
	border-right: none;
}

#awards .row > .col-lg-3 {
	margin-bottom: 0;
}

#awards .award-content {
	display: flex;
	align-items: center;
	width: 100%;
}

#awards .award-img {
	width: 46px;
	height: 46px;
	object-fit: contain;
	margin-right: 16px;
	display: block;
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.13));
}

#awards .award-text h4 {
	color: var(--secodColor) !important;
	font-size: 1.05rem;
	margin: 0 0 4px 0;
	font-weight: 600;
}

#awards .award-text p {
	color: #fff;
	font-size: 0.93rem;
	margin: 0;
	line-height: 1.7;
}

@media (max-width: 991px) {
	#awards .col-lg-3 {
		border-right: none;
		border-bottom: 1px solid #ccc;
		margin-bottom: 16px;
		padding-right: 0;
		min-height: 110px;
	}
	#awards .col-lg-3:last-child {
		border-bottom: none;
	}
}

@media (max-width: 575px) {
	#awards .award-content {
		flex-direction: column;
		align-items: flex-start;
	}
	#awards .award-img {
		margin: 0 0 8px 0;
	}
}

/* information */
#information {
	padding: 70px 0;
	background: linear-gradient(
		to bottom right,
		#f8f9fa,
		#e9ecef
	); /* abu muda keabu-an */
}

.info-box {
	background: #ffffff;
	border-radius: 15px;
	padding: 25px 15px;
	margin-bottom: 30px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
	border: 2px solid #007bff20;
	transition: all 0.4s ease-in-out;
	height: 100%;
	position: relative;
}

.info-box:hover {
	transform: translateY(-7px) scale(1.02);
	box-shadow: 0 10px 25px rgba(0, 123, 255, 0.25);
	border-color: #007bff;
}

.info-box img {
	width: 100px;
	height: 100px;
	object-fit: contain;
	margin-bottom: 20px;
	transition: transform 0.4s ease-in-out;
}

.info-box:hover img {
	transform: scale(1.1);
}

.info-box h5 {
	font-weight: 700;
	font-size: 20px;
	color: #0d6efd;
	margin-bottom: 5px;
}

.info-box small {
	color: #6c757d;
	font-size: 14px;
}

.info-box ul {
	padding-left: 0;
	list-style: none;
	margin-top: 10px;
}

.info-box ul li {
	font-size: 14px;
	line-height: 1.4;
	color: #343a40;
}

/* testimoni */
#testimoni {
	background-color: var(--colorBlueDark);
	padding-top: 10px;
	padding-bottom: 70px;
}

.card-title {
	font-weight: bold;
	margin-top: 15px;
}

.card-img-top {
	border: 5px solid #f8f9fa;
	padding: 5px;
	background-color: #fff;
}

.owl-carousel .item {
	color: #000000;
}

.owl-carousel .item small {
	color: var(--colorBlueDark);
}

.owl-nav button {
	color: #fff;
	background-color: #007bff;
	border-radius: 50%;
	padding: 10px;
	border: none;
}

.owl-nav button.owl-prev,
.owl-nav button.owl-next {
	position: absolute;
	top: 40%;
	transform: translateY(-50%);
}

.owl-nav button.owl-prev {
	left: -30px;
	display: none !important;
}

.owl-nav button.owl-next {
	right: -30px;
	display: none !important;
}

/* question */
#question {
	background-image: url("../../assets/img/ornament-1.png"),
		url("../../assets/img/ornament-2.png");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: bottom right;
	margin-top: 70px !important;
	min-height: auto;
}

.accordion {
	background-color: #eee;
	color: var(--colorBlueDark);
	cursor: pointer;
	padding: 18px;
	width: 100%;
	border: none;
	text-align: left;
	outline: none;
	font-size: 15px;
	transition: 0.4s;
	position: relative;
	border-radius: 50px;
}

.accordion::after {
	content: "\002B"; /* Unicode karakter '+' */
	font-size: 13px;
	color: #ffffff;
	background-color: #bbbbbb;
	float: right;
	margin-left: 5px;
	border-radius: 50px;
	padding: 0 5px;
}

.accordion.active::after {
	content: "\2212"; /* Unicode karakter '-' */
}

.active,
.accordion:hover {
	background-color: var(--colorBlueDark);
	color: #ffffff;
	border-radius: 15px 15px 0 0;
}

.panel {
	padding: 0px 5px;
	display: none;
	background-color: #ffffff;
	overflow: hidden;
}

.card-footer {
	background-color: var(--colorBlueDark);
	padding: 3px;
	width: 100%;
}

/* media query phone */
@media (max-width: 455px) {
}

/* media query mobile */
@media (max-width: 576px) {
	#hero h1 {
		font-size: 44px;
	}

	#hero h2 {
		font-size: 24px;
	}

	#hero .judul {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 100%;
		text-align: left;
		padding: 0 10px;
	}
}

/* media query tablet */
@media (max-width: 768px) {
	.top-header .col-md-6 {
		justify-content: center;
		text-align: center;
	}

	.top-header .col-md-6 a {
		display: block;
		margin-bottom: 5px;
	}

	.top-header a {
		padding: 0px;
	}

	#form-daftar .cards {
		width: auto;
	}
}

/* media query tablet */
@media (max-width: 1199px) {
	.navbar-nav {
		padding-left: 0;
	}

	#form-daftar {
		justify-content: center;
		position: relative;
		margin: 0 auto;
	}

	#form-daftar .cards {
		width: auto;
		border-radius: 20px;
		flex-direction: column;
		padding: 26px;
		background-color: #ffffff;
	}
}

@media (min-width: 1200px) {
	#form-daftar {
		position: absolute;
		top: 25%;
		right: 10%;
	}

	#form-daftar .cards {
		width: 60%;
		border-radius: 20px;
		flex-direction: column;
		padding: 26px;
		background-color: #ffffff;
	}
}

/* media query desktop */
@media (max-width: 992px) {
	#hero .judul {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 100%;
		text-align: left;
		padding: 0 10px;
	}
	#awards .col-lg-4 {
		border-right: none;
		border-bottom: 1px solid #ccc;
		padding-right: 15px;
		padding-bottom: 15px;
		margin-bottom: 15px;
	}
	#awards .col-lg-4:last-child {
		border-bottom: none;
		margin-bottom: 0;
	}
}

/* media query large desktop */
@media (max-width: 1200px) {
}

