<style>
.col-custom {
flex: 0 0 20%;
max-width: 20%;
}

@media (max-width: 991.98px) {
.col-custom {
  flex: 0 0 50%;
  max-width: 50%;
}
}

@media (max-width: 575.98px) {
.col-custom {
  flex: 0 0 100%;
  max-width: 100%;
}
}
</style>

<style>
.hero {
  position: relative;
  padding-top: 160px;
  background-size: cover;
}
/* Hero Section Styling */
.hero {
  position: relative;
  padding: 150px 0;
  color: #fff;
  overflow: hidden;
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero .hero-content {
  z-index: 2;
}

.hero-heading {
  color: white;
  font-size: 33px; /* lebih besar agar lebih lebar */
  /* font-weight: 800; */
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.hero-subheading {
  font-size: 13px;
  font-weight: 400;
  color: #d1d1d1; /* putih keabu-abuan */
  margin-bottom: 3px;
}



.hero-btn {
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  border-radius: 50px;
  background-color: #ff7a00;
  color: #fff;
  border: none;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background-color: #e66900;
  transform: translateY(-5px);
}



/* Responsive Design */
@media (max-width: 768px) {
  .hero-heading {
    font-size: 20px; /* tetap besar di mobile, tapi tidak terlalu besar */
    color: white;
  }

  .hero-subheading {
    font-size: 16px; /* lebih kecil untuk mobile */
    margin-bottom: 12px;
  }

  .hero-btn {
    padding: 10px 25px;
    font-size: 14px;
  }
}

</style>
<style media="screen">
.aesthetic-image {
  position: relative;
  display: inline-block;
  padding: 20px;
  border-radius: 25px;
}

.aesthetic-image img {
  border-radius: 25px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.18);
  max-height: 550px;
  width: auto;
  display: block;
  margin: 0 auto;
}

/* Dot pattern dekoratif */
.dot-pattern {
  position: absolute;
  right: -10px;
  bottom: -10px;
  width: 80px;
  height: 80px;
  background-image: radial-gradient(#999 2px, transparent 2px);
  background-size: 12px 12px;
  opacity: 0.4;
}

</style>

<style media="screen">
/* Wrapper section */
.section-modern {
padding-top: 70px;
padding-bottom: 50px;
}

/* Title */
.section-modern .title-small {
font-size: 17px;
font-weight: 600;
color: #666;
margin-bottom: 8px;
}

.section-modern h1 {
font-size: 40px;
font-weight: 800;
color: #111;
line-height: 1.2;
}

/* Deskripsi */
.section-modern .about-description {
font-size: 15px;
color: #444;
margin-top: 20px;
line-height: 1.7;
}

/* Card styling */
.report-card {
border-radius: 18px;
overflow: hidden;
transition: 0.35s ease-in-out;
border: 1px solid #eef1f6;
}

.report-card img {
transition: 0.35s ease-in-out;
}

.report-card:hover {
transform: translateY(-6px);
box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.report-card:hover img {
transform: scale(1.05);
}

.report-card small {
font-size: 14px;
color: #333;
}

/* Image wrappers */
.image-wrapper {
margin-top: 20px;
}

</style>


<style media="screen">
.blog-hero {
  padding-top: 20px;
}

.blog-hero .blog-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

@media (max-width: 991px) {
  .blog-hero .blog-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-hero .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.blog-hero .blog-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--default-color), transparent 90%);
  transition: transform 0.3s ease-in-out;
  background-color: var(--surface-color);
}

.blog-hero .blog-item:hover {
  transform: translateY(-5px);
}

.blog-hero .blog-item:hover img {
  transform: scale(1.05);
}

.blog-hero .blog-item:hover .blog-content {
  background: linear-gradient(0deg, color-mix(in srgb, var(--default-color), transparent 10%) 0%, transparent 100%);
}

.blog-hero .blog-item.featured {
  grid-column: span 8;
}

@media (max-width: 991px) {
  .blog-hero .blog-item.featured {
    grid-column: span 6;
  }
}

@media (max-width: 768px) {
  .blog-hero .blog-item.featured {
    grid-column: span 1;
  }
}

.blog-hero .blog-item.featured .post-title {
  font-size: 2rem;
}

@media (max-width: 768px) {
  .blog-hero .blog-item.featured .post-title {
    font-size: 1.5rem;
  }
}

.blog-hero .blog-item:not(.featured) {
  grid-column: span 4;
}

@media (max-width: 991px) {
  .blog-hero .blog-item:not(.featured) {
    grid-column: span 3;
  }
}

@media (max-width: 768px) {
  .blog-hero .blog-item:not(.featured) {
    grid-column: span 1;
  }
}

.blog-hero .blog-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
  aspect-ratio: 16/9;
}

