:root {
    --uts-navy: #002366; /* Navy Blue UTS */
    --uts-gold: #FFC107; /* Warning Yellow UTS */
    --uts-red: #C8102E;  /* Red Accent */
    --uts-white: #FFFFFF;
    --uts-gray: #F4F7FA;
}

/* =========================================
3. PORTAL PUBLIKASI & JURNAL CSS
(Berlaku untuk kartu-kartu jurnal)
========================================= */
.feature-card {
    background: white;
    border-radius: 24px;
    padding: 20px 30px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0,31,63,0.12);
    border-color: var(--uts-yellow);
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--uts-gray);
    
    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 25px; /* center horizontal */
    transition: 0.3s;
}

/* ICON NYA */
.icon-circle i {
    font-size: 32px;          /* lebih konsisten dari 2rem */
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Fix khusus biar optically center */
.icon-circle i.bi {
    transform: translateY(1px); /* tweak kecil biar pas tengah */
}

.feature-card:hover .icon-circle {
    background: var(--uts-navy);
    color: white;
}

/* =========================================
    4. STRATEGI & ROADMAP CSS
    (Timeline and Dots)
    ========================================= */
.roadmap-item {
    position: relative;
    padding-left: 30px;
    border-left: 3px solid var(--uts-yellow);
    margin-bottom: 40px;
}

.roadmap-dot {
    position: absolute;
    left: -11px;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--uts-navy);
    border: 4px solid var(--uts-yellow);
    border-radius: 50%;
}

/* KKN Box */
.kkn-container {
    background-color: var(--uts-navy);
    color: white;
    border-radius: 20px;
    padding: 50px;
    position: relative;
}

.kkn-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    height: 100%;
}
