@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

:root {
    --biru: #000080;
    --biru2: #102a71;
    --birumuda: #059ae4;
    --biruterang: #0efff8;
    --kuning: #f5c400;
    --kuningmuda: #ffdc5f;
    --putih: #ffffff;
    --krem: #FFEFCA;

    /* gadient */
    --biru-kuning: linear-gradient(to left bottom, #102a71, #8b2a7d, #da3a67, #ff783b, #f5c400);
    --biruterang-kuning: linear-gradient(to left bottom, #059ae4, #00add1, #00b792, #6bb644, #cda503);
    --biruterang-kuning2: radial-gradient(circle, #ffdc5f, #cfec74, #9bf79b, #61fdca, #0efff8);
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    padding-top: 70px;
    /* Adjust based on the navbar height */
}

.fixed-top {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030;
    /* Ensure it's above other content */
}

.navbar-blue {
    background-color: #007bff;
    /* Bootstrap primary blue color */
}

.navbar .nav-link {
    margin-right: 1rem;
    position: relative;
}

.navbar .nav-link:not(:last-child)::after {
    content: '|';
    position: absolute;
    right: -0.8rem;
    color: white;
    /* Sesuaikan dengan warna teks */
}


header,
footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 10px 0;
}

.hero {
    background: url('hero.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    color: white;
    background: #e74c3c;
    text-decoration: none;
    border-radius: 5px;
}

footer p {
    margin: 5px 0;
}

/* pengaturan umum untuk section */
.test,
.mengapa,
.produk_cuha,
.cara_masuk,
.form_pesan,
.siapa_gabung {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.profil .judul-wrapper {
    color: var(--biru) !important;
}

/* Testimonial */
.mengapa,
.hubungi,
.cara_masuk,
.form_pesan {
    background: var(--kuningmuda);

    /* background-color: rgba(235, 229, 247, 0.5); */
    /* background-color: #e6e3f7 */

}

/* CSS untuk swiper di bagian atas */
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CSS untuk swiper test di bagian bawah */
#test {
    padding: 60px 0;
    background-color: #fff;
}

#test .swiper-container {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 40px;
}

#test .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px; */
    overflow: hidden;
}

#test .swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
}


/* Tombol back to top */
.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

/* Opsi tambahan untuk styling tombol */
.btn-square {
    border-radius: 10px;
    background: var(--kuning);
}

.form_pesan {
    padding: 4rem 0;
}

.text-primary {
    color: #0d6efd !important;
}

.btn-success {
    background-color: #198754;
    border-color: #198754;
}


.fullText {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}

.fullText.show {
    max-height: 500px;
    /* Atur sesuai dengan tinggi maksimum yang Anda butuhkan */
}

/* Bagian Footer */
.footer {
    background-image: linear-gradient(to right, #000080, #020196, #0403ad, #0605c4, #0808dc);
    border-top: 5px solid var(--kuning);
}