/*
Proniaga - Halo Style
Blue theme based on halojeindonesia.com layout
*/

/* General */
html * {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
	background: #f8f8f8;
	font-size: 14px;
	font-family: 'Poppins', sans-serif;
	color: #555;
	margin: 0;
	padding: 0;
}

h1, h2, h3, h4, h5, h6 {
	color: #333;
	font-family: 'Poppins', sans-serif;
}

h1, h2 {
	font-weight: 700;
}

a {
	color: #0F66DD;
	text-decoration: none;
	transition: all 0.2s ease-in-out;
	outline: none;
}

a:hover, a:focus, a:visited {
	color: #0a4db0;
	text-decoration: none;
	outline: none;
}

ul, ol {
	list-style: none;
	margin: 0;
	padding: 0;
}

/* Header */
#header {
	background-color: #1a2332;
	position: relative;
	z-index: 100;
}

#header .container {
	max-width: 1200px;
}

.header-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 0;
}

#logo img {
	height: 60px;
}

.header-extras {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
}

.header-extras li {
	display: flex;
	align-items: center;
	margin-left: 20px;
}

.header-extras li i {
	font-size: 18px;
	color: #0F66DD;
	margin-right: 10px;
}

.header-extras .he-text {
	font-size: 13px;
	color: rgba(255,255,255,0.6);
}

.header-extras .he-text span {
	display: block;
}

.header-extras .he-text a {
	color: #fff;
	font-weight: 500;
}

#header-wrap {
	background-color: #1a2332;
	border-top: 1px solid rgba(255,255,255,0.1);
}

.header-misc {
	display: flex;
	align-items: center;
}

.button {
	display: inline-block;
	cursor: pointer;
	padding: 8px 20px;
	border-radius: 50px;
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.2s ease-in-out;
	border: none;
	font-family: 'Poppins', sans-serif;
}

.button-white {
	background-color: #fff;
	color: #1a2332;
}

.button-white:hover {
	background-color: #f0f0f0;
	color: #1a2332;
}

.button-white.button-light {
	background-color: rgba(255,255,255,0.2);
	color: #fff;
	border: 1px solid rgba(255,255,255,0.3);
}

.button-white.button-light:hover {
	background-color: rgba(255,255,255,0.3);
	color: #fff;
}

.button-white.button-dark {
	background-color: #0F66DD;
	color: #fff;
}

.button-white.button-dark:hover {
	background-color: #0a4db0;
	color: #fff;
}

.button-small {
	padding: 6px 16px;
	font-size: 13px;
}

/* Primary Menu */
.primary-menu {
	position: relative;
	z-index: 100;
}

.primary-menu .menu-container {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
}

.primary-menu .menu-item {
	position: relative;
}

.primary-menu .menu-link {
	display: block;
	padding: 15px 18px;
	color: #fff;
	font-size: 14px;
	font-weight: 400;
	text-decoration: none;
	transition: all 0.2s ease-in-out;
}

.primary-menu .menu-link:hover {
	color: #0F66DD;
}

.primary-menu .menu-link div {
	display: flex;
	align-items: center;
}

.primary-menu .menu-link i {
	margin-right: 6px;
	font-size: 14px;
}

/* Sub Menu */
.primary-menu .sub-menu-container {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 220px;
	background: #fff;
	border-radius: 6px;
	box-shadow: 0 5px 25px rgba(0,0,0,0.15);
	padding: 10px 0;
	margin: 0;
	list-style: none;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all 0.2s ease-in-out;
}

.primary-menu .menu-item:hover > .sub-menu-container {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.primary-menu .sub-menu-container .menu-item {
	border-bottom: 1px solid #f0f0f0;
}

.primary-menu .sub-menu-container .menu-item:last-child {
	border-bottom: none;
}

.primary-menu .sub-menu-container .menu-link {
	padding: 10px 20px;
	color: #333;
	font-size: 13px;
}

.primary-menu .sub-menu-container .menu-link:hover {
	color: #0F66DD;
	background: #f8f9fa;
}

/* Mobile Menu Trigger */
#primary-menu-trigger {
	display: none;
	cursor: pointer;
	padding: 10px;
}

