General Styles
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    font-size: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    text-align: center;
    text-decoration: none;
}

#btn-brosur{
    border-radius: 15px;
    background-color: #003355;
    color: white;
}

#card-mobil{
    border-radius: 20px;
    font-family: "Montserrat";
}

.carousel-headers img {
    height: auto;
    max-height: 75vh;
    object-fit: cover;
    aspect-ratio: 16/9;
}

@media (max-width: 768px) {
    .carousel-item img {
        height: 300px; /* Atur tinggi gambar lebih kecil untuk perangkat kecil */
    }
    .carousel-content h2 {
        font-size: 1.5rem; /* Perkecil ukuran font heading */
    }
    .carousel-content p {
        font-size: 0.875rem; /* Perkecil ukuran font paragraf */
    }
    .carousel-content {
        padding: 10px; /* Kurangi padding pada layar kecil */
    }
}




#btn-cta{
    background-color: #25D366;
}

.testimonial-image{
    max-width: 600px;
    max-height: 600px;
}

.card {
    height: 100%; /* Membuat kartu memenuhi seluruh tinggi kolom */
    top: 0px;
    display: flex;
    flex-direction: column;
    transition-duration: 0.3s;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.card:hover{
    top: -10px;
}
  
  .card-img-top {
    max-height: 350px; /* Tetapkan tinggi gambar tetap */
    object-fit: cover; /* Gambar memenuhi area tanpa merubah proporsi */
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }
  
  .card-body {
    flex: 1; /* Membuat isi kartu fleksibel untuk memenuhi ruang yang tersedia */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Memastikan tombol berada di bawah */
  }
  
body {
    font-family: "Montserrat", sans-serif;
    line-height: 1.6;
}

header {
    background-color: #003355;
    color: #000000;
    padding: 10px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000; /* Memastikan header berada di atas elemen lain */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Opsional: menambahkan bayangan agar header terlihat lebih baik */
}


.container-testimoni{
    margin-bottom: 50px;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

header nav ul {
    list-style: none;
}

header nav ul li {
    display: inline;
    margin: 0 10px;
}

header nav ul li a {
    color: #ffffff;
    text-decoration: none;
}

footer {
    background-color: #333; /* Warna latar belakang footer */
    color: white; /* Warna teks footer */
    padding: 20px 0; /* Menambahkan padding untuk memberikan ruang di dalam footer */
}

footer h1 {
    color: #ff5722; /* Mengubah warna teks h1 (misalnya warna oranye untuk whatsapp) */
    font-size: 1.5em; /* Ukuran font lebih besar untuk h1 */
}

footer p {
    font-size: 1em; /* Ukuran font normal untuk teks hak cipta */
}

.hero {
    /* background: url('../../src/img/baleno.png') no-repeat center center/cover; */
    /* background-color: wheat; */
    color: #000000;
    text-align: center;
    padding: 100px 20px;
}

.hero h2 {
    font-size: 2.5rem;
}

.cta {
    text-align: center;
    padding: 20px;
    background-color: #f9f9f9; /* Sesuaikan warna background */
}

.cta h2 {
    margin-bottom: 10px;
}

.cta p {
    margin-bottom: 20px;
}

.cta-btn {
    display: inline-block;
    margin-bottom: 20px; /* Tambahkan margin bawah agar ada jarak dengan gambar */
    padding: 10px 20px;
    background-color: #25D366;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
    transition: background 0.3s ease;
}

.cta-btn:hover {
    background-color: #1aa94b;
    content: "oke";
}

.cta-img {
    max-width: 100%;
    height: auto;
    margin-top: 20px; /* Tambahkan jarak atas */
    border-radius: 10px; /* Opsional: tambahkan border-radius untuk gaya */
}


.features, .specs, .testimonials, .cta {
    /* max-width: 1200px; */
    margin: auto;
    padding: 20px;
    text-align: center;
}

.feature-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.feature {
    width: 30%;
    margin: 10px 0;
}

.testimonials .testimonial {
    margin: 20px 0;
    padding: 50px;
}

.testimonials{
    min-height: 300px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .feature-list {
        flex-direction: column;
    }
    
    .feature {
        width: 100%;
    }

    .hero h2 {
        font-size: 2rem;
    }
}

/* Hamburger style for mobile */
.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Default menu styling */
header nav ul {
    list-style: none;
    display: flex;
}

/* Responsive navigation */
@media (max-width: 768px) {
    .hamburger {
        display: block;
        color: #000000;
    }

    #nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 20px;
        background-color: #ffffff;
        border-radius: 5px;
        width: 200px;
        padding: 10px;
    }

    #nav-links li {
        margin: 10px 0;
        text-align: center;
    }

    #nav-links li a {
        color: #000000;
        text-decoration: none;
    }
}