/* navbar css */
@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Poppins&display=swap");

.py-special {
    padding: 7rem 0;
}

* {
    font-size: 16px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
}

body {
    margin: 0;
    padding: 0;
    color: #333;
    overflow-x: hidden;
}

/* Text Utilities */

.text-heading4-semibold {
    font-size: 32px;
    font-weight: 600;
}

.text-heading5-semibold {
    font-size: 28px;
    font-weight: 600;
}

.text-small-normal {
    font-size: 12px !important;
}

.navbar {
    width: auto;
    /* Tetapkan lebar navbar */
    height: 70px;
    /* Tetapkan tinggi navbar */
    padding: 0;
    /* Hilangkan padding agar sesuai dengan tinggi */
    display: flex;
    align-items: center;
    /* Pastikan konten tetap di tengah secara vertikal */
    justify-content: space-between;
    /* Pastikan logo di kiri dan menu di kanan */
}

.carousel-item {
    position: relative;
}

.navbar-brand img {
    height: 30px;
}

.navbar-nav {
    display: flex;
    gap: 1rem;
    /* Menambahkan jarak antar item */
}

.navbar-nav .nav-link {
    font-size: 13px;
    font-weight: 500 !important;
    color: #0b53a0;
    padding: 5px 10px;
    /* Mengurangi padding pada setiap link */
}

.navbar-nav .nav-link.active {
    color: #0b53a0;
    text-decoration: underline;
    text-decoration-color: #0b53a0;
    /* Warna underline */
    text-decoration-thickness: 3px;
    /* Ketebalan underline */
    text-underline-offset: 18px;
    /* Menambahkan jarak antara teks dan garis bawah */
    padding-top: 6.27px;
}

.offcanvas {
    transition: transform 0.5s ease-in-out;
}

@media (max-width: 991.98px) {
    #offcanvasNavbar {
        width: 250px;
        /* default biasanya 300px */
    }

    .navbar-toggler {
        background: none;
        border: none;
        cursor: pointer;
        padding: 10px;
        display: block;
        z-index: 1001;
    }

    .navbar-toggler-icon {
        display: block;
        width: 25px;
        height: 2px;
        background-color: #0b53a0;
        position: relative;
        transition: all 0.3s ease-in-out;
    }

    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after {
        content: "";
        position: absolute;
        width: 25px;
        height: 2px;
        background-color: #0b53a0;
        transition: all 0.3s ease-in-out;
    }

    .navbar-toggler-icon::before {
        transform: translateY(-8px);
    }

    .navbar-toggler-icon::after {
        transform: translateY(8px);
    }

    /* Saat aktif - jadi X */
    .navbar-toggler.active .navbar-toggler-icon {
        background-color: transparent;
    }

    .navbar-toggler.active .navbar-toggler-icon::before {
        transform: rotate(45deg);
    }

    .navbar-toggler.active .navbar-toggler-icon::after {
        transform: rotate(-45deg);
    }
}

/* end of navbar css */

/* jumbotron css */
.jumbotron-section {
    width: 100%;
    background-size: cover;
    background-position: center;
    min-height: 750px;
    margin-top: 70px;
}

.jumbotron-section h1 {
    font-size: 20px;
    margin-top: -112px;
    margin-bottom: 15px;
    /* Menambahkan jarak bawah */
}

.jumbotron-section b {
    font-size: 34px;
    font-weight: 600;
    color: #ffffff;
    /* Warna aksen */
    display: block;
    /* Pastikan elemen ada di blok terpisah */
    margin-bottom: 20px;
    /* Jarak bawah */
}

.jumbotron-section p {
    font-size: 13px;
    max-width: 600px;
    line-height: 1.6;
    /* Menambahkan ruang antar baris */
}

/* Samakan ukuran kedua tombol */

.btn-gradient-animate:focus,
.btn-gradient-animate:focus-visible {
    outline: none;
    box-shadow: none;
}

a.btn-gradient-animate:focus,
a.btn-gradient-animate:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

