.show-product-button {
    background-color: #4A90E2;
    /* Background color */
    color: white;
    /* Text color */
    padding: 10px 20px;
    /* Padding */
    font-size: 16px;
    /* Font size */
    border: none;
    /* Remove border */
    border-radius: 5px;
    /* Rounded corners */
    cursor: pointer;
    /* Pointer cursor on hover */
    position: relative;
    /* Position relative for layout */
    margin-top: 40px;
    /* Space above the button */
    transition: background-color 0.3s;
    /* Transition effect */
}

.show-product-button:hover {
    background-color: #2C7BE5;
    /* Darker background on hover */
}




/* Konten Gambar dan Teks */
.content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.content-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 10;
}

.content-text h1 {
    font-size: 50px;
    color: rgb(224, 227, 4);
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    /* Efek bayangan hitam */
}

.content-text p {
    font-size: 30px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    /* Efek bayangan hitam */


}

.content-image {
    width: 100%;
    height: 80vh;
    /* Menambahkan tinggi pada gambar */
    overflow: hidden;
    /* Agar tidak terpotong */
    position: relative;
}

.content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Agar gambar tidak terdistorsi */
    object-position: center;
    /* Memastikan gambar tetap terpusat */
}

/* Responsif untuk Gambar */
@media (max-width: 768px) {
    .content-text h1 {
        font-size: 45px;
        color: rgb(224, 227, 4);
        text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
        /* Efek bayangan hitam */
    }


    .content-text p {
        font-size: 16px;
    }

    .content-image {
        height: 80vh;
        /* Menambahkan lebih banyak tinggi pada gambar di mobile */
    }

    .content-image img {
        object-fit: cover;
        object-position: center;
    }
}

/* Section untuk gambar */
.image-scroll-section {
    text-align: center;
    margin-top: 50px;
}

.image-scroll-wrapper {
    position: relative;
    width: 72%;
    /* Menggunakan lebar lebih kecil pada perangkat mobile */
    margin: 0 auto;
    overflow: hidden;
    /* Menghentikan gambar lainnya agar tidak terlihat */
}

.image-scroll-container {
    display: flex;
    transition: transform 0.2s ease;
    /* Efek transisi halus */
}

.image-card {
    flex: 0 0 100%;
    /* Menampilkan 1 gambar per waktu */
    padding: 10px;
}

.image-card img {
    object-fit: cover;
    width: 100vh;
    height: 100vh;
    /* border-radius: 30px; */

}

button {
    position: absolute;
    top: 50%;
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 30px;
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transform: translateY(-50%);
}

.scroll-left {
    left: 10px;
}

.scroll-right {
    right: 10px;
}

/* Styling hover untuk tombol */
button:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* Responsif untuk perangkat dengan lebar maksimal 768px (Mobile) */
@media (max-width: 768px) {
    .image-scroll-wrapper {
        width: 100%;
        /* Memastikan lebar kontainer 100% di mobile */
    }

    .image-card img {
        width: 100%;
        height: 60vh;
        /* Menyesuaikan tinggi gambar di perangkat mobile */

        /* Menjaga gambar agar tidak terdistorsi */
    }

    button {
        font-size: 25px;
        /* Mengurangi ukuran tombol di perangkat kecil */
        padding: 8px;
    }
}

/* pastikan gambar yang di upload ukuran 4:5 */
/* Card styling untuk tiap gambar */
.image-card {
    position: relative;
    flex: 0 0 100%;
    padding: 10px;
}

.card {
    position: relative;
    width: 100%;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* border-radius: 30px; */
}

.card-content {
    position: absolute;
    bottom: 30px;
    /* Menempatkan teks di bagian bawah */
    left: 60px;
    right: 60px;
    background-color: rgba(0, 0, 0, 0.6);
    /* Semi-transparan hitam */
    color: white;
    padding: 15px;
    border-radius: 10px;
}

.card-content h2 {
    font-size: 25px;
    margin: 0;
    color: burlywood;

}

.card-content p {
    font-size: 15px;
}

/* Responsif di perangkat mobile */
@media (max-width: 768px) {
    .card-content {
        top: 90px;
    }

    .card-content h2 {
        font-size: 12px;
        text-align: left;
        color: burlywood;
    }

    .card-content p {
        font-size: 7px;
        text-align: left;
        margin-top: 5px;
    }

}

/* Styling untuk Konten Baru */
.new-content {
    background-color: #f0f0f0;
    /* Warna abu-abu */
    padding: 50px 20px;
    margin-top: 50px;
    /* Memberikan jarak dari konten kedua */
}

.new-content-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Deskripsi di Kiri */
.description {
    flex: 1;
    padding-right: 50px;
}

.description h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 20px;
}

.description p {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
}

/* Gambar Scroll di Kanan */
.new-image-scroll-section {
    flex: 1;
    position: relative;
}

.new-image-scroll-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.new-image-scroll-container {
    display: flex;
    transition: transform 0.3s ease;
}

.new-image-card {
    flex: 0 0 100%;
    /* Setiap card mengambil 100% lebar container */
    padding: 10px;
    box-sizing: border-box;
    /* Memastikan padding tidak memengaruhi lebar */
    overflow: hidden;
    /* Memastikan gambar tidak meluber */
    border-radius: 10px;
    /* Optional: Untuk sudut yang melengkung */
}

.new-image-card img {
    width: 100%;
    /* Gambar mengisi lebar card */
    height: 100%;
    /* Gambar mengisi tinggi card */
    object-fit: cover;
    /* Gambar akan menutupi area tanpa distorsi */
    object-position: center;
    /* Memastikan gambar tetap terpusat */
    border-radius: 10px;
    /* Optional: Untuk sudut yang melengkung */
}

