/* navbar */
.navbar-custom {
    transition: background-color 0.4s ease, ;
    background-color: transparent;
}

.navbar-custom-white {
    transition: background-color 0.4s ease, ;
    background-color: #ffffff;
}

.navbar-custom.scrolled {
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* nav links animation */
.navbar-custom .nav-link {
    position: relative;
    transition: color 0.3s ease;
    color: #ffffff;
}

.navbar-custom-white .nav-link {
    position: relative;
    transition: color 0.3s ease;
    color: #000000A6;
}

.navbar-custom .nav-link.active {
    color: #fb9501;
}

.navbar-custom-white .nav-link.active {
    color: #0018d0;
}

.navbar-custom.scrolled .nav-link {
    position: relative;
    transition: color 0.3s ease;
    color: #000000A6;
}

.navbar-custom.scrolled .nav-link.active {
    color: #0018d0;
}

.navbar-custom .nav-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: #fb9501;
    /* Bootstrap primary */
    left: 50%;
    bottom: 0;
    transition: all 0.3s ease;
}

.navbar-custom-white .nav-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: #0018d0;
    /* Bootstrap primary */
    left: 50%;
    bottom: 0;
    transition: all 0.3s ease;
}

.navbar-custom.navbar-custom.scrolled .nav-link::after {
    background: #0018d0;
    /* Bootstrap primary */
}

.navbar-custom .nav-link:hover::after {
    width: 100%;
    left: 0;
}

.navbar-custom-white .nav-link:hover::after {
    width: 100%;
    left: 0;
}

#navbarLogo {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* breadcrumb */
.breadcrumb-box {
    background: #0018d0;
    padding: 16px 22px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.breadcrumb {
    margin: 0;
    font-size: 14px;
}

/* link */
.breadcrumb-item a {
    text-decoration: none;
    color: #fb9501;
    font-weight: 500;
    transition: 0.3s;
}

.breadcrumb-item a:hover {
    color: #ffffff;
}

/* active */
.breadcrumb-item.active {
    color: #ffffff;
    font-weight: 600;
}

/* separator */
.breadcrumb-item+.breadcrumb-item::before {
    content: "›";
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    margin: 0 8px;
}

/* -- halaman galeri --*/
/* jarak antar row */
.gallery-row {
    margin-bottom: 50px;
}

/* card galeri */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all .4s ease;
}

/* gambar */
.gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform .6s ease;
}

/* overlay gradient */
.gallery-item::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    opacity: 0;
    transition: .4s;
}

/* text hover */
.gallery-item .gallery-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    transition: .4s;
}

.gallery-item .gallery-text h5 {
    margin: 0;
    font-weight: 600;
}

/* hover animation */
.gallery-item:hover img {
    transform: scale(1.12);
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item:hover .gallery-text {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
}

/* end halaman galeri */


/* -- halaman index --*/
/* animmation for slogan */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(550px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* animmation service card */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

#services-slider .item {
    height: 100%;
    min-height: 220px;
    /* set same height */
    display: flex;
}

#services-slider .owl-stage {
    display: flex;
}

#services-slider .owl-item {
    display: flex;
}

#services-slider .item {
    width: 100%;
}

