body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}
.bg-gray-50 {
    background-color: #F9FAFB;
}
.btn-link {
    color: #7F56D9 !important;
}
.btn-full {
    width: 100%;
}
.btn-primary {
    color: #fff !important;
    border-color: #7F56D9 !important;
    background-color: #7F56D9 !important;
}
.btn-link svg {
    width: 24px;
    fill: #7F56D9;
    margin-left: 6px;
}
.table-data {
    text-align: left;
    margin-left: auto;  
    margin-right: auto;  
    border-collapse: collapse;    
    width: 293px;
    padding: 10px 10px;
}

header {
    background-color: #fff;
    color: #333;
    padding: 10px;
}
.nav .nav-item a {
    color: #101828;
}
.nav .nav-item a:hover {
    color: #7F56D9;
}
.nav .nav-item.active a {
    color: #7F56D9;
}
.navbar {
    top: 0%;
    text-align: center;
    justify-content: space-between;
    display: flex;
    align-items: center;
    margin-left: 10px;
}

.payment-form-section {
    align-items: center;
}

.logo {
    width: 40px;
}

.banner {
    text-align: center;
}
.banner .banner-link {
    display: block;
}
.banner img {
    width: 100%;
}
.banner .m-banner {
    display: none;
}
.heroes {
    padding: 4rem 0;
}
.heroes p {
    color: #667085;
}
.heroes .lead {
    margin: 0;
}
.card {
    border: 1px solid #EAECF0 !important;
}
.card .card-body {
    padding: 1.6rem;
}
.card-body-custom {
    padding: 1.6rem;
    font-size: 12px;
}
.card-title {
    font-weight: bold;
}
#packages-list {
    text-align: center;
    display: flex;
}

.packages {
    text-align: center;
    padding: 10px;
    display: inline-grid;
}
.image-link img {
    width: 182px;
}

.package-card {
    float: right;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 20px;
    margin: 20px;
    max-width: 300px;
    background-color: #f9f9f9;
    transition: background-color 0.3s ease;
}

.package-card:hover {
    background-color: #eaeaea;
}

.package-name {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.price, .validity, .main-quota {
    font-size: 16px;
    margin: 5px 0;
}
.feature-list {
    margin: 20px 0;
    padding: 0;
}
.feature-list li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    list-style: none;
    padding: 6px 0;
    color: #667085;
}

footer {
    text-align: center;
    padding: 10px;
}
footer small {
    color: black;
}

.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%; /* Posisi tooltip di atas elemen */
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

.section-top-bottom{
    padding-top: 70px;
    padding-bottom: 50px;
}

.section-bottom{
    padding-bottom: 10px;
}

p {
    padding-top: 10px;
}

.radio-group {
    display: flex;
    margin-block: 5px;
}

.form-check {
    padding-right: 50px;
}

/* Centered text image */
.container-caption {
    position: relative;
    text-align: center;
    color: white;
}

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

.custom-prev-icon-carousel {
    background-image: url('../img/icon-up.png');
    display: inline-block;
    width: 2rem;
    height: 2rem;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100% 100%;
}

.custom-next-icon-carousel {
    background-image: url('../img/icon-down.png');
    display: inline-block;
    width: 2rem;
    height: 2rem;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100% 100%;
}

.range-button {
    margin-bottom: 20px;
}

.add-to-cart {
    display: inline;
    margin-left: 10px;
}

/* Media queries */
@media (max-width: 576px) {
    .logo {
        width: 30px;
    }
    .nav .nav-item a {
        font-size: 16px;
    }
    .banner .d-banner {
        display: none;
    }
    .banner .m-banner {
        display: block;
    }
    .card .card-body {
        padding: 1.4rem;
    }
    .image-link img {
        width: 135px;
    }
    .heroes {
        padding: 2rem 0;
    }
    .heroes p {
        font-size: 16px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1200px!important;
    }
}