



div#carousel {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-family: "Quicksand", sans-serif;
    overflow-x: hidden;
    position: relative;
    top: -2.5rem;
    height: 500px;
}

.card-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.card-carousel .my-card img {
    width: 100%;
    animation: upDown 5s infinite ease-in-out;
}

.card-carousel .my-card {
    height: 20rem;
    width: 12rem;
    position: relative;
    z-index: 1;
    -webkit-transform: scale(0.6) translateY(-2rem);
    transform: scale(0.6) translateY(-2rem);
    opacity: 0;
    cursor: pointer;
    pointer-events: none;
    background-color: #fff;
    transition: 1s;
}

.card-carousel .my-card:after {
    content: "";
    position: absolute;
    height: 2px;
    width: 100%;
    border-radius: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    bottom: -4rem;
    -webkit-filter: blur(4px);
    filter: blur(4px);
    left: 0;
}

.card-carousel .my-card.active {
    z-index: 3;
    -webkit-transform: scale(1) translateY(0) translateX(0);
    transform: scale(1) translateY(0) translateX(0);
    opacity: 1;
    pointer-events: auto;
    transition: 1s;
}

.card-carousel .my-card.prev,
.card-carousel .my-card.next {
    z-index: 2;
    -webkit-transform: scale(0.8) translateY(-1rem) translateX(0);
    transform: scale(0.8) translateY(-1rem) translateX(0);
    opacity: 0.6;
    pointer-events: auto;
    transition: 1s;
}

.containers {
    width: 90%;
    margin: 0 auto;
    padding: 0;
}
.g-scrolling-carousel .items > * {
    min-height: 96px;
    margin-right: 10px;
}
.g-scrolling-carousel .items a:last-child {
    margin-right: 0;
}
.carousel-three,
.carousel-four {
    width: 537px;
}
/* /////////////////////////////////////////////////////// */

.btn {
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.1s ease;
}

.btn-success {
    background-color: #28a745;
    color: white;
}

.btn-success:hover {
    background-color: #218838;
}

.btn-success:active {
    background-color: #1e7e34;
    transform: scale(0.95);
}

.btn-primary {
    background-color: #007bff;
    color: white;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.btn-primary:active {
    background-color: #004085;
    transform: scale(0.95);
}

@keyframes upDown {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

#navbarNav{
    display: flex;
    justify-content: center;
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    header h2 {
        display: none;
    }
    header h1{
        margin-top: 10px;
        font-size: 12px !important;
    }
    h2 {
        font-size: 20px;
    }
    #first-section h3 {
        font-size: 14px;
    }
    .scroll-hint {
        position: relative;
        background-color: #f0f0f0;
        color: #333;
        font-size: 10px !important;
        padding: 10px;
        text-align: center;
        white-space: nowrap;
        overflow: hidden;
    }
    #promo-section .card-header .price {
        font-size: 33px !important;
    }
    #carousel {
        position: relative;
        width: 100%;
        height: 300px; /* Sesuaikan dengan kebutuhan Anda */
        overflow: hidden;
    }
    
    #carousel::before,
    #carousel::after {
        content: '';
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 30px;
        height: 30px;
        background-color: rgba(0, 0, 0, 0.5);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        color: white;
        font-size: 1.5rem;
        cursor: pointer;
        transition: background-color 0.3s;
    }
    
    #carousel::before {
        left: 10px; /* Sesuaikan dengan kebutuhan Anda */
        content: '‹'; /* Simbol panah kiri */
    }
    
    #carousel::after {
        right: 10px; /* Sesuaikan dengan kebutuhan Anda */
        content: '›'; /* Simbol panah kanan */
    }
    
    #carousel::before:hover,
    #carousel::after:hover {
        background-color: rgba(0, 0, 0, 0.7);
    }
    .containers {
        width: 100%;
        margin: 0 auto;
        padding: 0;
    }
    .the-subjudul{
        font-size: 14px;
    }

    
    .nav-item p{
        display: none !important;
    }
    #navbarNav ul{
        display: flex;
        flex-direction: row !important;
        width: 100%;
        justify-content: space-evenly;
        position: fixed;
        z-index: 99;
        bottom: 0px;
        background-color: #f8f9fa !important;
        align-items: center;
        height: 60px;
        padding-bottom: 15px;
    }

    #navbarNav ul a{
        width: 38px;
        height: 38px;
        background-color: #0056b3;
        font-size: 14px;
        justify-content: center;
        align-items: center;
        display: flex;
        border-radius: 14px;
        color: #f5f5f5;
    }

    .wa-button {
        bottom: 65px !important;
    }
    body {
        overflow-x: hidden;
        overflow-y: auto;
        margin: 0;          /* Menghindari margin default */
        padding: 0;         /* Menghindari padding default */
    }
    
    * {
        box-sizing: border-box; /* Menghitung padding dan border dalam ukuran elemen */
    }
    #albumTabs{
        display: block !important;
    }
    
    #albumTabs .nav-item, #albumTabs .nav-item .nav-link{
        width: 100% !important;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    #albumTabs{
        display: block !important;
    }
    
    #albumTabs .nav-item, #albumTabs .nav-item .nav-link{
        width: 100% !important;
    }
    .nav-item p{
        display: none !important;
    }
    #navbarNav ul{
        display: flex;
        flex-direction: row !important;
        width: 100%;
        justify-content: space-evenly;
        position: fixed;
        z-index: 99;
        bottom: 0px;
        background-color: #f8f9fa !important;
        align-items: center;
        height: 60px;
        padding-bottom: 15px;
    }

    #navbarNav ul a{
        width: 38px;
        height: 38px;
        background-color: #0056b3;
        font-size: 14px;
        justify-content: center;
        align-items: center;
        display: flex;
        border-radius: 14px;
        color: #f5f5f5;
    }

    .wa-button {
        bottom: 65px !important;
    }
    body {
    overflow-x: hidden;
    overflow-y: auto;
    margin: 0;          /* Menghindari margin default */
    padding: 0;         /* Menghindari padding default */
}

