/* Kategori Tab Styling */
.kategori-tab {
    background: linear-gradient(90deg, #0039ff 0%, #005eff 100%);
    color: white !important;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    border-radius: 50rem !important;
    /* Rounded Pill */
    padding: 10px 20px;
    font-weight: 600;
    text-transform: uppercase;
    width: 100%;
    margin-bottom: 10px;
}

.kategori-tab:hover {
    background: linear-gradient(90deg, #0050ff 0%, #0070ff 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.kategori-tab.active {
    background: linear-gradient(90deg, #001f8e 0%, #0033cc 100%) !important;
    box-shadow: 0 0 15px rgba(0, 51, 204, 0.4);
    transform: scale(1.02);
}

/* Tab Content Animation */
.tab-pane {
    transition: opacity 0.3s ease-in-out;
}

/* Team Cart Styling Tweaks to match live site feel if needed */
.team-block .inner-box {
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    /* Softer shadow */
    transition: all 0.3s ease;
}

.team-block .inner-box:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.team-block .image-box img {
    width: 100%;
    height: auto;
    object-fit: cover;
    /* aspect-ratio: 3/4;  Uncomment if aspect ratio needs forcing */
}

.team-block .info-box {
    padding: 20px;
    text-align: center;
}

.team-block .name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #333;
}

.team-block .designation {
    display: block;
    font-size: 14px;
    color: #005eff;
    /* Blue accent color */
    margin-bottom: 15px;
    font-weight: 500;
}