.new-scroll-left,
.new-scroll-right {
    position: absolute;
    top: 50%;
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 30px;
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transform: translateY(-50%);
}

.new-scroll-left {
    left: 10px;
}

.new-scroll-right {
    right: 10px;
}

.new-scroll-left:hover,
.new-scroll-right:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* Responsif untuk Perangkat Mobile */
@media (max-width: 768px) {
    .new-content-container {
        flex-direction: column;
    }

    .description {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .description h2 {
        font-size: 24px;
    }

    .description p {
        font-size: 16px;
    }

    .new-image-card img {
        height: auto;
    }
}


.custom-image-scroll-section {
    height: 600px;
    /* Tinggi tetap, sesuaikan dengan kebutuhan */
    padding: 20px;
    text-align: center;
}

.custom-image-scroll-wrapper {
    overflow-x: auto;
    /* Tetap memungkinkan scroll */
    white-space: nowrap;
    scrollbar-width: none;
    /* Untuk Firefox */
}

.custom-image-scroll-wrapper::-webkit-scrollbar {
    display: none;
    /* Untuk Chrome, Safari, dan Edge */
}

.custom-image-scroll-container {
    display: inline-flex;
    gap: 20px;
    /* Jarak antar card lebih lebar */
}

.brand-card {
    flex: 0 0 auto;
    width: 360px;
    /* Lebar card diperbesar */
    height: 360px;
    /* Tinggi card diperbesar */
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    background-color: #f0f0f0;
    /* Tambahkan warna latar belakang jika diperlukan */
}

.brand-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Agar gambar menutupi seluruh card tanpa merusak rasio aspek */
}

.card-body {
    padding: 10px;
    text-align: center;
}

.card-title {
    font-size: 18px;
    /* Menambah ukuran font untuk judul */
    margin: 10px 0;
}

.brand-description {
    margin-top: 30px;
    /* Jarak antara judul dan deskripsi */
    margin-bottom: 40px;
    /* Jarak antara deskripsi dan gambar */
    font-size: 14px;
    /* Ukuran font deskripsi */
    color: #555;
    /* Warna teks deskripsi */
}

/* CSS untuk section client */
#section4 .custom-image-scroll-section {
    height: 600px;
    /* Tinggi tetap, sesuaikan dengan kebutuhan */
    padding: 20px;
    text-align: center;
    margin-top: 80px;
    padding-bottom: 80px; /* Gunakan padding sebagai ganti margin */
    /* border: 1px solid black; Tambahkan border untuk visualisasi */


    /* Tambahkan margin-top untuk memberikan jarak */
}

.contact-section {
    margin-top: 50px;
    /* border: 1px solid red; Tambahkan border untuk visualisasi */

}

#section4 .custom-image-scroll-wrapper {
    overflow-x: auto;
    /* Tetap memungkinkan scroll */
    white-space: nowrap;
    scrollbar-width: none;
    /* Untuk Firefox */
}

#section4 .custom-image-scroll-wrapper::-webkit-scrollbar {
    display: none;
    /* Untuk Chrome, Safari, dan Edge */
}

#section4 .custom-image-scroll-container {
    display: inline-flex;
    gap: 20px;
    /* Jarak antar card lebih lebar */
}

#section4 .client-card {
    flex: 0 0 auto;
    width: 360px;
    /* Lebar card diperbesar */
    height: 360px;
    /* Tinggi card diperbesar */
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    background-color: #f0f0f0;
    /* Tambahkan warna latar belakang jika diperlukan */
}

#section4 .client-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Agar gambar menutupi seluruh card tanpa merusak rasio aspek */
}

#section4 .card-body {
    padding: 10px;
    text-align: center;
}

#section4 .card-title {
    font-size: 18px;
    /* Menambah ukuran font untuk judul */
    margin: 10px 0;
}

#section4 .brand-description {
    margin-top: 30px;
    /* Jarak antara judul dan deskripsi */
    margin-bottom: 40px;
    /* Jarak antara deskripsi dan gambar */
    font-size: 14px;
    /* Ukuran font deskripsi */
    color: #555;
    /* Warna teks deskripsi */
}



/* Maps di Kanan */
.contact-maps {
    flex: 1;
    background-color: #f0f0f0;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-maps h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

.contact-maps iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 10px;
}

/* Styling untuk Konten Tentang Kami (Card) */
.contact-info {
    flex: 1;
    background-color: #f0f0f0;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-info h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.contact-info p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.contact-info .social-media {
    margin-top: 20px;
}

.contact-info .social-icons {
    display: flex;
    gap: 10px;
}

.contact-info .social-icon img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: transform 0.3s;
}

.contact-info .social-icon img:hover {
    transform: scale(1.1);
}

/* Default Layout (Desktop or Laptop) */
.contact-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.contact-info,
.contact-maps {
    flex: 1;
    /* Membuat elemen memiliki lebar yang seimbang */
}

/* Responsif untuk Perangkat Mobile */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        /* Ubah ke tata letak kolom di mobile */
    }

    .contact-info,
    .contact-maps {
        flex: 1 1 100%;
        /* Ambil lebar penuh di mobile */
    }

    .contact-maps {
        order: 1;
        /* "Lokasi" di atas */
    }

    .contact-info {
        order: 2;
        /* "Tentang Kami" di bawah */
    }
}

/* Styling untuk Footer */
.footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 50px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer p {
    margin: 0;
    font-size: 14px;
}

/* Judul "Contact Kita" */
.contact-title {
    text-align: center;
    font-size: 32px;
    color: #3c3d3eb0;
    margin-bottom: 30px;
    width: 100%;
}

