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

:root {
    --primary-color: #2887ff;
    --primary-color-dark: #2476da;
    --text-dark: #0a0a0a;
    --text-light: #737373;
    --extra-light: #f3f4f6;
    --white: #ffffff;
    --max-width: 1200px;
}

p {
    color: #343a40;
    font-weight: 500;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

/* .section__container {
    max-width: var(--max-width);
    padding: 5rem 1rem;
} */

.section__header {
    margin-bottom: 5px;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
}

.section__description {
    font-size: 1rem;
    /* margin-inline: auto; */
    color: var(--text-dark);
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-weight:600;
}

.section__description {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

#sublokasi {
    font-size: 1rem;
    max-width: 600px;
    color: #0A0A0A;
    white-space: nowrap;
    font-family: 'Poppins', sans-serif;
}

.btn {
    padding: 0.4rem 0.9rem;
    outline: none;
    border: none;
    font-size: 0.8rem;
    white-space: nowrap;
    color: var(--white);
    background-color: var(--primary-color);
    border-radius: 0.3rem;
    transition: 0.3s;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--primary-color-dark);
}

.logo {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-dark);
}

img {
    display: flex;
    width: 100%;
}

.logo-row {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.logo-item img {
    max-width: 100px;
    height: auto;
    cursor: pointer;
}

a {
    text-decoration: none;
    transition: 0.3s;
}

ul {
    list-style: none;
}

html,
body {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
}

/* .custom-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
} */

#mainNavbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    background: linear-gradient(180deg,
            rgba(12, 70, 147, 0.55) 0%,
            rgba(12, 70, 147, 0.35) 50%,
            rgba(12, 70, 147, 0.0) 100%);

    /* backdrop-filter: blur(2px); */
}


.nav-hidden {
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
}

.nav-scrolled-up {
    background: rgba(0, 0, 0, 0.7);
    /* atau warna gelap lainnya */
    transition: background-color 0.3s ease-in-out;
}

.grid-no-gap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 kolom */
    gap: 0;
    /* hilangkan celah antar gambar */
}

.grid-item img {
    width: 23% !important;
    height: auto !important;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.custom-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /* <-- ini bikin kontennya ke tengah */
    gap: 1rem;
}

.custom-grid .logo-item {
    flex: 0 0 calc(20% - 1rem);
    /* 5 kolom */
    box-sizing: border-box;
}

/* Responsif */
@media (max-width: 992px) {
    .custom-grid .logo-item {
        flex: 0 0 calc(33.333% - 1rem);
        /* 3 kolom */
    }
}

@media (max-width: 768px) {
    .custom-grid .logo-item {
        flex: 0 0 calc(50% - 1rem);
        /* 2 kolom */
    }
}

@media (max-width: 576px) {
    .custom-grid .logo-item {
        flex: 0 0 100%;
        /* 1 kolom */
    }
}

.grid-wrapper {
    position: relative;
}

.nag-logo {
    position: absolute;
    top: 49%;
    /* posisikan di tengah secara vertikal */
    left: 50%;
    /* posisikan di tengah secara horizontal */
    transform: translate(-50%, -50%);
    z-index: 9999;
    /* pastikan di paling atas */
    pointer-events: none;
    /* biar nggak ganggu klik elemen di bawahnya */
}

.nag-logo img {
    max-width: 400px;
    /* perkecil ukuran */
    height: auto;
}

.goal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 1rem;
    max-width: 950px;
    /* atur sesuai kebutuhan */
    margin: 3rem auto 0 auto;
    /* center */
}

.goal-card {
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 1.5rem;
    border-radius: 20px;

    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.9) 0%,
            rgba(121, 149, 223, 0.9) 100%);

    box-shadow:
        0 20px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.goal-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.goal-img {
    width: 25vh;
    height: 20vh;
    /* margin-right: 1.5rem; */
    object-fit: contain;
    transition: transform 0.3s ease;
}

.goal-card:hover .goal-img {
    transform: scale(1.05);
}

.goal-text h4 {
    margin: 0;
    font-weight: 600;
    color: white;
}

.goal-text p {
    margin: 0.25rem 0 0;
    color: #ffffff;
    font-size: 0.9rem;
}

/* Tablet */
@media (max-width: 992px) {
    .goal-grid {
        grid-template-columns: 1fr;
    }

    .goal-img {
        width: 20vh;
        height: 18vh;
    }
}

/* HP */
@media (max-width: 576px) {
    .goal-card {
        flex-direction: column;
        text-align: center;
    }

    .goal-img {
        width: 18vh;
        height: auto;
        margin: 0 0 1rem 0;
    }
}





.grid-item {
    background-color: lightgray;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

/* Efek hover */
.grid-item:hover img {
    transform: scale(1.08);
    cursor: pointer;
}

.grid-item:hover {
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.grid-wrapper {
    margin: 0 auto;
    padding: 0;
}

.grid-no-gap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.grid-item {
    cursor: pointer;
    background-color: #f5f5f5;
    /* border-radius: 20px; */
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.icon-center {
    font-size: 80px;
    color: #333;
    margin-bottom: 20px;
}

.label {
    /* background-color: #555; */
    color: #fff;
    padding: 10px;
    width: 100%;
    font-weight: bold;
    /* border-radius: 0 0 20px 20px; */
}

.grid-no-gap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    /* Responsif */
    gap: 0;
}

.grid-item {
    position: relative;
    text-align: center;
    overflow: hidden;
}

.grid-item img {
    width: 100%;
    height: auto;
    display: block;
}

.grid-item .label {
    position: absolute;
    bottom: 10px;
    /* jarak dari bawah */
    left: 50%;
    transform: translateX(-50%);
    /* background-color: rgba(0, 0, 0, 0.6); */
    /* opsional: beri latar belakang */
    color: white;
    padding: 5px 10px;
    font-weight: bold;
    border-radius: 5px;
    font-size: 14px;
}

.automotive {
    border-radius: 15px 0 0 0;
}

.manufacture {
    border-radius: 0 15px 0 0;
}

.others {
    border-radius: 0 0 15px 0;
}

.finance {
    border-radius: 0 0 0 15px;
}


.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
    border-radius: inherit;
}

.grid-item:hover {
    z-index: 2;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.3);
}

.grid-item:hover img {
    transform: scale(1.08);
}

.news-img {
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.card:hover .news-img {
    /* transform: scale(1.05); */
    opacity: 0.9;
}


/* .overlay {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: white;
    font-weight: bold;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
    z-index: 3;
} */

/* Lingkaran tengah */
.circle-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    z-index: 5;
}

.circle-item {
    position: absolute;
    width: 50%;
    height: 50%;
    color: white;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    /* justify-content: center; */
    font-size: 10px;
    /* text-align: center; */
    padding: 5px;
}

.circle-item i {
    font-size: 16px;
    margin-bottom: 4px;
}

.top-left {
    top: 0;
    left: 0;
    background-color: #0677A1;
}

.top-right {
    top: 0;
    right: 0;
    background-color: #F7B500;
}

.bottom-left {
    bottom: 0;
    left: 0;
    background-color: #3CA678;
}

.bottom-right {
    bottom: 0;
    right: 0;
    background-color: #C03221;
}

/* Container untuk posisi lingkaran di tengah grid */
.grid-wrapper {
    position: relative;
}

/* Overlay teks */
/* .overlay {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: white;
    font-weight: bold;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
    z-index: 3;
} */




.custom-navbar.scrolled {
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.1);
    /* lebih gelap saat scroll */
}

#mainNavbar {
    position: fixed;
    /* position: fixed; */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    transition: background 0.3s, box-shadow 0.3s;
}


#mainNavbar.navbar-home {
    background: linear-gradient(90deg,
            rgba(12, 70, 147, 0.1) 0%,
            rgba(12, 70, 147, 0.10) 35%,
            rgba(12, 70, 147, 0.20) 65%,
            rgba(12, 70, 147, 0.40) 100%);
}

#mainNavbar {
    border: none !important;
    box-shadow: none !important;
}

#mainNavbar.navbar-other {
    background: #031843;
}

.custom-gradient-line {
    height: 4px;
    width: 50%;
    /* margin: 1rem auto; */
    background: linear-gradient(to right, #ff3c3c, #007bff);
    border-radius: 4px;
}

.carousel-item img {
    object-fit: cover;
    /* memastikan gambar menutupi area */
    object-position: top 20px;
    /* geser posisi gambar ke bawah */
    height: 500px;
    /* sesuaikan tinggi carousel */
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}


.grid-no-gap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 0;
    margin-top: 1rem;
}

.grid-item {
    position: relative;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.overlay {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}



#automotive-smalltext {
    font-weight: 500;
    margin-top: 2.25rem;
    /* margin-left: 0.2rem; */
    text-align: right;
}

#manufacture-smalltext {
    font-weight: 500;
    margin-top: 3.2rem;
}

#financial-smalltext {
    font-weight: 500;
    margin-top: -0.32rem;
    /* margin-left: 0.2rem; */
    text-align: right;
}

#other-smalltext {
    font-weight: 500;
    margin-top: -0.3rem;
}

#manufacture-text {
    position: absolute;
    left: clamp(2rem, 31vw, 40rem);
}

#other-text {
    position: absolute;
    left: clamp(3rem, 31vw, 45rem);
}

.card:hover {
    /* cursor: pointer; */
}



.carousel-inner {
    height: 100vh;
    /* Atau 600px jika kamu ingin lebih pendek */
}



.section__container {
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
    box-sizing: border-box;
}

@media (min-width: 576px) {
    .section__container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .section__container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .section__container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .section__container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .section__container {
        max-width: 1300px;
    }
}


.grid-wrapper {
    width: 100%;
}


/* Buat background gelap transparan di belakang caption */
.carousel-caption {
    background-color: rgba(0, 0, 0, 0.4);
    /* Transparansi hitam */
    padding: 1rem;
    border-radius: 10px;
    bottom: 20%;
    /* Geser ke atas sedikit */
}

/* Atur agar teks tetap terlihat di layar kecil */
@media (max-width: 768px) {
    .carousel-caption {
        bottom: 10%;
        font-size: 14px;
        padding: 0.5rem;
    }
}


.custom-navbar a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 12px;
}

.custom-navbar a:hover {
    /* color: #2887ff; */
    /* warna teks biru */
    /* text-shadow: 0 0 3px rgb(255, 255, 255); */

    /* hitam tipis */
}

.nav-links li a,
#languageDropdown {
    color: white;
    font-weight: bold;
    /* Sudah bold dari awal */
    opacity: 1;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-links li a:hover,
#languageDropdown {
    opacity: 0.8;
    transform: scale(1.1);
}





/* Untuk memberikan ruang atas agar carousel-caption tidak tertutup navbar */
.carousel-caption {
    padding-top: 60px;
}


.nav__header {
    padding: 1rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--primary-color);
}

.nav__logo .logo {
    font-size: 1.5rem;
    color: var(--white);
}

.nav__menu__btn {
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
}

.nav__links {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2rem;
    background-color: var(--primary-color);
    transition: transform 0.5s;
    z-index: -1;
}