.svg-trigger {
	width: 20px;
	height: 14px;
}

.svg-trigger path {
	fill: #fff;
	stroke: #fff;
	stroke-width: 2;
}

/* Hero Section */
#homeLayout {
	position: relative;
}

#slider {
	position: relative;
	min-height: 500px;
}

.bg-color {
	background-color: #0F66DD;
}

.text-white {
	color: #fff !important;
}

.text-white-50 {
	color: rgba(255,255,255,0.7) !important;
}

.font-weight-semibold {
	font-weight: 600;
}

.font-weight-medium {
	font-weight: 500;
}

.topmargin {
	margin-top: 40px;
}

/* Form */
.form-widget {
	position: relative;
}

.form-group {
	margin-bottom: 15px;
}

.input-group-text {
	border: 1px solid #e0e0e0;
	border-right: none;
	background: transparent;
	color: #0F66DD;
	font-size: 16px;
}

.form-control {
	border: 1px solid #e0e0e0;
	padding: 10px 15px;
	font-size: 14px;
	font-family: 'Poppins', sans-serif;
	border-radius: 0 4px 4px 0;
	height: auto;
}

.form-control:focus {
	border-color: #0F66DD;
	box-shadow: none;
}

.bg-color {
	background-color: #0F66DD;
}

.btn.bg-color {
	background-color: #0F66DD;
	color: #fff;
	border: none;
	padding: 12px 20px;
	font-weight: 500;
	font-size: 14px;
	border-radius: 4px;
	transition: all 0.2s ease-in-out;
}

.btn.bg-color:hover {
	background-color: #0a4db0;
	color: #fff;
}

/* Content Section */
#content {
	position: relative;
	z-index: 1;
}

.content-wrap {
	padding: 60px 0;
}

.container {
	max-width: 1200px;
}

h3 {
	font-size: 18px;
	font-weight: 600;
	line-height: 1.5;
}

/* SVG Separator */
.svg-separator {
	position: relative;
	margin-top: -1px;
}

.svg-separator svg {
	display: block;
	width: 100%;
	height: auto;
}

.bg-white {
	background-color: #fff;
}

/* Section Dark */
.section.dark {
	color: #fff;
}

.section.dark h3 {
	color: #fff;
}

/* Footer */
#footer {
	position: relative;
	z-index: 1;
}

.footer-widgets-wrap {
	padding: 60px 0 30px 0;
}

.widget h4 {
	font-size: 16px;
	font-weight: 600;
	color: #333;
	margin-bottom: 20px;
}

.widget ul li {
	margin-bottom: 8px;
}

.widget ul li a {
	color: #777;
	font-size: 14px;
	text-decoration: none;
	transition: all 0.2s ease-in-out;
}

.widget ul li a:hover {
	color: #0F66DD;
}

#copyrights {
	padding: 20px 0;
	border-top: 1px solid #e0e0e0;
}

.text-black-50 {
	color: rgba(0,0,0,0.5) !important;
}

/* Back to Top */
#gotoTop {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 40px;
	height: 40px;
	background: #0F66DD;
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease-in-out;
	z-index: 999;
	font-size: 16px;
}

#gotoTop.visible {
	opacity: 1;
	visibility: visible;
}

#gotoTop:hover {
	background: #0a4db0;
}

