/********** Template CSS **********/
:root {
	/* --primary: #f73126; */
	--primary: #F74B49;
	--primary-accent: #e40400;
	
	/* --primary: #dc354e; */
	/* --primary: #e74c44; */
	--secondary: #555555;
	--light: #F1F3FA;
	--dark: #1C2035;
}

body, h1, h2, h3, h4, h5, h6, a, p, span {
	font-family: "Poppins", sans-serif !important;
}


.intro {
	position: relative;
	z-index: 0;
	width: 100%;
	height: auto;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	-o-background-size: cover;
}

.pattern-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	
	z-index: 0;
	opacity: 0.2;
	pointer-events: none;
}


.main-content {
	position: relative;
	z-index: 1;
}

img {
	width: 100%;
	height: auto;
}
.min-vh-100{
	min-height:calc(100vh - 430px)!important
}

label:not(.form-check-label):not(.custom-file-label) {
	font-weight: 500 !important;
}
label {
	display: inline-block !important;
	margin-bottom: 2px !important;
}
pre {
	font-family: 'Source Code Pro', monospace;
	background: #282a30;
	color: #ffffff;
	border-radius: 5px;
	overflow-x: auto; /* Scroll horizontal jika teks terlalu panjang */
}

a {
	text-decoration: none;
}

.text-primary{
	color: var(--primary) !important;
}

.text-justify{
	text-align: justify;
}

.bg-primary{
	background-color: var(--primary) !important;
}
.border-primary {
	border-color: var(--primary) !important;
}

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

.hide{
	display: none;
}

/*** Spinner ***/
#spinner {
	opacity: 0;
	visibility: hidden;
	transition: opacity .5s ease-out, visibility 0s linear .5s;
	z-index: 99999;
}

#spinner.show {
	transition: opacity .5s ease-out, visibility 0s linear 0s;
	visibility: visible;
	opacity: 1;
}


/*** Button ***/
.btn {
	transition: .5s;
	font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
	color: var(--light);
	background-color: var(--primary) !important;
	border-color: var(--primary) !important;
}
.btn-primary:hover {
	color: #fff;
	background-color: var(--primary-accent) !important;
	border-color: var(--primary-accent) !important;
}

.btn-secondary,
.btn-outline-secondary:hover {
	color: var(--dark);
}

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

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

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

.btn-square,
.btn-sm-square,
.btn-lg-square {
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: normal;
}

.btn-link {
	text-decoration: none;
}

.back-to-top {
	position: fixed;
	right: 30px;
	bottom: 100px;
	z-index: 99;
}

.back-to-top:hover, .back-to-top:focus, .back-to-top:active, .back-to-top:focus:active {
	background-color: #fcb1ad !important;
	border: none;
	box-shadow: none;
}

/*** Navbar ***/
.sticky-top {
	top: -100px;
	transition: .5s;
}

.navbar {
    --bs-navbar-padding-y: 0.2rem;
}

.navbar .navbar-nav .nav-link {
	margin-right: 2px;
	padding: 5px 12px;
	color: var(--dark);
	font-size: 16px;
	font-weight: 500;
	outline: none;
	border-radius: 8px;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
	color: #fff;
	background-color: #F74B49 !important;
}

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

.dropdown-item.active, .dropdown-item:active {
    color: var(--bs-dropdown-link-active-color);
    text-decoration: none;
    background-color: var(--primary);
}

@media (max-width: 991.98px) {
	.navbar .navbar-nav .nav-link  {
		margin-right: 0;
		padding: 6px 10px;
	}
	
	.navbar .navbar-nav {
		margin-top: 15px;
		border-top: 1px solid #EEEEEE;
	}
}

@media (min-width: 992px) {
	.navbar .nav-item .dropdown-menu {
		display: block;
		border: none;
		margin-top: 0;
		top: 150%;
		opacity: 0;
		visibility: hidden;
		transition: .5s;
	}
	
	.navbar .nav-item:hover .dropdown-menu {
		top: 100%;
		visibility: visible;
		transition: .5s;
		opacity: 1;
	}
}


/*** Header ***/
.carousel-caption {
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	background: rgba(0, 0, 0, .1);
	z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
	width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 3.5rem;
	background-color: var(--primary);
	border: var(--primary);
}

@media (max-width: 768px) {
	#header-carousel .carousel-item {
		position: relative;
	}
	
	#header-carousel .carousel-item img {
		width: 100%;
		height: 100%;
	}
}

/*** Features ***/
.feature{
	background-color: #ffffff;
	border-radius: 16px;
}

.feature-row {	
	display: block;
	width: 100%;
	overflow-x: auto; /* Enables horizontal scroll */
	-webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
}

.feature-item {
	border-color: rgba(0, 0, 0, .03) !important;
}
.feature-item a{
	font-weight: 600;
	color: #444444;
}
.feature-item:hover a{
	color: var(--primary) !important;
}
.feature-item img{
	filter: brightness(0) invert(1);
	transition: transform 0.3s ease-in-out;
}
.feature-item:hover img{
	transform: scale(1.05);
}


@keyframes pulse-border {
	0% {
		transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
		opacity: 1;
	}
	
	100% {
		transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
		opacity: 0;
	}
}


