/*******************************/
/********* General CSS *********/
/*******************************/
body {
    color: #3c4ec5;
    font-weight: 400;
    background: #ffffff;
    font-family: 'Barlow', sans-serif;
}

h1,
h2, 
h3, 
h4,
h5, 
h6 {
    color: #2752ad;
}

a {
    color: #1853a1;
    transition: .3s;
}

a:hover,
a:active,
a:focus {
    color: #4c1cf7;
    outline: none;
    text-decoration: none;
}

.btn.btn-custom {
    padding: 10px 30px 12px 30px;
    text-align: center; 
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    background: #1c4ce8;
    border: none;
    border-radius: 60px;
    box-shadow: inset 0 0 0 0 #2f5dc0;
    transition: ease-out 0.5s;
    -webkit-transition: ease-out 0.5s;
    -moz-transition: ease-out 0.5s;
}

.btn.btn-custom:hover {
    color: #1c6ee8;
    background: #3457a4;
    box-shadow: inset 200px 0 0 0 #145cf7;
}

.btn:focus,
.form-control:focus {
    box-shadow: none;
}

.container-fluid {
    max-width: 1366px;
}

[class^="flaticon-"]:before, [class*=" flaticon-"]:before,
[class^="flaticon-"]:after, [class*=" flaticon-"]:after {   
    font-size: inherit;
    margin-left: 0;
}


/**********************************/
/****** Loader & Back to Top ******/
/**********************************/
#loader {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .3s ease-out, visibility 0s linear .3s;
    -o-transition: opacity .3s ease-out, visibility 0s linear .3s;
    transition: opacity .3s ease-out, visibility 0s linear .3s;
    z-index: 999;
}

#loader.show {
    -webkit-transition: opacity .6s ease-out, visibility 0s linear 0s;
    -o-transition: opacity .6s ease-out, visibility 0s linear 0s;
    transition: opacity .6s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

#loader .loader {
    position: relative;
    width: 45px;
    height: 45px;
    border: 5px solid #dddddd;
    border-top: 5px solid #375fff;
    border-radius: 50%;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.back-to-top {
    position: fixed;
    display: none;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 22px;
    right: 15px;
    bottom: 15px;
    transition: .5s;
    background: #1c9ae8;
    border-radius: 44px;
    z-index: 9;
}

.back-to-top i {
    color: #ffffff;
    padding-top: 10px;
}

.back-to-top:hover {
    background: #0e54ec;
}


/**********************************/
/********** Top Bar CSS ***********/
/**********************************/
.top-bar {
    position: relative;
    height: 75px;
    display: flex;
    align-items: center;
    background: #ffffff;
}

.top-bar .logo {
    text-align: left;
    overflow: hidden;
}

.top-bar .logo h1 {
    margin: -4px 0 0 0;
    color: #1360b3;
    font-size: 50px;
    line-height: 50px;
    font-weight: 800;
    letter-spacing: 1px;
    font-style: italic;
}

.top-bar .logo h1 span {
    color: #0f51e0;
}

.top-bar .logo img {
    max-width: 100%;
    max-height: 60px;
}

.top-bar .top-bar-item {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.top-bar .top-bar-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0f53e5;
    border-radius: 40px;
}

.top-bar .top-bar-icon i {
    margin: 0;
    color: #ffffff;
    font-size: 16px;
}

.top-bar .top-bar-text {
    padding-left: 15px;
}

.top-bar .top-bar-text h3 {
    margin: 0 0 5px 0;
    font-size: 18px;
    font-weight: 600;
}

.top-bar .top-bar-text p {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
}

@media (max-width: 991.98px) {
    .top-bar .logo {
        text-align: center;
    }
}


/**********************************/
/*********** Nav Bar CSS **********/
/**********************************/
.nav-bar {
    position: relative;
    background: #0c50e1;
}

.nav-bar.nav-sticky {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    box-shadow: 0 2px 5px #f0f1f4;
    z-index: 999;
}

.nav-bar .navbar {
    padding: 10px 0;
    background: #0c50e1 !important;
    transition: .3s;
}

.nav-bar.nav-sticky .navbar {
    padding: 5px 0;
}

.navbar-dark .navbar-nav .nav-link,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #ffffff;
    padding: 15px;
    font-weight: 500;
    letter-spacing: 1px;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #ffffff;
}

.nav-bar .dropdown-menu {
    margin-top: 0;
    border: 0;
    border-radius: 0;
    background: #cbdaf7;
    color: #ffffff;
}

.nav-bar .btn.btn-custom {
    color: #0c50e1;
    background: #ffffff;
    box-shadow: inset 0 0 0 0 #eb7200;
}

.nav-bar .btn:hover {
    color: #ffffff;
    background: #0c50e1;
    box-shadow: inset 200px 0 0 0 #0c50e1;
}

@media (min-width: 992px) {
    .nav-bar .navbar-brand {
        display: none;
    }
}

@media (max-width: 991.98px) {
    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link:focus,
    .navbar-dark .navbar-nav .nav-link:hover,
    .navbar-dark .navbar-nav .nav-link.active {
        padding: 5px 0;
    }
    
    .nav-bar .dropdown-menu {
        box-shadow: none;
        
    }
    
    .nav-bar .btn {
        display: none;
    }
}


/*******************************/
/********** Hero CSS ***********/
/*******************************/
.carousel {
    position: relative;
    width: 100%;
    min-height: 400px;
    background: #ffffff;
    margin-bottom: 45px;
}

.carousel .container-fluid {
    padding: 0;
}

.carousel .carousel-item {
    position: relative;
    width: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.carousel .carousel-img {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    text-align: right;
    overflow: hidden;
}

.carousel .carousel-img::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 1;
}

.carousel .carousel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel .carousel-text {
    position: absolute;
    max-width: 992px;
    padding: 0 15px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 2;
}

.carousel .carousel-text h3 {
    color: #FFC20E;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 0px;
}

.carousel .carousel-text h1 {
    color: #FFC20E;
    font-size: 90px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.carousel .carousel-text p {
    max-width: 500px;
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 40px;
}

.carousel .btn.btn-custom {
    padding: 20px 45px 22px 45px;
    color: #ffffff;
}

.carousel .btn.btn-custom:hover {
    color: #FFC20E;
}

.carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 50px;
    top: calc(50% - 25px);
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 9;
}

.carousel .owl-nav .owl-prev,
.carousel .owl-nav .owl-next {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border-radius: 50px;
    background: rgba(256, 256, 256, .2);
    font-size: 22px;
    transition: .5s;
}

.carousel .owl-nav .owl-prev {
    margin-left: 30px;
}

.carousel .owl-nav .owl-next {
    margin-right: 30px;
}

.carousel .owl-nav .owl-prev:hover,
.carousel .owl-nav .owl-next:hover {
    color: #ffffff;
    background: #FFC20E;
}

.carousel .animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

@media (max-width: 991.98px) {
    .carousel .carousel-text h3 {
        margin-bottom: 5px;
    }
    
    .carousel .carousel-text h1 {
        font-size: 60px;
    }
    
    .carousel .carousel-text p {
        font-size: 16px;
    }
    
    .carousel .carousel-text .btn {
        padding: 12px 30px;
        font-size: 15px;
        letter-spacing: 0;
    }
}

