			   html {
			     scroll-behavior: smooth;
		    }
        
        .navbar ul {
			
			gap: 5px; /* Sesuaikan jarak antar item */
		
		}
        .navbar {
			position: fixed; /* Menempel di atas hero */
			top: 0;
			left: 0;
			height: 100px;
			width: 100%; /* Pastikan navbar penuh */
			background: rgba(0, 0, 0, 0.1); /* Transparan awal */
			z-index: 1000; /* Supaya navbar di atas hero */
			transition: background 0.3s ease-in-out;
			border-bottom: 1px solid rgba(255, 255, 255, 0.3); /* Garis putih tipis */
			padding: 15px 0; /* Tambah padding agar lebih tengah */
			justify-content: center;  /* Posisi menu ke tengah */
			align-items: center;       /* Pusatkan secara vertikal */
			gap: 5px;                /* Atur jarak antar menu */
			padding: 15px 0; 
			font-size:13px;
		}
        .navbar a {
			color: white !important;
			font-weight: 600; /* Membuat teks lebih tebal */
			text-transform: uppercase; /* Opsional: Ubah teks jadi huruf besar */
		}
		
		.navbar.scrolled {
			background: white !important;			
			box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
			
		}
		.navbar.scrolled a {
			color: black !important;
		}
		
		.dropdown-menu {
			font-size:13px;
			background: rgba(68, 68, 68, 0.9);
			backdrop-filter: blur(10px);
			border: none;
			box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
			opacity: 0;
			visibility: hidden;
			transform: translateY(10px); /* Efek awal untuk level 1 */
			
		}
 
		/* Saat dropdown muncul */
		.nav-item.dropdown:hover > .dropdown-menu {
			display: block;
			opacity: 1;
			visibility: visible;
			transform: translateY(0);
			transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s; /* Hapus delay saat muncul */
		}

		/* Styling untuk dropdown item */
		.dropdown-item {
			
			color: white !important;
		}

		.dropdown-item:hover {
			background-color: orange !important;
			color: white !important;
		}

		/* Submenu (Level 2 dan 3) ke samping */
		.dropdown-menu .dropdown-menu { /* Target semua submenu di dalam dropdown */
			transform: translateX(10px); /* Efek awal untuk submenu */
			top: 0;
			left: 100%; /* Ke samping kanan */
		}

		/* Saat submenu muncul */
		.dropdown-menu .dropdown:hover > .dropdown-menu {
			display: block;
			opacity: 1;
			visibility: visible;
			transform: translateX(0); /* Bergerak ke posisi normal */
		}
        .dropdown-menu.scrolled {
			background: white !important;
			box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
		}

		.dropdown-menu.scrolled a {
			color: black !important;
		}   
		/* Responsive */
		@media (max-width: 768px) {
			.navbar {
					position: fixed; /* Navbar tetap di atas */
					width: 100%;
					top: 0;
					left: 0;
					z-index: 1000;
					background: #444 !important; /* Warna tetap */
					box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
					transition: background 0.3s ease-in-out;
					color: #fff !important; /* Warna teks agar kontras */
				}
			.navbar .navbar-collapse {
				background: linear-gradient(135deg, #444, #222); /* Gradasi warna */
				border-radius: 10px; /* Membuat sudut melengkung */
				padding: 10px; /* Tambahkan padding agar lebih nyaman */
				box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Efek bayangan */
				transition: all 0.3s ease-in-out; /* Efek transisi saat muncul */
			}
			.navbar.scrolled a {
				color: white !important;
			}
		   .dropdown-menu.scrolled {
			background: black !important;
				box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
			}

			.dropdown-menu.scrolled a {
				color: white !important;
			}   
			

			.navbar .nav-link {
				color: #fff !important; /* Warna teks agar kontras */
				font-weight: bold; /* Teks lebih tegas */
				padding: 10px 15px;
				border-radius: 5px; /* Sedikit melengkung */
				transition: background 0.3s ease-in-out;
			}

			.navbar .nav-link:hover {
				background: rgba(255, 255, 255, 0.2); /* Efek hover */
			}
			
		}		

	    .breadcrumb {
            background: transparent;
            color: white;
        }

        .breadcrumb a {
            color: white;
            text-decoration: none;
        }

        .breadcrumb a:hover {
            text-decoration: underline;
        }
		
		.search-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
            z-index: 1050; /* Pastikan muncul di atas */
        }

        .search-overlay.show {
            opacity: 1;
            visibility: visible;
        }
	  .carousel-container {
        position: relative;
		height:100%;
        width: 100%;
        overflow: hidden;
		
        }

	   #carouselExample {
		margin: 0;
		position: relative;
		}

		#carouselExample::after {
			content: "";
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			background: rgba(20, 30, 60, 0.5);
			
			z-index: 4; /* Pastikan di atas gambar */
			pointer-events: none; /* Agar tidak mengganggu klik */
		}


		#carouselExample .carousel-inner {
			position: relative;
			z-index: 2; /* Pastikan gambar masih terlihat di atas overlay */
		}

		.carousel-inner img {
		   width: 100%;
		   object-fit: cover;
	    }
		.carousel-item {
            position: relative;
			
			
        }
		.carousel-container {
			position: relative;
			
			width: 100%;
			overflow: hidden;
			
		}
        .carousel-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            
            pointer-events: none;
        }
        .carousel-item img {
			width: 100%;
			 height: 100vh; /* Sesuaikan tinggi */
			object-fit: cover;
		}
        .carousel-caption {
            bottom: 20%;
            text-align: left;
            left: 10%;
            color: #000;
        }
        .carousel-caption h1 {
            font-size: 3rem;
            font-weight: 700;
            line-height: 1.2;
            color: #fff;
            text-shadow: 0 0 15px rgba(0, 0, 0, 0.8), 0 0 25px rgba(255, 255, 255, 0.5); /* Efek glow pada teks */
        }
        .carousel-caption p {
            font-size: 1.5rem;
            color: #fff;
            font-weight: 400;
            text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
        }
		.carousel-control-prev, 
		.carousel-control-next {
			background: rgba(0, 0, 0, 0.3); /* Transparan */
			border-radius: 50%; /* Bulat */
			width: 45px;
			height: 45px;
			transition: background 0.3s ease;
			top: 50%; /* Pusatkan secara vertikal */
            transform: translateY(-50%); /* Pastikan tetap di tengah */
			z-index:6;
		}

		.carousel-control-prev:hover, 
		.carousel-control-next:hover {
			background: rgba(0, 0, 0, 0.6);
		}
		 .section-links {
			background: #000; /* Warna hitam solid */
			padding: 20px 0;
			box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.1);
		}
		.link-card {
			position: relative;
			width: 100%;
			height: 400px; /* Sesuaikan tinggi kotaknya */
			overflow: hidden; /* Mencegah gambar keluar dari kotak */
			display: flex;
			align-items: center;
			justify-content: center;
			padding-top:30px;
			padding-bottom:30px;
		}
		.link-card img {
			width: 100%;
			height: 100%;
			object-fit: cover;
			transition: transform 0.4s ease-in-out; /* Smooth animation */
		}

		.link-card::before {
			content: '';
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			background: rgba(0, 0, 0, 0); /* Awalnya transparan */
			transition: background 0.4s ease-in-out;
		}

		/* Efek hover naik ke atas */
		.link-card:hover img {
		      
			transform: translateY(-50px); /* Naik ke atas saat hover */
		}
		.link-card:hover::before {
			background: rgba(0, 0, 0, 0.5); /* Warna hitam transparan saat hover */
		}
        .link-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            background: rgba(0, 0, 0, 0.4);
            color: #fff;
            font-size: 1.8rem;
            font-weight: 600;
            text-transform: uppercase;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
        }
        .link-subtext {
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0, 0, 0, 0.7);
            color: #fff;
            padding: 5px 15px;
            font-size: 0.9rem;
            font-weight: 400;
            text-transform: uppercase;
        }
		  #particleCanvas {
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			pointer-events: none; /* Mencegah interaksi dengan canvas */
			z-index:3;
		   }
        @media (max-width: 768px) {
			.klaster-img {
				 
				  width: 60px;
				  height: 60px;
				  border-radius: 50%;
				  overflow: hidden;
				  display: flex;
				  align-items: center;
				  justify-content: center;
				  background: #f0f0f0;
				  border: 3px solid #060501;
				  transition: transform 0.3s ease-in-out; /* Animasi smooth */
				}
                .klaster-text {
					 font-size:12px;
				}
				.klaster-img img {
				  width: 100%;
				  height: 100%;
				  object-fit: cover;
				  transition: transform 0.3s ease-in-out; /* Animasi smooth */
				}

				/* Efek hover */
				.klaster-img:hover {
				  transform: scale(1.1);
				}

				.klaster-img:hover img {
				  transform: scale(1.1);
				}
		  }

  /* Tablet: 2 item (opsional) */
  @media (min-width: 769px) and (max-width: 991px) {
    
  
	  .klaster-img {
		  width: 100px;
		  height: 100px;
		  border-radius: 50%;
		  overflow: hidden;
		  display: flex;
		  align-items: center;
		  justify-content: center;
		  background: #f0f0f0;
		  border: 3px solid #060501;
		  transition: transform 0.3s ease-in-out; /* Animasi smooth */
		}

		.klaster-img img {
		  width: 100%;
		  height: 100%;
		  object-fit: cover;
		  transition: transform 0.3s ease-in-out; /* Animasi smooth */
		}

		/* Efek hover */
		.klaster-img:hover {
		  transform: scale(1.1);
		}

		.klaster-img:hover img {
		  transform: scale(1.1);
		}
  }
  @media (min-width: 991px) {
	  
	  .klaster-img {
		  width: 180px;
		  height: 180px;
		  border-radius: 50%;
		  overflow: hidden;
		  display: flex;
		  align-items: center;
		  justify-content: center;
		  background: #f0f0f0;
		  border: 3px solid #060501;
		  transition: transform 0.3s ease-in-out; /* Animasi smooth */
		}

		.klaster-img img {
		  width: 100%;
		  height: 100%;
		  object-fit: cover;
		  transition: transform 0.3s ease-in-out; /* Animasi smooth */
		}

		/* Efek hover */
		.klaster-img:hover {
		  transform: scale(1.1);
		}

		.klaster-img:hover img {
		  transform: scale(1.1);
		}
    }
        /* Styling container */
        .portfolio-section {
            padding: 30px 0;
        }

        /* Menghilangkan padding/margin ekstra */
        .portfolio-item {
            position: relative;
            overflow: hidden;
           
        }
        .portfolio-item img {
            width: 100%;
            height: auto;
            transition: transform 0.3s ease-in-out;
        }

        /* Hover Effect */
        .portfolio-item:hover img {
            transform: scale(1.1);
        }

        .portfolio-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease-in-out;
        }

        .portfolio-item:hover .portfolio-overlay {
            opacity: 1;
        }

        .portfolio-title {
           
            font-size: 1rem;
            font-weight: bold;
            text-transform: uppercase;
            text-align: center;
        }
		.agent-photo {
			width: 200px;
			height: auto;
		}
		.team-section {
            text-align: center;
            padding: 50px 0;
        }

        .team-section h2 {
            font-size: 2rem;
            font-weight: bold;
        }

        .team-section h2 span {
            color: #007bff;
        }

       .team-card {
			width: 100%; /* Tentukan lebar tetap */
			height: 100px; /* Tentukan tinggi tetap */
			background: #fff;
			border-radius: 0px;
			overflow: hidden;
			transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
			box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
			display: flex;
			flex-direction: column;
			align-items: center;
			justify-content: center;
		}


        .team-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        

        .team-info {
            padding: 15px;
        }

        .team-info h4 {
            font-size: 1.2rem;
            margin: 5px 0;
            font-weight: bold;
        }

        .team-info p {
            color: #777;
            margin-bottom: 10px;
            font-size: 0.9rem;
        }

        .social-icons a {
            color: #333;
            margin: 0 8px;
            font-size: 1.2rem;
            transition: color 0.3s;
        }

        .social-icons a:hover {
            color: #007bff;
        }
		a {
		  color: inherit; /* Menggunakan warna dari elemen induk */
		  text-decoration: none; /* Hilangkan garis bawah */
		}

		a:hover {
		  color: orange; /* Warna saat di-hover */
		}
		.search-box input:focus {
            outline: none;
            border-bottom: 3px solid white;
        }

        .close-btn {
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 2rem;
            color: white;
            cursor: pointer;
        }
		 .btn-light {
			background-color: white;
			color: black;
			border-radius: 20px;
			padding: 8px 20px;
			font-weight: bold;
			transition: 0.3s;
		}

		.btn-light:hover {
			background-color: #f8f9fa;
			color: black;
		}
		 .portfolio-title {
            font-size: 1.5rem;
            font-weight: bold;
        }
        .portfolio-title span {
            color: #2563eb; /* Warna biru */
        }
        .filter-btn {
            border: none;
            background: #f8f9fa;
            padding: 5px 20px;
            border-radius: 2px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        .filter-btn.active, .filter-btn:hover {
            background: #2563eb;
            color: white;
        }
 .image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 65%; /* ini menentukan rasio, 56.25% = 16:9, 75% = 4:3, bisa diubah */
  overflow: hidden;
  border-radius: 0.2rem 0.2rem 0 0;
  background: #f0f0f0; /* fallback kalau gambar belum load */
}