.nav__links.open {
    transform: translateY(100%);
}

.nav__links a {
    font-weight: 600;
    color: var(--white);
    white-space: nowrap;
}

.nav__links a:hover {
    color: var(--text-dark);
}

.nav__btns {
    display: none;
}

header {
    margin-top: 5rem;
    padding-inline: 1rem;
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

header::before {
    position: absolute;
    content: "";
    height: 100%;
    width: calc(100% - 2rem);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url(img/background6.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 3rem;
    z-index: -1;
}

.header__container {
    display: grid;

}

.header__content {
    padding: 4rem 1rem;
}


.header__content p {
    margin-bottom: 5px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
}

.header__content h1 {
    margin-bottom: 2rem;
    font-size: 4.5rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 5.5rem;
    text-align: center;
}

.header__btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.header__btns .btn {
    padding: 1rem 2rem;
}

.header__btns a {
    padding: 9px 13px;
    font-size: 1, 5rem;
    color: var(--primary-color);
    background-color: var(--white);
    border-radius: 100%;
}

.header__btns a:hover {
    color: var(--white);
    background-color: var(--primary-color);
}

/* .destination__container :is(.section__header, .section__description) {
    text-align: left;
    margin-inline-start: unset;
} */

.destination__grid {
    margin-top: 4rem;
    display: grid;
    gap: 2rem 1rem;

}

.destination__card img {
    border-radius: 1.5rem;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
}


/* .destination__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  padding: 2rem 0;
}



.destination__card img {
  width: 80%;
  margin-left: 43px;
  height: 250px;
  border-radius: 1.5rem;
  object-fit: cover;
}  */



.destination__card__details {
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;


}

.destination__card__details h4 {
    margin-bottom: 5px;
    font-size: 1.2rem;
    font-weight: 600;
    columns: var(--text-dark);
}

.destination__card__details p {
    columns: var(--text-light);
}

.destination__ratings {
    padding: 5px 10px;
    font-size: 0.9rem;
    white-space: nowrap;
    color: var(--white);
    background-color: var(--primary-color);
    border-radius: 1rem;
    transition: 0.3s;
}

.destination__card:hover .destination__ratings {
    background-color: var(--primary-color-dark);
}

.journey__grid {
    margin-top: 2rem;
    display: grid;
    gap: 0 1rem;
}

.journey__card {
    position: relative;
    isolation: isolate;
    padding-top: 4rem;
    overflow: hidden;
}

.journey__card__bg {
    padding: 2rem;
    background-color: var(--extra-light);
    border-bottom-left-radius: 1rem;
    border-top-right-radius: 1rem;
}

.journey__card__bg span {
    display: inline-block;
    margin-bottom: 4rem;
    font-size: 1.75rem;
    color: var(--primary-color);
}

.journey__card__bg h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
}

.journey__card__content {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 2rem;
    background-color: var(--primary-color);
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
    transition: 0.3s;
}

.journey__card:hover .journey__card__content {
    top: 0;
}

.journey__card__content span {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 7px 9px;
    font-size: 1rem;
    border: 2px solid var(--white);
    color: var(--white);
    border-radius: 100%;
}

.journey__card__content h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
}

.journey__card__bg p {
    color: var(--extra-light);
}

.showcase__container {
    display: grid;
    gap: 2rem;
    overflow: hidden;
}

.showcase__image img {
    max-width: 400px;
    margin-inline: auto;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
}

.showcase__content h4 {
    margin-bottom: 2rem;
    font-size: 3rem;
    font-weight: 600;
    color: var(--text-dark);
}

.showcase__content p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.showcase__content .btn {
    width: 100%;
    margin-top: 2rem;
    padding: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    background-image: url(img/showcase2.jpeg);
    background-size: cover;
    background-position: center center;
    background-repeat: repeat;
    border-radius: 5px;
}

.banner__container {
    display: grid;
    gap: 2rem;
}

.banner__card {
    padding: 2rem 1rem;
    text-align: center;
    background-color: var(--extra-light);
    border-radius: 2rem;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
}

.banner__card h4 {
    font-size: 5rem;
    font-weight: 500;
    color: var(--primary-color);
}

.banner__card p {
    color: var(--text-light);

}

.discover__grid {
    margin-top: 4rem;
    display: grid;
    gap: 2rem;
}

.discover__card {
    padding: 2rem 1rem;
    text-align: center;
    transition: 0.3s;
    border-radius: 1rem;
}

.discover__card:hover {
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
}

.discover__card span {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 10px 15px;
    font-size: 1.5rem;
    color: var(--primary-color);
    background-color: rgba(40, 135, 255, 0.1);
    border-radius: 100%;
}

.discover__card h4 {
    max-width: 150px;
    margin-inline: auto;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
}

.destination__card p {
    color: var(--text-light);
}

footer {
    background-color: #053069;

}

.footer__container {
    display: grid;
    gap: 4rem 2rem;
}

.footer__col p {
    max-width: 400px;
    margin-block: 2rem;
    color: var(--text-light);
}

.footer__socials {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer__socials a {
    display: inline-block;
    padding: 6px 9px;
    font-size: 0.9rem;
    color: var(--white);
    border-radius: 50%;
    /* Membuat lingkaran */
    border: 1.5px solid white;
    /* Garis lingkaran putih */
    transition: background-color 0.3s, color 0.3s;
}


.footer__socials a:hover {
    background-color: white;
    color: #031843;
    /* Ganti dengan warna utama brand kamu */
}


.footer__col h4 {
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
}

.footer__links {
    display: grid;
    gap: 0.5rem;
}

.footer__links a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
}

.footer__links a:hover {
    color: var(--primary-color);
}

.footer__links a span {
    font-size: 1.25rem;
}

.footer__col form {
    display: grid;
    gap: 1rem;
}

.footer__col input {
    padding: 0.75rem;
    font-size: 1rem;
    color: var(--text-dark);
    background-color: var(--white);
    border: 1px solid var(--text-light);
    border-radius: 5px;
}

.footer__col input::placeholder {
    color: var(--text-light);
}

.footer__col .btn {
    border-radius: 5px;
}

.footer__bar {
    padding: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
}