@media (max-width: 767.98px) {
    .carousel .carousel-text h3 {
        font-size: 18px;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }
    
    .carousel .carousel-text h1 {
        font-size: 45px;
    }
    
    .carousel .carousel-text .btn {
        padding: 10px 25px;
        font-size: 15px;
        letter-spacing: 0;
    }
}

@media (max-width: 575.98px) {
    .carousel .carousel-text h3 {
        font-size: 14px;
        letter-spacing: 1px;
        margin-bottom: 10px;
    }
    
    .carousel .carousel-text h1 {
        font-size: 30px;
        margin-bottom: 15px;
    }
    
    .carousel .carousel-text p {
        margin-bottom: 25px;
    }
    
    .carousel .carousel-text .btn {
        padding: 8px 20px;
        font-size: 14px;
        letter-spacing: 0;
    }
}


/*******************************/
/******* Page Header CSS *******/
/*******************************/
header {
    background-color: #fff;
    border-bottom: 1px solid #ddd;
    padding: 10px 20px;
}

.breadcrumb ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.breadcrumb ul li {
    margin-right: 5px;
}

.breadcrumb ul li a {
    text-decoration: none;
    color: #0c50e1;
    font-size: 15px;
}

.breadcrumb ul li a:hover {
    text-decoration: underline;
}

.breadcrumb ul li:not(:last-child)::after {
    content: '/';
    margin-left: 5px;
    color: #160404;
}

.breadcrumb ul li:last-child {
    color: #000000;
    font-size: 15px;
}

.home-icon {
    display: inline-block;
    font-size: 20px;
    vertical-align: middle;
    margin-right: 5px;
    color: #0c50e1;
}
/*******************************/
/******* Section Header ********/
/*******************************/

.section-header {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0 auto 45px auto;
}


.section-header p {
    display: inline-block;
    margin-bottom: 10px;
    padding-bottom: 5px;
    position: relative;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #FFC20E;
}

.section-header p::after {
    position: absolute;
    content: "";
    width: 50%;
    height: 2px;
    left: 25%;
    bottom: 0;
    background: #FFC20E;
}

.section-header.text-left p::after {
    left: 0;
}

.section-header.text-right p::after {
    left: 50%;
}

.section-header h2 {
    margin: 0;
    font-size: 45px;
    font-weight: 700;
    text-transform: capitalize;
}

@media (max-width: 991.98px) {
    .section-header h2 {
        font-size: 45px;
    }
}

@media (max-width: 767.98px) {
    .section-header h2 {
        font-size: 40px;
    }
}

@media (max-width: 575.98px) {
    .section-header h2 {
        font-size: 35px;
    }
}


/*******************************/
/********** About CSS **********/
/*******************************/
.about {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.about .section-header {
    margin-bottom: 30px;
    margin-left: 0;
}

.about .about-img img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 30px;
}

.about .about-content {
    margin-bottom: 30px;
}

.about .about-content ul {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-bottom: 25px;
}

.about .about-content ul li {
    margin-bottom: 5px;
}

.about .about-content ul li i {
    margin-right: 8px;
    color: #FFC20E;
}


/*******************************/
/********* Service CSS *********/
/*******************************/
.hero-section {
    background-image: url('path/to/your/background-image.jpg'); /* Ganti dengan URL gambar Anda */
    background-size: cover; /* Agar gambar menutupi seluruh area */
    background-position: center; /* Menempatkan gambar di tengah */
    background-repeat: no-repeat; /* Menghindari gambar terulang */
    padding: 80px 20px; /* Menambahkan padding untuk memberikan ruang di dalam elemen */
    display: flex;
    justify-content: space-between; /* Menata elemen secara horizontal */
    align-items: center; /* Menyusun elemen secara vertikal di tengah */
    color: white; /* Warna teks putih agar kontras dengan gambar */
    border-radius: 10px; /* Menambahkan sudut melengkung */
    min-height: 400px; /* Menentukan tinggi minimum untuk hero section */
    min-width: 400px;
    position: relative; /* Untuk memastikan konten tetap di atas background */
  }
  
.service {
    position: relative;
    width: 100%;
    padding: 45px 0 0 0;
}

.service .service-item {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 45px;
}

.service .service-item i {
    color: #0c50e1;
    font-size: 75px;
    line-height: 75px;
    margin-bottom: 20px;
}

