/* Warna dasar nav-link */
.navbar-light .navbar-nav .nav-link {
    color: white; /* Warna putih untuk semua nav-link */
    transition: color 0.3s; /* Transisi halus ketika warna berubah */
}

/* Warna nav-link ketika di-hover */
.navbar-light .navbar-nav .nav-link:hover {
    color: #82bbb7; /* Warna yang lebih terang saat di-hover */
}

/* Warna dan gaya untuk nav-link yang aktif */
.navbar-light .navbar-nav .nav-link.active {
    color: #cafffe !important; /* Warna lebih terang untuk nav-link aktif */
    font-weight: bold; /* Menebalkan font untuk nav-link aktif */
    position: relative;
}

/* Garis di bawah nav-link yang aktif */
.navbar-light .navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #cafffe;
}

.navbar-brand img {
    height: 100px; /* Atur ukuran logo di sini */
}

.navbar-brand span {
    font-size: 20px; /* Atur ukuran teks perusahaan */
    white-space: nowrap; /* Hindari teks turun ke bawah */
}


/* CSS */
.btn-primary-outline {
    border-color: #2381b2;
    color: #2381b2;
    background-color: transparent;
    box-shadow: 0px 0px 10px rgba(35, 129, 178, 0.5);
    width: 200px;
    font-weight: bold;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus {
    background-color: #2381b2;
    color: #ffffff;
    box-shadow: 0px 0px 15px rgba(35, 129, 178, 0.7);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0; /* Mulai dengan elemen tidak terlihat */
    transform: translateY(20px); /* Posisi awal */
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0); /* Posisi akhir */
}


/* logo carousel */

/* swiper pagination logo */
.swiper-container {
    position: relative; /* Agar pagination bisa diposisikan secara absolut terhadap container */
}

.swiper-pagination {
    position: absolute;
    bottom: 10px; /* Jarak dari bawah container */
    left: 0;
    right: 0;
    text-align: center;
    margin-top: 50px; /* Jarak antara logo dan pagination */
}

.swiper-pagination-bullet {
    background-color: #bfe4e1; /* Warna bullet */
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background-color: #213E6A; /* Warna bullet saat aktif */
}

/* tab content */
body {
    font-family: ;
    margin: 0;
}

.tabs {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    background-color: #f1f1f1;
}

.tab-item {
    padding: 10px 20px;
    cursor: pointer;
}

.tab-item.active {
    background-color: #007bff;
    color: white;
}

.tab-content {
    padding-top: 20px;
}

.content {
    display: none;
    padding: 20px;
}

.content.active {
    display: block;
}

.title-container {
    position: relative;
    display: inline-block;
    text-align: center;
}

.title-container h1 {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
}

.title-container img {
    width: 50%; /* Gambar akan mengisi lebar container */
    margin-top: 20px;
}

.tabs-container {
    margin-top: 50px;
}

.tabs a {
    text-decoration: none;
    color: inherit;
}