@media (width > 540px) {
    .destination__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .journey__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .showcase__container {
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
    }

    .banner__container {
        grid-template-columns: repeat(2, 1fr);
    }

    .discover__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__container {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__col:last-child {
        grid-area: 2/1/3/2;
    }
}

@media (max-width: 768px) {
    .footer__container {
        grid-template-columns: 1fr;
        /* jadi 1 kolom di layar kecil */
    }

    .footer__col:last-child {
        grid-area: unset;
    }
}

.footer__links p{
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
}


.footer__links a{
    color: #fff !important;
    text-decoration: none;
}

.footer__links a:visited,
.footer__links a:active{
    color: #fff !important;
}

a[href^="tel"],
a[href^="mailto"]{
    color: inherit !important;
}

.footer-phone{
    color:#fff;
    text-decoration:none;
}

.footer-phone:hover{
    color:#fff;
}


.footer__links a {
    text-decoration: none;
}

.timeline-container {
    position: relative;
    padding-top: 20px;
}

/* .timeline-container::before {
    content: '';
    position: absolute;
    top: 45px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #ccc;
    z-index: 0;
} */

.timeline-block {
    position: relative;
    z-index: 1;
    width: 140px;
}

.timeline-circle {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    border-radius: 50%;
    font-weight: bold;
    font-size: 18px;
    line-height: 70px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.timeline-label {
    font-weight: 600;
    font-size: 14px;
}

.timeline-desc {
    font-size: 13px;
    color: #555;
}

.map-pin {
    position: absolute;
    width: 7px;
    height: 7px;
    background-color: red;
    border-radius: 50%;
    cursor: pointer;
    transform: translate(-50%, -50%);
}

.map-pin:hover .tooltip-custom {
    opacity: 1;
    visibility: visible;
}

.tooltip-custom {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #343a40;
    color: #fff;
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 0.875rem;
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
}

.tooltip-custom::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: #343a40 transparent transparent transparent;
}


@media(width > 768px) {
    nav {
        position: static;
        /* padding: 1.5rem 0.5rem; */
        /* max-width: var(--max-width); */
        margin-inline: auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
    }

    .nav__header {
        flex: 1;
        padding: 0;
        background-color: transparent;
    }

    .nav__logo .logo {
        color: var(--text-dark);
    }

    .nav__menu__btn {
        display: none;
    }

    .nav__links {
        margin-bottom: 0;
        position: static;
        width: fit-content;
        padding: 0;
        flex-direction: row;
        background-color: transparent;
        transform: none !important;
    }

    .nav__links a {
        color: var(--text-dark);
    }

    .nav__links a:hover {
        color: var(--primary-color);
    }

    .nav__links li:last-child {
        display: none;
    }

    .nav__btns {
        flex: 1;
        display: flex;
        justify-content: flex-end;
    }

    .nav__btns .button {
        padding: 75rem 2rem;
        background-color: var(--text-dark);
    }

    header {
        margin-top: 0;
    }

    .header__container {
        grid-template-columns:
            minmax(0, 1fr) repeat(5, minmax(0, calc(var(--max-width)/ 5))) minmax(0, 1fr);
    }

    .header__content {
        grid-column: 2/4;
        padding-block: 8rem;
    }

    .header__content :is(p, h1) {
        text-align: left;
    }

    .header__btns {
        justify-content: flex-start;
    }

    .header__image {
        grid-column: 4.5/8;
        position: relative;
        isolation: isolate;
        height: 100%;
    }

    .header__image img {
        position: absolute;
        top: 2rem;
        left: 0;
        height: 100%;
        width: unset;
    }

    .destination__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .journey__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .showcase__container {
        grid-template-columns: repeat(3, 1fr);
    }

    .showcase__content {
        grid-column: 2/4;
    }

    .banner__container {
        grid-template-columns: repeat(3, 1fr);
    }

    .discover__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer__container {
        display: grid;
        grid-template-columns: 2.2fr 2fr 0.8fr;
        /* kolom 1 lebih besar */
        gap: 4rem 2rem;
    }


    .footer__col:last-child {
        grid-area: unset;
    }
}

.nav__links a {
    text-decoration: none;
    color: inherit;
    /* agar warna tidak biru default */
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav__links a:hover {
    color: #007bff;
}

.carousel-item img {
    /* border-radius: 1.5rem; */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: border-radius 0.3s ease, box-shadow 0.3s ease;
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.4);
    padding: 1.5rem;
    border-radius: 1rem;
}


.scrollable-cards {
    display: flex;
    gap: 1rem;
    min-width: max-content;
    padding-bottom: 1rem;
}

.destination__card {
    flex: 0 0 auto;
    width: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background: white;
    transition: transform 0.3s;
}

.destination__card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.destination__scroll-wrapper {
    overflow-x: hidden;
    position: relative;
}

.scrollable-cards {
    display: flex;
    gap: 1rem;
    min-width: max-content;
    scroll-behavior: smooth;
    transition: transform 0.3s ease;
}

.destination__card {
    flex: 0 0 auto;
    width: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background: white;
    transition: transform 0.3s;
}

.destination__card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.destination__scroll-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.scrollable-cards {
    display: flex;
    gap: 1rem;
    min-width: max-content;
    scroll-behavior: smooth;
}

.destination__card {
    flex: 0 0 auto;
    width: 300px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.destination__card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}


@media (max-width: 768px) {
    .carousel-caption h1 {
        font-size: 1.75rem;
    }

    .carousel-caption p {
        font-size: 1rem;
    }
}

.carousel-caption {
    background: none !important;
}

/* Tambahkan shadow ke teks agar tetap terbaca di atas gambar */
.text-shadow {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}


@media (width > 1200px) {
    .header__content {
        padding-inline: 1rem 0;
    }

    .destination__grid {
        gap: 2rem;
    }
}

.alert {
    border: none
}

.alert p {
    margin-bottom: 0
}

.alert button.close {
    padding: .75rem;
    line-height: .75
}

.alert .alert-heading,
.alert .alert-heading+p {
    margin-left: .4rem
}

.alert-primary {
    background-color: #435ebe;
    color: #fff
}

.alert-primary a {
    color: #fff;
    font-weight: 700
}

.alert-secondary {
    background-color: #ebeef3;
    color: #383d41
}

.alert-secondary a {
    color: #fff;
    font-weight: 700
}

.alert-success {
    background-color: #4fbe87;
    color: #fff
}

.alert-success a {
    color: #fff;
    font-weight: 700
}

.alert-warning {
    background-color: #eaca4a;
    color: #fff
}

.alert-warning a {
    color: #fff;
    font-weight: 700
}

.alert-danger {
    background-color: #f3616d;
    color: #fff
}

.alert-danger a {
    color: #fff;
    font-weight: 700
}

.alert-dark {
    background-color: #454546;
    color: #fff
}

.alert-dark a {
    color: #fff;
    font-weight: 700
}

.alert-light {
    background-color: #f9f9f9;
    color: #818182
}

.alert-light a {
    color: #fff;
    font-weight: 700
}

.alert-info {
    background-color: #56b6f7;
    color: #fff
}

.alert-info a {
    color: #fff;
    font-weight: 700
}

.alert-light-primary {
    background-color: #ebf3ff
}

.alert-light-secondary {
    background-color: #e6eaee
}

.alert-light-success {
    background-color: #d2ffe8
}

.alert-light-danger {
    background-color: #ffdede
}

.alert-light-warning {
    background-color: #fffdd8
}

.alert-light-info {
    background-color: #e6fdff
}

.avatar {
    display: inline-flex;
    border-radius: 50%;
    text-align: center;
    vertical-align: middle;
    position: relative
}

.avatar .avatar-content {
    width: 32px;
    height: 32px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: .875rem
}

.avatar .avatar-content i,
.avatar .avatar-content svg {
    color: #fff;
    font-size: 1rem;
    height: 1rem
}

.avatar img {
    width: 32px;
    height: 32px;
    border-radius: 50%
}

.avatar .avatar-status {
    width: .7rem;
    height: .7rem;
    position: absolute;
    border-radius: 50%;
    border: 1px solid #fff;
    bottom: 0;
    right: 0
}

.avatar.avatar-sm .avatar-content,
.avatar.avatar-sm img {
    width: 24px;
    height: 24px;
    font-size: .8rem
}

.avatar.avatar-md .avatar-content,
.avatar.avatar-md img {
    width: 32px;
    height: 32px;
    font-size: .8rem
}

.avatar.avatar-lg .avatar-content,
.avatar.avatar-lg img {
    width: 48px;
    height: 48px;
    font-size: 1.2rem
}

.avatar.avatar-xl .avatar-content,
.avatar.avatar-xl img {
    width: 60px;
    height: 60px;
    font-size: 1.4rem
}

.btn .badge {
    border-radius: 50%;
    margin-left: 5px
}

.btn .badge.bg-transparent {
    background-color: hsla(0, 0%, 100%, .25) !important;
    color: #fff
}

.btn i,
.btn svg {
    width: 16px;
    height: 16px
}

.btn.icon {
    padding: .4rem .6rem
}

.btn.icon svg {
    width: 16px;
    height: 16px
}

.btn.icon.icon-left svg {
    margin-right: 3px
}

.btn.icon.icon-right svg {
    margin-left: 3px
}

.btn.btn-outline-white {
    color: #fff;
    border-color: #fff
}

.btn.btn-outline-white:hover {
    color: #333;
    background-color: #fff
}

.btn.btn-light-primary {
    background-color: #ebf3ff;
    color: #002152
}

.btn.btn-light-secondary {
    background-color: #e6eaee;
    color: #181e24
}

.btn.btn-light-success {
    background-color: #d2ffe8;
    color: #00391c
}

.btn.btn-light-danger {
    background-color: #ffdede;
    color: #450000
}

.btn.btn-light-warning {
    background-color: #fffdd8;
    color: #3f3c00
}

.btn.btn-light-info {
    background-color: #e6fdff;
    color: #00474d
}

.btn.btn-danger,
.btn.btn-info,
.btn.btn-primary,
.btn.btn-secondary,
.btn.btn-success,
.btn.btn-warning {
    color: #fff
}

.btn.btn-light {
    color: #607080
}

.btn.btn-dark {
    color: #fff
}

.btn-block {
    width: 100%
}

.btn-group:not(.dropdown) .btn:not([class*=btn-]) {
    border: 1px solid #dfe3e7
}

.btn-group>.btn {
    border-radius: .267rem
}

.buttons .btn {
    margin: 0 10px 10px 0
}

.breadcrumb.breadcrumb-right {
    justify-content: flex-end;
    margin-top: 1rem
}

.breadcrumb.breadcrumb-center {
    justify-content: center;
    margin-top: 1rem
}

/* .carousel-inner {
    border-radius: .7rem
} */

.carousel-caption h5 {
    color: #fff
}

.card {
    /* margin-bottom: 1rem; */
    border: none
}

.card.card-statistic {
    box-shadow: 1px 2px 5px rgba(47, 170, 244, .5);
    background: linear-gradient(180deg, #25a6f1, #54b9ff)
}

.card.card-statistic .card-title {
    text-transform: uppercase;
    color: #fff;
    letter-spacing: .8px;
    font-weight: 400;
    font-size: 1.3rem;
    margin-bottom: 0;
    margin-top: 5px
}

.card.card-statistic .card-right p {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0
}

.card.card-statistic .card-right span.green {
    color: #6fff6f
}

.card.card-statistic .card-right span.red {
    color: #ff7979
}

.card.card-statistic .chart-wrapper {
    height: 100px
}

.card .card-header {
    border: none
}

.card .card-header h4 {
    font-size: 1.2rem;
    font-weight: 700
}

.card .card-header~.card-body {
    padding-top: 0
}

.card .card-content {
    position: relative
}

.card .card-title {
    font-size: 1.2rem
}

.card .card-body {
    padding: 1.5rem
}

.card .card-heading {
    color: #555;
    font-size: 1.5rem
}

.card .card-img-overlay {
    background-color: rgba(0, 0, 0, .6)
}

.card .card-img-overlay p {
    color: #eee
}

.card .card-img-overlay .card-title {
    color: #fff
}

.pricing .card {
    box-shadow: none;
    border-right: 1px solid #e9ecef;
    box-shadow: 0 10px 10px #e9ecef;
    margin-bottom: .5rem
}

.pricing h1 {
    text-align: center;
    font-size: 4rem;
    margin-bottom: 3rem
}

.pricing .card-header .card-title {
    font-size: 2rem !important;
    margin-bottom: 0
}

.pricing .card-header p {
    font-size: .8rem
}

.pricing ul li {
    list-style: none;
    margin-bottom: .5rem
}

.pricing ul li i,
.pricing ul li svg {
    width: 1rem;
    color: #198754;
    font-size: 1rem;
    margin-right: 7px
}

.pricing .card-highlighted {
    background-color: #435ebe;
    padding-top: 20px;
    padding-bottom: 20px
}

.pricing .card-highlighted .card-body,
.pricing .card-highlighted .card-header {
    background-color: #435ebe;
    color: #fff
}

.pricing .card-highlighted ul li {
    color: #fff
}

.pricing .card-highlighted ul li i,
.pricing .card-highlighted ul li svg {
    color: #479f76
}

.pricing .card-highlighted .card-footer {
    background-color: #435ebe
}

.pricing .card-highlighted .card-title {
    color: #fff;
    font-size: 1.8rem
}

.divider {
    display: block;
    text-align: center;
    overflow: hidden;
    margin: 1rem 0
}

.divider .divider-text {
    position: relative;
    display: inline-block;
    padding: 0 1rem;
    background-color: #fff
}

.divider .divider-text:after,
.divider .divider-text:before {
    content: "";
    position: absolute;
    top: 50%;
    width: 9999px;
    border-top: 1px solid #dfe3e7
}

.divider .divider-text:before {
    right: 100%
}

.divider .divider-text:after {
    left: 100%
}

.divider.divider-left .divider-text {
    left: 0;
    float: left;
    padding-left: 0
}

.divider.divider-left-center .divider-text {
    left: -25%
}

.divider.divider-right-center .divider-text {
    left: 25%
}

.divider.divider-right .divider-text {
    float: right;
    padding-right: 0
}



.dropdown-menu-large {
    min-width: 16rem
}

.dropdown-menu {
    box-shadow: 0 0 30px rgba(0, 0, 0, .03)
}

.dropdown-item {
    transition: all .5s
}

.form-group {
    margin-bottom: .7rem
}

.form-group label {
    color: rgba(35, 28, 99, .7);
    font-weight: 600
}

.form-group small {
    font-size: .7rem
}

.form-group.with-title {
    position: relative
}

.form-group.with-title label {
    position: absolute;
    top: 0;
    left: 0;
    padding: 5px;
    font-size: .6rem;
    background-color: #e9ecef;
    width: 100%;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

.form-group.with-title .form-control,
.form-group.with-title dataTable-input {
    padding-top: 2rem
}

.form-group.with-title .form-control:focus~label,
.form-group.with-title dataTable-input:focus~label {
    border-left: 1px solid #435ebe;
    border-top: 1px solid #435ebe;
    border-right: 1px solid #435ebe
}

.form-group[class*=has-icon-].has-icon-left .form-control {
    padding-left: 2.5rem
}

.form-group[class*=has-icon-].has-icon-left .form-control-icon {
    left: 0
}

.form-group[class*=has-icon-].has-icon-right .form-control {
    padding-right: 2.5rem
}

.form-group[class*=has-icon-].has-icon-right .form-control-icon {
    right: 0
}

.form-group[class*=has-icon-] .form-control:focus~.form-control-icon i,
.form-group[class*=has-icon-] .form-control:focus~.form-control-icon svg {
    color: #5a8dee
}

.form-group[class*=has-icon-] .form-control.form-control-xl {
    padding-left: 3rem
}

.form-group[class*=has-icon-] .form-control.form-control-xl~.form-control-icon i {
    font-size: 1.6rem
}

.form-group[class*=has-icon-] .form-control.form-control-xl~.form-control-icon i:before {
    color: #a6a8aa
}

.form-group[class*=has-icon-] .form-control-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 .6rem
}

.form-group[class*=has-icon-] .form-control-icon i,
.form-group[class*=has-icon-] .form-control-icon svg {
    width: 1.2rem;
    color: #6c757d;
    font-size: 1.2rem
}

.form-group[class*=has-icon-] .form-control-icon i:before,
.form-group[class*=has-icon-] .form-control-icon svg:before {
    vertical-align: sub
}

.form-control.form-control-xl {
    padding: .85rem 1rem;
    font-size: 1.2rem
}

.form-check .form-check-input[class*=bg-] {
    border: 0
}

.form-check .form-check-input:focus {
    box-shadow: none
}

.form-check .form-check-input.form-check-primary {
    background-color: #435ebe;
    border-color: #435ebe
}

.form-check .form-check-input.form-check-primary:not(:checked) {
    background-color: transparent;
    border: 1px solid #ced4da
}

.form-check .form-check-input.form-check-primary.form-check-glow {
    box-shadow: 0 0 5px #697ecb
}

.form-check .form-check-input.form-check-primary.form-check-glow:not(:checked) {
    box-shadow: none
}

.form-check .form-check-input.form-check-secondary {
    background-color: #6c757d;
    border-color: #6c757d
}

.form-check .form-check-input.form-check-secondary:not(:checked) {
    background-color: transparent;
    border: 1px solid #ced4da
}

.form-check .form-check-input.form-check-secondary.form-check-glow {
    box-shadow: 0 0 5px #868e96
}

.form-check .form-check-input.form-check-secondary.form-check-glow:not(:checked) {
    box-shadow: none
}

.form-check .form-check-input.form-check-success {
    background-color: #198754;
    border-color: #198754
}

.form-check .form-check-input.form-check-success:not(:checked) {
    background-color: transparent;
    border: 1px solid #ced4da
}

.form-check .form-check-input.form-check-success.form-check-glow {
    box-shadow: 0 0 5px #21b26f
}

.form-check .form-check-input.form-check-success.form-check-glow:not(:checked) {
    box-shadow: none
}

.form-check .form-check-input.form-check-info {
    background-color: #0dcaf0;
    border-color: #0dcaf0
}

.form-check .form-check-input.form-check-info:not(:checked) {
    background-color: transparent;
    border: 1px solid #ced4da
}

.form-check .form-check-input.form-check-info.form-check-glow {
    box-shadow: 0 0 5px #3cd5f4
}

.form-check .form-check-input.form-check-info.form-check-glow:not(:checked) {
    box-shadow: none
}

.form-check .form-check-input.form-check-warning {
    background-color: #ffc107;
    border-color: #ffc107
}

.form-check .form-check-input.form-check-warning:not(:checked) {
    background-color: transparent;
    border: 1px solid #ced4da
}

.form-check .form-check-input.form-check-warning.form-check-glow {
    box-shadow: 0 0 5px #ffce3a
}

.form-check .form-check-input.form-check-warning.form-check-glow:not(:checked) {
    box-shadow: none
}

.form-check .form-check-input.form-check-danger {
    background-color: #dc3545;
    border-color: #dc3545
}

.form-check .form-check-input.form-check-danger:not(:checked) {
    background-color: transparent;
    border: 1px solid #ced4da
}

.form-check .form-check-input.form-check-danger.form-check-glow {
    box-shadow: 0 0 5px #e4606d
}

.form-check .form-check-input.form-check-danger.form-check-glow:not(:checked) {
    box-shadow: none
}

.form-check .form-check-input.form-check-light {
    background-color: #f8f9fa;
    border-color: #f8f9fa
}

.form-check .form-check-input.form-check-light:not(:checked) {
    background-color: transparent;
    border: 1px solid #ced4da
}

.form-check .form-check-input.form-check-light.form-check-glow {
    box-shadow: 0 0 5px #fff
}

.form-check .form-check-input.form-check-light.form-check-glow:not(:checked) {
    box-shadow: none
}

.form-check .form-check-input.form-check-dark {
    background-color: #212529;
    border-color: #212529
}

.form-check .form-check-input.form-check-dark:not(:checked) {
    background-color: transparent;
    border: 1px solid #ced4da
}

.form-check .form-check-input.form-check-dark.form-check-glow {
    box-shadow: 0 0 5px #383f45
}

.form-check .form-check-input.form-check-dark.form-check-glow:not(:checked) {
    box-shadow: none
}

.form-check.form-check-sm .form-check-input {
    width: .9rem;
    height: .9rem;
    margin-top: .3em
}

.form-check.form-check-sm label {
    font-size: .7rem
}

.form-check.form-check-lg .form-check-input {
    width: 1.5rem;
    height: 1.5rem;
    margin-top: .3em
}

.form-check.form-check-lg label {
    font-size: 1rem
}

.form-check.form-check-primary .form-check-input {
    background-color: #435ebe;
    border-color: #435ebe
}

.form-check.form-check-secondary .form-check-input {
    background-color: #6c757d;
    border-color: #6c757d
}

.form-check.form-check-success .form-check-input {
    background-color: #198754;
    border-color: #198754
}

.form-check.form-check-info .form-check-input {
    background-color: #0dcaf0;
    border-color: #0dcaf0
}

.form-check.form-check-warning .form-check-input {
    background-color: #ffc107;
    border-color: #ffc107
}

.form-check.form-check-danger .form-check-input {
    background-color: #dc3545;
    border-color: #dc3545
}

.form-check.form-check-light .form-check-input {
    background-color: #f8f9fa;
    border-color: #f8f9fa
}

.form-check.form-check-dark .form-check-input {
    background-color: #212529;
    border-color: #212529
}

.dataTable-input {
    min-height: calc(1.5em + .934rem + 2px);
    padding: .467rem .6rem;
    font-size: .9025rem;
    font-weight: 400;
    line-height: 1.5;
    color: #555252;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #dfe3e7;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

.dataTable-input:focus {
    color: #555252;
    background-color: #fff;
    border-color: #5a8dee;
    outline: 0;
    box-shadow: 0 3px 8px 0 rgba(0, 0, 0, .1)
}

.modal .modal-content {
    box-shadow: -8px 12px 18px 0 rgba(25, 42, 70, .13);
    border: none
}

.modal .modal-full {
    max-width: 94%
}

.modal .white {
    color: #fff
}

.modal .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.modal .modal-header .modal-title {
    font-size: 1.1rem
}

.modal .modal-header .close {
    padding: 7px 10px;
    border-radius: 50%;
    background: none;
    border: none
}

.modal .modal-header .close:hover {
    background: #dee2e6
}

.modal .modal-header i,
.modal .modal-header svg {
    font-size: 12px;
    height: 12px;
    width: 12px
}

.modal .modal-footer {
    padding: 1rem
}

.modal.modal-borderless .modal-header {
    border-bottom: 0
}

.modal.modal-borderless .modal-footer {
    border-top: 0
}

#sidebar.active .sidebar-wrapper {
    left: 0
}

#sidebar:not(.active) .sidebar-wrapper {
    left: -300px
}

#sidebar:not(.active)~#main {
    margin-left: 0
}