.service .service-item [class^="flaticon-"]::before {
    margin: 0;
    font-size: 60px;
    line-height: 60px;
    background-image: linear-gradient(#eb7200, #0c50e1);
    -webkit-backgroundclip: text;
    -webkit-text-fill-color: transparent;
    transition: .5s;
}

.service .service-item h3 {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
}

.service .service-item p {
    margin: 0;
}


/*******************************/
/********** Facts CSS **********/
/*******************************/
.facts {
    position: relative;
    width: 100%;
    min-height: 400px;
    margin: 45px 0;
    display: flex;
    align-items: center;
    background: #0c50e1;
}

.facts .facts-item {
    display: flex;
    flex-direction: row;
    margin: 25px 0;
}

.facts .facts-item i {
    margin-top: 15px;
    font-size: 45px;
    color: #FFC20E;
}

.facts .facts-text {
    padding-left: 20px;
}

.facts .facts-text h3 {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 60px;
    font-weight: 700;
}

.facts .facts-text h3::after {
    position: absolute;
    content: "\f067";
    top: 0px;
    right: -25px;
    color: #ffffff;
    font-size: 25px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.facts .facts-text p {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    margin: 0;
}


/*******************************/
/********* Pricing CSS *********/
/*******************************/
.price {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.price .row {
    padding: 0 15px;
}

.price .col-md-4 {
    padding: 0;
}

.price .price-item {
    position: relative;
    margin-bottom: 30px;
    background: #ffffff;
    border-radius: 5px;
    text-align: center;
}

.price .featured-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .2);
    z-index: 1;
}

.price .price-header {
    padding: 45px 0 30px 0;
}

.price .price-header h3 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.price .price-header h2 {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    font-size: 60px;
    font-weight: 700;
    letter-spacing: 5px;
}

.price .price-header h2 span {
    font-size: 25px;
    line-height: 55px;
}

.price .price-item.featured-item h2,
.price .price-item.featured-item h3 {
    color: #FFC20E;
}

.price .price-body {
    padding: 0 0 20px 0;
}

.price .price-body ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.price .price-body ul li {
    padding: 0 0 15px 0;
}

.price .price-body ul li i {
    margin-right: 10px;
}

.price .price-body ul li i.fa-check-circle {
    color: #0c50e1;
}

.price .price-body ul li i.fa-times-circle {
    color: #cccccc;
}

.price .price-item .price-footer {
    padding-bottom: 45px;
}

.price .price-item .price-footer .btn.btn-custom {
    color: #FFC20E;
    background: #0c50e1;
    box-shadow: inset 0 0 0 0 #FFC20E;
}

.price .price-item .price-footer .btn.btn-custom:hover {
    color: #ffffff;
    background: #FFC20E;
    box-shadow: inset 200px 0 0 0 #FFC20E;
}

.price .price-item.featured-item .price-footer .btn.btn-custom {
    color: #ffffff;
    background: #FFC20E;
    box-shadow: inset 0 0 0 0 #0c50e1;
}

.price .price-item.featured-item .price-footer .btn.btn-custom:hover {
    color: #FFC20E;
    background: #0c50e1;
    box-shadow: inset 200px 0 0 0 #0c50e1;
}


/*******************************/
/******** Location CSS *********/
/*******************************/
.location {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.location .location-item {
    display: flex;
    margin-bottom: 30px;
}

.location .location-item i {
    padding-top: 3px;
    font-size: 30px;
    color: #FFC20E;
}

.location .location-text {
    padding-left: 15px;
}

.location .location-text h3 {
    font-size: 18px;
    font-weight: 700;
}

.location .location-text p {
    margin-bottom: 5px;
}

.location .location-text p strong {
    margin-right: 5px;
    font-weight: 600;
}

.location .location-form {
    padding: 45px 30px;
    background: #FFC20E;
    border-radius: 5px;
}

.location .location-form h3 {
    color: #ffffff;
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 25px;
}

.location .location-form .control-group {
    margin-bottom: 15px;
}

.location .location-form .form-control {
    height: 45px;
    color: #ffffff;
    padding: 0 15px;
    border-radius: 5px;
    border: 1px solid #ffffff;
    background: transparent;
}

.location .location-form textarea.form-control {
    height: 120px;
    padding: 15px;
}

.location .location-form .form-control::placeholder {
    color: #ffffff;
    opacity: 1;
}

.location .location-form .form-control:-ms-input-placeholder,
.location .location-form .form-control::-ms-input-placeholder {
    color: #ffffff;
}

.location .location-form .btn.btn-custom {
    width: 100%;
    color: #FFC20E;
    background: #ffffff;
    box-shadow: inset 0 0 0 0 #0c50e1;
}

.location .location-form .btn.btn-custom:hover {
    color: #ffffff;
    background: #FFC20E;
    box-shadow: inset 400px 0 0 0 #0c50e1;
}

@media(min-width: 576px) and (max-width: 991.89px) {
    .location .location-form .btn.btn-custom:hover {
        box-shadow: inset 650px 0 0 0 #0c50e1;
    }
}


/*******************************/
/*********** Team CSS **********/
/*******************************/
.team {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.team .team-item {
    position: relative;
    margin-bottom: 30px;
}

.team .team-img {
    position: relative;
    border-radius: 5px 5px 0 0;
    overflow: hidden;
    width: 100%; /* Mengatur lebar gambar sesuai kolom */
    height: 300px; /* Tinggi gambar seragam */
    object-fit: cover; /* Memastikan gambar tidak terdistorsi */
    border-radius: 5px; /* Opsional: Memberikan sudut melengkung */

}


.team .team-img img {
    width: 100%;
    transition: .3s;
}

.team .team-item:hover img {
    transform: scale(1.1);
}

.team .team-text {
    position: relative;
    width: 100%;
    padding: 30px 30px 30px 30px;
    text-align: center;
    background: #D1E5FF;
    border-radius: 0 0 5px 5px;
    transition: .5s;
}

.team .team-item:hover .team-text {
    background: #FFC20E;
}

.team .team-text h2 {
    color: #0c50e1;
    font-size: 15px;
    font-weight: 200;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.team .team-text p {
    margin: 0;
    color: #0c50e1;
    font-weight: 700;
    font-size: 25px;
    letter-spacing: 2px;
}

.team .team-social {
    position: absolute;
    width: 100%;
    height: 40px;
    top: -20px;
    left: 0;
    text-align: center;
    font-size: 0;
}

.team .team-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin: 0 3px;
    padding: 7px 0;
    text-align: center;
    font-size: 16px;
    color: #ffffff;
    background: #202C45;
    border-radius: 40px;
    transition: .5s;
}

.team .team-social a:hover {
    color: #202C45;
}



/*******************************/
/******* Testimonial CSS *******/
/*******************************/
.testimonial {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.testimonial .testimonials-carousel {
    position: relative;
    width: calc(100% + 30px);
    margin: 0 -15px;
}

.testimonial .testimonial-item {
    position: relative;
    width: 100%;
    padding: 0 15px;
    display: flex;
}

.testimonial .testimonial-item {
    display: flex;
    flex-direction: column; /* Atur elemen menjadi vertikal (gambar di atas, teks di bawah) */
    align-items: center; /* Opsional: memusatkan elemen */
    text-align: center; /* Opsional: memusatkan teks */
}

.testimonial .testimonial-item img {
    width: 150px;
    height: 150px;
    border-radius: 100px;
    transform: scale(.8);
    transition: 2s;
    margin-bottom: 10px; /* Tambahkan jarak antara gambar dan teks */
}

.testimonial .owl-item.center .testimonial-item img {
    transform: scale(1);
}

.testimonial .testimonial-text {
    width: 100%; /* Hilangkan lebar yang disesuaikan agar teks tidak dipaksa di samping gambar */
    padding-left: 0; /* Hilangkan padding kiri untuk menyesuaikan tata letak vertikal */
}

.testimonial .testimonial-text h2 {
    color: #003366;
}
.testimonial .testimonial-text h3 {
    font-size: 18px;
    color: #003366;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 5px;
    margin-top: 10px; /* Opsional: tambahkan margin jika diperlukan */
}

.testimonial .testimonial-text h4 {
    color: #777777;
    font-size: 15px;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 10px;
}

.testimonial .testimonial-text p {
    margin: 0;
}

.testimonial .testimonial-text p::before {
    content: "\f10d";
    font-size: 25px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #FFC20E;
    margin-right: 10px;
}

.testimonial .owl-dots {
    margin-top: 15px;
    text-align: center;
}

.testimonial .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 10px;
    background: #dddddd;
}

.testimonial .owl-dot.active {
    background: #FFC20E;
}


/*******************************/
/*********** Blog CSS **********/
/*******************************/

.blog .section-header h2 {
    color: #003366; /* Warna judul */
    margin-bottom: 30px;
}

.blog .blog-item {
    background: #ffffff; /* Warna latar belakang transparan */
    padding: 20px;
    border-radius: 10px;
    color: #fff;
}


.blog {
    position: relative;
    width: 100%;
    padding: 45px 0 0 0;
}

.blog .blog-item {
    margin-bottom: 45px;
}

.blog .blog-img {
    position: relative;
    width: 100%;
}

.blog .blog-img img {
    width: 100%;
    border-radius: 5px;
}

.blog .meta-date {
    position: absolute;
    width: 70px;
    height: 70px;
    bottom: 10%;
    left: calc(50% - 35px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 70px;
    background: #FFC20E;
    color: #ffffff;
    opacity: 0;
    transition: .5s;
}

.blog .meta-date span {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
}

.blog .meta-date strong {
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.blog .blog-item:hover .meta-date {
    bottom: calc(50% - 35px);
    opacity: 1;
}

.blog .blog-text {
    padding: 25px 0 20px 0;
}

.blog .blog-text h3 {
    font-size: 22px;
    font-weight: 700;
}

.blog .blog-text h3 a {
    color: #0c50e1;
}

.blog .blog-text h3 a:hover {
    color: #0c50e1;
    font-weight: 400;
}

.blog .blog-text p {
    margin: 0;
    font-size: medium;
    font-weight: 200;
    color: #9d9a9a;
}

.blog .blog-meta {
    display: flex;
}

.blog .blog-meta p {
    margin: 0;
    font-size: 14px;
    line-height: 14px;
    padding: 0 10px;
    border-right: 1px solid rgba(0, 0, 0, .15);
}

.blog .blog-meta p:first-child {
    padding-left: 0;
}

.blog .blog-meta p:last-child {
    padding-right: 0;
    border: none;
}

.blog .blog-meta i {
    color: #999999;
    margin-right: 5px;
}

.blog .blog-meta a {
    color: #999999;
}

.blog .blog-meta a:hover {
    color: #FFC20E;
}

.blog .pagination {
    margin-bottom: 15px;
}

.blog .pagination .page-link {
    color: #0c50e1;
    border-radius: 0;
    border-color: #0c50e1
}

.blog .pagination .page-link:hover,
.blog .pagination .page-item.active .page-link {
    color: #FFC20E;
    background: #0c50e1;
}

.blog .pagination .disabled .page-link {
    color: #999999;
}


/*******************************/
/********* Contact CSS *********/
/*******************************/
.contact {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.contact .contact-info {
    width: 100%;
    margin-bottom: 45px;
    padding: 35px 30px 10px 30px;
    border-radius: 5px;
    background: #0c50e1;
    
}

.contact .contact-info h2 {
    color: #ffffff;
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 30px;
}

.contact .contact-info-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 30px;
}

.contact .contact-info-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 50px;
}

.contact .contact-info-icon i {
    margin: 0;
    color: #0c50e1;
    font-size: 16px;
}

.contact .contact-info-text {
    padding-left: 20px;
}

.contact .contact-info-text h3 {
    margin: 0 0 5px 0;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
}

.contact .contact-info-text p {
    margin: 0;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
}

.contact .contact-form {
    position: relative;
    width: 100%;
    margin-bottom: 45px;
}

.contact .contact-form input {
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #0c50e1;
}

.contact .contact-form textarea {
    height: 125px;
    padding: 8px 15px;
    border-radius: 5px;
    border: 1px solid #0c50e1;
}

.contact .help-block ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.contact iframe {
    width: 100%;
    height: 400px;
    border-radius: 5px;
}


/*******************************/
/******* Single Post CSS *******/
/*******************************/
.single {
    position: relative;
    padding: 45px 0;
}

.single .single-content {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
}

.single .single-content img {
    margin-bottom: 20px;
    width: 100%;
    border-radius: 5px;
}

.single .single-tags {
    margin: -5px -5px 41px -5px;
    font-size: 0;
}

.single .single-tags a {
    margin: 5px;
    display: inline-block;
    padding: 7px 15px;
    font-size: 14px;
    font-weight: 500;
    color: #0c50e1;
    border: 1px solid #0c50e1;
    border-radius: 5px;
}

.single .single-tags a:hover {
    color: #ffffff;
    background: #FFC20E;
    border-color: #FFC20E;
}

.single .single-bio {
    padding: 30px;
    background: #0c50e1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 5px;
}

.single .single-bio-img {
    width: 100%;
    max-width: 115px;
    padding: 15px;
    background: #ffffff;
    border-radius: 100px;
    margin-bottom: 20px;
}

.single .single-bio-img img {
    width: 100%;
    border-radius: 100px;
}

.single .single-bio-text {
    text-align: center;
}

.single .single-bio-text h3 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
}

.single .single-bio-text p {
    color: #ffffff;
    margin: 0;
}

.single .single-bio-social {
    margin-top: 20px;
    display: flex;
}

.single .single-bio-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0c50e1;
    background: #ffffff;
    border-radius: 40px;
    margin-right: 5px;
    transition: .5s;
}

.single .single-bio-social a:last-child {
    margin: 0;
}

.single .single-bio-social a:hover {
    color: #ffffff;
    background: #FFC20E;
}

.single .single-related {
    margin-bottom: 45px;
}

.single .single-related h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}

.single .related-slider {
    position: relative;
    margin: 0 -15px;
    width: calc(100% + 30px);
}

.single .related-slider .post-item {
    margin: 0 15px;
}

.single .post-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.single .post-item .post-img {
    width: 100%;
    max-width: 80px;
}

.single .post-item .post-img img {
    width: 100%;
    border-radius: 5px;
}

.single .post-item .post-text {
    padding-left: 15px;
}

.single .post-item .post-text a {
    font-size: 17px;
    font-weight: 500;
}

.single .post-item .post-text a:hover {
    color: #FFC20E;
}

.single .post-item .post-meta {
    display: flex;
    margin-top: 8px;
}

.single .post-item .post-meta p {
    display: inline-block;
    margin: 0;
    padding: 0 3px;
    font-size: 14px;
    font-weight: 400;
    font-style: italic;
}

.single .post-item .post-meta p a {
    margin-left: 5px;
    color: #777777;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
}

.single .related-slider .owl-nav {
    position: absolute;
    width: 90px;
    top: -55px;
    right: 15px;
    display: flex;
}

.single .related-slider .owl-nav .owl-prev,
.single .related-slider .owl-nav .owl-next {
    margin-left: 15px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #0c50e1;
    border-radius: 5px;
    font-size: 16px;
    transition: .3s;
}

.single .related-slider .owl-nav .owl-prev:hover,
.single .related-slider .owl-nav .owl-next:hover {
    color: #ffffff;
    background: #FFC20E;
}

.single .single-comment {
    position: relative;
    margin-bottom: 45px;
}

.single .single-comment h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}

