:root {
    --primary-color: #c59e42;
    --secondary-color: #0e1750;
    --dark-color: #171717;
}

body {
    background-color: #ffffff !important;
}

.navbar {
    background-color: var(--secondary-color) !important;
}

.footer {
    background-color: var(--secondary-color) !important;
}

.navbar-nav .nav-item {
    margin-right: 15px; /* Memberi jarak antara elemen menu */
}

.navbar-nav .nav-item:last-child {
    margin-right: 0; /* Menghapus margin dari item terakhir */
}

.nav-link.active {
    background-color: var(--primary-color);
    color: #fff !important;
    border-radius: 10px;
    padding: 8px 20px !important;
    font-weight: bold;
    display: inline-block;
}

.nav-link {
    color: #fff;
    transition: background-color 0.3s, color 0.3s;
}

.nav-link:hover {
    color: var(--primary-color);
}

.custom-container {
    width: 80%;
    max-width: 100%;
    margin: 0 auto 0 auto;
}

.jumbotron-custom {
    background-image: url("../img/custom/jumbotron-bg.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}

.jumbotron-custom::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.jumbotron-custom-id-card {
    background-image: url("../img/custom/jumbotron-bg-2.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}

.jumbotron-custom-id-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

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

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

.text-primary::after {
    content: "";
    display: block;
    width: 100px; /* Adjust the width of the line */
    height: 2px; /* Adjust the thickness of the line */
    background-color: var(--primary-color);
    margin: 10px auto 0; /* Adjust spacing around the line */
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.bottom-line {
    content: "";
    width: 25%; /* Adjust the width of the line */
    height: 2px; /* Adjust the thickness of the line */
    background-color: var(--primary-color);
}

.swiper-reviews-carousel {
    position: relative;
}

.reviews-prev-btn,
.reviews-next-btn {
    background-color: rgba(
        23,
        23,
        23,
        0.5
    ); /* Warna #171717 dengan 50% opacity */
    border-radius: 50%;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 40%;
    z-index: 10;
}

.reviews-prev-btn {
    left: 0; /* Atur posisi tombol prev */
}

.reviews-next-btn {
    right: 0; /* Atur posisi tombol next */
}

.reviews-prev-btn i,
.reviews-next-btn i {
    color: white;
    font-size: 24px;
}

.landing-reviews {
    background-color: #ffffff !important;
}

.btn-label-primary:hover,
.btn-label-primary:focus,
.btn-label-primary:active {
    background-color: #333333 !important; /* Warna hitam sedikit lebih terang untuk hover atau active */
    border-color: #333333 !important;
}

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

.btn-primary:hover {
    background-color: var(--secondary-color) !important;
    border: var(--secondary-color) !important;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px; /* Jarak antar ikon */
}

.social-icon {
    background-color: #0e1750; /* Warna latar belakang lingkaran */
    border-radius: 50%;
    padding: 10px; /* Padding untuk memberikan ruang di dalam lingkaran */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px; /* Lebar lingkaran */
    height: 60px; /* Tinggi lingkaran */
}

.social-icon img {
    width: 30px; /* Ukuran ikon */
    height: 30px;
}

.dropdown-item:hover,
.dropdown-item:focus {
    color: #ffffff;
    background-color: var(--secondary-color) !important;
}