.sidebar-wrapper {
    width: 300px;
    height: 100vh;
    position: fixed;
    top: 0;
    z-index: 10;
    overflow-y: auto;
    background-color: #fff;
    bottom: 0;
    transition: left .5s ease-out
}

.sidebar-wrapper .sidebar-header {
    padding: 2rem 2rem 1rem;
    font-size: 2rem;
    font-weight: 700
}

.sidebar-wrapper .sidebar-header img {
    height: 1.2rem
}

.sidebar-wrapper .sidebar-toggler.x {
    position: absolute;
    right: 0;
    top: .5rem;
    display: none
}

.sidebar-wrapper .menu {
    margin-top: 2rem;
    padding: 0 2rem;
    font-weight: 600
}

.sidebar-wrapper .menu .sidebar-title {
    padding: 0 1rem;
    margin: 1.5rem 0 1rem;
    font-size: 1rem;
    list-style: none;
    font-weight: 600;
    color: #25396f
}

.sidebar-wrapper .menu .sidebar-link {
    display: block;
    padding: .7rem 1rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    border-radius: .5rem;
    transition: all .5s;
    text-decoration: none;
    color: #25396f
}

.sidebar-wrapper .menu .sidebar-link i,
.sidebar-wrapper .menu .sidebar-link svg {
    color: #7c8db5
}

.sidebar-wrapper .menu .sidebar-link span {
    margin-left: 1rem
}

.sidebar-wrapper .menu .sidebar-link:hover {
    background-color: #f0f1f5
}

.sidebar-wrapper .menu .sidebar-item {
    list-style: none;
    margin-top: .5rem;
    position: relative
}

.sidebar-wrapper .menu .sidebar-item.has-sub .sidebar-link:after {
    content: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-chevron-down"><path stroke="gray" stroke-width="1" d="M6 9l6 6 6-6"/></svg>');
    position: absolute;
    color: #ccc;
    right: 15px;
    top: 12px;
    display: block
}

.sidebar-wrapper .menu .sidebar-item.active .sidebar-link {
    background-color: #435ebe
}

.sidebar-wrapper .menu .sidebar-item.active .sidebar-link span {
    color: #fff
}

.sidebar-wrapper .menu .sidebar-item.active .sidebar-link i,
.sidebar-wrapper .menu .sidebar-item.active .sidebar-link svg {
    fill: #fff;
    color: #fff
}

.sidebar-wrapper .menu .sidebar-item.active .sidebar-link.has-sub:after {
    content: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-chevron-down"><path stroke="%23fff" stroke-width="1" d="M6 9l6 6 6-6"/></svg>')
}

.sidebar-wrapper .menu .submenu {
    list-style: none;
    display: none;
    transition: max-height 2s cubic-bezier(0, .55, .45, 1);
    overflow: hidden
}

.sidebar-wrapper .menu .submenu.active {
    max-height: 999px;
    display: block
}

.sidebar-wrapper .menu .submenu .submenu-item.active {
    position: relative
}

.sidebar-wrapper .menu .submenu .submenu-item.active>a {
    color: #435ebe;
    font-weight: 700
}

.sidebar-wrapper .menu .submenu .submenu-item a {
    padding: .7rem 2rem;
    display: block;
    color: #25396f;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .5px;
    transition: all .3s
}

.sidebar-wrapper .menu .submenu .submenu-item a:hover {
    margin-left: .3rem
}

@media screen and (max-width:1199px) {
    .sidebar-wrapper {
        position: absolute;
        left: -300px
    }

    .sidebar-wrapper .sidebar-toggler.x {
        display: block
    }
}

.nav-pills .nav-link.active {
    box-shadow: 0 2px 10px rgba(67, 94, 190, .5)
}

.nav-tabs,
.nav-tabs .nav-link {
    border: none
}