.single .comment-list {
    list-style: none;
    padding: 0;
}

.single .comment-child {
    list-style: none;
}

.single .comment-body {
    display: flex;
    margin-bottom: 30px;
}

.single .comment-img {
    width: 60px;
}

.single .comment-img img {
    width: 100%;
    border-radius: 60px;
}

.single .comment-text {
    padding-left: 15px;
    width: calc(100% - 60px);
}

.single .comment-text h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 3px;
}

.single .comment-text span {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
}

.single .comment-text .btn {
    padding: 3px 10px;
    font-size: 14px;
    font-weight: 500;
    color: #0c50e1;
    background: #dddddd;
    border-radius: 5px;
}

.single .comment-text .btn:hover {
    color: #ffffff;
    background: #FFC20E;
}

.single .comment-form {
    position: relative;
}

.single .comment-form h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}

.single .comment-form form {
    padding: 30px;
    background: #f3f6ff;
    border-radius: 5px;
}

.single .comment-form form .form-group:last-child {
    margin: 0;
}

.single .comment-form input,
.single .comment-form textarea {
    border-radius: 5px;
    border-color: #eeeeee;
}

.single .comment-form input:focus,
.single .comment-form textarea:focus {
    border-color: #FFC20E;
}

.single .comment-form .btn {
    border-radius: 45px;
}


/**********************************/
/*********** Sidebar CSS **********/
/**********************************/
.sidebar {
    position: relative;
    width: 100%;
}