/* Responsive */
@media (max-width: 991px) {
	#primary-menu-trigger {
		display: block;
		position: absolute;
		right: 15px;
		top: 15px;
		z-index: 1001;
	}

	.primary-menu .menu-container {
		position: fixed;
		top: 0;
		left: -280px;
		width: 280px;
		height: 100vh;
		background: #1a2332;
		flex-direction: column;
		align-items: flex-start;
		padding: 60px 0 20px 0;
		transition: left 0.3s ease-in-out;
		z-index: 1000;
		overflow-y: auto;
	}

	.primary-menu.active .menu-container {
		left: 0;
	}

	.primary-menu .menu-link {
		padding: 12px 20px;
		width: 100%;
		border-bottom: 1px solid rgba(255,255,255,0.1);
	}

	.primary-menu .sub-menu-container {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		border-radius: 0;
		background: rgba(0,0,0,0.2);
		display: none;
	}

	.primary-menu .menu-item.active > .sub-menu-container {
		display: block;
	}

	.header-extras {
		display: none !important;
	}

	.header-misc {
		margin-right: 40px;
	}

	#slider {
		min-height: auto;
		padding: 30px 0;
	}
}

@media (max-width: 767px) {
	.header-row {
		padding: 8px 0;
	}

	#logo img {
		height: 45px;
	}

	.button-small {
		padding: 5px 12px;
		font-size: 11px;
	}

	#slider .center h2 {
		font-size: 20px;
	}

	#slider .center p {
		font-size: 13px;
	}

	.form-widget .px-5 {
		padding-left: 15px !important;
		padding-right: 15px !important;
	}

	.footer-widgets-wrap {
		padding: 30px 0;
	}

	.widget h4 {
		font-size: 14px;
	}
}

/* Mobile Overlay */
.menu-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease-in-out;
}

.menu-overlay.active {
	opacity: 1;
	visibility: visible;
}

/* Sub Header */
.sub-header {
	background-color: #1a2332;
	padding: 20px 0;
	margin-top: 0;
}

.sub-header h1 {
	color: #fff;
	margin: 0;
	font-size: 20px;
	font-weight: 500;
}

/* Contact Box */
.box {
	text-align: center;
	background: #fff;
	padding: 40px 25px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.08);
	border-radius: 6px;
	color: #555;
	margin-bottom: 30px;
	transition: all 0.2s ease-in-out;
}

.box:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.box .icon {
	height: 2.8rem;
	margin: 0 auto;
	margin-bottom: 1rem;
	font-size: 3rem;
	color: #0F66DD;
}

.box p {
	font-size: 14px;
	font-weight: 400;
	margin-top: 5px;
	color: #777;
}

.contact-title, .service-title {
	font-size: 18px;
	margin-bottom: 0;
	font-weight: 600;
}

/* Contacts Section */
.contacts {
	padding: 50px 0;
}

/* FAQ Styles */
.faq {
	padding: 40px 0;
}

.main-title {
	margin-bottom: 30px;
}

.main-title h2 {
	font-size: 24px;
	margin: 10px 0 0 0;
}

.main-title p {
	font-size: 16px;
	margin-top: 5px;
}

.main-title span {
	width: 100px;
	height: 2px;
	background-color: #ccc;
	display: block;
}

.main-title span em {
	width: 50px;
	height: 2px;
	background-color: #0F66DD;
	display: block;
	margin-top: 10px;
}

.faq-accordion .card {
	border: 0;
	margin-bottom: 8px;
	border-radius: 4px;
	border: 1px solid #e0e0e0;
}

.faq-accordion .card-header {
	background-color: #fff;
	padding: 0;
	border-radius: 4px;
}

.faq-accordion .card-header h4 {
	font-size: 15px;
}

.faq-accordion .card-header h4 a {
	display: block;
	color: #333;
	padding: 15px 20px;
	text-decoration: none;
	font-weight: 500;
}

.faq-accordion .card-header h4 a:hover {
	color: #0F66DD;
}

.faq-accordion .card-header h4 a i.indicator {
	font-size: 14px;
	float: right;
	color: #0F66DD;
	margin-top: 3px;
}

.faq-accordion .card-body {
	padding: 15px 20px;
	border-top: 1px solid #e0e0e0;
}

.faq-accordion .card-body p {
	font-size: 14px;
	margin: 0 0 10px 0;
	color: #666;
}

.faq-accordion .card-body p:last-child {
	margin-bottom: 0;
}

/* SweetAlert Customization */
.swal2-popup {
	font-family: 'Poppins', sans-serif !important;
}