.nav-tabs .nav-link:hover {
    border: none;
    text-shadow: 0 0 2px rgba(67, 94, 190, .3)
}

.nav-tabs .nav-link.active {
    border: none;
    position: relative;
    color: #435ebe
}

.nav-tabs .nav-link.active:after {
    content: "";
    width: 100%;
    position: absolute;
    bottom: 0;
    height: 2px;
    background-color: #435ebe;
    left: 0;
    box-shadow: 0 2px 5px rgba(67, 94, 190, .5)
}

.navbar-fixed {
    position: fixed;
    background-color: #fff
}

.navbar {
    height: 75px;
    padding: 1.5rem
}

.navbar .navbar-brand img {
    height: 1.5rem
}

.navbar .user-menu img {
    width: 39px;
    height: 39px
}

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

.navbar.navbar-header li.nav-icon {
    margin-right: .4rem
}

.navbar.navbar-header li.nav-icon .nav-link {
    display: block;
    padding: .4rem;
    border-radius: 50%
}

.navbar.navbar-header li.nav-icon .nav-link:hover {
    background-color: #e9ecef
}

.navbar.navbar-header .dropdown>a {
    color: #6c757d;
    font-weight: 600
}

.navbar.navbar-header .dropdown>a svg {
    height: 24px;
    width: 24px
}

.navbar.navbar-header .dropdown>a:after {
    display: none
}

.pagination.pagination-primary .page-item.active .page-link {
    background-color: #435ebe;
    border-color: #435ebe;
    box-shadow: 0 2px 5px rgba(67, 94, 190, .3)
}

.pagination.pagination-secondary .page-item.active .page-link {
    background-color: #6c757d;
    border-color: #6c757d;
    box-shadow: 0 2px 5px rgba(108, 117, 125, .3)
}

.pagination.pagination-success .page-item.active .page-link {
    background-color: #198754;
    border-color: #198754;
    box-shadow: 0 2px 5px rgba(25, 135, 84, .3)
}

.pagination.pagination-info .page-item.active .page-link {
    background-color: #0dcaf0;
    border-color: #0dcaf0;
    box-shadow: 0 2px 5px rgba(13, 202, 240, .3)
}

.pagination.pagination-warning .page-item.active .page-link {
    background-color: #ffc107;
    border-color: #ffc107;
    box-shadow: 0 2px 5px rgba(255, 193, 7, .3)
}

.pagination.pagination-danger .page-item.active .page-link {
    background-color: #dc3545;
    border-color: #dc3545;
    box-shadow: 0 2px 5px rgba(220, 53, 69, .3)
}

.pagination.pagination-light .page-item.active .page-link {
    background-color: #f8f9fa;
    border-color: #f8f9fa;
    box-shadow: 0 2px 5px rgba(248, 249, 250, .3)
}

.pagination.pagination-dark .page-item.active .page-link {
    background-color: #212529;
    border-color: #212529;
    box-shadow: 0 2px 5px rgba(33, 37, 41, .3)
}

.page-item:not(.active) .page-link:hover {
    color: #000
}

.page-item i,
.page-item svg {
    font-size: 13px;
    width: 13px;
    height: 13px
}

.page-item .page-link {
    font-size: .875rem
}

.page-item .page-link:focus {
    box-shadow: none
}

.page-item:first-child {
    margin-right: .4rem
}

.page-item:last-child {
    margin-left: .4rem
}

.dataTable-table td,
.dataTable-table thead th,
.table td,
.table thead th {
    vertical-align: middle
}

.dataTable-table:not(.table-borderless) thead th,
.table:not(.table-borderless) thead th {
    border-bottom: 1px solid #dedede !important
}

.table-md.dataTable-table tr td,
.table-md.dataTable-table tr th,
.table-sm.dataTable-table tr td,
.table-sm.dataTable-table tr th,
.table.table-md tr td,
.table.table-md tr th,
.table.table-sm tr td,
.table.table-sm tr th {
    padding: 1rem
}

.table-lg.dataTable-table tr td,
.table-lg.dataTable-table tr th,
.table.table-lg tr td,
.table.table-lg tr th {
    padding: 1.3rem
}

.dataTable-container {
    overflow-x: auto
}

.progress.progress-primary {
    overflow: visible
}

.progress.progress-primary .progress-bar {
    background-color: #435ebe;
    border-radius: .25rem
}

.progress.progress-secondary {
    overflow: visible
}

.progress.progress-secondary .progress-bar {
    background-color: #6c757d;
    border-radius: .25rem
}

.progress.progress-success {
    overflow: visible
}

.progress.progress-success .progress-bar {
    background-color: #198754;
    border-radius: .25rem
}

.progress.progress-info {
    overflow: visible
}

.progress.progress-info .progress-bar {
    background-color: #0dcaf0;
    border-radius: .25rem
}

.progress.progress-warning {
    overflow: visible
}

.progress.progress-warning .progress-bar {
    background-color: #ffc107;
    border-radius: .25rem
}

.progress.progress-danger {
    overflow: visible
}

.progress.progress-danger .progress-bar {
    background-color: #dc3545;
    border-radius: .25rem
}

.progress.progress-light {
    overflow: visible
}

.progress.progress-light .progress-bar {
    background-color: #f8f9fa;
    border-radius: .25rem
}

.progress.progress-dark {
    overflow: visible
}

.progress.progress-dark .progress-bar {
    background-color: #212529;
    border-radius: .25rem
}

.progress.progress-sm {
    height: .4rem
}

.progress.progress-lg {
    height: 1.5rem
}

.progress .progress-bar {
    position: relative;
    overflow: visible
}

.progress .progress-bar.progress-label:before {
    content: attr(aria-valuenow) "%";
    position: absolute;
    right: 0;
    top: -1.3rem;
    color: #495057;
    font-size: .8rem
}

.bi {
    width: 1rem;
    height: 1rem
}

.bi.bi-middle:before {
    vertical-align: middle
}

.bi.bi-sub:before {
    vertical-align: sub
}

.stats-icon {
    width: 3rem;
    height: 3rem;
    border-radius: .5rem;
    background-color: #000;
    float: right;
    display: flex;
    align-items: center;
    justify-content: center
}

.stats-icon i {
    color: #fff;
    font-size: 1.7rem
}

.stats-icon.purple {
    background-color: #9694ff
}

.stats-icon.blue {
    background-color: #57caeb
}

.stats-icon.red {
    background-color: #ff7976
}

.stats-icon.green {
    background-color: #5ddab4
}

@media (max-width:767px) {
    .stats-icon {
        float: left;
        margin-bottom: .4rem
    }
}

.burger-btn {
    display: none
}

#main {
    margin-left: 300px;
    padding: 2rem
}

@media screen and (max-width:1199px) {
    #main {
        margin-left: 0
    }
}

#main.layout-navbar {
    padding: 0
}

#main #main-content {
    padding: 2rem
}

.page-heading {
    margin: 0 0 2rem
}

.page-heading h3 {
    font-weight: 700
}

.page-title-headings {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: .5rem
}

.page-title-headings h3 {
    margin-bottom: 0;
    margin-right: 1rem
}

.page-title-headings .breadcrumb {
    margin-bottom: 0
}

a {
    text-decoration: none
}

.mt-10 {
    margin-top: 3rem
}

.mb-10,
.my-10 {
    margin-bottom: 3rem
}

.my-10 {
    margin-top: 3rem
}

.mb-24,
.my-24 {
    margin-bottom: 6rem
}

.my-24 {
    margin-top: 6rem
}

.opacity-50 {
    opacity: 1%
}

.py-4-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important
}

.text-sm {
    font-size: .875rem
}

.text-xl {
    font-size: 1.25rem
}

.text-4xl {
    font-size: 2.25rem
}

.text-6xl {
    font-size: 4rem
}

.text-black {
    color: #000
}

.bg-gradient-ltr {
    background: linear-gradient(90deg, #095cde, #53c3f3)
}

.bg-light-primary {
    background-color: #ebf3ff;
    color: #002152
}

.bg-light-secondary {
    background-color: #e6eaee;
    color: #181e24
}

.bg-light-success {
    background-color: #d2ffe8;
    color: #00391c
}

.bg-light-danger {
    background-color: #ffdede;
    color: #450000
}

.bg-light-warning {
    background-color: #fffdd8;
    color: #3f3c00
}

.bg-light-info {
    background-color: #e6fdff;
    color: #00474d
}

.font-semibold {
    font-weight: 600
}

.font-bold {
    font-weight: 700
}

.font-extrabold {
    font-weight: 800
}

.text-width-md {
    max-width: 450px
}

.text-gray-300 {
    color: #dee2e6 !important
}

.text-gray-400 {
    color: #ced4da !important
}

.text-gray-500 {
    color: #adb5bd !important
}

.text-gray-600 {
    color: #6c757d !important
}

.btn-xl {
    padding: 1rem 2rem
}

.icon-mid:before {
    vertical-align: middle
}

.btn-primary {
    background-color: #000080 !important;
    /* navy */
    border-color: #000080 !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: #001f4d !important;
    /* navy gelap untuk efek hover */
    border-color: #001f4d !important;
}

.shadow-sm {
    box-shadow: none !important;
}

.modal-footer {
    padding-bottom: 20px !important;
    /* tambah jarak bawah */
}

.goal-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* vertical center */
    align-items: center;
    /* horizontal center */
}

.fade-in {
    opacity: 0;
    transform: translateY(10px);
    animation: fadeIn 0.6s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-kirim {
    background-color: white;
    color: #031843;
    border: 2px solid #031843;
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-kirim:hover {
    background-color: white;
    color: #031843;
    cursor: pointer;
    font-weight: 900;
}

.staggered-inline>span {
    opacity: 0;
    display: inline-block;
    transition: all 0.8s ease;
}

.aos-animate .staggered-inline>span:nth-child(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.aos-animate .staggered-inline>span:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

.aos-animate .staggered-inline>span:nth-child(3) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.9s;
}

/* Style dasar dropdown */
.nav-links .dropdown {
    position: relative;
}

.nav-links .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    /* tampil di bawah menu utama */
    left: 0;
    background-color: white;
    padding: 0.5rem 0;
    list-style: none;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    min-width: 100px;
    background-color: rgba(255, 255, 255, 0.7);
    /* putih transparan */
    backdrop-filter: blur(8px);
    /* opsional: blur di belakang */
}

/* Tampilkan saat hover */
.nav-links .dropdown:hover .dropdown-menu {
    display: block;
}

/* Style link dropdown */
.nav-links .dropdown-menu li a {
    display: block;
    width: 100%;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
}

.nav-links .dropdown-menu li a:hover {
    /* background-color: rgba(0, 0, 0, 0.05); */
    /* sedikit highlight saat hover */
}

.card-trans,
.card-trans-small {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-trans:hover {
    transform: translateY(-5px) scale(1.0);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2) !important;
}

.card-trans:hover .card-title {
    font-weight: 700;
    color: #0c4693;
}

.card-trans-small:hover .card-title {
    font-weight: 700;
}

.leaflet-popup-content {
    text-align: center;
}

/* Hide mobile menu by default */
.mobile-hidden {
    display: none;
}

/* Show on medium screen and up */
@media (min-width: 768px) {
    #navbar-menu {
        display: flex !important;
    }

    #mobile-menu-toggle {
        display: none;
    }

    .nav-links {
        flex-direction: row !important;
    }
}