@media(max-width: 991.98px) {
    .sidebar {
        margin-top: 45px;
    }
}

.sidebar .sidebar-widget {
    position: relative;
    margin-bottom: 45px;
}

.sidebar .sidebar-widget .widget-title {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 5px;
    font-size: 25px;
    font-weight: 700;
}

.sidebar .sidebar-widget .widget-title::after {
    position: absolute;
    content: "";
    width: 60px;
    height: 2px;
    bottom: 0;
    left: 0;
    background: #FFC20E;
}

.sidebar .sidebar-widget .search-widget {
    position: relative;
}

.sidebar .search-widget input {
    height: 50px;
    border: 1px solid #dddddd;
    border-radius: 5px;
}

.sidebar .search-widget input:focus {
    box-shadow: none;
    border-color: #FFC20E;
}

.sidebar .search-widget .btn {
    position: absolute;
    top: 6px;
    right: 15px;
    height: 40px;
    padding: 0;
    font-size: 25px;
    color: #0c50e1;
    background: none;
    border-radius: 0;
    border: none;
    transition: .3s;
}

.sidebar .search-widget .btn:hover {
    color: #FFC20E;
}

.sidebar .sidebar-widget .recent-post {
    position: relative;
}

.sidebar .sidebar-widget .tab-post {
    position: relative;
}

.sidebar .tab-post .nav.nav-pills {
    border-radius: 5px;
    overflow: hidden;
}

.sidebar .tab-post .nav.nav-pills .nav-link {
    color: #ffffff;
    background: #0c50e1;
    border-radius: 0;
}

.sidebar .tab-post .nav.nav-pills .nav-link:hover,
.sidebar .tab-post .nav.nav-pills .nav-link.active {
    color: #ffffff;
    background: #FFC20E;
}

.sidebar .tab-post .tab-content {
    padding: 15px 0 0 0;
    background: transparent;
}

.sidebar .tab-post .tab-content .container {
    padding: 0;
}

.sidebar .sidebar-widget .category-widget {
    position: relative;
}

.sidebar .category-widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar .category-widget ul li {
    margin: 0 0 12px 22px; 
}

.sidebar .category-widget ul li:last-child {
    margin-bottom: 0; 
}

.sidebar .category-widget ul li a {
    display: inline-block;
    line-height: 23px;
    font-weight: 500;
    letter-spacing: 1px;
}

.sidebar .category-widget ul li::before {
    position: absolute;
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #FFC20E;
    left: 1px;
}

.sidebar .category-widget ul li span {
    display: inline-block;
    
}

.sidebar .sidebar-widget .tag-widget {
    position: relative;
    margin: -5px -5px;
}

.single .tag-widget a {
    margin: 5px;
    display: inline-block;
    padding: 7px 15px;
    font-size: 14px;
    font-weight: 400;
    color: #0c50e1;
    border: 1px solid #0c50e1;
    border-radius: 5px;
}

.single .tag-widget a:hover {
    color: #ffffff;
    background: #FFC20E;
    border-color: #FFC20E;
}

.sidebar .image-widget {
    display: block;
    width: 100%;
    overflow: hidden;
}

.sidebar .image-widget img {
    max-width: 100%;
    border-radius: 5px;
    transition: .3s;
}

.sidebar .image-widget img:hover {
    transform: scale(1.1);
}


/*******************************/
/********* Footer CSS **********/
/*******************************/
.footer {
    position: relative;
    margin-top: 20px;
    padding-top: 10px;
    background:#D1E5FF;
}

.footer {
    min-height: 100px; /* Atur tinggi minimum */
    max-height: 200px; /* Jika ingin membatasi tinggi maksimum */
}


.footer .footer-contact p,
.footer .footer-info p,
.footer .footer-link p,
.footer .footer-newsletter p {
    position: relative;
    margin-bottom: 25px;
    margin-top: 20px;
    color: #1d51ec;
    font-weight: 200;
    font-size: 15px;
}

.footer .footer-contact h2,
.footer .footer-link h2,
.footer .footer-newsletter h2 {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 2px;
    color: #1d51ec;
}

.footer .footer-link a {
    display: block;
    margin-bottom: 1px;
    color: #0c50e1;
    transition: .2s;
    font-size: 15px;
}

.footer .footer-link a::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .footer-link a:hover {
    color: #FFC20E;
    letter-spacing: 1px;
}

.footer .footer-contact p i {
    padding: 0; 
    width: 10px;
    font-size: 10px;
    margin-right: 5px;
    line-height: 0px;
}
.footer .footer-social {
    display: flex; /* Susun tombol secara horizontal */
    gap: 10px; /* Jarak antar tombol */
}

.footer .footer-social i {
    font-size: 20px; /* Ukuran ikon seragam */
    line-height: 1; /* Hilangkan efek tinggi baris */
    vertical-align: middle; /* Pusatkan ikon secara vertikal */
}

.footer .footer-social a {
    display: flex; /* Gunakan flexbox */
    align-items: center; /* Pusatkan konten secara vertikal */
    justify-content: center; /* Pusatkan konten secara horizontal */
    width: 40px; /* Lebar tombol */
    height: 40px; /* Tinggi tombol, sama dengan lebar */
    margin-top: 62px; /* Reset margin */
    padding: 0; /* Reset padding */
    border-radius: 40%; /* Buat tombol berbentuk lingkaran */
    background-color: #ffffff; /* Warna latar tombol */
    color: #0c50e1; /* Warna ikon */
    text-decoration: none; /* Hilangkan garis bawah */
    border: 1px solid #ffffff; /* Border opsional */
    box-sizing: border-box; /* Pastikan padding tidak memengaruhi ukuran tombol */
    transition: background-color 0.3s ease, color 0.3s ease;
}

.footer .footer-social a:first-of-type {
    margin-left: 60px; /* Tambahkan margin hanya untuk a pertama */
}

.footer .footer-social a:not(:first-of-type) {
    margin-left: 0px; /* Pastikan elemen lainnya tidak memiliki margin-left */
}


.footer .footer-social a:hover {
    background-color: #0c50e1; /* Warna latar saat hover */
    color: #e2e2e3; /* Warna ikon saat hover */
}

.footer .footer-social a:last-child {
    margin-right: 0; /* Hilangkan margin kanan tombol terakhir */
}



.footer .footer-newsletter form {
    position: relative;
    width: 100%;
}

.footer .footer-newsletter input {
    margin-bottom: 15px;
    height: 45px;
    background: transparent;
    border: 1px solid #ffffff;
    border-radius: 5px;
}

.footer .footer-newsletter label {
    margin-top: 5px;
    color: #777777;
    font-size: 14px;
    letter-spacing: 1px;
}

.footer .footer-newsletter .btn.btn-custom {
    width: 100%;
    color: #0c50e1;
    background: #ffffff;
    box-shadow: inset 0 0 0 0 #eb7200;
}

.footer .footer-newsletter .btn:hover {
    color: #ffffff;
    background: #FFC20E;
    box-shadow: inset 200px 0 0 0 #FFC20E;
}

.footer .copyright {
    text-align: center;
    padding-top: 10px;
    padding-bottom: 25px;
}