* {
    box-sizing: border-box; /* Menghitung padding dan border dalam ukuran elemen */
}
}

@media (min-width: 767.99px) and (max-width: 991.99px) {
    .nav-item p{
        display: none !important;
    }
    #navbarNav ul{
        display: flex;
        flex-direction: row !important;
        width: 100%;
        justify-content: space-evenly;
        position: fixed;
        z-index: 99;
        bottom: 0px;
        background-color: #f8f9fa !important;
        align-items: center;
        height: 60px;
        padding-bottom: 15px;
    }

    #navbarNav ul a{
        width: 38px;
        height: 38px;
        background-color: #0056b3;
        font-size: 14px;
        justify-content: center;
        align-items: center;
        display: flex;
        border-radius: 14px;
        color: #f5f5f5;
    }

    .wa-button {
        bottom: 65px !important;
    }
}


/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .nav-item i{
        display: none !important;
    }
    .nav-item p{
        padding: 0;
        margin: 0;
    }
}


/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .nav-item i{
        display: none !important;
    }
    .nav-item p{
        padding: 0;
        margin: 0;
    }
}

header {
    background-color: #006ca5;
    color: #fff;
}


footer {
    background-color: #02367b;
    color: #fff;
    margin-bottom: -15px;
}

/* Footer Styles */
.footer {
    background-color: #343a40;
}

.footer-title {
    margin-bottom: 1rem;
    font-weight: bold;
}

.footer p,
.footer ul {
    margin: 0;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a:hover {
    background-color: #fff;
    color: #333 !important;
}
.social-icons a {
    font-size: 1.4rem;
    transition: color 0.3s, transform 0.2s;
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border-radius: 50%;
}


.social-icons a:nth-child(1) {
    background-color: #315197 !important; /* Warna Facebook saat */
    color: #fff !important;
}

.social-icons a:nth-child(2) {
    color: #fff !important;
    background-color: #c13584 !important; /* Warna Instagram saat */
}

.social-icons a:nth-child(3) {
    color: #fff !important;
    background-color: #ff0000 !important; /* Warna YouTube saat hover */
}

.social-icons a:active {
    transform: scale(0.95);
}

.footer .list-unstyled ul li {
    margin-bottom: 0.5rem;
}

.footer .list-unstyled ul li i {
    margin-right: 0.5rem;
}

.footer .img-footer{
    width: 90px;
}

header h1 {
    font-size: 18px;
}
header h2 {
    font-size: 16px;
}

body {
    font-family: "Poppins", sans-serif;
    /* width: 100vw !important; */
    overflow-x: hidden !important;
}



.scroll-hint {
    position: relative;
    background-color: #f0f0f0;
    color: #333;
    font-size: 14px;
    padding: 10px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
}

.scroll-hint::before,
.scroll-hint::after {
    content: "⇠";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #888;
}

.scroll-hint::before {
    left: 10px;
}

.scroll-hint::after {
    content: "⇢";
    right: 10px;
}

#tentang-kami {
    color: #fff;
    min-height: 300px;
    display: flex;
    align-items: center;
}

