.top-header,
.main-header {
    background-color: #ffffff;
    color: #004d73;
    border-bottom: 1px solid #e0e0e0;
    /* Border tipis */
}

.top-header {
    padding: 5px 20px;
    font-size: 14px;
}

.top-header .contact-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.carousel-caption-left {
    position: absolute;
    top: 55%;
    left: 9%;
    transform: translateY(-55%);
    text-align: left;
    color: white;
    max-width: 50%;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.carousel-caption-left h5 {
    font-size: 3rem;
    /* Jumbotron-sized heading */
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.carousel-caption-left p {
    font-size: 1.5rem;
    /* Larger paragraph text */
    margin-bottom: 1.5rem;
}

.carousel-caption-left .btn-read-more {
    font-size: 1.15rem;
    padding: 0.55rem 1.2rem;
    color: #012d3f;
    background-color: #ffffff;
    /* Bootstrap primary color */
    border: none;
    text-decoration: none;
    border-radius: 0.75rem;
}

.carousel-caption-left .btn-read-more2 {
    font-size: 1.15rem;
    padding: 0.55rem 1.2rem;
    color: #ffffff;
    background-color: #021e38;
    /* Bootstrap primary color */
    border: none;
    text-decoration: none;
    border-radius: 0.75rem;
}

.carousel-caption-left .btn-read-more:hover {
    background-color: #0594b8;
    /* Darker shade on hover */
}

.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    top: 50%;
    /* Menempatkan tombol di tengah */
    transform: translateY(-50%);
    /* Memindahkan tombol ke tengah secara vertikal */
    margin: 0 18px;
    /* Memberikan jarak di kanan dan kiri */
}

#penghargaanCarousel {
    overflow: hidden; /* Prevent overflow of the carousel */
}

.section-title {
    text-align: center;
    font-size: 24px;
    margin: 40px 0 20px;
    font-weight: bold;
}

.section-title-page {
    text-align: center;
    font-size: 26px;
    margin: 40px 0 20px;
    font-weight: bold;
}

.container-padding {
    padding: 20px;
}

.card {
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card-title-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    /* Adjust shadow values as needed */
}

.card-berita {
    border-radius: 15px;

    /* Adjust radius as needed */
    overflow: hidden;
    /* Ensures image and content follow the card's rounded corners */
}

@media (max-width: 768px) {
    .card-berita {
        border-radius: 15px;
        /* Adjust radius as needed */
        overflow: hidden;
        margin-left: 15px;
        margin-right: 15px;
        margin-top: 20px;
        /* Ensures image and content follow the card's rounded corners */
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 18px;
    }
}

.badge-custom {
    font-size: 0.8rem;
    /* Increases font size */
    padding: 6px 12px;
    /* Adjust padding for larger appearance */
    border-radius: 10px;
    /* Adjusts rounded corners */
}

@media (max-width: 768px) {
    .carousel-item img {
        width: 100%;
        /* Memastikan gambar memenuhi lebar */
        height: auto;
        /* Mengatur tinggi otomatis */
        object-fit: cover;
        /* Memotong gambar agar tetap terfokus */
        object-position: 75% center;
        /* Fokus pada 90% dari kanan */
        height: 300px;
        /* Mengatur tinggi maksimal jika diperlukan */
    }
}

.custom-btn {
    color: dark;
    padding: 5px 10px;
    /* Reduced padding */
    border: none;
    border-radius: 5px;
    font-size: 0.875rem;
    /* Small font size */
    transition: background-color 0.3s, color 0.3s;
}