.image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* inti biar gambar gak gepeng */
  object-position: center; /* fokus di tengah */
  transition: transform 0.3s ease;
}
		.image-wrapper img:hover {
		transform: scale(1.05); /* efek zoom halus saat hover */
		}

		.label-link {
		position: absolute;
		bottom: 10px;
		left: 10px;
		text-decoration: none;
		}
		/* Style label berita */
		.label-beritaa {
		  position: absolute;
		  bottom: 15px;
		  left: 10px;
		  background-color: rgba(0, 0, 0, 0.7); /* Semi transparan */
		  color: #fff;
		  padding: 4px 10px;
		  font-size: 0.75rem;
		  font-weight: 600;
		  z-index: 2;
		  border-radius: 3px;
		  text-transform: uppercase;
		  letter-spacing: 0.5px;
		}

		/* Pastikan gambar mengisi container */
		.card-img-top {
		  width: 100%;
		  height: 100%;
		  object-fit: cover;
		  max-height:200px;
		  transition: transform 0.3s ease; /* Efek hover */
		}

		/* Efek hover untuk gambar */
		.image-wrapper:hover .card-img-top {
		  transform: scale(1.05);
		}

		/* Style card tambahan */
		.card {
		  border: none;
		  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
		  transition: all 0.3s ease;
		}

		.card:hover {
		  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
		}

		.card-body {
		  padding: 15px;
		}

		.card-title {
		  font-size: 0.95rem;
		  margin-top: 8px;
		  font-weight: 600;
		}

		/* Penyesuaian untuk handphone (layar < 576px) */
		@media (max-width: 576px) {
				.card {
					display: flex;
					flex-direction: row; /* Ubah tata letak ke horizontal */
					align-items: center; /* Posisi konten sejajar */
					padding: 8px; /* Kurangi padding agar lebih compact */
					gap: 10px; /* Tambahkan jarak antar elemen */
					
				}

				.image-wrapper {
					flex: 0 0 40%; /* Lebar gambar tetap 40% */
					height: 100px; /* Pastikan gambar tidak terlalu besar */
					overflow: hidden; /* Hindari gambar keluar dari batas */
					display: flex;
					align-items: center;
					justify-content: center;
				}

				.card-img-top {
					width: 100%; /* Lebar penuh dalam wrapper */
					height: 100%; /* Tinggi penuh */
					object-fit: cover; /* Pastikan gambar tetap proporsional dan tidak terdistorsi */
					border-radius: 5px; /* Sedikit membulatkan sudut */
				}

				.card-agenda {
					flex: 1; /* Agar konten menyesuaikan sisa ruang */
					display: flex;
					flex-direction: column;
					justify-content: center;
				}

				.card-agenda .card-title {
					font-size: 0.9rem; /* Kecilkan teks agar pas di layar HP */
					margin-top: 0; /* Hilangkan margin atas */
					font-weight: bold; /* Supaya lebih terbaca */
				}

				.card-agenda .card-text {
					font-size: 0.8rem;
					line-height: 1.2; /* Tambahkan sedikit ruang antar teks */
				}
			}


		/* Penyesuaian untuk layar lebih besar */
		@media (min-width: 576px) {
			.card-agenda {
				height: 250px; /* Tinggi tetap untuk desktop */
				flex-direction: column; /* Layout vertikal */
			}
			.image-wrapper {
				height: 200px; /* Tinggi gambar tetap */
			}
			.card-img-top {
				object-fit: cover;
				width: 100%;
			}
			/* Tambahan untuk memastikan ruang teks */
			.card-agenda > div:last-child { /* Target div yang berisi card-title dan card-text */
				flex: 1; /* Biarkan mengisi sisa ruang */
				display: flex;
				flex-direction: column;
				justify-content: center; /* Teks ditengahkan vertikal */
			}
			.card-agenda .card-title {
				font-size: 1.1rem; /* Pastikan ukuran terlihat */
				margin-top: 0; /* Hilangkan margin atas */
			}
		}
		.card {
			transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
		}
		.card .card-body{
			background:none;
		}
		
		.card:hover {
			transform: translateY(-5px);
			box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
		}
		.footer {
            background-color: rgba(0,0,0, 0.9); /* Warna hitam */
            color: #fff; /* Warna teks putih */
            padding: 40px 0;
        }
        .footer h5 {
            font-weight: bold;
            margin-bottom: 15px;
        }
        .footer ul {
            list-style: none;
            padding: 0;
        }
        .footer ul li {
            margin-bottom: 8px;
        }
        .footer ul li a {
            text-decoration: none;
            color: #fff; /* Teks putih */
            transition: color 0.3s;
        }
        .footer ul li a:hover {
            color: #dc3545; /* Warna merah saat hover */
        }
		 .social-icons a {
            display: inline-block;
            margin-right: 10px;
            font-size: 20px;
            color: #fff; /* Ikon sosial media putih */
            transition: color 0.3s;
        }
        .social-icons a:hover {
            color: #dc3545; /* Warna merah saat hover */
        }
        .back-to-top {
            position: fixed;
            bottom: 25px;
            right: 25px;
			
            
            color: white;
            padding: 10px;
            border-radius: 30%;
            font-size: 20px;
            text-align: center;
        }
		 .logo-light { display: block; height: 40px;}  /* Logo putih tampil awalnya */
         .logo-dark { display: none; height: 40px;}   /* Logo hitam disembunyikan awalnya */

         .scrolled .logo-light { display: none; } /* Saat scroll, logo putih disembunyikan */
         .scrolled .logo-dark { display: block; } /* Logo hitam ditampilkan */
		 .navbar.scrolled .navbar-toggler-icon {
				filter: invert(1); /* Mengubah warna icon menjadi hitam */
			}
		.sidebar hr {
			width: calc(100% + 40px); /* Sesuaikan dengan padding parent */
			height: 2px;
			border: none;
			background-color: #ccc;
			margin: 10px -20px; /* Atur agar tetap sejajar */
		}
		.blog-card {
			background: #fff;            
			box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
			padding: 20px;
			margin-bottom: 30px;
			overflow: hidden; /* Mencegah konten keluar */
		}
        .blog-card img {
			    width: 100%;
				height: 100%;
				object-fit: cover; /* Supaya gambar tetap proporsional */
		}
	
			.blog-img img {
				width: 100%;
				height: 100%;
				object-fit: cover; /* Supaya gambar tetap proporsional */
			}
        .date-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: #0066ff;
            color: #fff;
            padding: 10px;
            font-weight: bold;
            text-align: center;
            border-radius: 5px;
        }
        .date-badge span {
            display: block;
            font-size: 12px;
        }
        .author-info {
			display: flex;
			align-items: center;
			justify-content: space-between; /* Supaya nama dan icon terpisah */
			padding: 10px 0;
		}

		.author-info .profile {
			display: flex;
			align-items: center;
		}

		.author-info img {
			width: 50px; /* Sesuaikan ukuran foto profil */
			height: 50px;
			border-radius: 50%;
			margin-right: 10px; /* Jarak antara foto dan nama */
		}

		.author-stats {
			display: flex;
			align-items: center;
			gap: 10px; /* Jarak antara ikon */
		}

        .sidebar {
            background: #fff;
            padding: 20px;
         
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }
        .search-box {
            border: 1px solid #ddd;           
            padding: 5px;
        }
		.categories {
			padding-left: 0; /* Hilangkan padding kiri dari container utama */
		}

        .categories li {
			list-style: none;
			padding: 5px 0;
			display: flex;
			justify-content: space-between;
			padding-left: 0; /* Pastikan tidak ada padding kiri */
			text-align: left; /* Pastikan teks sejajar */
		}

		/* Jika "Categories" berada dalam elemen <h5> atau <h4>, pastikan tidak ada padding ekstra */
		.categories-title {
			margin-bottom: 10px; /* Beri jarak sedikit ke bawah */
		}
        .recent-posts img {
            width: 60px;
            height: 60px;
           
            margin-right: 10px;
        }
        .tag {
            display: inline-block;
            background: #f1f1f1;
            padding: 5px 10px;
       
            margin: 5px 5px 0 0;
            font-size: 14px;
        }
		.recent-post .post-item {
			display: flex;
			align-items: center;
			padding: 10px;
			
			transition: all 0.3s ease-in-out;
		}

		.recent-post .post-item:hover {
			background-color: #f1f1f1;
			cursor: pointer;
		}

		.recent-post .post-thumbnail {
			width: 60px;
			height: 60px;
			
			margin-right: 12px;
			box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
			transition: transform 0.3s ease-in-out;
		}

		.recent-post .post-item:hover .post-thumbnail {
			transform: scale(1.1);
		}

		.recent-post .post-content p {
			font-size: 14px;
			margin-bottom: 3px;
		}

		.recent-post .post-content small {
			color: gray;
		}
		
       
        /* Overlay gelap */
        .hero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
        }

        .hero-content {
            position: relative;
            z-index: 1;
			
        }
        
        
	    .breadcrumb {
            background: transparent;
            color: white;
        }

        .breadcrumb a {
            color: white;
            text-decoration: none;
        }

        .breadcrumb a:hover {
            text-decoration: underline;
        }
		.sidebar hr {
			width: calc(100% + 40px); /* Sesuaikan dengan padding parent */
			height: 2px;
			border: none;
			background-color: #ccc;
			margin: 10px -20px; /* Atur agar tetap sejajar */
		}
		.zoomed-img {
			position: fixed;
			top: 50%;
			left: 50%;
			transform: translate(-50%, -50%) scale(1);
			max-width: 90%;
			max-height: 90%;
			transition: transform 0.3s ease-in-out;
			z-index: 1000;
			display: none;
			box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
		}

		.overlay {
			position: fixed;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			background: rgba(0, 0, 0, 0.7);
			z-index: 999;
			display: none;
		}
        .page-link.rounded-circle {
			border-radius: 50% !important;
			width: 40px;
			height: 40px;
			display: flex;
			align-items: center;
			justify-content: center;
			margin: 0 5px;
			padding: 0;
		}

		.page-item {
			margin: 0 2px;
		}

		.page-item.active .page-link {
			background-color: #0d6efd; /* Warna biru Bootstrap default */
			border-color: #0d6efd;
		}

		.page-link:hover {
			background-color: #e9ecef;
			border-color: #dee2e6;
		}
                  .whatsapp-btn {
				position: fixed;
				bottom: 55px;
				right: 12px;
				background-color: #25D366;
				color: white;
				border-radius: 50%;
				width: 40px; /* Tambahan: ukuran lebar */
				height: 40px; /* Tambahan: ukuran tinggi */
				padding: 15px; /* Naikin sedikit biar ikon pas */
				display: flex; /* Tambahan: biar ikon center */
				align-items: center;
				justify-content: center;
				box-shadow: 0 4px 8px rgba(0,0,0,0.3);
				z-index: 99999;
				transition: transform 0.3s ease, background-color 0.3s;
				text-decoration: none; /* Biar link-nya clean */
			}		  
		  .whatsapp-btn:hover {
			transform: scale(1.1);
		  }
		  
		  .whatsapp-btn.in-footer {
                background-color: #00ff88 !important;
          }
		  .row {
			display: flex;
			flex-wrap: wrap;
		   }
		 @media (min-width: 577px) {  
		   .card {
			   height:300px;
				display: flex;
				flex-direction: column;
			   
		   }
		 }
		 .upper {
			text-transform: uppercase;
		 }
		 .imagewebsangiran{
			width: 80px; height: 80px; object-fit: contain;  border-radius: 20px;
		 }
		 .instagram-media{
                 width: 100%;
		 } 
		 .box {
			border: 0px solid #ccc;
			padding: 10px;
			display: inline-block;
			text-align: left;
		}
		
		.box img {
			width: 100%;
			height: auto;
		}
		
		.keterangan {
			padding: 5px;
			line-height:20px;
			font-size: 15px;
			color:#808080;
			
		}
		.kotak {
			border-left: 8px solid #333; /* Garis kiri tebal */
			height: 45px;
			padding: 10px; /* Ruang isi dalam kotak */
			margin: 10px 0; /* Ruang di sekitar kotak */
			background-color: #f9f9f9; /* Warna latar belakang */
			color: #333; /* Warna teks */
		}
		.kom {
			display: none;
		}
		.hrstyle {
			margin-top: 5px; margin-bottom: 2px;
		}
		.rounded-circle {
			width: 40px !important;
			height: 40px !important;
		}
		.card-img-top {
            max-height: 240px;
			object-fit: cover;
           
            
        }
        .avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
        }
        .date-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            background-color: #007bff;
            color: white;
            padding: 5px 10px;
            border-radius: 5px;
            font-size: 14px;
        }
        .card-body {
            padding: 20px;
        }
        
        .card-text {
            color: #6c757d;
            font-size: 0.9rem;
        }
        .upper {
            text-transform: uppercase
        }
        
