    /* Styling khusus untuk area yang bisa di-scroll */
    .scrollable-container {
      border-radius: 15px;
      max-height: 465px; /* Batas tinggi kontainer sebelum scroll muncul */
      overflow-y: auto;  /* Mengaktifkan scroll vertikal */
      overflow-x: hidden; 
    }

    /* Kustomisasi Scrollbar agar terlihat lebih rapi (opsional) */
    .scrollable-container::-webkit-scrollbar {
      width: 6px;
    }
    .scrollable-container::-webkit-scrollbar-thumb {
      background-color: #a0a0a0;
      border-radius: 10px;
    }

    /* Styling untuk teks dan layout item */
    .list-item {
      margin-bottom: 25px;
    }
    .list-item:last-child {
      margin-bottom: 0;
    }
    .item-title {
      font-weight: 700;
      color: #2c3e50;
      font-size: 1.15rem;
      line-height: 1.3;
    }
    .item-date {
      color: #284b7a;
      font-size: 0.95rem;
      margin-top: 8px;
    }
    .item-thumbnail {
      border-radius: 10px;
      width: 100%;
      height: 90px;
      object-fit: cover;
    }
	
/* Pengaturan Font & Warna Dasar */
		.nav-hp {background-color:#fff}

        .nav-link {
            padding: 0.5rem 1rem !important;
        }

        .dropdown-item {
            font-weight: 500;
            font-size: 0.85rem;
            padding: 0.4rem 1.5rem;
        }

        /* Hover Effect untuk Desktop */
        @media (min-width: 992px) {
            .nav-item.dropdown:hover > .dropdown-menu {
                display: block;
                margin-top: 0; /* Menghilangkan gap agar mouse tidak 'lepas' */
            }
            
            /* Animasi halus sedikit */
            .dropdown-menu {
                border: none;
                box-shadow: 0 4px 6px rgba(0,0,0,0.1);
                border-radius: 4px;
            }

            /* Menambahkan tanda panah seperti di gambar */
            .nav-link.dropdown-toggle::after {
                border: none;
                content: ' \25BE'; /* Unicode untuk segitiga kecil ke atas */
                vertical-align: top;
				font-size: 1rem;
                margin-left: 0;
            }
        }

        /* Mobile Adjustments */
        @media (max-width: 991px) {
			.nav-hp {display:none!important}
            .navbar-nav {
                padding-top: 1rem;
            }
            .dropdown-menu {
                border: none;
                background-color: #f1f3f5;
            }
        }
		.renunganh {margin-right: -5px;margin-left: -5px; margin-bottom: 15px}
		.renunganh > .col-6 {padding-right: 5px;padding-left: 5px;}
		.renunganh > .col-6 h2{margin-bottom: 0; min-height: auto;}
		.renunganh > .col-6 small {color:#666;font-size:70%}
		
		.scrolling-wrapper {
            display: flex;
            flex-wrap: nowrap;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            padding-bottom: 20px;
            /* Sembunyikan scrollbar untuk IE, Edge, dan Firefox */
            -ms-overflow-style: none;  
            scrollbar-width: thin;  
        }

        /* Sembunyikan scrollbar untuk Chrome, Safari, dan Opera */
        .scrolling-wrapper::-webkit-scrollbar {
            display: none;
        }

        /* Atur lebar tiap card agar terlihat 3 saja di layar besar */
        .card-item {
            flex: 0 0 calc(100% / 3); /* Membagi 3 kolom sama rata */
            max-width: calc(100% / 3);
            padding: 0 10px;
        }
        .card-item.card-item4 {
            flex: 0 0 calc(100% / 5); /* Membagi 5 kolom sama rata */
            max-width: calc(100% / 5);
            padding: 0 10px;
        }

        /* Responsif: Tampilkan 1 atau 2 kartu saja di layar kecil jika perlu */
        @media (max-width: 768px) {
            .card-item, .card-item.card-item4 {
                flex: 0 0 80%; /* Di HP terlihat 1 full dan sedikit sisa kartu berikutnya */
                max-width: 80%;
            }
        }

        .article-img {
            border-radius: 10px;
            width: 100%;
            height: auto;
        }

        .meta-date {
            font-size: 0.85rem;
            color: #6c757d;
        }
		.jc__boxx .jc__item__description h2,.jc__boxx2 h2, .kata-alkitab h2 {font-size: 1rem;}
		.jc22_top h2 {font-size: 1.1rem;}
		
		.row.jc__boxx2 {
		    padding: 15px 5px 5px;
			background: #ddd;
			border-radius: 23px;
			margin: 10px 0; }
		
		.main-footer {
            background-color: #22275a; /* Warna biru tua sesuai gambar */
            color: white;
            padding: 50px 0 20px 0;
            font-family: sans-serif;
        }

        .logo-main {
            max-width: 240px;
            height: auto;
        }

        /* Kotak putih melengkung untuk program lainnya */
        .program-container {
            background-color: #f0f2f5;
            border-radius: 50px; /* Membuat sudut sangat bulat */
            padding: 30px;
            color: #333;
            text-align: center;
        }

        .program-title {
            font-weight: bold;
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: #000;
        }

        .program-logos {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }

        .program-logos img {
            max-height: 78px; /* Menjaga tinggi logo tetap konsisten */
            width: auto;
            filter: grayscale(20%); /* Opsional: agar lebih menyatu */
            transition: 0.3s;
        }

        .program-logos img:hover {
            filter: grayscale(0%);
            transform: scale(1.05);
        }

        .copyright {
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 40px;
            padding-top: 20px;
            font-size: 0.9rem;
        }

        /* Responsif untuk Mobile */
        @media (max-width: 991px) {
            .program-container {
                border-radius: 25px;
                margin-top: 30px;
            }
            .program-logos {
                justify-content: center;
            }
        }
		.vid-border {background: #ddd;padding: 10px;}
		
		/* Styling tombol panah transparan */
		.nav-control {
		  position: absolute;
		  top: 55%;
		  transform: translateY(-50%);
		  background-color: rgba(0, 0, 0, 0.2); /* Transparansi rendah */
		  border: none;
		  width: 40px;
		  height: 80px; /* Bentuk lonjong vertikal agar mudah diklik */
		  z-index: 10;
		  border-radius: 4px;
		  transition: 0.3s;
		}

		.nav-control:hover {
		  background-color: rgba(0, 0, 0, 0.5);
		}

		.nav-control.prev { left: 15px; }
		.nav-control.next { right: 15px; }
		.nav-control.next, .nav-control.prev {
			box-shadow: 0 1px 1px rgba(0, 0, 0, 0.9);
			background: #fff;
			border-radius: 50%;
			top: 46%;
			width: 44px;
			opacity: 0.8;
			height: 44px;	
		}
		.carousel-control-next-icon, .carousel-control-prev-icon {
			background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNSIgaGVpZ2h0PSI5IiB2aWV3Qm94PSIwIDAgMTUgOSI+Cgk8cGF0aCBmaWxsPSIjMzMzMzMzIiBkPSJNNy44NjcgOC41NzRsLTcuMjItNy4yMi43MDctLjcwOEw3Ljg2NyA3LjE2IDE0LjA1Ljk4bC43MDYuNzA3Ii8+Cjwvc3ZnPgo=);
			color: #333;
			margin-top: 5px;
			transform: rotate(-90deg);
		}
		.carousel-control-prev-icon {
			transform: rotate(90deg);
		}

		/* Pengaturan lebar kartu */
		.card-item {
		  flex: 0 0 25%; /* 4 kartu per layar */
		  max-width: 25%;
		}

		@media (max-width: 768px) {
		  .card-item {
			flex: 0 0 100%; /* 1 kartu per layar di HP */
			max-width: 90%;
		  }
		  .nav-control { display: none; } /* Sembunyikan panah di HP, gunakan swipe */
		  #card-slider, #card-slider-relationship, #card-slider-info { overflow-x: auto !important; }
		  
		}
		#card-slider-info .jc__item__image__wrapper {
			overflow-x: hidden;
			scrollbar-width: none;
			border-radius: 10px 10px 10px 10px;
			max-height: 440px; }
		.jc__headline small {
		font-size: 65%; }


/* Floating Button */
        #chat-circle {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: #1a237e;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            color: white;
            padding: 15px;
            cursor: pointer;
            box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
        }

        /* Chat Box Container */
        .chat-box {
            display: none;
            position: fixed;
            right: 20px;
            bottom: 90px;
            width: 350px;
            max-width: 85vw;
            max-height: 500px;
            background: white;
            border-radius: 10px;
            box-shadow: 0px 5px 35px 9px rgba(0,0,0,0.1);
            z-index: 1000;
            overflow: hidden;
            flex-direction: column;
        }

        .chat-header {
            background: #1a237e;
            color: white;
            padding: 15px;
            font-size: 14px;
            font-weight: bold;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .chat-body {
            padding: 15px;
            overflow-y: auto;
            height: 400px;
            background: #f4f7f6;
        }

        /* Bubble Styles */
        .msg-bubble {
            background: white;
            padding: 10px 15px;
            border-radius: 15px;
            margin-bottom: 10px;
            font-size: 14px;
            box-shadow: 0 1px 2px rgba(0,0,0,0.1);
            max-width: 90%;
        }

        .option-btn {
            display: block;
            width: 100%;
            text-align: left;
            background: white;
            border: 1px solid #1a237e;
            color: #1a237e;
            padding: 8px 12px;
            margin-bottom: 8px;
            border-radius: 8px;
            font-size: 13px;
            transition: 0.3s;
        }

        .option-btn:hover {
            background: #1a237e;
            color: white;
            text-decoration: none;
        }

        .wa-btn {
            background: #25d366;
            color: white !important;
            border: none;
            font-weight: bold;
            text-align: center;
        }

        .wa-btn:hover {
            background: #128c7e;
        }

        /* Animation */
        .fade-in { animation: fadeIn 0.3s; }
        @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
