
        
        /* Styling Card Kandidat */
        .kandidat-card {
            border: none;
            border-radius: 20px;
            background: white;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            position: relative;
        }
        
        .kandidat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }

        .kandidat-img-wrapper {
            height: auto;
            overflow: hidden;
            background-color: #e9ecef;
            position: relative;
        }

        .kandidat-img {
            width: 100%;
            height: 100%;
            object-fit: cover; 
        }

        /* Badge Nomor Urut */
        .nomor-urut {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 50px;
            height: 50px;
            background: linear-gradient(45deg, #4e73df, #224abe);
            color: white;
            font-size: 24px;
            font-weight: bold;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
            z-index: 2;
        }

        .kandidat-card .card-content {
            padding: 20px;
            text-align: center;
        }

        .kandidat-names {
            font-size: 1.2rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 5px;
        }
        
        .kandidat-role {
            font-size: 0.9rem;
            color: #777;
            margin-bottom: 20px;
        }

        /* Tombol Custom */
        .btn-visi-misi {
            background: linear-gradient(45deg, #4e73df, #224abe);
            color: white;
            border: none;
            border-radius: 50px;
            padding: 10px 25px;
            font-weight: 600;
            width: 100%;
            transition: all 0.3s;
        }
        
        .btn-visi-misi:hover {
            background: linear-gradient(45deg, #224abe, #4e73df);
            color: white;
            transform: scale(1.02);
        }