/* Dropdown fix */
.dropdown-menu {
    display: none;
    position: absolute;
    background-color: white;
    padding: 10px;
    list-style: none;
    border: 1px solid #ccc;
    z-index: 1000;
}

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

/* For mobile toggle dropdowns */
.dropdown.open>.dropdown-menu {
    display: block;
}

/* Sembunyikan menu di mobile */
.mobile-hidden {
    display: none !important;
}

/* Tampilkan kembali di desktop */
@media (min-width: 768px) {
    #navbar-menu {
        display: flex !important;
    }

    #mobile-menu-toggle {
        display: none !important;
    }

    .mobile-hidden {
        display: flex !important;
    }
}

/* Hapus bullet dan padding default */
.navbar-nav li {
    list-style: none;
}

.navbar-nav a {
    color: #fff;
    text-decoration: none;
    padding: 8px 12px;
    display: block;
}

.navbar-nav .dropdown-menu {
    background-color: #fff;
}

.navbar-nav .dropdown-menu a {
    color: #031843;
}

.navbar-nav .dropdown-menu a:hover {
    /* background-color: #495057; */
}

/* Biar menu gak wrap */
.nav-links {
    white-space: nowrap;
    align-items: center;
}

/* Supaya text menu tidak turun baris */
.nav-links a {
    white-space: nowrap;
}

/* Kurangi jarak antar item menu */
.nav-links.gap-4 {
    gap: 1.25rem !important;
    /* lebih sempit dari default gap-4 */
}

/* Optional: Biar height antar elemen rata */
.nav-links li {
    display: flex;
    align-items: center;
}

@media (max-width: 1199.98px) {
    #mainNavbar {
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important;
    }
}

.hero-img {
    width: 100%;
    height: 200vh;
    max-height: 785px;
    object-fit: contain !important;
    /* default desktop */
    object-position: center;
}

@media (max-width: 768px) {
    .hero-img {
        object-fit: fill;
        /* kalau mobile */
    }

    .navbar {
        height: 55px;
        padding: 1rem
    }
}

.logo-img {
    height: 50px;
    /* default (desktop) */
}

@media (max-width: 768px) {
    .logo-img {
        max-width:80%;
        height:auto;
        display:block;
        margin-top: -2px;
        margin-left: -10px;
        /* lebih kecil di mobile */
    }

    .logo-img2 {
        height: 25px;
        width: 50%;
        margin-top: -2px;
        margin-left: 10px;
        /* lebih kecil di mobile */
    }

    .logo-img3 {
        height: auto;
        width: 80%;
        margin-top: -2px;
        /* lebih kecil di mobile */
    }

    .logo {
        margin-left: -10px;
        /* geser lebih ke kiri */
    }
}

.card-title {
    font-size: 1rem;
    /* default untuk mobile */
}

.card-text {
    font-size: 0.675rem;
}

@media (min-width: 768px) {
    .card-title {
        font-size: 1.25rem;
        /* tablet */
    }

    .card-text {
        font-size: 1rem;
    }
}

@media (min-width: 992px) {
    .card-title {
        font-size: 1.5rem;
        /* desktop */
    }

    .card-text {
        font-size: 1.125rem;
    }
}

/* Hilangkan ikon default */
.navbar-toggler .navbar-toggler-icon {
    display: none;
}

/* Custom hamburger */
.custom-toggler {
    border: none;
    background: transparent;
    padding: 0.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    z-index: 1051;
    /* biar selalu di atas */
}

/* default (di atas halaman) */

#mainNavbar .toggler-icon{
    width:25px;
    height:3px;
    background-color:white;
    border-radius:3px;
    transition:all 0.3s ease;
}

/* saat scroll */

#mainNavbar.nav-scrolled .toggler-icon{
    background-color:#1e3a8a;
}

/* Animasi jadi X */
.custom-toggler.active .toggler-icon:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.custom-toggler.active .toggler-icon:nth-child(2) {
    opacity: 0;
}

.custom-toggler.active .toggler-icon:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

@media (max-width: 576px) {
    .cont_sektor {
        margin-left: auto !important;
        margin-right: auto !important;
        display: flex;
        justify-content: center;
    }

    #back-to-pilar,
    #back-to-pilar2,
    #back-to-pilar3,
    #back-to-pilar4 {
        margin-left: 0 !important;
    }
}

/* Tambahan CSS untuk dropdown bahasa */
.lang-dropdown-custom {
    left: auto !important;
    right: 0 !important;
    transform: none !important;
    min-width: 110px;
}


.logo-card {
    width: 100%;
    aspect-ratio: 1 / 1;
    /* bikin kotak persegi sama sisi */
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(3, 24, 67, 0.25) !important;


    overflow: hidden;
    cursor: pointer;
    padding: 10px;
    /* beri ruang di dalam card */
    transition: box-shadow 0.3s ease;
    position: relative;
    /* outline: 0.5px solid #031843; */
}

#card-merk {
    cursor: default !important;
    border: none !important;
    box-shadow: none !important;
    background-color: #F9FAFBCC !important;
}

.label-pilar {
    color: #031843;
}

.logo-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.logo-card img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    object-fit: contain;
    transition: transform 0.3s ease-in-out;
}

.logo-card:hover img {
    transform: scale(1.05);
    /* zoom in 10% */
}

.timeline-wrapper {
    position: relative;
    padding-left: 60px;
    /* space untuk nomor */
}

.timeline-wrapper::before {
    content: "";
    position: absolute;
    top: -25%;
    left: 95vh;
    /* posisikan tepat di tengah lingkaran */
    width: 50px;
    /* ketebalan garis */
    height: 100vh;
    background-color: #031843;
    /* warna garis */
    z-index: 0;
    /* supaya di belakang nomor */
    border-radius: 2px;
    /* biar lebih halus */
}

.timeline-wrapper2 {
    position: relative;
    padding-left: 60px;
    /* space untuk nomor */
}

.timeline-wrapper2::before {
    content: "";
    position: absolute;
    top: -30%;
    left: 49.5%;
    /* posisikan tepat di tengah lingkaran */
    width: 50px;
    /* ketebalan garis */
    height: 100vh;
    background-color: #031843;
    /* warna garis */
    z-index: 0;
    /* supaya di belakang nomor */
    border-radius: 2px;
    /* biar lebih halus */
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 35px;
    position: relative;
    z-index: 1;
    /* supaya nomor & box di atas garis */
}

.timeline-number {
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #031843;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: white;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.timeline-content {
    background: white;
    padding: 12px 18px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    flex: 1;
    margin-left: 10px;
}

.core-card {
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100px;
    /* semua card tinggi sama */
    overflow: hidden;

    display: flex;
    flex-direction: column;
    justify-content: center;
    /* center vertikal semua isi */
    align-items: center;
    /* center horizontal */
    text-align: center;
}


.core-card h5 {
    margin-bottom: 5px;
    font-size: 1.1rem;
    color: #333;
    transition: color 0.3s ease;
}

.core-card p {
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.4;
    color: #555;
    transition: color 0.3s ease;
}

.core-card:hover {
    background: #031843;
    transform: translateY(-5px);
}

.core-card:hover h5,
.core-card:hover p {
    color: #fff;
}

@media (max-width: 768px) {
    .core-wrapper {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        gap: 0;
        height: auto !important;
    }

    .core-card-container {
        position: static !important;
        width: 100% !important;
        max-width: 360px;
        /* Ubah di sini untuk batasi lebar */
        margin: 0 auto;
        /* Agar tetap center */
        transform: none !important;
    }

    .core-card-container .core-card {
        width: 100%;
    }

    .core-center-circle {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        margin: 30px auto;
    }
}

.core-center-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #031843;
    color: #fff;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

/* Garis ke kanan */

/* .core-center-circle::before {
    content: "";
    position: absolute;
    top: -123%;
    right: calc(0% - 25px);
    transform: translateY(-50%);
    width: 120vh;
    height: 50px;
    background-color: #031843;
    z-index: 1;
} */

/* ---------------- */



/* .about-section {
    background: url("../images/bg-profil.png") no-repeat center;
    background-size: cover;
} */

/* #visimisi-section {
    background: url("../images/visimisi.png") no-repeat center;
    background-size: cover;
    height: 100%;
} */

.visi-section {
    padding: 80px 0;
    background: #f4f6f9;
}

