/* navbar */
:root {
    --primary-color: #3b82f6;
    --secondary-color: #111828;
    --gold-gradient: linear-gradient(to right, #f6e05e, #d69e2e);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

#mobile-search-button {
    position: relative;
    z-index: 50;
}

#main-navbar {
    transition: background-color 0.5s ease, box-shadow 0.5s ease;
}

.navbar-gold-gradient {
    background: var(--gold-gradient);
}

.navbar-shadow {
    box-shadow: var(--shadow);
}

.nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-scrolled {
    color: var(--secondary-color) !important;
}

.nav-link.active,
.nav-link.text-blue-600 {
    color: var(--primary-color) !important;
    font-weight: 700;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.self-center {
    color: white;
    transition: color 0.3s ease;
}

.navbar-scrolled.self-center {
    color: var(--secondary-color) !important;
}

/* navbar blog */
#Category::-webkit-scrollbar {
    display: none;
}
/* akhir navbar */

/* Hide scrollbar for IE, Edge, and Firefox */
#Category {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

/* PAGE BERANDA */

/* section jumbotron */
.glow-text {
    text-shadow: 0 0 5px rgba(161, 158, 158, 0.952),
        /* Warna glow (hijau) */ 0 0 10px rgba(247, 247, 247, 0.897),
        0 0 20px rgba(208, 214, 211, 0.959), 0 0 40px rgba(72, 187, 120, 0.2);
}
.text-gold {
    text-shadow: 0 0 10px #ffd000, 0 0 20px #635208a9, 0 0 30px #2525004d;
}
/* akhir section jumbotron */

/* section testi & page testi */
.testimoni {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.slider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: url("/assets/images/testimoni/pattern-bg.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    height: 100%;
    width: 100%;
}

.image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-photo {
    animation: slideLeft 1s;
    display: none;
    width: 240px;
    border-radius: 5px;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.24);
    margin-top: 1.6rem;
}

.user-photo.active {
    display: block;
}

.buttons {
    display: flex;
    background: #fff;
    border-radius: 50%;
    margin-top: -1.2rem;
    z-index: 1;
}

.testimoni .slider button {
    border: 0;
    outline: 0;
    background: #fff;
    width: 2.6rem;
    height: 2.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

button.previous img {
    width: 23.5%;
}

button.next img {
    width: 25%;
}

button.previous {
    border-radius: 50% 0 0 50%;
}

button.next {
    border-radius: 0 50% 50% 0;
}

.text {
    animation: slideRight 1s;
    display: none;
    flex-direction: column;
    align-items: center;
    height: 100%;
    width: 100%;
}

.text.active {
    display: flex;
}

.testimonial {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.3;
    background-image: url("/assets/images/testimoni/pattern-quotes.svg");
    background-repeat: no-repeat;
    background-position: top 2vh center;
    background-size: 50px;
    color: var(--dark-blue);
    padding-top: 2rem;
}

.testimonial blockquote {
    color: white;
}

.container-footer {
    text-align: center;
}

.container-footer p {
    font-weight: 700;
    font-size: 16px;
    color: #fdd017; /* Warna lebih tegas untuk nama */
    margin-top: 1rem;
}

.container-footer span {
    font-size: 15px;
    font-weight: 500;
    color: white; /* Warna lebih mencolok untuk jabatan */
}

/* Mobile */
@media (max-width: 767px) {
    .testimonial {
        padding: 1.5rem; /* Menambah padding agar teks tidak terlalu mepet */
        font-size: 1rem; /* Menyesuaikan ukuran teks */
        line-height: 1.5;
    }
    .container-footer p {
        font-size: 13px;
    }
}

/* Tablets */
@media (min-width: 768px) {
    .testimoni {
        flex-direction: row-reverse;
    }

    .slider {
        width: 100%;
        background-size: contain;
    }

    .user-photo {
        animation: slideRight 1s;
        width: 80%;
        margin-top: 2rem;
    }

    .text {
        animation: slideLeft 1s;
        align-items: flex-start;
        justify-content: center;
        width: 100%;
        padding-top: 0;
        position: relative;
        left: 9.5vw;
    }

    .testimonial {
        text-align: left;
    }

    .container-footer {
        text-align: left;
    }
}

/* Desktop */
@media (min-width: 1360px) {
    body {
        background-size: 50%;
    }

    .user-photo {
        width: 500px;
    }

    .testimonial {
        font-size: 1.8rem;
        background-position: top left 15vh;
        background-size: 80px;
    }

    .container-footer {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 2rem;
    }

    .container-footer p {
        font-size: 1.2rem;
        margin-top: 0;
    }

    .container-footer span {
        font-size: 1.2rem;
        margin-left: 12px;
    }

    .buttons {
        margin-right: 16rem;
    }
}

@media (min-width: 1440px) {
    body {
        background-size: 50%;
    }

    .user-photo {
        width: 100%;
        margin-top: 3.2rem;
    }

    .buttons {
        margin-top: -2rem;
        margin-right: 12rem;
    }

    .testimonial {
        font-size: 2.2rem;
        background-position: top left 11vh;
        background-size: 140px;
        padding-top: 5rem;
    }

    .container-footer {
        margin-top: 3rem;
    }

    .container-footer p {
        font-size: 1.5rem;
        margin-right: 12px;
    }

    .container-footer span {
        font-size: 1.5rem;
    }
}

/* Animations */
@keyframes slideRight {
    from {
        transform: translateX(100vh);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes slideLeft {
    from {
        transform: translateX(-100vh);
    }
    to {
        transform: translateX(0);
    }
}

/* akhir section testi & page testi */

/* section partner & page partner */
.logo-partner {
    padding-top: 150px;
}

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
}
.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
}
.slick-slide {
    margin: 5px;
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}
.slick-slide img {
    width: 100%;
    display: block;
}
.slick-initialized .slick-slide {
    display: block;
}
.copy {
    padding-top: 250px;
}

/* page partner */
.gallery-item img {
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.fancybox-button {
    display: block !important; /* Pastikan tombol close muncul */
}
/* akhir page partner */

/* akhir section partner & page partner */

/* AKHIR PAGE BERANDA */
