::-webkit-scrollbar-thumb{
    background: white;
}
::-webkit-scrollbar{
    background: black;
    width: 1px;
}

/* Warna khas Vite (Biru keunguan) */
.vite-fill {
    background-color: #473d78; 
}

/* Warna khas Next.js (Putih/Hitam) 
   *Catatan: Saya beri warna putih (#ffffff) agar kontras dan terlihat jika dashboard kamu menggunakan tema gelap (dark mode). Jika tema terang, ubah ke #000000 */
.nextjs-fill {
    background-color: #473d78; 
}

/* Warna khas Express/Node.js (Hijau) */
.express-fill {
    background-color: #473d78; 
}

/* Warna khas Laravel (Merah) */
.laravel-fill {
    background-color: #473d78; 
}

/* Warna khas React (Biru Muda / Cyan) */
.react-fill {
    background-color: #473d78; 
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    padding: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Skill Card */
.skill-card {
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.95), rgba(25, 25, 55, 0.95));
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.skill-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.5s ease;
}

.skill-card:hover::before {
    left: 100%;
}

.skill-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3);
}

/* Skill Icon */
.skill-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.skill-card:hover .skill-icon {
    transform: scale(1.05) rotate(5deg);
}

.skill-icon i {
    font-size: 48px;
}

/* Background Colors */
.html-bg {
    background: linear-gradient(135deg, #E44D26, #F16529);
    box-shadow: 0 4px 15px rgba(228, 77, 38, 0.3);
}

.css-bg {
    background: linear-gradient(135deg, #264DE4, #2965F1);
    box-shadow: 0 4px 15px rgba(38, 77, 228, 0.3);
}

.js-bg {
    background: linear-gradient(135deg, #F7DF1E, #F0DB4F);
    box-shadow: 0 4px 15px rgba(247, 223, 30, 0.3);
}

.js-bg i {
    color: #000;
}

.python-bg {
    background: linear-gradient(135deg, #3776AB, #306998);
    box-shadow: 0 4px 15px rgba(55, 118, 171, 0.3);
}

.php-bg {
    background: linear-gradient(135deg, #777BB4, #8892BF);
    box-shadow: 0 4px 15px rgba(119, 123, 180, 0.3);
}

.java-bg {
    background: linear-gradient(135deg, #007396, #F89820);
    box-shadow: 0 4px 15px rgba(0, 115, 150, 0.3);
}

/* Skill Info */
.skill-info {
    flex: 1;
}

.skill-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
    letter-spacing: 0.5px;
}

/* Progress Wrapper */
.skill-progress-wrapper {
    width: 100%;
}

.skill-progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 8px;
}

.skill-progress-fill {
    height: 100%;
    border-radius: 10px;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.skill-progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgb(255,255,255), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Fill Colors */
.html-fill {
    background: linear-gradient(90deg, #E44D26, #F16529);
}

.css-fill {
    background: linear-gradient(90deg, #264DE4, #2965F1);
}

.js-fill {
    background: linear-gradient(90deg, #F7DF1E, #F0DB4F);
}

.python-fill {
    background: linear-gradient(90deg, #3776AB, #306998);
}

.php-fill {
    background: linear-gradient(90deg, #777BB4, #8892BF);
}

.java-fill {
    background: linear-gradient(90deg, #007396, #F89820);
}

/* Skill Stats */
.skill-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4px;
}

.skill-label {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.skill-percent {
    font-size: 14px;
    font-weight: 700;
    background: linear-gradient(135deg, #fff, #aaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Responsive */
@media (max-width: 768px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 16px;
    }
    
    .skill-card {
        padding: 16px;
        gap: 15px;
    }
    
    .skill-icon {
        width: 60px;
        height: 60px;
        border-radius: 16px;
    }
    
    .skill-icon i {
        font-size: 32px;
    }
    
    .skill-name {
        font-size: 16px;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .skill-card {
        background: linear-gradient(135deg, rgba(10, 10, 25, 0.95), rgba(20, 20, 45, 0.95));
    }

#sertif-button{
  padding: 10px;
  border-radius: 10px;
  background: #563762;
  color: white;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

#sertif-button i{
  margin: 0 5px;
}

#sertif-button:active{
  transform: scale(0.9);
}