.container-visi {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

.visi-title {
    font-size: 48px;
    font-weight: 800;
    color: #0c4693;
    margin-bottom: 20px;
}

.visi-card {
    background: linear-gradient(180deg, #ffffff, #d0d4ea);
    border: 4px solid #0c4693;
    border-radius: 28px;
    padding: 50px 60px;
}

.visi-wrapper {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.visi-item {
    flex: 1;
    min-width: 280px;
}

.visi-item h4 {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}

.visi-header {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 20px;
}

.visi-line {
    width: 5px;
    height: 40px;
    background: #1f4f8b;
}

.visi-item h4 {
    font-size: 28px;
    font-weight: 800;
    color: #1f4f8b;
    margin: 0;
}

.visi-item p {
    font-size: 17px;
    line-height: 1.8;
    color: #1c1c1c;
}

.visi-icon {
    width: 42px;
    /* ukuran utama */
    height: 42px;
    object-fit: contain;
}

.visi-icon {
    width: 40px;
    height: 40px;
}

.filosofi-section {
    padding: 80px 0;
    padding-right:0px !important;
    /* background: url('../images/bg-filosofi.png') no-repeat center;
    background-size: cover; */
}

.filosofi-container {
    max-width: 1200px;
    margin: auto;
    margin-right: 0px;
    padding: 60px;
    border-top: 4px solid #1f4f8f;
    border-left: 4px solid #1f4f8f;
    border-bottom: 4px solid #1f4f8f;

    /* border-radius: 30px; */
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    display: flex;
    gap: 60px;
    align-items: center;
}


.filosofi-left {
    flex: 1;
}

.filosofi-left h1 {
    font-size: 75px;
    font-weight: 800;
    margin-bottom: 0px;

    background: linear-gradient(180deg, #052d63, #07479c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    /* Untuk browser modern */
    background-clip: text;
    color: transparent;
}

.filosofi-logo {
    width: 300px;
}

.filosofi-right {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.filosofi-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 25px;
    border: 2px solid #1f4f8b;
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff, #d0d4ea);
}

.filosofi-item p {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
}

.filo-icon {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.DROPabout-section::before {
    content: "";
    position: absolute;
    left: 0;
    top: -70px;
    /* ditarik ke atas biar tetap nempel navbar */
    height: calc(100% + 70px);
    /* perpanjang garis */
    width: 50px;
    background-color: #031843;
}


.about-box {
    position: relative;
    padding: 35px;
    width: 99%;
    margin: auto;
    color: #fff;
    overflow: hidden;
}

.about-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    z-index: 0;
}

.about-box .content {
    position: relative;
    z-index: 1;
    color: black;
    line-height: 1.7;
    font-size: 16px;
    text-align: justify;
    font-weight: 600;
}

.about-section {
    position: relative;
    min-height: calc(100vh - 70px);
    margin-top: 50px;
    padding-top: 50px;
    padding: 60px 20px;
    padding-left: 0px;
    /* jarak section dari navbar */
}

/* 🔵 GARIS BIRU LUAR */
.about-sub {
    max-width: 1150px;
    margin: auto;
    margin-left: 0px;
    margin-right: 0px;

    border-top: 4px solid #1f4f8f;
    border-right: 4px solid #1f4f8f;
    border-bottom: 4px solid #1f4f8f;

    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;

    padding: 40px 15px;
    padding-left: 0px;
    padding-right: 0px;
    /* 🔥 tambah atas bawah */
    background: transparent;
}

/* Gambar kiri */
.about-image {
    height: 100%;
    background: url("{{ asset('/assets/images/nag_50th.jpg') }}") no-repeat center center;
    background-size: cover;

    /* radius hanya sisi kanan */
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.about-text-col {
    padding: 20px;
    padding-top: 0px;
}

/* Kolom teks */
.about-text-col {
    /* height: 100%; */
    /* overflow: hidden; */
}

/* Scroll aktif */
/* .about-content {
    height: calc(100% - 50px);
    overflow-y: auto;
    text-align: justify;
} */

/* Scrollbar lebih clean */
.about-content::-webkit-scrollbar {
    width: 6px;
}

.about-content::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.about-title {
    color: #004c89;
}

/* Judul */
.about-title {
    color: #0d4f8b;
    font-size: 34px;
    letter-spacing: 1px;
}

/* Box teks seperti di gambar */
.about-card {
    background: linear-gradient(180deg, #ffffff, #d0d4ea);
    backdrop-filter: blur(6px);

    padding: 20px 20px;
    border-radius: 18px;

    box-shadow: 0 30px 35px rgba(0, 0, 0, 0.18);

    margin-bottom: 20px;
    /* 🔥 kasih jarak bawah */
}

/* Isi teks scroll */
.about-content {
    max-height: 380px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;

    padding-right: 15px;
    padding-bottom: 30px;

    text-align: justify;
    line-height: 1.4;
    font-size: medium;
}
.about-text-col {
    height: 100%;
    overflow: visible;
}

/* Scrollbar lebih clean */
.about-content::-webkit-scrollbar {
    width: 6px;
}

.about-content::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.box-img {
    position: relative;
    overflow: hidden;
}

.box-img::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 120px;
    /* lebar efek shadow */

    background: linear-gradient(to left,
            rgba(255, 255, 255, 0.45),
            rgba(255, 255, 255, 0.6),
            rgba(255, 255, 255, 0));

    pointer-events: none;
}

.filosofi-section {
    position: relative;
    /* margin-top: 20vh; */
    /* pindahkan ke sini, bukan di inline HTML */
}



.DROPfilosofi-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    /* nempel ke pojok kanan */
    width: 50px;
    /* ketebalan garis */
    height: 100%;
    /* penuh tinggi section */
    background-color: #031843;
    z-index: 0;
}


.core-section {
    position: relative;
}

.DROPcore-section::before {
    /* Garis horizontal atas */
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background-color: #031843;
    z-index: 0;
}

.DROPcore-section::after {
    /* Garis vertikal kanan */
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    /* ketebalan garis */
    height: 100%;
    background-color: #031843;
    z-index: 0;
}

/* Tambahin pseudo-element lain untuk vertikal kiri */
.DROPcore-section .line-left {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    /* ketebalan garis */
    height: 100%;
    background-color: #031843;
    z-index: 0;
}





.core-card-container {
    display: flex;
    flex-direction: column;
    /* atau row tergantung layout */
    align-items: center;
    gap: 40px;
    /* jarak antar card */
    margin-top: 30px;
    /* jarak container dari circle */
}

.core-card:first-child {
    margin-top: 0;
    margin-bottom: 30px;
    /* biar konsisten, nggak ditarik-tarik */
}




.col-lg-7[data-aos="fade-left"] {
    margin-top: 60px;
    margin-bottom: 20px;
    margin-right: 10px;
    margin-left: 40px;
    /* atur sesuai kebutuhan */
}


@media (max-width: 768px) {

    .core-section::after,
    .core-section::before,
    .DROPabout-section::before,
    .DROPfilosofi-section::before,
    .core-center-circle::after {
        display: none;
    }

    .col-lg-5[data-aos="fade-right"] {
        margin-top: 2rem;
    }

    .col-lg-4[data-aos="fade-right"] {
        margin-top: 2rem;
    }

    .col-lg-7[data-aos="fade-left"] {

        margin-left: 0;
    }

    .about-sub {
        margin-top: 3vh !important;
    }

    .about-box {
        padding: 0px;
    }

    .about-box img {
        max-width: 15vh !important;
    }

    .about-section {
        margin-top: 75px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.6rem;
    }

    /* turun ±35% */
    h2 {
        font-size: 1.4rem;
    }

    h3 {
        font-size: 1.55rem;
    }

    h4 {
        font-size: 1.1rem;
    }

    h5 {
        font-size: 1rem;
    }

    h6 {
        font-size: 0.9rem;
    }

    p {
        font-size: 0.95rem;
    }

    /* turun dikit biar tetap terbaca */
}

.footer__logo img {
    max-width: 60vh;
    /* default desktop */
    height: auto;
}

@media (max-width: 768px) {
    .footer__logo img {
        max-width: 30vh;
        /* lebih kecil di mobile */
    }
}

@media (max-width: 768px) {
    .goal-card {
        height: 230px;
        /* atur sesuai kebutuhan */
    }
}

.about-box .row {
    display: flex;
    align-items: stretch;
    /* kedua kolom punya tinggi sama */
}



@media (max-width: 768px) {
    .core-card {
        margin-bottom: 0px !important;
        /* lebih kecil di mobile */
    }
}


@media (max-width: 768px) {
    .desc-bu {
        margin-top: 15px;
        /* kasih jarak atas saat mobile */
    }
}

/* ===== CARD STYLE ===== */
.news-card {
    border-radius: 18px;
    background: #f3f5f9;
    border: 2px solid #0c4693;
    transition: all 0.35s ease;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.08);
}

/* gambar ikut rounded */
.news-card .ratio img {
    border: 3px solid #0c4693;
    border-radius: 14px;
}

/* title default */
.news-title {
    font-weight: 600;
    transition: color 0.3s ease;
}

/* ===== HOVER EFFECT ===== */
.news-card:hover {
    cursor: pointer;
    transform: translateY(-8px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.18);
}

.news-card:hover .news-title {
    color: #0c4693;
}

/* .modal .btn {
margin-bottom: 15px;
} */
.core-values-section{
    padding: 80px 0;
    background: url("../images/bg-profil.png") no-repeat center;
    background-size: cover;
}



.core-container{
    position: relative;
    width: 100%;
    max-width: 1200px;
    aspect-ratio: 16/9;
    border-radius: 30px;
    border: 4px solid #1f4f8f;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    overflow: hidden;
}

/* Circle */
.circle-dashed {
    position: absolute;
    width: 25%;
    aspect-ratio: 1/1;
    border: 2px dashed #cbd5e1;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Center */
.center-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.center-title h2 {
    font-size: 34px;
    font-weight: 900;
    color: #1e3a8a;
}

/* ITEMS */
.item {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 25px;
    width: 38%;
}

/* LEFT */
.item.left {
    justify-content: flex-end;
    left: -2%;
    /* lebih keluar */
}

/* RIGHT */
.item.right {
    justify-content: flex-start;
    right: -2%;
    /* lebih keluar */
}

.item.top {
    top: 12%;
}

.item.middle {
    top: 50%;
    /* transform: translateY(-50%); */
}

.left-top,
.left-bottom {
    transform: translateX(90px);
}

.right-top,
.right-bottom {
    transform: translateX(-90px);
}

.left-midle {
    transform: translate(-40px, -50%);
}

.right-midle {
    transform: translate(40px, -50%);
}


.item.bottom {
    bottom: 12%;
}

/* TEXT GROUP */
.text-group.left {
    display: grid;
    grid-template-columns: auto 6px;
    align-items: center;
    gap: 15px;
    text-align: right;
}

.text-group.right {
    display: grid;
    grid-template-columns: 6px auto;
    align-items: center;
    gap: 15px;
    text-align: left;
}

/* TEXT */
.text-content h3 {
    font-size: 17px;
    font-weight: bold;
    margin-bottom: 6px;
    color: #0f172a;
}

.text-content p {
    font-size: 14px;
    color: #475569;
    line-height: 1.5;
    max-width: 300px;
    font-weight: 500;
}

/* BAR */
.bar {
    width: 6px;
    height: 100%;
    background: #1e3a8a;
    border-radius: 4px;
}

/* ICON */
.icon-wrapper {
    position: relative;
    width: 75px;
    height: 75px;
    flex-shrink: 0;
}

.rhombus {
    position: absolute;
    inset: 0;
    background: #1e3a8a;
    /* transform: rotate(45deg); */
    border-radius: 8px;
}

#rh-lefttop {
    transform: translate(15px, 94px) rotate(8deg);
}

#rh-leftmiddle {
    transform: translate(68px, 6px) rotate(-45deg);
}

#rh-leftbottom {
    transform: translate(12px, -84px) rotate(-8deg);
}

#rh-righttop {
    transform: translate(-2px, 95px) rotate(-8deg);
}

#rh-rightmiddle {
    transform: translate(-69px, 12px) rotate(-45deg);
}

#rh-rightbottom {
    transform: translate(-10px, -85px) rotate(4deg)
}


#circle-lefttop {
    transform: translate(8px, 82px);
}

#circle-leftmiddle {
    transform: translate(54px, 6px);
}

#circle-leftbottom {
    transform: translate(2px, -70px);
}

#circle-righttop {
    transform: translate(8px, 83px);
}

#circle-rightmiddle {
    transform: translate(-53px, 12px);
}

#circle-rightbottom {
    transform: translate(0px, -75px);
}

#tg-lefttop {
    transform: translate(15px, 80px);
}

#tg-leftmiddle {
    transform: translate(65px, 7px);
}

#tg-leftbottom {
    transform: translate(12px, -70px);
}

#tg-righttop {
    transform: translate(5px, 85px);
}

#tg-rightmiddle {
    transform: translate(-60px, 9px);
}

#tg-rightbottom {
    transform: translate(-5px, -78px);

}

.icon-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #ffffff, #d0d4ea);
    border-radius: 50%;
    /* top: 7.5%;
    left: 7.5%; */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    color: #1e3a8a;
}

.icon-circle img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

/* CONTACT US */

.contact-section {
    background: url("../images/bg-contact.png") no-repeat center;
    padding: 80px 20px;
}