#tentang-kami p {
    text-align: justify;
}

#tentang-kami h2 {
    font-weight: 500;
}

#tentang-kami .lading-kanan {
    background-color: aliceblue !important;
}
#tentang-kami .lading-kiri {
    background-color: #0496c7;
}

.wa-button {
    background-color: #25d366;
    color: #fff;
    border-radius: 14px;
    font-size: 18px;
    text-decoration: none;
    position: fixed;
    padding: 6px 14px;
    right: 20px;
    bottom: 20px;
    z-index: 999;
    animation: boxshadow 1s infinite;
}

@keyframes boxshadow{
    0%{
        box-shadow: 0 0 0px #25d366;
    }
    50%{
        box-shadow: 0 0 10px #25d366;
    }
    100%{
        box-shadow: 0 0 0px #25d366;
    }
}

.wa,
.wa:hover {
    background-color: #25d366 !important;
    border-color: #25d366;
}

.wa:hover {
    background-color: #1bbb56 !important;
}

.btn.btn-danger {
    background-color: #02367b !important;
    border: solid 3px #02367b;
    font-weight: 500;
}

.btn.btn-danger:hover {
    background-color: #f5f5f5 !important;
    color: #02367b;
}

.btn.btn-danger:active {
    border: solid 3px #02367b;
    transform: scale(0.96);
}
.btn.btn-danger.outline {
    font-weight: 500;
    color: #02367b;
    background-color: #f5f5f5 !important;
    border: solid 3px #02367b;
}
.btn.btn-danger.outline:hover {
    background-color: #02367b !important;
    color: #fff;
}

.btn.btn-danger:active {
    border: solid 3px #02367b;
    transform: scale(0.96);
}

.btn.btn-warning {
    color: #f5f5f5;
    font-weight: 500;
}

.btn.btn-sm {
    height: 30px;
    padding-top: 4px;
}

#first-section h2 {
    text-align: center;
    font-weight: 600;
    color: #02367b;
}
#first-section h3 {
    text-align: center;
    font-weight: 600;
    color: #04bade;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-6px);
    }
    60% {
        transform: translateY(-3px);
    }
}

#fitur-layanan .the-judul {
    text-align: center;
    color: #02367b;
}
#fitur-layanan hr {
    background-color: #02367b !important;
    border: none;
    height: 2px;
    width: 100px;
    margin: 0 auto; 
    text-align: center;
}
#fitur-layanan h3 {
    font-size: 16px;
    margin-top: 4px;
    font-weight: 500;
}

#fitur-layanan .the-card {
    min-height: 220px; 
    background-color: #f5f5f5;
    border-top: 3px solid #0496c7;
    border-bottom: 3px solid #0496c7;
    border-radius: 18px;
    color: #333;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    transition: transform 0.3s, box-shadow 0.3s; /* Menambahkan transisi */
}

#fitur-layanan .the-card:hover {
    transform: translateY(-10px); /* Efek naik saat hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Menambah bayangan saat hover */
}

#fitur-layanan .the-card .header {
    font-weight: 600;
    margin-bottom: 10px; /* Menambahkan margin bawah */
    display: block !important;
}

#fitur-layanan .the-card .header i {
    font-size: 50px;
    color: #004085;
    display: inline-block;
    animation: bounce 10s infinite;
}

#fitur-layanan .the-card .header div:nth-child(2){
    margin-top: 10px;
}

#fitur-layanan .the-card .content {
    font-size: 14px; /* Menambahkan ukuran font */
    line-height: 1.2; /* Menambahkan tinggi baris */
    margin-top: 2px !important; /* Menambahkan margin atas */
    color: #777;
}

