body {
    margin: 0;
    padding: 0;
    color: white;
    overflow-x: hidden;
    font-family: Arial, sans-serif;
    background: none;
}
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1030;
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(10px);
}
.navbar-nav .nav-link {
    color: white !important;
    font-size: 0.85rem;
}

.hero-section {
    background: url('b3.jpeg') no-repeat center center;
    background-size: cover;
    position: relative;
    min-height: 100vh;
    padding: 80px 0; /* tetap ada padding atas untuk navbar */
    display: flex;
    align-items: flex-end; /* posisikan container di bagian bawah */
    justify-content: flex-start; /* posisikan container ke kiri */
    text-align: left; /* teks kiri */
}

.hero-section::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-section .container {
    position: relative;
    z-index: 1;
    margin-left: 20px; /* memberi jarak dari sisi kiri layar */
    margin-bottom: 0px; /* memberi jarak dari bawah layar */
    max-width: 1200px; /* opsional: batasi lebar agar tidak terlalu lebar */
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
}

.btn-primary-custom {
    background-color: white;
    color: black;
    border: none;
    padding: 8px 25px;
    border-radius: 10px;
    font-weight: bold;
}
.btn-primary-custom:hover {
    background-color: #ddd;
    color: black;
}


.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
}


.hero-title-light {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 300; /* font tipis */
    color: white; /* default putih */
}

.hero-title-light .after-dot {
    color: rgba(255, 255, 255, 0.6); /* abu-abu transparan */
}

/* Responsif untuk layar kecil / mobile */
@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;  /* font lebih kecil di mobile */
    }

    .btn-primary-custom {
        padding: 6px 18px;   /* padding lebih kecil */
        font-size: 0.85rem; /* font button lebih kecil */
        border-radius: 8px; /* radius sedikit lebih kecil */
    }

    .hero-section .container {
        margin-left: 10px; /* agar teks tidak terlalu menempel di tepi layar */
        margin-right: 10px;
    }
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%236c757d' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.logo-section {
    position: relative;
    background-color: rgb(0, 0, 0); /* latar hitam transparan */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px; /* sesuaikan tinggi */
    margin: 0;
    padding: 0 10px; /* padding kiri kanan 20px */
    box-sizing: border-box; /* supaya padding masuk ke ukuran total */
}

.overlay {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-box {
    background-color: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;  /* supaya penuh lebar section (dengan padding 20px) */
    max-width: 1200px; /* batas maksimal supaya gak kebesaran di layar besar */
    box-sizing: border-box;
}

.logo-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Responsive buat layar kecil */
@media (max-width: 576px) {
    .logo-box {
        padding: 20px;
    }
}





.clients-section {
    background-color: #000000;
    color: white;
    padding: 60px 20px;
    font-family: Arial, sans-serif;
}

/*.container {*/
/*    max-width: 1200px;*/
/*    margin: auto;*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    gap: 30px;*/
/*}*/

.section-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 30px;
}
.section-dividerbawa {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 30vh 0 0;
    width: 100%;
}
/* Untuk layar dengan lebar maksimal 600px (misal HP) */
@media screen and (max-width: 600px) {
    .section-dividerbawa {
        margin: 20vh 0; /* margin lebih kecil untuk HP */
    }
}
.clients-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Supaya h2 dan logos tetap sejajar di atas */
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;

}

.clients-title {
    flex: 1 1 60%; /* Atur lebar sesuai kebutuhan agar teks panjang tidak mempengaruhi posisi .clients-logos-top */

    max-width: 600px; /* opsional: batasi lebar agar tidak terlalu lebar */
}
.clients-logos-top {
    display: flex;
    flex-direction: row; /* ini default, bisa dihilangkan juga */
    align-items: center; /* rata tengah vertikal */
    justify-content: flex-end; /* rata kanan */
    gap: 70px; /* jarak antar teks */
}
.clients-logos-top {
    align-self: flex-start;
}

.clients-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.clients-subtext {
    flex: 1 1 300px;
}

.clients-subtext p {
    font-size: 16px;
    line-height: 1.6;
    margin: 5px 0;
}

.clients-subtext .subtext {
    margin-top: 10px;
    color: #ddd;
    font-size: 14px;
}

.clients-logos-grid {
    flex: 2 1 600px;
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* Selalu 4 kolom */
    gap: 20px; /* Gap antara logo */
}


.logo-item {
    background-color: #191919;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-item img {
    max-width: 130px; /* Lebih besar dari sebelumnya */
    height: auto;
    object-fit: contain;
}



.clients-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
    margin-top: 30vh; /* Tambahkan ini */
}
.clients-number {
    font-size: 0.9em;      /* kecilkan ukuran */
    vertical-align: super; /* naik ke atas */
    margin-right: 6px;     /* jarak kanan antara angka dan teks */
    font-weight: bold;     /* biar angka tetap tegas */
    color: #555;           /* opsional, warna abu-abu agar beda */
}

@media (max-width: 768px) {
    .clients-logos-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 logo per baris di layar kecil */
    }
}