/*** Project ***/
.project-item {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.project-item .project-overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, .5);
	opacity: 0;
	padding-top: 60px;
	transition: .5s;
}

.project-item:hover .project-overlay {
	opacity: 1;
	padding-top: 0;
	box-shadow: 0 0 45px rgba(255, 65, 65, 0.7);
}
.project-item:hover {
	box-shadow: 0 0 15px 0px rgba(255, 2, 2, 0.385);
}

/*** Testimonial ***/
.testimonial-item {
	box-shadow: 0 0 45px rgba(255, 12, 12, 0.07);
	transition: .5s;
	color: #505050 !important;
}

.owl-item .testimonial-item,
.testimonial-item * {
	transition: .5s;
}

.owl-item.center .testimonial-item,
.testimonial-item:hover {
	background: white;
}

.owl-item.center .testimonial-item *,
.testimonial-item:hover * {
	color: #444444 !important;
}


.testimonial-item span {
	color: #444444 !important;
}

.testimonial-item img {
	width: 100px !important;
	height: 100px !important;
	border-radius: 100px;
}

.testimonial-carousel .owl-nav {
	position: absolute;
	top: -70px;
	right: 0;
	display: flex;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
	margin-left: 15px;
	width: 55px;
	height: 55px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	border-radius: 55px;
	box-shadow: 0 0 45px rgba(0, 0, 0, .15);
	font-size: 25px;
	transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
	background: rgb(255, 152, 152);
	color: rgb(255, 255, 255);
}

@media (max-width: 768px) {
	.testimonial-carousel .owl-nav {
		top: -70px;
		right: auto;
		left: 92%;
		transform: translateX(-70%);
	}
	
	.testimonial-carousel .owl-nav .owl-prev,
	.testimonial-carousel .owl-nav .owl-next {
		margin: 0 7px;
		width: 45px;
		height: 45px;
		font-size: 20px;
	}
}

/* topbar */
.topbar{
	color: #444444;
	background: rgb(255, 255, 255) !important;
	/* background: linear-gradient(135deg, #ff5b53 0%, #70a1ff 100%) !important; */
}

.link_topbar{
	color: #444444 !important;
}
.link_topbar:hover {
	color: #F9423A !important;
}

.topbar .social_media:hover{
	color: #444444 !important;
}

.topbar .topbar-social-media{
	background: linear-gradient(135deg, #fff6f8 10%, #fd717f 100%) !important;
	color: #444444 !important;
}

.topbar .topbar-social-media:hover{
	/* background: #fff6f8 !important; */
	color: #F9423A !important;
	border: transparent;
}

/* sub-topbar */
.sub-topbar {
	/* Warna putih transparan (0.6 berarti 60% opacity) */
	/* background: rgba(255, 255, 255, 0.6) !important; */
	/* background: linear-gradient(135deg, #fff6f8 10%, #ff496dd9 100%) !important; */
	background: linear-gradient(135deg, #fff6f8 10%, #fd717f 100%) !important;
	
	/* Efek Blur (Kunci Glassmorphism) */
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px); /* Support Safari */
	
	/* Border tipis putih untuk efek kristal/tepi kaca */
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	
	/* Bayangan halus agar elemen terlihat terangkat */
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
	
	/* Pastikan posisi bar tetap terbaca jika konten di bawahnya bergerak */
	position: sticky;
	top: 0;
	z-index: 1000;
}

.services a{
	color: #444444 !important;
}
.services a:hover{
	color: #F9423A !important;
}

/*** Footer ***/
.footer {
	color: #444444;
	/* background: linear-gradient(135deg, #ff5b53 0%, #70a1ff 100%) !important; */
	background: linear-gradient(60deg, #fffafa 10%, #fd717f 100%) !important;
}
.text_title_footer{
	color: #444444 !important;
}
.text_footer {
	color: #444444 !important;
}
.text_footer a{
	color: #444444 !important;
}
.text_footer a:hover{
	color: #0d6efd !important;
}
.text_footer .sosmed{
	color: #F9423A !important;
}
.text_footer .sosmed:hover{
	color: #444444 !important;
}
.link_footer {
	color: #444444 !important;
}

.footer .btn.btn-link {
	display: block;
	margin-bottom: 5px;
	padding: 0;
	text-align: left;
	color: #444444;
	font-weight: normal;
	text-transform: capitalize;
	transition: .3s;
}

.footer .btn.btn-link::before {
	position: relative;
	content: "\f105";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	margin-right: 10px;
}

.footer .btn.btn-link:hover {
	color: var(--light);
	letter-spacing: 1px;
	box-shadow: none;
}

.footer .link_footer {
	transition: .3s
}

.footer .link_footer:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
	color: #ffffff;
	background-color: #1b1e24;
}

.copyright a {
	color: #6f93ff !important;
}

.copyright a:hover {
	color: var(--primary) !important;
}

.form-control:focus {
	color: #555;
	background-color: #fff;
	border-color: #ff5b53;
	outline: 0;
	box-shadow: 0 0 0 .25rem rgba(240, 72, 72, 0.25);
}

.page-item.active .page-link {
	z-index: 3;
	color: #fff;
	background-color: #ff5b53 !important;
	border-color: #ff5b53 !important;
}