@media (max-width: 768px) {
    #fitur-layanan .the-card {
        min-height: 180px; /* Mengurangi ketinggian minimum di layar lebih kecil */
        padding: 15px; /* Mengurangi padding di layar lebih kecil */
    }

    #fitur-layanan .the-card .header {
        font-size: 18px; /* Mengurangi ukuran font header di layar lebih kecil */
        gap: 5px; /* Mengurangi jarak antara ikon dan teks di layar lebih kecil */
    }

    #fitur-layanan .the-card .header i {
        font-size: 35px; /* Mengurangi ukuran ikon di layar lebih kecil */
    }

    #fitur-layanan .the-card .content {
        font-size: 14px; /* Mengurangi ukuran font konten di layar lebih kecil */
    }
}

#examples-section hr {
    background-color: #02367b !important;
    border: none;
    height: 2px;
    width: 100px;
    margin: 0 auto; 
    text-align: center;
}

#examples-section h2 {
    text-align: center;
    color: #02367b;
}

#examples-section .the-cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-left: -100px;
}

#examples-section .the-cards img {
    width: 100%;
}

#examples-section .the-cards p {
    margin: 10px 0 0 0;
    font-weight: 600;
    color: #333;
}

#examples-section .the-cards .the-button {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    align-items: center;
    margin-top: 0 !important;
    margin-top: -50px !important;
}

#examples-section .the-cards .btn {
    width: 80% !important;
    height: 30px;
    padding: 2px;
}

#examples-section .items a {
    margin: 0 !important;
    width: 200px !important;
    padding: 20px;
}

#order-section .the-judul {
    text-align: center;
    color: #02367b;
}
#order-section hr {
    background-color: #02367b !important;
    border: none;
    height: 2px;
    width: 100px;
    margin: 0 auto;
    text-align: center;
}

#promo-section .the-judul {
    text-align: center;
    color: #02367b;
}
#promo-section hr {
    background-color: #02367b !important;
    border: none;
    height: 2px;
    width: 100px;
    margin: 0 auto;
    text-align: center;
}

#promo-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

#promo-section .card {
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #99999973;
}

#promo-section .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#promo-section .card-header h3 {
    text-align: center;
    color: #02367b;
}

#promo-section .card-header .discont {
    color: #888888ca;
    font-weight: 500;
    font-size: 20px;
    text-decoration: line-through;
}

#promo-section .card-header .discont::before {
    content: "Rp. ";
}

#promo-section .card-header .price::before {
    content: "Rp. ";
}

#promo-section .card-header .price {
    font-family: "Montserrat", sans-serif;
    font-size: 40px;
    font-weight: bold;
    color: #02367b;
}

.total-discount {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: bold;
    color: rgb(186, 0, 0);
    padding: 10px 15px;
    border-radius: 5px;
    display: inline-block;
    text-align: center;
}

.total-discount div:nth-child(2) {
    font-size: 14px;
}

#promo-section .card-body {
    text-align: center;
}

#promo-section .card-title {
    font-size: 20px;
    margin-bottom: 15px;
}

#promo-section .btn-primary {
    background-color: #007bff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

#promo-section .btn-primary:hover {
    background-color: #0056b3;
}
#promo-section .btn-primary:active {
    transform: scale(0.95);
}

#promo-section .card .fitur-accept {
    text-align: start;
    font-family: 400;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 400;
}
#promo-section .card .fitur-danger {
    text-align: start;
    font-family: 400;
    color: #888;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 400;
}

#promo-section .card .fitur-danger div:nth-child(2) {
    text-decoration: line-through;
}
#promo-section .card .fitur-secondary {
    text-align: start;
    font-family: 400;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 400;
}

#promo-section .card .fitur-accept div {
    height: 30px;
    width: 30px !important;
    border-radius: 50%;
    background-color: #28a745;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

#promo-section .card .fitur-danger div:nth-child(1) {
    height: 30px;
    width: 30px;
    border-radius: 50%;
    background-color: #dc3545;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}
#promo-section .card .fitur-secondary div {
    height: 30px;
    width: 30px;
    border-radius: 50%;
    background-color: #999;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

#faq-section .the-judul {
    text-align: center;
    color: #02367b;
}
#faq-section .the-subjudul {
    text-align: center;
    color: #02367b;
    font-size: 18px;
}
#faq-section hr {
    background-color: #02367b !important;
    border: none;
    height: 2px;
    width: 100px;
    margin: 0 auto;
    text-align: center;
}

.accordion .card {
    border: none;
    border-radius: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
    border-radius: 14px !important;
}