.contact-wrapper {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: center;
}

.contact-form-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    width: 500px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 6px;
    border: 1px solid #d0d5dd;
    outline: none;
    transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #1e4db7;
    box-shadow: 0 0 0 2px rgba(30, 77, 183, 0.1);
}

.btn-send {
    background: linear-gradient(180deg, #0f2f75, #1e4db7);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.btn-send:hover {
    opacity: 0.9;
}

.contact-info-box {
    max-width: 400px;
}

.contact-info-box h2 {
    font-size: 36px;
    font-weight: 800;
    color: #0f2f75;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.info-item .icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(180deg, #0f2f75, #1e4db7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.info-item strong {
    color: #0f2f75;
}

.info-item p {
    margin: 0;
}

#news {
    color: #0c4693;
}

.card-title {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* maksimal 3 baris */
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 72px;
    /* jaga tinggi konsisten */
}

#other .cont_sektor {
    max-width: 700px;
    margin: auto;
}

p {
    font-size: 18px !important;
}



.pilar-bg {
    background: transparent;

    width: 100%;
    min-height: 100vh;
}

.about-section,
.visi-section,
.filosofi-section,
.core-values-section {
    background: transparent !important;
}

.about-page-bg {
    background-image: url('../images/full_profil.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

#mainNavbar {
    transition: all 0.3s ease;
}

#mainNavbar.nav-scrolled {
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

#mainNavbar.nav-scrolled .nav-links li a {
    color: #0c4693;
}

#mainNavbar.nav-scrolled .nav-links li a:hover {
    color: #062a5e;
}

/* default (sebelum scroll) */
.search-input,
.search-form {
    background: #fefefe !important;
}

/* ketika navbar discroll */
#mainNavbar.nav-scrolled .search-input,
#mainNavbar.nav-scrolled .search-form {
    background: #0c4693 !important;
}

/* teks input jadi putih */
#mainNavbar.nav-scrolled .search-input {
    color: #ffffff;
}

/* placeholder jadi putih agak transparan */
#mainNavbar.nav-scrolled .search-input::placeholder {
    color: #ffffff;
}

/* icon search jadi putih */
#mainNavbar.nav-scrolled .search-btn i {
    color: #ffffff;
}

.about-image {
    height: 100%;
    background:url("{{ asset('/assets/images/nag50th.jpg') }}") no-repeat center center;
    background-size: cover;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

/* MOBILE IMAGE */
.about-mobile-img {
    margin: 10px 12px 15px 12px;
}

.about-mobile-img img {
    width: 100%;
    height: 10vh;
    object-fit: cover;
    object-position: center top;
    border-radius: 10px;
}

/* MOBILE TEXT */
@media(max-width:768px) {

    .about-section {
        padding-top: 10px;
    }

    .about-title {
        font-size: 22px !important;
        text-align: left;
        margin-bottom: 10px;
        text-align:center;
    }

    .about-text h2 {
        font-size: 22px !important;
    }

    .about-card {
        padding: 14px;
        border-radius: 10px;
    }

    .about-content p {
        font-size: 14px !important;
        line-height: 1.7;
    }

}

/* ===== FILOSOFI SECTION ===== */

.filosofi-section {
    padding: 60px 20px;
}

.filosofi-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* LEFT */
.filosofi-left h1 {
    font-weight: 800;
}

.filosofi-logo {
    max-width: 200px;
    margin-top: 20px;
}

/* RIGHT ITEMS */
.filosofi-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
}

.filo-icon {
    width: 34px;
    height: 34px;
}

.filosofi-item p {
    margin: 0;
    line-height: 1.6;
}

/* ================= MOBILE ================= */

@media (max-width:768px) {

    .filosofi-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    /* LEFT */
    .filosofi-left h1 {
        font-size: 24px;
    }

    .filosofi-logo {
        max-width: 140px;
        margin: auto;
    }

    /* RIGHT */
    .filosofi-right {
        width: 100%;
    }

    .filosofi-item {
        text-align: left;
        align-items: flex-start;
        gap: 12px;
        padding:10px 15px !important;
    }

    .filo-icon {
        width: 28px;
        height: 28px;
        flex-shrink: 0;
    }

    .filosofi-item p {
        font-size: 14px !important;
        line-height: 1.6;
    }

}

.berita-utama-section .btn,
    #btn-profil,
    #btn-allnews {
        padding: 12px 28px;
        font-weight: 600;
        background: linear-gradient(180deg, #0c4693, #1d63c7);
        border: none;
        box-shadow: 0 10px 20px rgba(12, 70, 147, 0.3);
        transition: all 0.3s ease;
    }


/* MEDIA QUERY UNTUK MOBILE */
@media (max-width: 768px) {
    .visi-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .visi-item {
        flex: 1 1 100%;
        padding: 20px;
    }

    .visi-title {
        font-size: 22px;
        text-align:center;
    }

    .visi-header h4 {
        font-size: 20px;
    }

    .visi-item p {
        font-size: 15px !important;
    }

    #audio-title{
        font-size:11px !important;
    }
    #toggle-audio{
        width: 35px !important;
        height:35px !important;
    }
    p{
        font-size:15px !important;
    }
    .text-end a{
        font-size: 13px !important;
    }
    .contact-section{
        padding: 50px 20px;
    }
    .carousel-inner {
    height: 80vh;
    }
    .news-title {
        font-size: 1.3rem !important;
    }
    .card-title .news-title {
        font-size: 1.3rem !important;
    }

    .section-newsdetail{
        padding-top:1rem !important;
        padding-bottom:1.5rem !important;
    }
    
    .berita-utama-section{
        padding:8px 24px !important;
    }

    .section__header {
        font-size: 1.5rem;
        margin-bottom:0.2rem !important;
    }
    .container-pilar{
        padding-top:1.2rem !important;
        padding-bottom:1.2rem !important;
    }

    .carousel-caption{
    z-index:2;
}

.carousel-item::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:linear-gradient(
        to bottom,
        rgba(0,0,0,0.35),
        rgba(0,0,0,0.15),
        rgba(0,0,0,0.35)
    );
    z-index:1;
}
    
}

.core-values-mobile {
    padding: 40px 20px;
    background: transparant;
}

.mobile-title {
    text-align: center;
    font-weight: 700;
    margin-bottom: 30px;
}

.mobile-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.mobile-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.mobile-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mobile-text h3 {
    font-size: 16px !important;
    font-weight: 600;
    margin-bottom: 5px;
}

.mobile-text p {
    font-size: 14px !important;
    line-height: 1.5;
    color: #555;
}

.core-values-mobile{
    padding:40px 20px;
}

.mobile-title{
    text-align:center;
    font-weight:700;
    margin-bottom:35px;
    color: #1e3a8a;

}

.mobile-item{
    display:flex;
    align-items:center;
    margin-bottom:35px;
}


/* ICON AREA */

.mobile-item{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:35px;
}

/* ICON AREA */

.mobile-icon-area{
    position:relative;
    width:80px;
    height:80px;
    flex-shrink:0;
}

.mobile-rhombus{
    position:absolute;
    width:70px;
    height:70px;
    background:#2f4ea1;
    transform:rotate(45deg);
    border-radius:8px;
    top:0px;
    left:0px;
}

.mobile-circle{
    position:absolute;
    width:70px;
    height:70px;
    background:#e9edf4;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:2;
}

.mobile-circle img{
    width:35px;
}

/* GARIS */

.mobile-line{
    width:5px;
    height:65px;
    background:#2f4ea1;
    border-radius:10px;
}

/* TEXT */

.mobile-text{
    flex:1;
}

.mobile-text h3{
    font-size:16px;
    font-weight:700;
    margin-bottom:5px;
}

.mobile-text p{
    font-size:14px;
    color:#555;
    margin:0;
}

/* text */

.mobile-text h3{
    font-size:16px;
    font-weight:600;
    margin-bottom:5px;
}

.mobile-text p{
    font-size:14px;
    color:#555;
}

.contact-mobile{
    padding:30px 20px;
}

.mobile-contact-title{
    text-align:center;
    font-weight:700;
    margin-bottom:25px;
    color: #1e3a8a;;
}

.mobile-contact-form{
    margin-bottom:30px;
}

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

.mobile-form-group label{
    font-weight:600;
    font-size:14px;
}

.mobile-form-group input,
.mobile-form-group textarea{
    width:100%;
    padding:10px;
    border-radius:8px;
    border:1px solid #ddd;
    margin-top:5px;
}

.btn-send-mobile{
    width:100%;
    background:#0c4693;
    color:white;
    border:none;
    padding:12px;
    border-radius:10px;
    font-weight:600;
}

.mobile-contact-info{
    border-top:1px solid #eee;
    padding-top:20px;
}

.mobile-info-item{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:12px;
    font-size:14px;
}

.mobile-info-item i{
    color:#0c4693;
    font-size:16px;
}

.banner-img{
    width:100%;
    height:100vh;
    object-fit:cover;
}

/* MOBILE */

.banner-mobile-caption{
    top:35vh;
    bottom:auto;
    transform:translateY(-30%);
    padding:0 20px;
}

.banner-title-mobile{
    font-family:'Poppins',sans-serif;
    font-size:2rem;
    color:white;

    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.3);
}

.banner-desc-mobile{


    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size:14px;
    color:white;
    margin-top:12px;
    line-height:1.6;

    text-shadow:
    0 3px 10px rgba(0,0,0,0.7),
    0 6px 20px rgba(0,0,0,0.5);
}



.banner-btn-mobile{
    margin-top:15px;
    background:#031843;
    color:white;
    padding:8px 18px;
}

@media (max-width: 768px) {

    .container-visi{
        padding: 0 20px;
    }

    .visi-card{
        padding: 25px 15px;
    }
    .visi-section{
        padding: 50px 0px;
    }
    .about-section {
        /* padding: 40px 20px; */
    }

    .berita-utama-section .btn, #btn-allnews{
        padding:8px 12px;
    }
    .btn{
        font-size:0.6rem;
    }
    .about-mobile-img img {
        margin-left:0.7vh;
    }
}

.navbar-toggler:focus{
    outline:none;
    box-shadow:none;
}

.mobile-text{
    text-align: center;
}

/* kondisi normal */
.dropdown-toggle {
    color: #fff;
}

.dropdown-toggle::after {
    color: #fff;
}

/* saat navbar discroll */
#mainNavbar.nav-scrolled .dropdown-toggle {
    color: #0c4693;
}

#mainNavbar.nav-open .dropdown-toggle{
    color: white !important;
}

#mainNavbar.nav-scrolled .dropdown-toggle::after {
    color: #0c4693;
}
#mainNavbar.nav-open .dropdown-toggle::after{
    color: white !important;
}

.main-bg{
    background: url("../images/full_home.png") no-repeat center top;
    background-size: cover;
    min-height: 100vh;
}

@media (max-width:768px){
    .main-bg{
        background-position: center;
    }
}
#mainNavbar.nav-open .toggler-icon{
    background-color: white !important;
}