
a:hover{
    text-decoration: none !important;
}
.features .feature-card {
    background-color: var(--surface-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.features .feature-card .feature-icon {
    margin-bottom: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.features .feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #5c4b36;
}
.features .feature-card .feature-icon i {
    font-size: 24px;
    color: var(--accent-color);
}

.job-item {
    background-color: #fff;
}

.job-tab .nav-tabs {
    margin-bottom: 60px;
    border-bottom: 0;
}

.job-tab .nav-tabs>li {
    float: none;
    display: inline;
}

.job-tab .nav-tabs li {
    margin-right: 15px;
}

.job-tab .nav-tabs li:last-child {
    margin-right: 0;
}

.job-tab .nav-tabs {
    position: relative;
    z-index: 1;
    display: inline-block;
}

.job-tab .nav-tabs:after {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #fff;
    z-index: -1;
    text-decoration: none;
}

.job-tab .nav-tabs>li a {
    display: inline-block;
    background-color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 14px;
    color: #000;
    padding: 5px 30px;
}

.job-tab .nav-tabs>li>a.active, 
.job-tab .nav-tabs>li a.active>:focus, 
.job-tab .nav-tabs>li>a.active:hover,
.job-tab .nav-tabs>li>a:hover {
    border: none;
    background-color: #AA60C8;
    color: #fff;
    text-decoration: none;
}

.job-item {
    border-radius: 3px;
    position: relative;
    margin-bottom: 30px;
    z-index: 1;
}

.job-item .btn.btn-primary {
    text-transform: capitalize;
}

.job-item .job-info {
    font-size: 14px;
    color: #000;
    overflow: hidden;
    padding: 40px 25px 20px;
}

.job-info .company-logo {
    margin-bottom: 30px;
}

.tr-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.product-card {
    transition: all 0.3s ease-in-out;
    border-radius: 12px;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.product-card .badge {
    top: 10px;
    left: 10px;
    font-size: 0.75rem;
    padding: 6px 12px;
    border-radius: 20px;
}

.ribbon {
    width: 120px;
    height: 120px;
    overflow: hidden;
    position: absolute;
    top: -5px;
    right: -5px;
}

.ribbon span {
    position: absolute;
    display: block;
    width: 160px;
    padding: 5px 0;
    background: #dc3545; /* warna merah */
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    transform: rotate(45deg);
    top: 20px;
    right: -40px;
    box-shadow: 0 3px 10px -5px rgba(0,0,0,0.3);
}

.btn-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.btn-detail {
    background: linear-gradient(45deg, #007bff, #00c6ff);
    color: #fff !important;
    border: none;
}

.btn-detail:hover {
    transform: scale(1.05);
    box-shadow: 0px 4px 12px rgba(0, 123, 255, 0.4);
}

.btn-pesan {
    background: linear-gradient(45deg, #aa60c8, #841ead);
    color: #fff !important;
    border: none;
}

.btn-pesan:hover {
    transform: scale(1.05);
    box-shadow: 0px 4px 12px rgba(37, 211, 102, 0.4);
}

.price-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
}

.price-old {
    font-size: 14px;
    color: #6c757d; /* abu abu */
    text-decoration: line-through;
}

.price-new {
    font-size: 18px;
    font-weight: 700;
    color: #28a745; /* hijau */
}


.btn-preview {
    background: linear-gradient(45deg, #ff9800, #ffc107);
    color: #fff !important;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
}

.btn-preview:hover {
    transform: scale(1.05);
    box-shadow: 0px 4px 12px rgba(255, 152, 0, 0.4);
}