.accordion .card-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e1e1e1;
    padding: 10px;
    border-radius: 14px !important;
}

.accordion .btn-link {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
}

.accordion .btn-link:hover {
    text-decoration: underline;
}

.accordion .card-body {
    padding: 20px;
    background-color: #ffffff;
    border-radius: 14px !important;
}

#testimoni {
    padding: 60px 0;
    background-color: #f8f9fa;
    position: relative;
}

#testimoni svg{
    position: absolute;
    top: 0;
}

#testimoni h2 {
    font-size: 2rem;
    color: #02367B;
    font-weight: 700;
    margin-bottom: 10px;
}

#testimoni p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 40px;
}

#testimoni .counter {
    font-size: 2.5rem;
    color: #02367B;
    font-weight: 700;
}

#testimoni .description {
    font-size: 1.2rem;
    color: #666;
    margin-top: 10px;
}

#testimoni .cards {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    margin: 10px 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

#testimoni .cards:hover {
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

@media (max-width: 767px) {
    #testimoni .cards {
        margin-bottom: 20px;
    }
}

#testimoni-section .owl-carousel .item {
    padding: 15px;
}

#testimoni-section .card {
    border-radius: 20px;
    border: 2px solid transparent; /* Hilangkan border default */
    background-image: linear-gradient(white, white), /* Warna latar belakang */
                      linear-gradient(45deg, #02367b, #0496c7); /* Warna border gradient */
    background-origin: border-box; 
    background-clip: content-box, border-box;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 
                0 1px 3px rgba(0, 0, 0, 0.08);
}



#testimoni-section .card-body {
    padding: 20px;
}

#testimoni-section .card img {
    width: 60px !important;
    height: 60px !important;
}

#testimoni-section .ratings .fa {
    font-size: 16px;
}

#testimoni-section .testimonial-name {
    font-size: 18px;
    font-weight: 600;
    margin-top: 15px;
}

#testimoni-section .testimonial-impression {
    font-size: 16px;
    color: #666;
    margin-top: 10px;
}

#testimoni-section .social-icons .fa {
    font-size: 18px;
    margin: 0 10px;
}

#testimoni-section .social-icons a {
    color: #333;
    transition: color 0.3s;
}

#testimoni-section .social-icons a:hover {
    color: #007bff;
}

#testimoni-section h2 {
    text-align: center;
    color: #02367b;
}
#testimoni-section hr {
    background-color: #02367b !important;
    border: none;
    height: 2px;
    width: 100px;
    margin: 0 auto;
    text-align: center;
}

#contoh-section {
    padding: 40px 0 20px  0;;
}

#contoh-section h3 {
    font-size: 2.5rem;
    color: #02367B; /* Gunakan warna dari palet yang Anda miliki */
    margin-bottom: 20px;
    font-weight: 600;
}

#contoh-section h4 {
    font-size: 1.4rem;
    color: #555; /* Gunakan warna dari palet yang Anda miliki */
    margin-bottom: 15px;
}

#contoh-section p {
    font-size: 1rem;
    color: #666; /* Gunakan warna dari palet yang Anda miliki */
    margin-bottom: 0;
}

@media (max-width: 768px) {
    #contoh-section h3 {
        font-size: 1.5rem;
    }

    #contoh-section h4 {
        font-size: 1rem;
    }

    #contoh-section p {
        font-size: 0.8rem;
    }
}


#section-card {
    padding: 60px 0;
}
.scroll-nav-container {
    position: -webkit-sticky; /* Untuk dukungan Safari */
    position: sticky;
    top: 0;
    background-color: white;
    z-index: 1000;
    text-align: center;
    padding: 20px 0 0 10px;
    border-bottom: 1px solid #ddd;
}

.scroll-nav {
    font-size: 12px;
    color: #333;
}

.scroll-nav .arrow-left,
.scroll-nav .arrow-right {
    margin: 0 10px;
    font-weight: bold;
}
#section-card .filter-container {
    margin-bottom: 20px;
    display: flex;
    gap: 10px;
    overflow-x: auto; /* Ganti dari scroll ke auto */
    flex-direction: row;
    position: -webkit-sticky; /* Untuk dukungan Safari */
    position: sticky;
    top: 38px; /* Mengatur jarak dari atas */
    background-color: white; /* Pastikan latar belakang tidak transparan */
    z-index: 1000; /* Pastikan elemen ini di atas elemen lain */
    padding: 20px 0;
}