.blog-hero .blog-item .blog-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(0deg, color-mix(in srgb, var(--default-color), transparent 20%) 0%, transparent 100%);
  transition: background 0.3s ease-in-out;
}

.blog-hero .blog-item .post-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: var(--contrast-color);
}

.blog-hero .blog-item .post-meta .date,
.blog-hero .blog-item .post-meta .category {
  display: flex;
  align-items: center;
}

.blog-hero .blog-item .post-meta .date::before,
.blog-hero .blog-item .post-meta .category::before {
  font-family: "bootstrap-icons";
  margin-right: 0.5rem;
  font-size: 1rem;
}

.blog-hero .blog-item .post-meta .date::before {
  content: "\f282";
}

.blog-hero .blog-item .post-meta .category::before {
  content: "\f5d3";
}

.blog-hero .blog-item .post-title {
  margin: 0;
  font-family: var(--heading-font);
}

.blog-hero .blog-item .post-title a {
  color: var(--contrast-color);
  text-decoration: none;
}

.blog-hero .blog-item .post-title a:hover {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}
</style>

<style media="screen">
/*--------------------------------------------------------------
# Featured Posts Section
--------------------------------------------------------------*/
.featured-posts {
  overflow: hidden;
  position: relative;
}

.featured-posts .blog-posts-slider .swiper-wrapper {
  height: auto !important;
}

.featured-posts .blog-post-item {
  position: relative;
  height: 500px;
  overflow: hidden;
  border-radius: 15px;
}

@media (max-width: 1200px) {
  .featured-posts .blog-post-item {
    height: 450px;
  }
}

@media (max-width: 991px) {
  .featured-posts .blog-post-item {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .featured-posts .blog-post-item {
    height: 450px;
  }
}

.featured-posts .blog-post-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-posts .blog-post-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%);
}

.featured-posts .blog-post-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  color: var(--contrast-color);
  z-index: 2;
}

@media (max-width: 1200px) {
  .featured-posts .blog-post-content {
    padding: 25px;
  }
}

@media (max-width: 991px) {
  .featured-posts .blog-post-content {
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .featured-posts .blog-post-content {
    padding: 30px;
  }
}

.featured-posts .blog-post-content .post-meta {
  margin-bottom: 15px;
  font-size: 14px;
}

.featured-posts .blog-post-content .post-meta span {
  display: inline-block;
  margin-right: 20px;
}

.featured-posts .blog-post-content .post-meta span i {
  margin-right: 5px;
  font-size: 16px;
}

.featured-posts .blog-post-content .post-meta span:last-child {
  margin-right: 0;
}

.featured-posts .blog-post-content h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--contrast-color);
  line-height: 1.3;
}

@media (max-width: 1200px) {
  .featured-posts .blog-post-content h2 {
    font-size: 20px;
  }
}

