#home {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#home img {
    /* width: 100%; */
    /* height: auto; */
    display: block;
}

.card-welcome {
    background-color: white;
    border: none;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s;
}

.card-welcome:hover {
    transform: scale(1.02);
}

.welcome-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.btn-logout {
    background-color: #ff4d4f;
    border: none;
}

.btn-logout:hover {
    background-color: #d9363e;
}

.harga-container {
    text-align: center;
    width: 100%;
}

.diskon {
    background: #2c974b;
    color: white;
    font-size: 14px;
    font-weight: bold;
    padding: 3px 8px;
    border-radius: 5px;
    display: inline-block;
}

.toggle-password {
    width: 1.5rem;   /* kasih ukuran tetap */
    text-align: center;
    cursor: pointer;
}

.harga-asli {
    color: red;
    text-decoration: line-through;
    font-size: 16px;
}

.harga-diskon {
    color: green;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 4px;
}

/* Styling untuk tab */
.custom-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
    border: none;
}

.custom-tabs .nav-link {
    background: #232385;
    color: white;
    border: 2px solid white;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    font-weight: bold;
}

.custom-tabs .nav-link:hover {
    background: white;  
    border: 2px solid white;
    color: black;
}

.custom-tabs .nav-link.active {
    background: white;
    color: black;
    border: 2px solid white;
    font-weight: bold;
}

.tab-content .card{
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.img-card-package-home{
    height: 250px;
}

.bg-testimoni {
    background: white;
    font-family: Arial, sans-serif;
    border-radius: 1rem;
}

.testimonial-box::before {
    content: "“";
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.3);
    position: absolute;
    top: 5px;
    left: 10px;
}
.testimonial-box::after {
    content: "”";
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.3);
    position: absolute;
    bottom: 5px;
    right: 10px;
}
.profile-img {
    width: 100px !important;
    height: 100px !important;
    border-radius: 50%;
    border: 3px solid #868686;
    object-fit: contain;
    background: white;
    position: absolute;
    right: 0;
    top : -53px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.star {
    color: gold;
    font-size: 1.3rem;
}
.badge-header {
    background: #0d6efd;
    font-size: 1.3rem;
    padding: 0.6rem 1.2rem;
    border-radius: 0.4rem;
    font-weight: bold;
}
.badge-sub {
    background: #e9ecef;
    color: #0d6efd;
    padding: 0.5rem 1rem;
    border-radius: 0.4rem;
    font-size: 0.9rem;
}

/* .testimoni-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    position: relative;
    color: black;
}
.profile-pic {
    object-fit: contain;
    margin-bottom: 10px;
    width:150px !important;
    height: 150px;
    border: 2px solid #b98e12;
}
.rating {
    color: #FFD700;
    font-size: 20px;
    margin: 10px 0;
}
.owl-carousel .item {
    display: flex;
    justify-content: center;
    align-items: center;
} */

#loadingOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1050; /* di atas modal */
}

.overlay-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    pointer-events: auto;
}

.overlay-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.section-title {
    margin-bottom: 30px;
}

/* Judul */
.section-title .title {
    font-size: 3rem; /* besar */
    font-weight: 800;
    background: linear-gradient(90deg, #0d6efd, #6610f2); /* gradasi biru ke ungu */
    -webkit-background-clip: text;
    letter-spacing: 1px;
}

/* Sub Judul */
.section-title .subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: #f8f9fa; /* putih lembut */
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}