.footer .copyright p {
    margin: 0;
    color: #1d51ec;
    font-size: 15px;
}

.footer .copyright p a {
    color: #1d51ec;
    font-weight: 800;
    letter-spacing: 0px;
    font-size: 15px;
}

.footer .copyright p a:hover {
    color: #FFC20E;
}
.footer .footer-info .logo {
    line-height: 0;
    margin-bottom: 25px;
  }
  
  .footer .footer-info .logo img {
    max-height: 40px;
    margin-right: 6px;
  }
  
  .footer .footer-info .logo span {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    font-family: var(--font-primary);
  }
/*******************************/
/********* featured-services CSS **********/
/*******************************/

/* Featured Services Section */
.featured-services {
    padding: 60px 15px;
    background-color: #ffffff; /* Warna latar belakang lembut */
  }
  
  .featured-services .section-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #003366; /* Warna utama branding */
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  
  /* Service Item Styling */
  .featured-services .service-item {
    display: flex;
    align-items: center;
    padding: 20px;
    border-radius: 10px;
    background-color: #1d51ec;
    box-shadow: 4px 4px 10px rgba(255, 255, 255, 0.1), -4px -4px 10px rgba(255, 255, 255, 0.9); /* Neumorphism */
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  }
  
  .featured-services .service-item:hover {
    transform: translateY(-10px);
    box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.2), -8px -8px 20px rgba(255, 255, 255, 0.8); /* Efek hover */
  }
  
  .featured-services .icon {
    font-size: 3rem;
    color: #FFC20E;
    margin-right: 15px;
    flex-shrink: 0;
  }
  
  .featured-services .title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #FFC20E;
    margin-bottom: 10px;
  }
  
  .featured-services .description {
    font-size: 1rem;
    font-weight: 500;
    color: #21201c;
    line-height: 1.6;
  }
  
  /* Responsif */
  @media (max-width: 768px) {
    .featured-services .service-item {
      flex-direction: column;
      text-align: center;
    }
  
    .featured-services .icon {
      margin-bottom: 15px;
      margin-right: 0;
    }
  }
  

  /* Values Section Styling */
.values-section {
    padding: 40px 20px; /* Memberikan ruang dalam section */
    background-color: #ffffff; /* Warna latar belakang lembut */
    text-align: center; /* Teks berada di tengah */
  }
  
  .values-section h2 {
    font-size: 2.5rem; /* Ukuran teks utama */
    font-weight: bold;
    color: #003366; /* Warna biru sesuai branding */
    margin-bottom: 30px; /* Jarak di bawah judul */
    text-transform: uppercase; /* Ubah teks menjadi huruf kapital */
  }
  
  /* Container untuk item Tata Nilai */
  .values-section .value-item-container {
    display: flex; /* Menyusun item secara horizontal */
    justify-content: space-around; /* Memberikan jarak antar elemen */
    align-items: center; /* Menyelaraskan elemen secara vertikal */
    flex-wrap: nowrap; /* Mencegah elemen turun ke baris berikutnya */
    gap: 20px; /* Jarak antar item */
    overflow-x: auto; /* Scroll horizontal jika elemen terlalu banyak */
    padding: 10px 0; /* Ruang tambahan di atas dan bawah */
  }
  
  /* Styling untuk tiap Value Item */
  .value-item {
    flex: 0 0 15%; /* Setiap item memiliki lebar yang tetap */
    text-align: center; /* Pusatkan teks */
    padding: 15px;
    background-color: #D1E5FF; /* Latar belakang putih */
    border-radius: 10px; /* Sudut melengkung */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Bayangan lembut */
    transition: transform 0.3s, box-shadow 0.3s; /* Animasi transisi */
  }
  
  .value-item:hover {
    transform: translateY(-10px); /* Efek hover: naik sedikit */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Bayangan lebih gelap */
  }
  
  /* Styling untuk Huruf Awal (Letter) */
  .value-item .letter {
    font-size: 3rem; /* Ukuran besar untuk huruf awal */
    font-weight: bold;
    color: #0c50e1; /* Warna emas */
    margin-bottom: 10px;
  }
  
  /* Styling untuk Judul (Title) */
  .value-item .title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #003366; /* Warna biru branding */
    margin-bottom: 10px;
  }
  
  /* Styling untuk Deskripsi (Description) */
  .value-item .description {
    font-size: 0.9rem; /* Ukuran teks kecil */
    color: #555555; /* Warna abu-abu untuk kontras */
    line-height: 1.5; /* Jarak antar baris */
  }
  
  /* Responsif untuk tampilan kecil */
  @media (max-width: 768px) {
    .value-item {
      flex: 0 0 25%; /* Ukuran item lebih lebar pada layar kecil */
    }
  }
  
  @media (max-width: 480px) {
    .value-item {
      flex: 0 0 50%; /* Ukuran item menjadi lebih besar pada layar sangat kecil */
    }
  }
  
/* Container styling */
.carousel-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-family: Arial, sans-serif;
    padding: 20px;
}

/* Title styling */
.carousel-title {
    font-size: 30px;
    font-weight: bold;
    color: #FFC20E;
    margin-bottom: 10px;
}

/* Timeline styling */
.timeline {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.timeline span {
    font-size: 18px;
    color: #a1abf9;
}

.timeline .active {
    color: #0c50e1;
    font-weight: bold;
    border-bottom: 2px solid #0c50e1;
}

/* Carousel content styling */
.carousel-content {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 800px;
}

.carousel-content img {
    width: 150px;
    height: 150px;
}



.carousel-text h3 {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
}

.carousel-text p {
    font-size: 16px;
    margin-top: 10px;
    color: #333;
}

/* Navigation buttons */
.nav-buttons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}
.navbar .nav-link {
    color: #333; /* Warna teks default */
    font-family: 'Poppins', sans-serif; /* Gaya huruf modern */
    font-weight: 500; /* Ketebalan huruf */
    font-size: 16px; /* Ukuran huruf */
    letter-spacing: 0.5px; /* Spasi antar huruf */
    transition: color 0.3s ease, transform 0.2s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: #FFC20E; /* Warna teks saat hover atau aktif */
    transform: scale(1.05); /* Efek zoom-in saat dihover */
}

.dropdown-menu .dropdown-item {
    color: #0c50e1; /* Warna teks pada dropdown item */
    font-family: 'Poppins', sans-serif; /* Sama dengan navbar untuk konsistensi */
    font-size: 15px;
    padding: 8px 20px; /* Padding untuk jarak */
    transition: color 0.3s ease, background-color 0.2s ease;
}