.btn-gradient-animate {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 168px;
    height: 48px;

    border-radius: 6px;
    text-decoration: none;

    background: linear-gradient(to right, #AC5FE6, #3D36FF);
    color: #ffffff;
    font-weight: 600;
    font-size: 12px;

    border: none;
    outline: none;

    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Hover */
.btn-gradient-animate:hover {
    transform: scale(1.06);
    box-shadow: 0 10px 24px rgba(61, 54, 255, 0.35);
}

/* Click */
.btn-gradient-animate:active {
    transform: scale(0.96);
}

.btn-gradient-animate-sec { 
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 168px;
    height: 48px;

    border-radius: 6px;
    text-decoration: none;

    /* Background solid (tanpa gradient) */
    background-color: #FFCC00;

    /* Warna text baru */
    color: #1C40AF;

    font-weight: 600;
    font-size: 12px;

    border: none;
    outline: none;

    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-gradient-animate-sec:hover {
    background-color: #FFCC00;
    color: #1C40AF;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

.btn-light,
.btn-primary {
    padding: 15px 24px;
    font-size: 14px;
    border-radius: 0.5rem;
    /* rounded-3 equivalent */
    transition: none;
    /* Hilangkan animasi hover */
}

/* Hilangkan efek hover Bootstrap */
.btn-light:hover,
.btn-primary:hover {
    background-color: inherit !important;
    color: inherit !important;
    border-color: inherit !important;
}

@media (max-width: 767.98px) {
    .jumbotron-section {
        display: none !important;
    }
}

/* ================= MOBILE HERO ================= */
.hero-mobile {
    background-color: #0B53A0;
    color: #ffffff;
    padding-top: 100px;
    overflow: hidden;
}

/* Eyebrow text */
.hero-eyebrow {
    font-size: 0.8rem;
    opacity: 0.9;
    display: block;
    margin-bottom: 12px;
}

/* Title */
.hero-title {
    font-size: 1.9rem;
    line-height: 1.25;
    font-weight: 700;
    margin-bottom: 16px;
}

/* Description */
.hero-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

/* CTA HERO — selalu 1 baris */
.hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 28px;
    scrollbar-width: none;
}

.hero-cta::-webkit-scrollbar {
    display: none;
}

.hero-cta a {
    flex: 0 0 auto;
}

/* Desktop: kembali normal */
@media (min-width: 768px) {
    .hero-cta {
        overflow: visible;
    }
}

/* Mobile → full width biar enak ditap */
@media (max-width: 768px) {
    .btn-cta-uniform {
        width: 45%;
        font-size:12px;
        min-width: unset;
    }
}

/* ================= IMAGE (480 x 340 FIGMA) ================= */

.hero-visual {
    text-align: center;
}

.hero-visual img {
    width: 100%;
    max-width: 480px;          /* sesuai Figma */
    height: auto;
    display: block;
    margin: 0 auto;
}

/* end of jumbotron css */

/* class untuk layouts/app.blade */
.page-content {
    min-height: calc(100dvh - 165px);
}

/* index css */
.card-fixed-custom {
    width: 100%;
    min-height: 353px;
    border-radius: 16px;
    background: linear-gradient(to bottom, #1B45B4, #1C2792);
    color: #ffffff;
}

.index-ct-1-judul {
    font-size: 28px;
}

.rounded-bottom-4 {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
    border-bottom-left-radius: 1rem !important;
    border-bottom-right-radius: 1rem !important;
}

.tonnes-card .card {
    width: 360px;
    height: auto;
    /* atau sesuai tinggi yang diinginkan */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* agar konten tertata tanpa bergeser */
}

.tonnes-card .card h4 {
    margin-top: 24px;
    /* pastikan header tidak terdorong ke atas/bawah */
}

.tonnes-card .card hr {
    margin-top: auto;
    /* menjaga divider tetap di bawah tanpa geser teks utama */
}

.tonnes-img {
    max-width: 360px;
    height: auto;
}

.custom-divider-white {
    border: none;
    border-top: 2px solid white;
    width: 100%;
    margin: 0;
}

.custom-divider-dark {
    border: none;
    border-top: 2px solid #444;
    width: 100%;
    margin: 0;
}

.list {
    font-size: 15px;
}

.journal-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px 51px;
    /* Vertikal 32px, horizontal 24px */
}

.journal-item {
    width: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.journal-card {
    width: 140px;
    height: 129px;
    background-color: #0056aa;
    border-radius: 12px 12px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.journal-card img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.stat-value {
    font-weight: 700;
    font-size: 28px;
    color: #0056aa;
    margin: 16px 0 4px 0;
}

.stat-desc {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

.section-brands {
    display: block !important;
    min-height: auto !important;
    overflow: visible !important;
}

/* GRID 6 x 2 */
.brand-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 28px 24px;
}

/* KARTU BRAND */
.brand-item {
    position: relative;
    height: 100px;
    width: 100%;
    max-width: 170px;
    background: #fff;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: saturate(0);
    transition: all .25s ease-in;
}

/* Efek angkat kartu */
.brand-item:hover {
    transform: translateY(-4px);
    filter: saturate(1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: all .25s ease-out;
}

/* KANVAS PEMBATAS LOGO */
.brand-kanvas-index {    
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* LOGO SCALE OTOMATIS */
.brand-kanvas-index img {
    position: absolute;
    inset: 0;
    margin: auto;
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    transition: opacity .35s ease, transform .35s ease;
}

/* DEFAULT STATE */
.brand-kanvas-index .default-img {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.brand-kanvas-index .hover-img {
    opacity: 0;
    transform: scale(1.05);
    z-index: 2;
}

/* Hover swap logo */
.brand-item:hover .default-img {
    opacity: 0;
    transform: scale(0.92);
}

.brand-item:hover .hover-img {
    opacity: 1;
    transform: scale(1);
}

/* RESPONSIVE GRID */
@media (max-width: 1199px) {
    .brand-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ===== MOBILE CAROUSEL FIX ===== */
@media (max-width: 767px) {

    /* Sembunyikan logo default */
    #brandsCarousel .default-img {
        opacity: 0 !important;
    }

    /* Tampilkan logo hover sebagai default */
    #brandsCarousel .hover-img {
        opacity: 1 !important;
        transform: scale(1) !important;
    }

    /* Nonaktifkan efek hover desktop */
    #brandsCarousel .brand-item:hover .default-img,
    #brandsCarousel .brand-item:hover .hover-img {
        opacity: unset;
        transform: none;
    }
}
/* ===== END OF MOBILE CAROUSEL FIX ===== */

.btn-nohover-primary {
    background-color: #0b53a0;
    color: white;
    box-shadow: none;
    padding: 13px 20px;
    font-size: 13px;
    border-radius: 6px;
    width: 168px;
    text-align: center;
    white-space: nowrap;
    transition: none;
    border: none;
}

.btn-nohover-outline {
    background-color: #f3f3f3;
    color: #0b53a0;
    border: 1px solid #0b53a0;
    padding: 12px 18px;
    font-size: 13px;
    border-radius: 6px;
    width: 168px;
    text-align: center;
    white-space: nowrap;
    transition: none;
}

.btn-nohover-primary-uniform-jumbotron,
.btn-nohover-outline-uniform-jumbotron {
    width: 168px;
    height: 48px;

    font-size: 12px;
    font-weight: 600;
    border-radius: 0.5rem;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    white-space: nowrap;
    text-decoration: none;

    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Default: tombol full width di mobile */
.btn-nohover-primary-uniform,
.btn-nohover-outline-uniform {
    width: 100%;
}

/* Desktop: balik ke auto biar sejajar natural */
@media (min-width: 768px) {
    .btn-nohover-primary-uniform,
    .btn-nohover-outline-uniform {
        width: auto;
        min-width: 220px;
    }
}

/* Hover: ubah background jadi primary */
.btn-nohover-primary:hover,
.btn-nohover-outline:hover {
    background-color: #0b53a0 !important;
    color: white !important;
    box-shadow: none !important;
    border-color: white !important;
}

.btn-custom {
    width: auto;
    min-width: 200px;
    /* Pastikan tombol memiliki lebar minimum */
    padding: 12px 24px;
    /* Konsisten di kedua tombol */
    font-size: 18px;
    /* Ukuran teks seragam */
    border-radius: 6px;
    /* Agar sudutnya tetap terlihat profesional */
}

.btn-outline-primary {
    border: 2px solid #0b53a0;
    /* Atur ketebalan border agar tidak mempengaruhi ukuran */
    background-color: transparent;
}

/* PRIMARY CTA (JOIN) */
.btn-cta-primary-index {
    background-color: #0b53a0;
    color: #ffffff;
    border: 2px solid #0b53a0;
    transition: all 0.25s ease;
}

.btn-cta-primary-index:hover {
    background-color: #083d77;
    border-color: #083d77;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

.btn-cta-primary-index:active {
    transform: translateY(0);
    box-shadow: 0 3px 8px rgba(0,0,0,0.12);
}

/* OUTLINE CTA (PARTNER) */
.btn-cta-outline-index {
    background-color: transparent;
    color: #0b53a0;
    border: 2px solid #0b53a0;
    transition: all 0.25s ease;
}

.btn-cta-outline-index:hover {
    background-color: #0b53a0;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

.btn-cta-outline-index:active {
    transform: translateY(0);
    box-shadow: 0 3px 8px rgba(0,0,0,0.12);
}


/* MOBILE FULL WIDTH */
@media (max-width: 767px) {
    .btn-nohover-primary-uniform,
    .btn-nohover-outline-uniform {
        width: 70%;
    }
}

@media (max-width: 576px) {
    .btn-nohover-primary-uniform,
    .btn-nohover-outline-uniform {
        width: 70%;
    }
}

/* ===============================
   Section 1 – Homepage
=================================*/

/* Wrapper item */
.homepage-ct1-item {
    height: 100%;
}

/* Image wrapper */
.homepage-ct1-card-image-wrapper {
    height: 300px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

/* Image */
.homepage-ct1-card-img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    object-fit: contain;
}

/* Card equal height + gradient */
.homepage-ct1-card {
    flex: 1;
    display: flex;
    flex-direction: column;

    border-radius: 8px;
    border: none;
    color: #fff;

    background: linear-gradient(
        180deg,
        #1B45B4 0%,
        #1C2792 100%
    );
}

/* Padding khusus konten */
.homepage-ct1-card-body {
    padding: 32px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* FIX: area judul supaya divider sejajar */
.homepage-ct1-title {
    font-size: 32px !important;
    line-height: 1.2;
    min-height: 68px;
}

/* Divider */
.custom-divider-white {
    border: 0;
    height: 2px;          /* lebih tebal */
    background: #ffffff;  /* putih solid */
    margin: 20px 0;
}

/* Description dorong ke bawah → semua card tinggi sama */
.homepage-ct1-card p.mb-0 {
    margin-top: auto;
}

/* ===============================
   Tablet
=================================*/
@media (max-width: 991px) {
    .homepage-ct1-card-image-wrapper {
        height: 240px;
    }

    .homepage-ct1-title {
        font-size: 24px;
        min-height: 60px;
    }
}

/* ===============================
   Mobile
=================================*/
@media (max-width: 767px) {
    .homepage-ct1-card-image-wrapper {
        height: 200px;
    }

    .homepage-ct1-title {
        font-size: 22px;
        min-height: auto; /* stack normal di mobile */
    }

    .homepage-ct1-card {
        padding: 20px;
    }
}

/* Wrapper untuk icon */
.homepage-ct3-inner-placeholder {
    width: 91px;          /* ukuran area icon */
    height: 87px;
    margin-bottom: 12px;  /* jarak ke angka */
    
    display: flex;
    align-items: center;
    justify-content: flex-start; /* karena text-start */
}

/* Image di dalamnya */
.homepage-ct3-inner-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;   /* jaga rasio, tidak terpotong */
    display: block;
}

/* Content wrapper */
.homepage-ct3-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Angka utama */
.homepage-ct3-content h3 {
    margin-bottom: 6px;
}

/* Judul */
.homepage-ct3-content .fw-semibold {
    margin-bottom: 6px;
}
/* end of index css */

/* how it works css */
.stats-section {
    background-color: #ffffff;
}

.partner-section {
    background-color: #f3f3f3;
}

.stats-section .text {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    max-width: 700px;
    margin: 0 auto;
}

/* System Mobile Home-page */
.tonnes-carousel {
    position: relative;
    padding-bottom: 3rem;
}
.tonnes-carousel .tonnes-img {
    max-width: 275px;
    width: 100%;
}
@media (max-width: 767.98px) {
    .tonnes-carousel .tonnes-img {
        max-width: 220px;
    }
}
/* spacing so slides don't look stuck */
.tonnes-carousel .text-center.mx-auto {
    padding: 0.75rem;
}
.tonnes-carousel .card {
    min-height: 260px;
    margin: 0.5rem 0;
}
.tonnes-carousel .carousel-item {
    padding: 1rem 0;
}

/* Global: homogenize images */
.tonnes-card .kanvas-home {
    width: 100%;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: transparent;
}
.tonnes-card .kanvas-home img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    display: block;
}

.tonnes-card .card {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Tablet: gambar lebih dominan dan jarak antar kartu lebih lega */
@media (min-width: 768px) and (max-width: 991.98px) {
  .tablet-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* desktop + mobile shared */
.kanvas-brand {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.kanvas-brand img {
    max-width: 75%;
    max-height: 75%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}
.hover-img {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    pointer-events: none;
}

/* mobile: maintain consistent tile height for carousel */
@media (max-width: 767.98px) {

     #brandsCarousel .carousel-inner {
        min-height: 120px;
    }

    /* Batasi tinggi tile */
    .kanvas-brand-mobile {
        height: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Batasi ukuran gambar */
    .kanvas-brand-mobile img {
        max-width: 65%;
        max-height: 65%;
        object-fit: contain;
    }

    /* Pastikan carousel item tidak terlalu tinggi */
    #brandsCarousel .carousel-item {
        padding: 0.5rem 0;
    }

    /* Optional: kecilkan tombol navigasi carousel */
    #brandsCarousel .carousel-control-prev,
    #brandsCarousel .carousel-control-next {
        top: 40%;
        transform: translateY(-50%);
    }

    #brandsCarousel .carousel-control-prev svg,
    #brandsCarousel .carousel-control-next svg {
        width: 36px;
        height: 36px;
    }
}

/* tablet: maintain consistent tile height for grid */
@media (min-width: 768px) and (max-width: 991.98px) {
    .kanvas-brand-tablet {
        height: 90px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .kanvas-brand-tablet img {
        max-width: 70%;
        max-height: 70%;
        object-fit: contain;
    }
}

/* tablet: content 1 */
@media (min-width: 768px) and (max-width: 991.98px) {
    .kanvas-home {
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .tonnes-img {
        max-width: 70%;
        max-height: 70%;
        object-fit: contain;
    }

    .card {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .custom-divider-white,
    .custom-divider-dark {
        border-top: 2px solid currentColor;
        width: 100%;
    }
}

/* Desktop: maintain consistent tile height for carousel */
@media (max-width: 767.98px) {
    .kanvas-home { height: 200px; }
}

/* kanvas-home: homogenize images of different sizes */

/* indicators (dots) styling - default color #6D98C6, active #0B53A0 */
.tonnes-carousel .carousel-indicators {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0.65rem; /* distance from cards - adjust for spacing */
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 0;
    margin: 0;
}
.tonnes-carousel .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #6d98c6; /* default */
    opacity: 1;
    border: none;
    margin: 0 4px;
}
.tonnes-carousel .carousel-indicators button.active {
    background-color: #0b53a0; /* active */
    box-shadow: 0 0 0 3px rgba(11, 83, 160, 0.12);
}

/* responsive adjustments for indicators */
@media (max-width: 575.98px) {
    .tonnes-carousel .carousel-indicators {
        bottom: 0.4rem;
        gap: 6px;
    }
    .tonnes-carousel .carousel-indicators button {
        width: 9px;
        height: 9px;
    }
}

/* override default bootstrap control icons to use black circles with SVG chevrons */
.tonnes-carousel .carousel-control-prev,
.tonnes-carousel .carousel-control-next {
    width: 48px;
    height: 48px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border-radius: 50%;
}
.tonnes-carousel .carousel-control-prev svg,
.tonnes-carousel .carousel-control-next svg {
    width: 28px;
    height: 28px;
}

/* Menu How It Works */
.how-it-works-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Default (desktop) */
.try-btn {
    font-size: 1rem;
    padding: 0.75rem 2rem;
}

/* Default (desktop) */
.explore-btn {
    font-size: 1rem;
    padding: 0.75rem 2rem;
}

.kanvas-HIT-ct3 {
    height: 160px;              /* tinggi seragam */
    display: flex;
    align-items: center;        /* vertical center */
    justify-content: center;    /* horizontal center */
}
.kanvas-HIT-ct3 img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;        /* gambar proporsional */
}

/* Dots: titik bulat, jarak aman dari CTA */
.carousel-indicators {
    position: static;
    justify-content: center;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.carousel-indicators [data-bs-target] {
    background-color: #6D98C6;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 6px;
    opacity: 1;
}
.carousel-indicators .active {
    background-color: #0B53A0;
}

/* Styling teks di card mobile */
.cards-ct-3-mobile h5,
.cards-ct-3-mobile p {
    text-align: center;
    color: #767676;
}

/* CTA spacing */
.join-btn {
    font-size: 1rem;
    padding: 0.75rem 2rem;
}
@media (max-width: 991.98px) {
    .join-btn {
        font-size: 1.25rem;
        padding: 1rem 2.5rem;
        margin-top: 1rem;
    }
}

/* Tablet & Mobile: perbesar ukuran dan center */
@media (max-width: 991.98px) {
    .try-btn {
        font-size: 1.25rem;
        padding: 1rem 2.5rem;
    }
}

/* Tablet & Mobile: perbesar ukuran dan center */
@media (max-width: 991.98px) {
    .explore-btn {
        font-size: 1.25rem;   /* lebih besar */
        padding: 1rem 2.5rem; /* lebih lega */
    }
}

/* Menu How It Works */
.subheadline-HIT-ct-2 {
    max-width: 720px;   /* ⬅️ kontrol lebar blok teks */
}

.subheadline-HIT-ct-3 {
    max-width: 750px;   /* ⬅️ kontrol lebar blok teks */
}

.subheadline-HIT-ct-4 {
    max-width: 600px;   /* ⬅️ kontrol lebar blok teks */
}

.card-custom {
    border-radius: 1rem;
    padding: 2rem;
    color: white;
}

.card-blue {
    background-color: #0043a4;
}

.card-yellow {
    background-color: #fcdc3a;
    color: #4b4000;
}

.card-green {
    background-color: #8dd43c;
}

.btn-outline-light-blue {
    background-color: #0043a4;
    color: white;
    border: none;
}

.btn-outline-light-blue:hover {
    background-color: #003080;
}

.impact-icon {
    width: 64px;
    height: 64px;
    object-fit: contain;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.feature-icon {
    max-width: 72px;
    height: auto;
    margin-bottom: 1rem;
}

.feature-title {
    font-weight: 700;
    font-size: 32px;
    line-height: 1.4;
    color: #6c757d;
}

.feature-desc {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
}

.feature-title {
    color: #6c757d;
    /* abu-abu Bootstrap (text-secondary) */
}

.feature-desc {
    color: #6c757d;
}

.feature-text {
    max-width: 260px;   /* ⬅️ kontrol lebar blok teks */
}

@media (max-width: 767px) {
    .feature-text {
        max-width: 100%;
    }
}

/* ===== UNIFIED CTA WIDTH (FOLLOW EXPLORE SOLUTIONS) ===== */
.btn-nohover-primary-uniform,
.btn-nohover-outline-uniform {
    max-width: 220px;
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 0.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-nohover-primary-uniform-mobile,
.btn-nohover-outline-uniform-mobile{
    max-width: 250px;
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 0.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-nohover-primary-uniform-jumbotron,
.btn-nohover-outline-uniform-jumbotron {
    width: 168px;
    height: 48px;

    font-size: 12px;
    font-weight: 600;
    border-radius: 0.5rem;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    white-space: nowrap;
    text-decoration: none;

    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* PRIMARY GLOBAL */
.btn-nohover-primary-uniform {
    background-color: #0b53a0;
    color: #ffffff;
    border: 2px solid #f3f3f3;
}

.btn-nohover-primary-uniform:hover {
    background-color: #ffffff;
    color: #0b53a0;
    border-color: #0b53a0;
    transform: translateY(1px);
}

/* OUTLINE GLOBAL */
.btn-nohover-outline-uniform {
    background-color: #ffffff;
    color: #0b53a0;
    border: 2px solid #0b53a0;
}

.btn-nohover-outline-uniform:hover {
    background-color: #0b53a0;
    color: #ffffff;
    border-color: #0b53a0;
    transform: translateY(1px);
}

/* CTA untuk MOBILE */
.btn-nohover-primary-uniform-mobile {
    background-color: #0b53a0;
    color: #ffffff;
    border: 2px solid #f3f3f3;
}

.btn-nohover-primary-uniform-mobile:hover {
    background-color: #ffffff;
    color: #0b53a0;
    border-color: #0b53a0;
    transform: translateY(1px);
}

.btn-nohover-outline-uniform-mobile {
    background-color: #ffffff;
    color: #0b53a0;
    border: 2px solid #0b53a0;
}

.btn-nohover-outline-uniform-mobile:hover {
    background-color: #0b53a0;
    color: #ffffff;
    border-color: #0b53a0;
    transform: translateY(1px);
}
/* End CTA untuk MOBILE */

/* CTA untuk JUMBOTRON */
.btn-nohover-primary-uniform-jumbotron {
    background-color: #0b53a0;
    color: #ffffff;
    border: 2px solid #f3f3f3;
}

.btn-nohover-outline-uniform-jumbotron {
    background-color: #ffffff;
    color: #0b53a0;
    border: 2px solid #0b53a0;
}

.btn-nohover-outline-uniform-jumbotron:hover {
    background-color: #0b53a0;
    color: #ffffff;
    border-color: #ffffff; /* ✅ PUTIH */
    transform: translateY(1px);
    box-shadow: 0 8px 18px rgba(11, 83, 160, 0.25);
}

.btn-nohover-primary-uniform-jumbotron:hover {
    background-color: #ffffff;
    color: #0b53a0;
    border-color: #ffffff;
    transform: translateY(1px);
    box-shadow: 0 8px 18px rgba(11, 83, 160, 0.25);
}
/* End CTA untuk JUMBOTRON */

/* ===============================
   MOBILE VARIANTS (BASE)
=============================== */
.btn-nohover-outline-uniform-jumbotron-mobile,
.btn-nohover-primary-uniform-jumbotron-mobile {
    min-width: 70px;
    padding: 0.8rem 1rem;
    font-size: 12px;
    font-weight: 600;
    border-radius: 0.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center !important;
    white-space: nowrap;
    text-decoration: none;
    transition: all 0.2s ease;
}

/* ===============================
   OUTLINE MOBILE JUMBOTRON
=============================== */
.btn-nohover-outline-uniform-jumbotron-mobile {
    background-color: #ffffff;
    color: #0b53a0;
    border: 2px solid #0b53a0;
    box-shadow: none;
}

.btn-nohover-outline-uniform-jumbotron-mobile:hover,
.btn-nohover-outline-uniform-jumbotron-mobile:active {
    background-color: #0b53a0;
    color: #ffffff;
    border-color: #ffffff; /* border putih sesuai request jumbotron */
    transform: translateY(0);
    box-shadow: 0 6px 14px rgba(11, 83, 160, 0.25);
}

/* ===============================
   PRIMARY MOBILE JUMBOTRON
=============================== */
.btn-nohover-primary-uniform-jumbotron-mobile {
    background-color: #0b53a0;
    color: #ffffff;
    border: 2px solid #f3f3f3;
    box-shadow: none;
}

.btn-nohover-primary-uniform-jumbotron-mobile:hover,
.btn-nohover-primary-uniform-jumbotron-mobile:active {
    background-color: #ffffff;
    color: #0b53a0;
    border-color: #ffffff;
    transform: translateY(0px);
    box-shadow: 0 6px 14px rgba(11, 83, 160, 0.25);
}

/* ===============================
   PRESS EFFECT (SAAT DITEKAN)
=============================== */
.btn-nohover-outline-uniform-jumbotron-mobile:active,
.btn-nohover-primary-uniform-jumbotron-mobile:active {
    transform: translateY(0);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

@media (min-width: 768px) {
    .cta-center-desktop {
        text-align: center;
    }
}
/* end of how it works css */

/* solution css */
.custom-card {
    width: 100%;
    min-height: 292px;
    border-radius: 18px;
    background: linear-gradient(to bottom, #1B45B4, #1C2792);
    padding: 40px 60px;
}

.custom-card-ct2 {
    width: 100%;
    min-height: 195px;
    border-radius: 18px;
    background: linear-gradient(to right, #AC60E5, #0C87F0);
    padding: 40px 60px;
}

.custom-card-content {
    color: #ffffff;
}

.card-title {
    font-size : 28px;
    color: #FFCC00;
    margin-bottom: 20px;
}

.card-text-muted{
    font-size: 14px;
    color: #FFCC00;
}
.card-title-ct2 {
    font-size : 28px;
    color: #ffffff;
    margin-bottom: 20px;
}

.card-description {
    max-width: 100%;
    margin-bottom: 30px;
    line-height: 1.6;
}

.card-list ul {
    padding-left: 18px;
    margin-bottom: 0;
}

.card-list li {
    line-height: 1.25;
    margin-bottom: 4px;
    font-weight: 600;
}

.overlay-image {
    width: 20%;
    /* Atur ukuran sesuai kebutuhan */
}

.wrapper-overlay-img {
    position: absolute;
    top: 0;
    width: 65%;
    height: 100%;
    /* border: 5px solid black; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.wrapper-overlay-img[data-overlay-bawah] {
    align-items: end;
}

.wrapper-overlay-img[data-overlay-bawah] > .overlay-image {
    height: 250px;
    width: auto;
}

@media (max-width: 768px) {
    .custom-card {
        width: 100%;
        height: auto;
        flex-direction: column;
        margin: 0 auto 40px auto;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        position: relative;
    }

    .custom-card-bg {
        background: linear-gradient(to bottom, #0b53a0 40%, #ffffff00 90%);
        height: 100%;
        z-index: 3;
    }

    .custom-card-content {
        flex-direction: column;
        align-items: center;
        padding: 0;
        text-align: center;
        z-index: 2;
    }

    .custom-card-text {
        max-width: 100%;
        z-index: 4;
        color: #ffffff;
        margin-top: 1.5rem;
        margin-inline: 1.5rem;
    }

    .custom-card-text h2 {
        font-size: 1.5rem;
        margin: 0 0 10px 0;
    }

    .custom-card-image {
        position: relative;
        width: 100%;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        padding-left: 20px;
    }

    .custom-card-image img:not(.overlay-image) {
        width: 124%;
        height: auto;
        object-fit: contain;
        margin: 0;
        transform: translateX(-64px);
        object-position: left center;
        z-index: 1;
    }

    .wrapper-overlay-img {
        width: 100%;
    }

    .overlay-image {
        width: 30%;
    }

    .ecoswarm {
        top: 30%;
    }

    .ecofest {
        top: 50%;
    }
}

/* === ALLOW SWIPE === */
.canvas-carousel,
.canvas-carousel-ecofest,
.canvas-main-img-carousel,
.wrapper-overlay-img-carousel,
.card-carousel-bg {
    pointer-events: none;
}

.card-carousel-solution {
    position: relative;
    width: 100%;
    height: 520px;
    border-radius: 20px;
    overflow: hidden;
}
    
.card-carousel-bg {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        to bottom,
        #0B53A0 0%,
        #0B53A0 60%,
        rgba(11, 83, 160, 0.85) 72%,
        rgba(11, 83, 160, 0.4) 86%,
        rgba(11, 83, 160, 0) 100%
    );
}

.card-carousel-content {
    pointer-events: auto;
    position: relative;
    z-index: 5;

    display: flex;
    flex-direction: column;
    align-items: center;   /* center horizontal */
    text-align: center;    /* center text */

    padding: 32px 24px;
}

.card-carousel-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #E6F0FF;
}

.card-carousel-desc {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #E6F0FF;
}

.card-carousel-target {
    font-size: 14px;
    font-weight: 600;
    color: #84C441;
}

.canvas-carousel {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.canvas-carousel-ecofest {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.canvas-main-img-carousel {
    max-height:30rem;
    width: auto;
}

.canvas-overlay-carousel {
    position: absolute;
    bottom: 20px;
    right: 48px;
    width: 120px;
}

.wrapper-overlay-img-carousel {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.overlay-image-carousel {
    width: 12rem;
    position: relative; /* penting supaya bisa di-offset tipis */
}

/* ================= ITEM 1 – SmartTrack ================= */
.overlay-smarttrack {
    width: 12rem;
}

/* ================= ITEM 2 – EcoSwarm ================= */
.overlay-ecoswarm {
    width: 11.5rem;
}

/* ================= ITEM 3 – ReCover ================= */
.overlay-recover {
    width: 12.5rem;
}

/* ================= ITEM 4 – WasteFlow ================= */
.overlay-wasteflow {
    width: 11.8rem;
}

/* ================= ITEM 5 – ThinkCycle ================= */
.overlay-thinkcycle {
    width: 14.5rem;
}

/* ================= ITEM 6 – EcoFest ================= */
.overlay-ecofest {
    width: 14rem;
}

/* ================= ITEM 7 – EcoNest ================= */
.overlay-econest {
    width: 12rem;
}

/* ===============================
   SOLUTIONS CAROUSEL ARROW
================================ */

.solutions-carousel-arrow {
    position: absolute;
    width: 40px;
    height: 40px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    z-index: 20;        /* lebih tinggi dari konten card */
}

.solutions-carousel-arrow .carousel-control-prev-icon,
.solutions-carousel-arrow .carousel-control-next-icon {
    background-size: 18px 18px;
    filter: invert(1);
}

.carousel-control-prev {
    left: 12px;
}

.carousel-control-next {
    right: 12px;
}

/* Sembunyikan di desktop */
@media (min-width: 992px) {
    .solutions-carousel-arrow {
        display: none;
    }
}


/* === CAROUSEL DOTS === */

.custom-carousel-dots {
    position: static;
    margin-top: 16px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

/* default dot */
.custom-carousel-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #6D98C6;
    opacity: 1;
    border: none;
    padding: 0;
    transition: 
        background-color 0.25s ease,
        transform 0.25s ease;
    cursor: pointer;
}

/* hover feedback */
.custom-carousel-dots button:hover {
    transform: scale(1.2);
}

/* active dot */
.custom-carousel-dots button.active {
    background-color: #0B53A0;
    transform: scale(1.3);
}

/* ===============================
   WHY SECTION — GAP CONTROL
=============================== */
/* === GRID WRAPPER === */
.journal-why-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 24px;
    margin-top: 24px;
}

/* === GRID ITEM === */
.journal-why-item {
    border-radius: 16px;
    background-color: #81c243;
    flex: 0 0 calc(20% - 24px);
    max-width: calc(20% - 24px);
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

.exist-why-text {
    font-weight: 550;
    font-size: 15px;
    line-height: 1.35;
    text-align: center;
    color: #ffffff;
    margin: 0;

    /* cegah teks memanjang tinggi */
    max-width: 160px;
}

/* ========================
   RESPONSIVE BREAKPOINTS
======================== */

/* Tablet (<= 1199px) */
@media (max-width: 1199px) {
    .journal-why-item {
        flex: 0 0 calc(50% - 24px); /* 2 kolom */
        max-width: calc(50% - 24px);
    }

    /* Item ke-5 turun ke baris sendiri */
    .journal-why-item:nth-child(5) {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.why-row {
    gap: 30px;
    --card-gap-y: 24px;
    row-gap: var(--card-gap-y);
}

.why-col {
    display: flex;
    padding-left: 6px;
    padding-right: 6px;
}

/* ===============================
   WHY CARD BASE STYLE
=============================== */
.why-card {
    background-color: #81c243;
    border-radius: 16px;
    color: #ffffff;
    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;

    width: 100%;
    min-height: 220px;
    padding: 1.5rem 1rem;
    font-size: 0.9rem;
}

.why-card img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin-bottom: 18px;
}

.why-card p {
    margin-bottom: 0;
    line-height: 1.5;
}

/* ===============================
   WHY CARD — MOBILE FIRST
=============================== */
@media (max-width: 767.98px) {

    .why-row > .why-col {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .why-card {
        min-height: 200px;
        padding: 1.25rem 0.75rem;
        font-size: 0.85rem;
    }

    .why-card img {
        width: 56px;
        height: 56px;
        margin-bottom: 14px;
    }

    .why-card p {
        line-height: 1.45;
    }
}

/* ===============================
   TABLET
=============================== */
@media (min-width: 768px) {
    .why-card {
        min-width: 220px;
        min-height: 240px;
        padding: 1.75rem 1.5rem;
        font-size: 0.95rem;
    }

    .why-card img {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }
}

/* ===============================
   DESKTOP
=============================== */
@media (min-width: 1200px) {
    .why-card {
        min-width: 220px;
        min-height: 260px;
        padding: 2rem 1.75rem;
        font-size: 1rem;
    }

    .why-card img {
        width: 100px;
        height: 100px;
        margin-bottom: 22px;
    }
}

/* ===============================
   MOBILE TESTIMONIAL CAROUSEL
=============================== */
.carousel-testimonial {
    position: relative;
    padding-top: 10px;
}

/* CARD */
.carousel-testimonial-card {
    position: relative;
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 2.25rem 1.75rem 2.5rem;
    text-align: center;
    margin: 0 20px; /* card jadi jauh lebih lebar */
    min-height: 420px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

/* AVATAR */
.carousel-testimonial-avatar {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto 1rem;
}

/* TEXT */
.carousel-testimonial-text {
    font-size: 0.9rem;
    color: #0b53a0;
    line-height: 1.6;
    padding: 0 6px;
}

/* NAME */
.carousel-testimonial-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #0b53a0;
    margin-top: 1.25rem;
}

.carousel-testimonial-name span {
    font-weight: 400;
}

/* ===============================
   ARROW — AUTO ALIGN WITH AVATAR
=============================== */
.carousel-testimonial-arrow {
    position: absolute;
    
    /* Tengah avatar:
       padding-top card (1.75rem ≈ 28px)
       + setengah avatar (96px / 2 = 48px)
    */
    top: calc(1.75rem + 48px);
    transform: translateY(-50%);

    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
    opacity: 1;
    z-index: 20;
}

/* posisi kiri kanan */
.carousel-control-prev.carousel-testimonial-arrow {
    left: 37px;
    top: 122px;
}

.carousel-control-next.carousel-testimonial-arrow {
    right: 37px;
    top: 120px;
}

/* icon panah */
.carousel-testimonial-arrow .carousel-control-prev-icon,
.carousel-testimonial-arrow .carousel-control-next-icon {
    background-size: 18px 18px;
    filter: invert(1);
}

/* ===============================
   DOT INDICATORS
=============================== */
.carousel-testimonial-dots {
    position: static;
    margin-top: 18px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.carousel-testimonial-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #6D98C6;
    opacity: 1;
    border: none;
    transition: all 0.25s ease;
}

.carousel-testimonial-dots .active {
    background-color: #0B53A0;
    transform: scale(1.25);
}

/* ===============================
   HIDE ON DESKTOP
=============================== */
@media (min-width: 768px) {
    .carousel-testimonial {
        display: none;
    }
}
/* end of solutions css */

/* kanvas index/Home Frontpage */
.kanvas {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.kanvas img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
/* end of kanvas index/Home Frontpage */

/* kanvas How It Works Frontpage */
.kanvas.hik {
    width: 245px;
    height: 245px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    overflow: hidden;
}

.kanvas.hik img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
/* end of kanvas How It Works Frontpage */

/* impact css */
.impact-card {
    background-color: #0056aa;
    border-radius: 0 0 16px 16px;
    padding: 20px 16px;
    text-align: center;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s ease;
}

/* Uniform image size */
.impact-img {
    max-height: 180px;
    object-fit: contain;
    width: 100%;
    margin-bottom: 1rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.d-flex.flex-column.align-items-center.h-100.justify-content-between {
    height: 100%;
}

/* Hover effect */
.impact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

/* Angka utama */
.impact-value {
    font-weight: 700;
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 6px;
}

/* Deskripsi kecil */
.impact-desc {
    font-size: 14px;
    color: #ffffff;
    margin: 0;
    line-height: 1.4;
    text-align: center;
}

/* WRAPPER */
.impact-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
}

/* GARIS DASAR */
.impact-dot {
    height: 6px;
    width: 28px;
    border-radius: 10px;
    background-color: #d9d9d9;
    transition: all 0.35s ease;
}

/* GARIS AKTIF (SLIDE AKTIF) */
.impact-dot.active {
    width: 48px;
    background-color: #0056aa; /* warna brand */
}

@media (max-width: 575px) {

    .impact-img {
        width: 90px;
        height: 90px;
        object-fit: contain;
        margin: 0 auto 8px auto;
        flex-shrink: 0;
    }

    .impact-slide {
        flex: 0 0 85%;
        scroll-snap-align: start;
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .impact-kartu {
        background: #ffffff;
        border-radius: 16px;
        padding: 16px 14px;
        box-shadow: 0 6px 18px rgba(0,0,0,0.06);

        display: flex;
        flex-direction: column;
        justify-content: space-between; /* Biar isi tersebar rapi */
        text-align: center;

        max-width: 320px;
        min-height: 180px; /* KUNCI: tinggi seragam */
    }

    .impact-desk {
        font-size: 13px;
        color: #666;
        line-height: 1.35;
        margin: 0;

        display: -webkit-box;
        -webkit-line-clamp: 2;   /* Maks 2 baris */
        -webkit-box-orient: vertical;
        overflow: hidden;
        min-height: 34px; /* Samakan tinggi area teks */
    }
}

.stats-section {
    background-color: #ffffff;
}

.stats-section .row {
    margin-top: 0;
    margin-bottom: 0;
}

@media (min-width: 768px) and (max-width: 850px) {
    .impact-wrapper .row {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        margin: 0;
    }

    .impact-kartu {
        padding: 20px;
        background-color: #fff;
        border-radius: clamp(8px, 2.5vw, 12px);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
        text-align: center;
    }

    .impact-img {
        width: 245px;
        height: 245px;
        object-fit: cover;
        margin-bottom: 12px;
    }

    .impact-title {
        font-size: 28px;
        font-weight: 600;
        margin-bottom: 4px;
        color: #222;
    }

    .impact-desk {
        font-size: 13px;
        color: #666;
        line-height: 1.4;
        margin: 0;
    }
}

.impact-kartu {
    background-color: transparent;
    box-shadow: none;
    padding: 20px;
    border-radius: 0;
    transition: none;
}

.impact-card:hover {
    transform: none;
}

.impact-img {
    width: 158px;
    height: 158px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 12px;
}

.impact-title {
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #222;
}

.impact-desk {
    font-size: 14px;
    color: #555;
}

/* ================= MOBILE CAROUSEL ================= */
.impact-carousel-mobile {
    display: none;
}

@media (max-width: 575px) {

    .impact-grid-desktop {
        display: none !important;
    }

    .impact-carousel-mobile {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        padding: 0 16px;
    }

    .impact-carousel-mobile::-webkit-scrollbar {
        display: none;
    }

    .impact-slide {
        flex: 0 0 85%;
        scroll-snap-align: start;
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .impact-kartu {
        background: #ffffff;
        border-radius: 16px;
        padding: 18px 14px;
        box-shadow: 0 6px 18px rgba(0,0,0,0.06);
        text-align: center;
        min-height: 190px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .impact-img {
        width: 110px;
        height: 110px;
        object-fit: contain;
        margin-bottom: 10px;
    }

    .impact-title {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 4px;
    }

    .impact-desk {
        font-size: 13px;
        color: #666;
        line-height: 1.4;
        margin: 0;
    }
}

/* ================= SLIDE INDICATORS ================= */
.impact-indicators {
    display: none;
}

@media (max-width: 575px) {
    .impact-indicators {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        margin-top: 18px;
    }

    .impact-dot {
        height: 6px;
        width: 28px;
        border-radius: 10px;
        background-color: #d9d9d9;
        transition: all 0.35s ease;
    }

    .impact-dot.active {
        width: 48px;
        background-color: #0056aa;
    }
}

/* content 2 impact-page */
/* ===============================
   PARTNER TESTIMONIAL CAROUSEL
================================ */

.partner-carousel-item {
    padding: 24px 20px;
    text-align: center;
    max-width: 520px;
    margin: 0 auto;
}

.partner-carousel-avatar {
    max-width: 120px;
}

/* Arrow */
.partner-carousel-arrow {
    position: absolute;
    width: 40px;
    height: 40px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    z-index: 20;     
}

.partner-carousel-arrow .carousel-control-prev-icon,
.partner-carousel-arrow .carousel-control-next-icon {
    filter: invert(1);
}

/* Dots */
.partner-carousel-dots {
    position: static;
    margin-top: 20px;
}

.row.align-items-center.mb-5 {
    margin-bottom: 3rem;
}

/* Avatar / Foto profil */
.row .col-md-2 img {
    border-radius: 50%;
    max-width: 170px;
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Paragraf utama */
.col-md-10 p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--bs-primary);
    margin-bottom: 1rem;
}

/* Nama & lokasi */
.size-16px {
    font-size: 16px;
}

.fw-bold {
    font-weight: 700;
}

.text-primary {
    color: var(--bs-primary);
}

/* Responsif untuk mobile */
@media (max-width: 768px) {
    .row.align-items-center {
        flex-direction: column;
        text-align: center;
    }

    .col-md-2,
    .col-md-10 {
        width: 100%;
        text-align: center;
    }

    .col-md-10 p {
        font-size: 13px;
    }

    .size-16px {
        font-size: 14px;
    }
}

/* end of impact css */

/* blog css */
.related-blog-img { 
    object-fit: cover;
    border-radius: 8px;
}

/* TABLE ROW */
#mediaTable tbody tr {
    height: 96px;
}

/* TD */
td.td-thumbnail {
    width: 90px;
    min-width: 90px;
    text-align: center;
    vertical-align: middle;
}

/* BUTTON */
.thumbnail-button {
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
    display: inline-block;
}

/* WRAPPER */
.thumbnail-wrapper {
    width: 72px;
    height: 72px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
    background: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* IMAGE */
.thumbnail-img {
    width: 72px !important;
    height: 72px !important;

    max-width: 72px !important;
    max-height: 72px !important;

    object-fit: cover !important;

    display: block !important;
    margin: 0 auto !important;

    border-radius: 12px;
}

.journal {
    background-color: #f3f3f3;
}

.card-img-top {
    object-fit: cover;
    height: 184px;
}

.card p {
    font-size: 17px;
    margin-bottom: 0;
}

.journal .card-body {
    padding: 30px;
    padding-bottom: 70px;
}

p.text {
    font-size: 17px;
}

/* end of blog css */

/* about us css */
.stats-section {
    background-color: #f3f3f3;
}

.stats-section .text {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    max-width: 700px;
    margin: 0 auto;
}

/* ========================
   TYPOGRAPHY & HEADINGS
======================== */
.heading-xl {
    font-size: clamp(24px, 5vw, 48px);
    line-height: 1.2;
}

/* ========================
   CARD CONTENT STYLE
======================== */
.exist-text {
    font-size: 15px;
    line-height: 1.35;
    text-align: center;
    color: #ffffff;
    margin: 0;

    /* cegah teks memanjang tinggi */
    max-width: 160px;
}

/* ========================
   CARD CONTAINER STYLE
======================== */
.exist-card-abt-us {
    width: 200px;
    height: 250px;
    background-color: #0056aa;
    border-radius: 16px;
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    box-sizing: border-box;
}

.exist-card-abt-us img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    flex-shrink: 0;
}

/* Carousel About Us - Mobile */
.carousel-item-abtus img {
    width: 100px;          /* ukuran lebar gambar */
    height: 100px;         /* ukuran tinggi gambar */
    object-fit: contain;   /* menjaga proporsi gambar */
    margin: 0 auto;        /* center di kolom */
}

/* Wrapper card persegi panjang untuk brand */
.brand-card-abtus {
    width: 160px;     /* lebih lebar */
    height: 100px;    /* lebih pendek */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;   /* optional card bg */
    border-radius: 12px;      /* rounded card */
    padding: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    margin: 0 auto;
}

.brand-card-abtus img {
    max-width: 90%;   /* agar ada space di kiri kanan */
    max-height: 80%;  /* agar proporsional dalam persegi panjang */
    object-fit: contain; /* tetap proporsional */
}

/* Card kosong */
.brand-card-abtus.empty {
    background: transparent;
    box-shadow: none;
}

.program-card-abtus {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    margin: 0 auto;
}

.program-card-abtus img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.program-card-abtus.empty {
    background: transparent;
    box-shadow: none;
}

/* Responsif untuk layar lebih kecil */
@media (max-width: 575px) {
    .carousel-item-abtus img {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 767px) {
    .brand-carousel-img {
        width: 80px;
        height: 80px;
    }
}

/* === GRID WRAPPER === */
.journal-about-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 24px;
    margin-top: 24px;
}

/* === GRID ITEM === */
.journal-about-item {
    flex: 0 0 calc(20% - 24px);
    max-width: calc(20% - 24px);
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

/* ========================
   RESPONSIVE BREAKPOINTS
======================== */

/* Tablet (<= 1199px) */
@media (max-width: 1199px) {
    .journal-about-item {
        flex: 0 0 calc(50% - 24px); /* 2 kolom */
        max-width: calc(50% - 24px);
    }

    /* Item ke-5 turun ke baris sendiri */
    .journal-about-item:nth-child(5) {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Mobile (<= 767px) */
@media (max-width: 767px) {
    .exist-card-abt-us {
        max-width: 170px;
        min-height: 240px;
        padding: 14px 10px;
        gap: 14px;
    }

    .exist-card-abt-us img {
        width: 64px;
        height: 64px;
    }

    .exist-text {
        font-size: 14px;
        max-width: 140px;
    }
}

@media (max-width: 575px) {
    .exist-card-abt-us {
        max-width: 160px;
        min-height: 230px;
    }

    .exist-text {
        font-size: 13px;
    }
}

/* Arrow */
.carousel-control-prev,
.carousel-control-next {
    width: 36px;
    height: 36px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-size: 16px 16px;
    filter: invert(1);
}

@media (max-width: 767px) {
    .brand-carousel-img {
        width: 80px;
        height: 80px;
    }
}

.btn-custom {
    width: auto;
    min-width: 200px;
    /* Pastikan tombol memiliki lebar minimum */
    padding: 12px 24px;
    /* Konsisten di kedua tombol */
    font-size: 18px;
    /* Ukuran teks seragam */
    border-radius: 6px;
    /* Agar sudutnya tetap terlihat profesional */
}

.team-section h2 {
    font-size: 24px;
}

.team-section p {
    font-size: 16px;
    line-height: 1.6;
}

.team-section .card {
    transition: transform 0.3s ease;
}

.team-section .card:hover {
    transform: translateY(-5px);
}

.team-section .card-title {
    font-size: 16px;
    margin-top: 12px;
    margin-bottom: 4px;
}

.team-section .card-text {
    font-size: 14px;
    color: #666;
}

.contact-cta {
    background-color: #f8f9fa;
    /* Warna abu muda */
}

.contact-cta .btn {
    font-size: 13px;
    font-weight: 500;
    background-color: #0d47a1;
    border: none;
}

.contact-cta .btn:hover {
    background-color: #093e90;
}

/* end of about us css */

/* contact us css */
.stats-section {
    background-color: #ffffff;
}

.partner-section {
    background-color: #f3f3f3;
}

.stats-section .text {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    max-width: 700px;
    margin: 0 auto;
}

.form-wrapper-contact {
    width: 80%;
    max-width: 100%;
}

/* Compact Horizontal Row for Name & Company */
.horizontal-compact {
    display: flex;
    gap: 1rem;
    flex-wrap: nowrap; /* tetap horizontal */
}

.horizontal-compact .col-6 {
    flex: 1;
    min-width: 0;
}

/* Responsive: jika layar sangat sempit, tetap wrap agar tidak pecah */
@media (max-width: 360px) {
    .horizontal-compact {
        flex-wrap: wrap;
    }
    .horizontal-compact .col-6 {
        flex: 0 0 100%;
    }
}

/* Label & Input lebih proporsional */
.form-label {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.form-control-sm {
    padding: 0.35rem 0.5rem;
    font-size: 0.875rem;
}

/* Submit button tetap nyaman */
.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* end of contact us css */

/* footer css */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: "Poppins", sans-serif;
}

.footer a {
    color: white; !important;
    text-decoration: none;
    font-size: 14px;
    display: block;
    margin-bottom: 5px;
    white-space: nowrap;
}

.footer a:hover {
    text-decoration: underline;
}

.footer {
    margin-top: auto;
    background-color: #0b53a0;
    color: white;
    min-height: 410px;
    /* Tetap punya batas minimum tapi bisa membesar */
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: start;
    width: 1377px;
    margin: 0 auto;
}

.footer-left {
    width: max-content;
    /* Agar elemen hanya selebar kontennya */
    margin-top: 45px;
}

.footer-left b,
.footer-left p {
    display: block;
    /* Pastikan elemen ditampilkan dalam satu blok */
    margin: 5px 0;
    /* Hilangkan margin bawaan */
    padding: 0;
    /* Pastikan tidak ada padding tambahan */
}

.footer-logo {
    margin-top: 123px;
    /* Berikan jarak antara teks dan gambar */
    width: 139px;
    /* Sesuaikan ukuran logo */
}

.footer-right {
    padding-left: 80px;
    /* Sesuaikan agar lebih ke kanan */
    margin-top: 45px;
}

.footer-right a {
    white-space: nowrap;
    /* Mencegah teks turun ke bawah */
    display: block;
    /* Membuat setiap link berada dalam satu baris */
    margin: 2px 0;
    /* Memberikan jarak atas dan bawah */
    padding: 5px 0;
    /* Alternatif untuk jarak dalam elemen */
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Membagi jadi 2 kolom */
    gap: 20px;
}

.footer-grid a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    display: block;
}

.footer-grid a:hover {
    text-decoration: underline;
}

.footer-line {
    width: 100%;
    height: 3px;
    background-color: white;
    margin-top: 64px;
    /* Beri jarak atas sebelum garis */
}

.footer-copyright {
    font-size: 16px;
    opacity: 0.5;
    /* Atur opacity sesuai permintaan */
    margin-top: 25px;
    /* Beri jarak dengan garis */
}

.footer-social {
    display: flex;
    /* Jarak antar ikon */
}

.social-icon {
    color: white;
    font-size: 40px;
    /* Perbesar ikon */
    text-decoration: none;
}

.social-icon i {
    font-size: 25px;
    /* Perbesar ikon langsung di elemen <i> */
}

.footer-social img {
    width: 32px;
    /* Ganti dengan ukuran yang kamu mau */
    height: 32px;
    /* Bisa diatur ke aspect ratio tertentu juga */
    object-fit: contain;
    transition: transform 0.2s ease;
}

.footer-social a:hover img {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .footer {
        height: auto;
        padding: 40px 20px;
    }

    .footer-container {
        width: 100%;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-left {
        margin-top: 20px;
        width: 100%;
    }

    .footer-logo {
        margin: 40px auto;
        align-items: center;
    }

    .footer-right {
        padding-left: 0;
        margin-top: 30px;
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
        margin-top: 30px;
    }

    .footer-line {
        margin-top: 40px;
    }

    .footer-copyright {
        text-align: center;
    }
}

.text-article p {
  font-size: 18px !important;
}

/* end of footer css */
