.card-container {
    width: 320px;
    padding: 24px;
    background-color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    text-align: center;
    position: relative;
}

.icon-wrapper {
    width: 64px;
    height: 64px;
    /* border: 1.5px solid #DA3636; */
    background-color: #fff;
    border-radius: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -32px;
    /* Mengangkat setengah ikon di luar card */
    left: 50%;
    transform: translateX(-50%);
}

.icon {
    width: 120%;
    /* height: 60px; */
}

.card-title {
    margin-top: 40px;
    /* Memberi ruang tambahan karena ikon naik ke luar kartu */
    font-size: 20px;
    font-weight: 600;
    color: #dc2626;
}

.divider {
    width: 100%;
    margin: 8px 0;
    border: 0.5px solid #d1d5db;
}

.card-text {
    font-size: 14px;
    color: #4b5563;
}

/* Ubah warna baris ganjil (opsional) */
.table-striped tbody tr:nth-of-type(odd) {
    background-color: #FEF6F6 !important; /* Abu-abu muda */
}

/* Custom Style */
.modal-content {
    border-radius: 15px;
    padding: 20px;
    text-align: center; /* Semua teks di tengah */
}
.modal-header {
    /* border-bottom: none; */
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
.modal-header h3 {
    font-weight: 500;
}
.modal-header hr {
    width: 100%; /* Garis sepanjang modal */
    border: 0;
    height: 1px;
    background-color: #ddd;
    margin-top: 5px;
}

/* Style untuk layanan */
.service-option {
    text-align: center;
    cursor: pointer;
    padding: 15px;
    border-radius: 10px;
    transition: 0.3s;
}
.service-option:hover {
    background-color: #f8f9fa;
}

/* Ikon layanan di tengah */
.service-icon {
    width: 60px;
    height: 60px;
    /* border: 2px solid red; */
    border-radius: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 10px;
}

.service-title {
    font-weight: bold;
    color: #dc3545; /* Merah */
}

.swiper {
    width: 100%;
    height: 100%;
}
.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    /* background: #ddd; */
    font-size: 20px;
    font-weight: bold;
}