.custom-border-button {
    border: 1px solid #024e96;
    background-color: transparent;
    color: #024e96;
    padding: 5px 10px;
    /* Reduced padding */
    font-size: 0.875rem;
    /* Small font size */
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.custom-border-button:hover {
    background: linear-gradient(45deg, #30aa5f, #024e96);
    /* Gradient from green to blue */
    color: #fff;
    /* Text color on hover */
}

.separator {
    width: 1px;
    background-color: #ccc;
    /* Warna garis vertikal */
    height: 30px;
    /* Tinggi garis */
    margin: auto;
    /* Margin untuk memisahkan */
}

@media (max-width: 768px) {
    .custom-btn {
        border-bottom: 1px solid #d3d3d3;
        /* Menambahkan border bawah */
        padding-bottom: 12px;
        /* Memberikan padding bawah */
        border-radius: 0;
        /* Menghilangkan border radius */
    }

    /* Menghilangkan border untuk tombol terakhir */
    .custom-btn:last-child {
        border-bottom: 1px solid #d3d3d3 !important;
    }
}

@media (max-width: 767px) {
    .responsive-border {
        display: none;
    }
}

/* Separator untuk desktop */
.separator {
    position: absolute;
    top: 10%;
    left: 100%;
    /* Posisi di sebelah kanan tombol */
    width: 1px;
    height: 40px;
    /* Atur tinggi sesuai kebutuhan */
    background-color: #d3d3d3;
    /* Warna border */
    display: none;
    /* Hide by default */
}

/* Menampilkan separator pada desktop */
@media (min-width: 768px) {
    .separator {
        display: block;
        /* Tampilkan pada desktop */
    }
}

/* Menghide border pada smartphone */
@media (max-width: 767px) {
    .separator {
        display: none;
        /* Hide on smartphone */
    }
}

.custom-card {
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 20px;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 275px;
    /* Atur tinggi minimum sesuai kebutuhan */
}

.custom-card2 {
    border: 1px solid #ccc;
    border-radius: 20px;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: left;
    text-align: center;
    min-height: 175px;
    /* Atur tinggi minimum sesuai kebutuhan */
}

.custom-card-general {
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 20px;
    background-color: white;
    display: flex;
    flex-direction: column;

    min-height: 275px;
    /* Atur tinggi minimum sesuai kebutuhan */
}

/* Menghide border pada smartphone */
@media (max-width: 767px) {
    .custom-card {
        padding: 20px;
        margin-left: 20px;
        margin-right: 20px;
        border: 1px solid #ccc;
        border-radius: 20px;
        background-color: white;
        display: flex;
        flex-direction: column;
        align-items: left;
        text-align: left;
        min-height: 265px;
        /* Atur tinggi minimum sesuai kebutuhan */
    }

    .custom-card-general {
        padding: 10px;
        margin-left: 10px;
        margin-right: 10px;
        border: 1px solid #ccc;
        border-radius: 20px;
        background-color: white;
        display: flex;
        flex-direction: column;

        min-height: 265px;
        /* Atur tinggi minimum sesuai kebutuhan */
    }
}

.custom-card-product {
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 20px;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 300px;
    /* Atur tinggi minimum sesuai kebutuhan */
}

/* Menghide border pada smartphone */
@media (max-width: 767px) {
    .custom-card-product {
        padding: 20px;
        border: 1px solid #ccc;
        border-radius: 20px;
        background-color: white;
        display: flex;
        flex-direction: column;
        align-items: left;
        text-align: left;
        min-height: 200px;
        /* Atur tinggi minimum sesuai kebutuhan */
    }
}

.custom-card:hover {
    transform: scale(1.03);
    /* Efek zoom */
    border-color: #024e96;
    /* Warna border saat hover */
}

.card-content {
    padding: 20px;
    /* Padding dalam kartu */
}

/* Menghide border pada smartphone */
@media (max-width: 767px) {
    .custom-card-product {
        padding: 20px;
        border: 1px solid #ccc;
        border-radius: 20px;
        background-color: white;
        display: flex;
        flex-direction: column;
        align-items: left;
        text-align: left;
        min-height: 200px;
        /* Atur tinggi minimum sesuai kebutuhan */
    }
}

.icon {
    width: 60px;
    /* Ukuran icon */
    height: 60px;
    /* Ukuran icon */
    margin-bottom: 10px;
    /* Jarak antara icon dan teks */
}

.card-title {
    font-weight: bold;
    /* Tebal untuk judul */
    color: #024e96;
    /* Warna judul */
    margin-top: 10px;
    /* Jarak atas judul */
}

.card-text {
    color: #555;
    /* Warna teks */
}

.bg-profile {
    background-color: #e5e5f7;
    opacity: 0.2;
    background-image: repeating-radial-gradient(
            circle at 0 0,
            transparent 0,
            #e5e5f7 4px
        ),
        repeating-linear-gradient(#024e9655, #024e96);
    z-index: 1;
}

.profile-content {
    position: relative;
    z-index: 2;
    /* Ensure text is above the background */
}

.social-buttons {
    display: flex;
    gap: 8px;
    /* Adjust spacing between buttons */
}

.social-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #ffffff;
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-btn:hover {
    background: linear-gradient(45deg, #30aa5f, #024e96);
    color: #fff;
}

.btn-whatsapp:hover {
    border-color: #25d366;
}

.btn-instagram:hover {
    border-color: #e1306c;
}

.btn-youtube:hover {
    border-color: #ff0000;
}

.btn-email:hover {
    border-color: #0072c6;
}

.position-back {
    z-index: 1; /* Menempatkan tombol di atas elemen lain */
}
/* WhatsApp Floating Button */
.whatsapp-container {
    position: fixed;
    z-index: 1100; /* Menempatkan tombol di atas elemen lain */
    bottom: 20px; /* Jarak dari bawah */
    right: 20px; /* Jarak dari kanan */
    display: flex;
    flex-direction: column; /* Mengatur arah kolom */
    align-items: flex-end; /* Mengatur item ke kanan */
}

.whatsapp-btn {
    background-color: #0c996f; /* Warna latar belakang WhatsApp */
    color: #fff; /* Warna ikon */
    border-radius: 50%; /* Membuat tombol menjadi bulat */
    width: 60px; /* Ukuran tombol */
    height: 60px; /* Ukuran tombol */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Efek bayangan */

    text-decoration: none; /* Menghilangkan garis bawah pada link */
    font-size: 24px; /* Ukuran ikon */
    position: relative; /* Posisi relatif untuk menu melayang */
    cursor: pointer; /* Menunjukkan bahwa ini adalah elemen yang dapat diklik */
}

/* Menu melayang */
.whatsapp-menu {
    display: none; /* Menyembunyikan menu secara default */
    position: absolute;
    bottom: 70px; /* Jarak dari tombol */
    right: 0;
    background-color: #fff; /* Warna latar belakang menu */
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); /* Bayangan */
    z-index: 2000; /* Menempatkan menu di atas elemen lain */
    width: 350px; /* Lebar menu, ubah sesuai kebutuhan */
}

.whatsapp-menu h5 {
    margin: 0; /* Menghilangkan margin default */
    padding: 10px; /* Jarak dalam judul */
    background-color: #0c996f; /* Warna latar belakang judul */
    color: #fff; /* Warna teks judul */
    text-align: center; /* Pusatkan teks */
    border-top-left-radius: 4px; /* Membuat sudut bulat */
    border-top-right-radius: 4px; /* Membuat sudut bulat */
}

.whatsapp-menu ul {
    list-style-type: none; /* Menghilangkan bullet points default */
    padding: 0; /* Menghilangkan padding */
    margin: 0; /* Menghilangkan margin */
}

.whatsapp-menu li {
    padding: 10px; /* Jarak dalam setiap item */
    display: flex; /* Menampilkan item sebagai flex */
    align-items: center; /* Menjajarkan ikon dan teks */
    cursor: pointer; /* Menunjukkan bahwa ini adalah elemen yang dapat diklik */
}

/* Menambahkan bullet */
.whatsapp-menu li:before {
    content: "•"; /* Bullet */
    color: #0c996f; /* Warna bullet */
    margin-right: 8px; /* Jarak antara bullet dan teks */
    font-size: 16px; /* Ukuran bullet */
}

/* Pembatas antara item */
.whatsapp-menu li:not(:last-child) {
    border-bottom: 1px solid #ddd; /* Pembatas tipis */
}

.whatsapp-menu li:hover {
    background-color: #f0f0f0; /* Efek hover pada item menu */
}

.whatsapp-menu a {
    text-decoration: none; /* Menghilangkan garis bawah pada link */
    color: #333; /* Warna teks */
    flex: 1; /* Mengisi ruang yang tersisa */
}

/* Accordion Style */
.submenu {
    display: none; /* Menyembunyikan submenu secara default */
    padding-left: 20px; /* Memberi jarak untuk submenu */
    background-color: #f9f5e8; /* Warna krem untuk latar belakang submenu */
    border-left: 4px solid #0c996f; /* Garis batas kiri submenu */
    margin: 0; /* Menghilangkan margin */
}

.submenu li {
    padding: 8px 0; /* Jarak antar item submenu */
}

.submenu li:before {
    content: "•"; /* Bullet untuk submenu */
    color: #0c996f; /* Warna bullet */
    margin-right: 15px; /* Jarak antara bullet dan teks */
    margin-left: 30px; /* Jarak dari tepi kiri */
    font-size: 14px; /* Ukuran bullet submenu */
}

.custom-heading {
    font-weight: bold; /* Teks tebal */
    color: rgb(2, 11, 139); /* Warna teks biru */
}

.custom-bullet {
    list-style-type: none; /* Hilangkan bullet standar */
    padding-left: 0; /* Hilangkan padding bawaan */
}

.custom-bullet li {
    display: flex;
    align-items: center;
    padding: 3px 0; /* Jarak antar item */
    border-bottom: 1px dashed #ccc; /* Divider garis putus-putus */
}

.custom-bullet li:last-child {
    border-bottom: none; /* Hilangkan divider di item terakhir */
}

.custom-bullet li::before {
    content: "▪"; /* Ganti bullet dengan ikon */
    color: #033d7a; /* Warna ikon */
    margin-right: 10px; /* Jarak ikon dari teks */
    font-size: 1.2em;
}

.custom-bullet2 li {    
    border-bottom: 1px dashed #ccc; /* Divider garis putus-putus */
}

.custom-bullet2 {
    list-style-type: none; /* Hilangkan bullet standar */    
    content: "▪"; /* Ganti bullet dengan ikon */
    margin-right: 10px; /* Jarak ikon dari teks */
    font-size: 1rem;
}

.custom-ol {
    padding-left: 5px; /* Atur indentasi pada daftar */
}

.custom-ol li {
    margin-bottom: 0.8rem; /* Jarak bawah antara item daftar */
}


/* Mengubah simbol bullet menjadi checklist */
ul.benefit-list {
    list-style-type: none; /* Menyembunyikan bullet standar */
    padding-left: 0; /* Menghapus padding kiri */
}

ul.benefit-list li {
    position: relative;
    padding-left: 30px; /* Memberi ruang untuk ikon */
    font-size: 16px; /* Sesuaikan ukuran teks */
}

ul.benefit-list li::before {
    content: "\f00c"; /* Menampilkan icon checklist dari Font Awesome */
    font-family: "Font Awesome 5 Free"; /* Menentukan font yang digunakan */
    font-weight: 900; /* Membuat ikon lebih tebal */
    position: absolute;
    left: 0;
    top: 0;
    color: rgb(7, 109, 177); /* Warna hijau untuk checklist */
}