@media (max-width: 991px) {
  .featured-posts .blog-post-content h2 {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .featured-posts .blog-post-content h2 {
    font-size: 22px;
  }
}

.featured-posts .blog-post-content h2 a {
  color: var(--contrast-color);
  transition: 0.3s;
}

.featured-posts .blog-post-content h2 a:hover {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

.featured-posts .blog-post-content p {
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .featured-posts .blog-post-content p {
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-line-clamp: 3;
  }
}

.featured-posts .blog-post-content .read-more {
  display: inline-flex;
  align-items: center;
  color: var(--contrast-color);
  font-weight: 500;
  transition: 0.3s;
}

.featured-posts .blog-post-content .read-more i {
  margin-left: 8px;
  font-size: 14px;
  transition: 0.3s;
}

.featured-posts .blog-post-content .read-more:hover {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

.featured-posts .blog-post-content .read-more:hover i {
  transform: translateX(5px);
}
</style>
<style media="screen">
/*--------------------------------------------------------------
# Category Section Section
--------------------------------------------------------------*/
.category-section .featured-post {
  margin-bottom: 40px;
}

.category-section .featured-post .post-img {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}

.category-section .featured-post .post-img img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.category-section .featured-post .category-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.category-section .featured-post .post-category {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.category-section .featured-post .author-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.category-section .featured-post .author-meta .author-img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.category-section .featured-post .author-meta .author-name {
  color: var(--heading-color);
  font-weight: 500;
}

.category-section .featured-post .author-meta .post-date {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.category-section .featured-post .author-meta .post-date:before {
  content: "-";
  margin: 0 8px;
}

.category-section .featured-post .title {
  font-size: 20px;
  line-height: 1.4;
  margin: 0;
}

.category-section .featured-post .title a {
  color: var(--heading-color);
  transition: color 0.3s;
}

.category-section .featured-post .title a:hover {
  color: var(--accent-color);
}

.category-section .list-post {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
}

.category-section .list-post .post-img {
  flex: 0 0 100px;
  border-radius: 8px;
  overflow: hidden;
}

.category-section .list-post .post-img img {
  width: 100px;
  height: 100px;
  object-fit: cover;
}

.category-section .list-post .post-content {
  flex: 1;
}

.category-section .list-post .post-category {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-color);
  margin-bottom: 8px;
  display: inline-block;
}

.category-section .list-post .title {
  font-size: 17px;
  line-height: 1.5;
  margin: 0 0 8px 0;
}

.category-section .list-post .title a {
  color: var(--heading-color);
  transition: color 0.3s;
}

.category-section .list-post .title a:hover {
  color: var(--accent-color);
}

.category-section .list-post .post-meta {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.category-section .list-post .post-meta .read-time:after {
  content: "•";
  margin: 0 8px;
}

@media (max-width: 992px) {
  .category-section .featured-post .title {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .category-section .list-post .post-img {
    flex: 0 0 80px;
  }

  .category-section .list-post .post-img img {
    width: 80px;
    height: 80px;
  }

  .category-section .list-post .title {
    font-size: 15px;
  }
}
</style>
<style media="screen">
.footer {
  /* background: linear-gradient(135deg, #B366C3, #4B1B3F); */
  background: #f9fafc;
  color: black;
  padding: 40px 0;
}

.footer a,
.footer p,
.footer span {
  color: black;
}

.footer a:hover {
  color: #FFD700; /* Kuning keemasan untuk hover */
  text-decoration: none;
}

.footer .row {
  display: flex;
  flex-wrap: wrap;
}

.footer img {
  max-width: 100%;
  height: auto;
}

</style>
<style>
.card.custom-bg {
background-color: #f9fafe;
border: 0.5px solid #e0e6ed; /* garis lembut */
}
.card.custom-bg img.card-img-top {
        height: 280px; /* Atur tinggi gambar */
        width: 100%;    /* Atur lebar penuh sesuai card */
        object-fit: cover; /* Biar gambar tetap proporsional */
    }
</style>
<style>
.faq-content {
  height: 0;
  overflow: hidden;
  padding: 0;
  margin: 0;
  transition: height 0.3s ease;
}

.faq-item.active .faq-content {
  height: auto;
  overflow: visible;
  padding-top: 1rem;
}

.faq-item {
  border-bottom: 1px solid #ccc;
  padding: 20px 0;
  margin-bottom: 10px;
}

.faq-item:last-child {
  border-bottom: none;
}

</style>
<style>
/* Tombol default */
#pagination .btn-outline-primary {
  color: #955798;
  border-color: #955798;
}

#pagination .btn-outline-primary:hover {
  background-color: #955798;
  color: white;
}

/* Tombol aktif */
#pagination .btn-primary {
  background-color: #955798;
  border-color: #955798;
}

/* Tombol disabled (← atau → saat tidak aktif) */
#pagination .btn-outline-secondary {
  color: #aaa;
  border-color: #ddd;
}
</style>