.dropdown-menu .dropdown-item:hover {
    color: #FFC20E; /* Warna teks saat hover */
    border-radius: 4px; /* Membuat sudut sedikit melengkung */
}
.btn-lihat-selengkapnya {
    display: inline-block;
    padding: 12px 24px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    margin-top: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-weight: bold;
    font-size: 15px;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-lihat-selengkapnya:hover {
    background-color: #FFC20E;
    color: #f1f1f1;
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Mengubah posisi konten ke atas */
    padding-top: 0vh; /* Menambahkan jarak atas agar tidak terlalu menempel pada bagian atas */
    overflow: hidden;
}

.hero-video {
    position: absolute; /* Posisi untuk memungkinkan overlay */
    width: 100%; /* Sesuaikan lebar video */
    height: 100%; /* Menjaga rasio aspek */
    filter: brightness(0.5); /* Membuat video lebih gelap */
    object-fit: cover;
    z-index: 1; /* Menempatkan video di bawah overlay jika diperlukan */
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 1;
    padding: 20px;
    border-radius: 10px;
    margin-top: 0; /* Memastikan margin atas pada teks dikurangi */
}
.hero-content h1 {
    margin-top: 100px; /* Menambahkan margin atas */
}
.here .hero-content h1 {
    margin-top: 100px; /* Menambahkan margin atas */
}

h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

h1 span {
    color: #FFC20E; /* Warna kuning untuk teks "sebagai pioner" */
}

p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    color: #ffffff; /* Warna teks */
    background-color: transparent; /* Warna latar belakang */
    border:#0056b3;
    border: 2px solid #ffffff; /* Garis pinggir tombol */
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn:hover {
    background-color: #0056b3; /* Warna latar belakang saat hover */
    border-color: #0056b3;
    transform: scale(1.05); /* Efek zoom */
    color: #fff ;
}

.btn:focus {
    outline: 5px solid #0056b3; /* Garis fokus */
    outline-offset: 2px;
}

div .btn {
    margin-top: 10px; /* Jarak tombol dari elemen lain */
}
/*******************************/
/******* Card-Container CSS *******/
/*******************************/
.card-container  {
    display: flex;
    gap: 20px;
}
.card-container h1 {
    font-size: large;
    font-weight: 500;
    color: #007bff;
}

.profile-card  {
    border: 0px solid #ccc;
    color: #007bff;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    background: #fff;
    cursor: pointer;
    transition: box-shadow 0.3s ease;
}
.profile-card h3 {
    color: #007bff;
    font-weight: bold;
}
.profile-card p {
    color: #3a3a3a;
    font-weight: 200;
    font-size: medium;
}
.profile-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.profile-image {
    width: 200px;
    height: 300px;
    margin-bottom: 10px;
}
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
}
.modal-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    max-width: 700px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;  /* Agar jika konten meluap, tetap terpotong */
}
.profile-image-modal {
    width: 200px;
    height: 300px;
    object-fit: cover;
    border-radius: 5px;
}
.profile-details {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Menjaga teks tetap teratur */
    max-width: 500px;  /* Batasi lebar teks agar tetap rapi */
    overflow: hidden;
}

.modal-content h3 {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: bold;
}
.modal-content p {
    margin: 0;
    line-height: 1.6;
    font-size: 16px;
    font-weight: 400;
    color:#000000;
    text-align: justify;
    overflow-y: auto; /* Jika teks terlalu panjang, bisa di-scroll */
    max-height: 200px;  /* Membatasi tinggi paragraf agar tidak memanjang ke bawah */
}
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
}
/*******************************/
/******* full-screen CSS *******/
/*******************************/
.full-screen-image {
    width: 100%;
    height: 100vh; /* Tinggi sesuai dengan layar browser */
    overflow: hidden;
}

.full-screen-image img {
    width: 85%;
    height: 100%;
    object-fit: cover; /* Agar gambar tidak terdistorsi */
}
/*******************************/
/******* Content CSS *******/
/*******************************/
.content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 90%;
    max-width: 1200px;
    margin: 20px auto;
    gap: 20px; /* Jarak antara gambar dan teks */
}

.image-content {
    flex: 1; /* Gambar mengisi 1 bagian dari layout */
}

.image-content img {
    width: 100%;
    max-width: 500px; /* Ukuran maksimal gambar */
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.text-content {
    flex: 2; /* Teks mengisi 2 bagian dari layout */
    text-align: justify;
    color: #000000;
}

.text-content p {
    margin-bottom: 15px;
    font-size: large;
    font-weight: 500;
    color: #000000;
}

/*******************************/
/******* Title Section CSS *******/
/*******************************/
.title-section {
    padding: 20px;
    text-align: left; /* Mengatur teks ke sisi kiri */
}

.title-section h1 {
    font-size: 50px; /* Ukuran font besar */
    font-weight: bold;
    color: #333; /* Warna gelap */
    line-height: 1.2; /* Memberikan jarak antar baris */
}

.title-section span {
    font-size: larger;
    font-weight: bold;
    color: #313334;
}

.title-section span h2 {
    font-size: large;
    font-weight: 600;
}

.hero-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px;
}

.hero-left {
  flex: 2;
}

.hero-left h1 {
  font-size: 48px; /* Ukuran besar judul */
  font-weight: bold;
  color: #333333;
  margin: 0;
  line-height: 1.2;
}


.hero-right {
    background-color: #D1E5FF; /* Warna latar belakang lembut */
    border-radius: 10px; /* Sudut melengkung */
    padding: 20px 25px; /* Spasi dalam elemen */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Bayangan lembut */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .hero-right:hover {
    transform: translateY(-5px); /* Efek hover naik */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15); /* Bayangan lebih gelap */
  }
  
  .hero-right h3 {
    font-size: 1.8rem; /* Ukuran font untuk heading */
    color: #003366; /* Warna branding biru tua */
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
  }
  
  .hero-right p {
    font-size: 1rem; /* Ukuran font untuk paragraf */
    color: #555555; /* Warna teks abu-abu gelap */
    line-height: 1.6; /* Jarak antar baris */
    text-align: justify; /* Teks rata kiri-kanan */
    font-weight: 300;
  }
  
  /* Responsif untuk perangkat kecil */
  @media (max-width: 768px) {
    .hero-right {
      padding: 15px 20px; /* Kurangi padding untuk layar kecil */
    }
  
    .hero-right h3 {
      font-size: 1.5rem; /* Sesuaikan ukuran heading */
    }
  
    .hero-right p {
      font-size: 0.9rem; /* Sesuaikan ukuran teks */
    }
  }
  
/*******************************/
/*******  Hero Section CSS *******/
/*******************************/

.hero-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 40px;
}
  .hero-left {
    flex: 2;
}
  .hero-left h1 {
    font-size: 70px; /* Ukuran besar judul */
    font-weight: bold;
    color: #0c50e1;
    margin: 0;
    line-height: 1.2;
}
  
  .hero-right {
    flex: 1;
    text-align: left;
}
  .hero-right h3 {
    font-size: 25px;
    color: #323030;
    font-weight: bold;
    margin: 0 0 10px 0;
}
  .hero-right p {
    font-size: 20px;
    color: #3a3737;
    font-weight: 400;
    line-height: 1.6;
}
.hero-content h1 {
    color: #dedada;
    font-weight:500;
    font-size: 50px;
}
/*******************************/
/******* carousel CSS *******/
/*******************************/
.carousel-container {
    position: relative;
    width: 80%;
    max-width: 1000px;
    overflow: hidden;
}

.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    min-width: 100%;
    position: relative;
    text-align: center;
}