/* client kami */
.client-box {
    background: #fff;
    padding: 25px 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.client-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.industry-icon {
    font-size: 32px;
    color: #0d6efd;
    margin-bottom: 10px;
}

.client-box p {
    margin: 0;
    font-weight: 500;
    font-size: 15px;
}

/* news */
.news-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    height: 420px;

    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* gambar seragam */
.news-img {
    height: 200px;
    overflow: hidden;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* isi card */
.news-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* tanggal */
.news-date {
    font-size: 13px;
    color: #888;
    margin-bottom: 8px;
}

/* judul maksimal 2 baris */
.news-content h5 {
    font-weight: 600;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* deskripsi maksimal 3 baris */
.news-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* tombol selalu di bawah */
.read-more {
    margin-top: auto;
    font-size: 14px;
    font-weight: 600;
    color: #0d6efd;
    text-decoration: none;
}

/* -- end halaman index --*/

/* -- halaman tim kami -- */
.team-card img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    transition: 0.3s;
}

.team-card img:hover {
    transform: scale(1.05);
}

/* -- end halaman tim kami -- */

/* -- halaman tentang kami -- */
.section-title {
    font-weight: 700;
    margin-bottom: 15px;
}

.value-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: 0.3s;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.value-icon {
    font-size: 40px;
    color: #0d6efd;
    margin-bottom: 15px;
}

/* -- end halaman tentang kami -- */

/* -- halaman jasa dan layanan -- */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.process-card {
    background: #fff;
    padding: 25px 20px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    height: 100%;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.process-icon {
    font-size: 36px;
    color: #0d6efd;
    margin-bottom: 10px;
    display: block;
}

/* -- end halaman jasa dan layanan -- */

/* -- start halamman berita -- */
.section-title {
    color: #0018d0;
    font-weight: 700;
}

.news-card a,
.news-card {
    text-decoration: none;
}

.news-card {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    transition: 0.3s;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.news-img {
    height: 180px;
    object-fit: cover;
    width: 100%;
}

.news-title {
    font-size: 16px;
    font-weight: 600;
    color: #0018d0;
}

.news-meta {
    font-size: 12px;
    color: #777;
}

.btn-custom {
    background-color: #0018d0;
    color: #fff;
    border-radius: 20px;
    font-size: 12px;
    padding: 6px 14px;
}

.btn-custom:hover {
    background-color: #000ea8;
    color: #fff;
}

/* -- end halaman berita -- */

/* -- start halaman berita detail -- */

.content-box {
    background: #fff;
    border-radius: 14px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.content-box img {
    border-radius: 12px;
    margin-bottom: 20px;
}

/* HIGHLIGHT BOX */
.highlight {
    background: #eef2ff;
    border-left: 4px solid #0018d0;
    padding: 15px;
    border-radius: 8px;
    font-style: italic;
    margin-bottom: 20px;
}

/* BACK BUTTON */
.back-link {
    display: inline-block;
    margin-top: 25px;
    color: #0018d0;
    text-decoration: none;
    font-weight: 500;
}

.back-link:hover {
    text-decoration: underline;
}

.meta {
    font-size: 14px;
    color: #666;
}

.meta .badge {
    background-color: #0018d0;
}

.content-box h2 {
    color: #0018d0;
}

.highlight {
    background: #eef2ff;
    border-left: 4px solid #0018d0;
    padding: 15px;
    border-radius: 8px;
    font-style: italic;
}

.news-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    /* ubah ke 4/3 atau 3/2 kalau mau */
    object-fit: cover;
    border-radius: 12px;
}

/* -- end halaman berita detail -- */

/* -- start halaman karir -- */
.career-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.career-card:hover {
    transform: translateY(-5px);
}

.career-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.career-title {
    font-weight: 600;
    color: #0018d0;
}

.career-modal-img {
    width: 100%;
    max-width: 300px;
    height: 400px;
    object-fit: cover;
}

/* -- end halaman karir -- */

/* -- start halaman hubungi kami -- */
/* SECTION 1 */
.contact-box {
    background: #fff;
    border-radius: 14px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-title {
    color: #0018d0;
    font-weight: 700;
}

.contact-item {
    margin-bottom: 15px;
}

.contact-item i {
    color: #0018d0;
    margin-right: 10px;
}

/* FORM */
.form-control:focus {
    border-color: #0018d0;
    box-shadow: 0 0 0 0.2rem rgba(0, 24, 208, 0.2);
}

.btn-blue {
    color: #fff;
    background: #0018d0;
    border: none;
    border-radius: 25px;
    padding: 8px 20px;
}

.btn-blue:hover {
    background: #000ea8;
    color: #fff;
}

/* MAP */
.map-container {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.schedule li {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px dashed #ddd;
    font-size: 14px;
}

.schedule li:last-child {
    border-bottom: none;
}

/* -- end halaman hubungi kami -- */