html {
    scroll-behavior: smooth;
  }

.bg-blue-custom {
    --tw-bg-opacity: 1;
    background-color: rgba(105, 105, 105, var(--tw-bg-opacity)); /* Abu-abu Tua */
}

.hover\:bg-blue-dark:hover {
    --tw-bg-opacity: 1;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); /* Hitam saat fokus */       
}

.focus\:ring-blue:focus {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(105, 105, 105, var(--tw-ring-opacity)); /* Cincin fokus Abu-abu Tua */
}


/* Begin Kotak Bawah */
.section-title {
    text-align: center;
    margin-bottom: 10px;
}

.section-title h1 {
    font-size: 2rem;
    margin-bottom: 5px;
}

.section-title p {
    font-size: 1rem;
    color: #777;
}

.slider-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    overflow: hidden;
    margin-bottom: 20px;
}

.slider {
    display: flex;
    transition: transform 0.5s ease;
    width: calc(200px * 6);
}

.slider-item {
    min-width: 200px;
    margin: 0 10px;
}

.slider-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.arrow {
    font-size: 2rem;
    color: #28a745;
    cursor: pointer;
    user-select: none;
}

.container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 1200px;
}

.card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    padding: 20px;
    position: relative;
}

.card img {
    width: 150px;
    margin-bottom: 15px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.card p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 10px 0;
}

.card .badge {
    background-color: #ff3e3e;
    color: #fff;
    border-radius: 5px;
    padding: 5px 10px;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 10px;
}

.card .custom-button {
    background-color: #a0e9d2; 
    color: #333;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.card .custom-button:hover {
    background-color: #8dd2b8;
}

.selected-paket {
    border-color: #3b82f6; /* Change this to your desired color */
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.5); /* Optional shadow effect */
}

nav {
    position: fixed; /* or absolute, depending on your layout */
    top: 0; /* stick to the top */
    left: 0;
    right: 0;
    z-index: 50; /* Ensure it's above other elements */
}