.carousel-item img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 16px;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.carousel-controls button {
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.carousel-controls button:hover {
    background: rgba(0, 0, 0, 0.8);
}

.carousel-indicators {
    text-align: center;
    margin-top: 10px;
}

.indicator {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.indicator.active {
    background: #3498db;
}

 
/*******************************/
/******* visi-misi CSS *******/
/*******************************/

.visi-misi-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin: 40px auto;
    max-width: 1200px;
    gap: 20px;
}

.visi, .misi {
    background-color: #D1E5FF;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    flex: 1;
    max-width: 48%;
    transition: transform 0.3s, box-shadow 0.3s;
}

.visi:hover, .misi:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.visi h2, .misi h2 {
    font-size: 28px;
    color: #2c3e50;
    font-weight: bold;
    margin-bottom: 20px;
    border-left: 5px solid #007bff;
    padding-left: 10px;
}

.visi p, .misi ol {
    font-size: 17px;
    font-weight: 600;
    color: #003366;
    line-height: 2;
}

.misi ol {
    padding-left: 20px;
}

.misi ol li {
    margin-bottom: 15px;
    position: relative;
}

/*******************************/
/********** carousel CSS ***********/
/*******************************/
.carousel {
    position: relative;
    background: #f8f9fa;
    padding: 10px 0;
}

.carousel-item {
    text-align: center;
    margin: 10px;
    border-radius: 15px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: none;
    /* Menghapus box-shadow untuk menghindari efek hitam di pinggiran */
}

.carousel-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 180px; /* Sesuaikan tinggi area gambar */
    background: #e9ecef;
}

.carousel-img img {
    max-height: 75%;
    max-width: 75%; /* Pastikan tidak terlalu lebar */
    object-fit: contain;
    border-radius: 10px;
}

.carousel-text {
    padding: 10px;
}

.carousel-text h1 {
    font-size: 1.5rem; /* Ukuran teks judul lebih kecil */
    color: #333;
    margin-bottom: 10px;
}

.carousel-text p {
    font-size: 0.9rem; /* Ukuran teks deskripsi lebih kecil */
    color: #666;
    margin-bottom: 10px;
}

.btn-custom {
    padding: 8px 15px; /* Tombol lebih kecil */
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    font-size: 0.9rem;
}

.btn-custom:hover {
    background-color: #0056b3;
}

/*******************************/
/******* download-container CSS *******/
/*******************************/

.download-container {
    text-align: center;
    background: #ffffff;
    padding: 20px 40px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.download-container h1 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #004080; /* Warna sesuai tema Jasamarga */
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.download-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    color: #fff;
    background-color: #004080; /* Warna sesuai tema Jasamarga */
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.download-buttons a:hover {
    background-color: #003366; /* Warna lebih gelap untuk hover */
}

.download-buttons a img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

/*******************************/
/******* Services Section CSS *******/
/*******************************/

.service-section h1, h2 {
        text-transform: uppercase;
        font-weight: bold;
        color: #646464; /* Warna biru sesuai tema Jasa Marga */
        text-align: center;
        margin-bottom: 20px;
    }
    
.service-section p {
        font-size: 10px;
        color: #3b3b3b;
        text-align: justify;
        margin: 10px 20px;
    }
    
    /* Section Styling */
    #service {
        background-color: #fff;
        padding: 40px 20px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        border-radius: 10px;
        margin: 20px auto;
        max-width: 900px;
    }
    
    /* Features List */
    #service h2 {
        margin-top: 30px;
        font-size: 24px;
        border-bottom: 2px solid #646464;
        display: inline-block;
        padding-bottom: 5px;
    }
    
    #service p {
        margin: 10px 0;
        line-height: 1.8;
        font-size: small;
        color: #726d6d;
    }
    
    #service p:first-child {
        font-weight: bold;
    }
    
    /* Download Section */
    .download-container {
        text-align: center;
        background-color: #0078d7;
        color: #fff;
        padding: 30px 20px;
        margin: 40px auto;
        border-radius: 10px;
    }
    
    .download-container h1 {
        font-size: 26px;
        margin-bottom: 20px;
        color:#fff;
    }
    
    .download-container p {
        font-size: 18px;
        margin-bottom: 20px;
        color: #fff;
    }
    
    .download-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
    }
    
    .download-buttons a {
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: #0078d7;
        background-color: #fff;
        padding: 10px 20px;
        border-radius: 5px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        font-size: 16px;
        font-weight: bold;
        transition: transform 0.2s, box-shadow 0.2s;
    }
    
    
    .download-buttons a:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
        background-color: #eaeaea;
    }
/*******************************/
/******* Jaringan Tol CSS *******/
/*******************************/
header {
    background-color: #f4f4f4;
    padding: 10px 0;
    text-align: center;
}

.jaringantol-container {
    width: 90%;
    max-width: 1200px;
    margin: 20px auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.image-section {
    text-align: center;
}

.image-section img {
    width: 100%;
    max-width: 800px;
    border-radius: 8px;
}


.description h2 {
    font-size: 30px;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: #414040;
    margin-bottom: 10px;
    letter-spacing: 4px;
    text-align: center;
}

.description p {
    font-size: 16px;
    line-height: 1.8;
    text-align: left;
    color: #555;
}



.info-box {
    margin-top: 15px;
    padding: 15px;
    background-color: #f0f7ff;
    border: 1px solid #cce5ff;
    border-radius: 8px;
    font-size: 15px;
    line-height: 1.6
}

.info-box p {
    margin: 5px 0;
    color: #333;
}


.list-section ul {
    list-style-type: none;
}

.list-section li {
    margin-bottom: 5px;
    font-size: 16px;
}

.highlight {
    font-weight: bold;
    color: #003399;
}

footer {
    text-align: center;
    padding: 10px;
    background-color: #002f6c;
    color: #fff;
    margin-top: 20px;
}

/*******************************/
/******* chatbot button CSS *******/
/*******************************/

.chatbot-button {
    position: fixed;
    bottom: 10px; /* Jarak dari bawah layar */
    right: 80px;  /* Jarak dari kanan layar */
    z-index: 9999; /* Pastikan berada di atas elemen lainnya */
    display: flex; /* Agar ikon dan teks bisa sejajar */
    align-items: center; /* Rata tengah secara vertikal */
    background-color: #0078d7; /* Warna latar tombol */
    color: white; /* Warna teks dan ikon */
    border-radius: 30px; /* Membuat bentuk tombol melengkung */
    padding: 10px 20px; /* Spasi di dalam tombol */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Bayangan untuk efek 3D */
    font-size: 16px; /* Ukuran teks */
    text-decoration: none; /* Menghilangkan garis bawah */
    transition: transform 0.3s ease, background-color 0.3s ease;
  }
  
  .chatbot-button:hover {
    background-color: #98a9ee; /* Warna tombol saat hover */
    transform: scale(1.05); /* Efek zoom saat hover */
    color: #000000;
  }
  
  .chat-icon {
    font-size: 24px; /* Ukuran ikon */
    margin-right: 10px; /* Jarak antara ikon dan teks */
  }
  
  .chat-text {
    font-weight: bold; /* Membuat teks lebih tebal */
  }
  
  /* Animasi muncul tombol */
  .chatbot-button {
    animation: slideIn 0.5s ease-out;
  }
  
  @keyframes slideIn {
    from {
      transform: translateY(100px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  