/* Menyembunyikan scrollbar di desktop */
#section-card .filter-container::-webkit-scrollbar {
    display: none; /* Untuk browser berbasis WebKit */
}

#section-card .filter-container {
    -ms-overflow-style: none;  /* Untuk Internet Explorer dan Edge */
    scrollbar-width: none;  /* Untuk Firefox */
}

#section-card .filter-container .btn.btn-custom {
    cursor: pointer;
    width: 100% !important;
    align-items: center;
    justify-content: center;
    background-color: #04bade;
    display: inline-flex;
    white-space: nowrap; /* Menjaga teks tombol tetap dalam satu baris */
    height: 40px; /* Mengatur tinggi tombol */
    line-height: 30px; /* Menjaga teks vertikal di tengah */
    padding: 0 10px; /* Menambahkan padding horizontal */
    font-size: 14px; /* Mengatur ukuran font agar sesuai */
    color: #fff;
    border: none;
}

#section-card .filter-container .btn.btn-custom:active{
    transform: scale(0.95);
}


#section-card .card {
    border: none;
    border-radius: 5px;
    padding: 20px;
    box-sizing: border-box;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.5s, transform 0.5s;
    display: none;
}

#section-card .card.show {
    opacity: 1;
    transform: scale(1);
    display: block;
}

#section-card .cards{
    padding: 10px;
    border-radius: 10px;
}
#section-card .cards .banner{
    width: 100%;
    position: relative;
    border: 1px solid #cccccc9a;
    margin-bottom: 10px;
}

#section-card .cards .banner img{
    width: 100%;
    object-fit: cover;
}
#section-card .cards .banner .caption{
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 3px  10px;;
    border-top-left-radius: 20px;
}

#section-card .cards .the-button{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#section-card .cards .the-button .btn{
    width: 100% ;
    border-radius: 20px;
    padding: 8px;
}


/* CSS Custom untuk Golden Rule */

.tab-content {
    margin-top: 20px;
}
.audio-player {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
}
.audio-title {
    font-size: 1.2rem;
    font-weight: 500;
    color: #333;
}

#albumTabs{
    border: none !important;
}
#albumTabs .nav-item{
    border: none !important;
    margin: 5px;
}
#albumTabs .nav-item .nav-link{
    border: none !important;
    border-radius: 14px !important;
}
#albumTabs .nav-item .nav-link.active{
    background-color: #04bade;
    color: #fff;
}


#templateTabs{
    border: none !important;
}

#templateTabs .nav-item{
    border: none !important;
    margin: 5px;
}
#templateTabs .nav-item .nav-link{
    border: none !important;
    border-radius: 5px !important;
    background-color: #06cef6;
    color: #fff;
}
#templateTabs .nav-item .nav-link.active{
    background-color: #0493b0;
    color: #fff;
}
#templateTabs .nav-item .nav-link:active{
    transform: scale(0.95);
}


#faq-section.sebar{
    background-color: transparent !important;
}

#consultasi .row{
    background-color: #06cef6;
    color: #f5f5f5;
    padding: 50px 0 !important;
}

#promo-countdown {
    background-color: #02367B; /* Warna latar belakang sesuai palet warna */
    color: #ffffff;
    padding: 40px;
    text-align: center;
    border-radius: 10px;
}

.promo-container {
    max-width: 600px;
    margin: 0 auto;
}

.promo-title {
    font-size: 2.5em;
    margin-bottom: 10px;
}


#countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.time-box {
    background-color: #ffffff;
    color: #02367B;
    padding: 20px;
    border-radius: 10px;
    min-width: 80px;
    animation: blink 2s linear infinite;
}

.time-box span {
    font-size: 2.5em;
    display: block;
}

.time-box p {
    margin: 0;
    font-size: 1em;
}

.promo-button {
    background-color: #04BADE; /* Warna tombol sesuai palet warna */
    color: #ffffff;
    padding: 15px 30px;
    font-size: 1.2em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    animation: blink 1s linear infinite;
}

.promo-button:hover {
    background-color: #0496C7; /* Warna tombol saat di-hover */
}

@keyframes blink {
    0%{
        opacity: 1;
    }
    50%{
        opacity: 0.7;
    }
    100%{
        opacity: 1;
    }
}